/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | Parser.cpp | 27 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument 35 M ? M->getContext() : Context, Slots, UpgradeDebugInfo, in parseAssemblyInto() 42 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssembly() argument 47 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, UpgradeDebugInfo, in parseAssembly() 56 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyFile() argument 66 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots, in parseAssemblyFile() 72 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyWithIndex() argument 78 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex() 87 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyFileWithIndex() argument 97 Context, Slots, UpgradeDebugInfo, in parseAssemblyFileWithIndex() [all …]
|
D | LLParser.h | 97 SlotMapping *Slots; variable 171 SlotMapping *Slots = nullptr, bool UpgradeDebugInfo = true, 174 Slots(Slots), BlockAddressPFS(nullptr), in Context() 181 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots); 184 const SlotMapping *Slots); 199 void restoreParsingState(const SlotMapping *Slots);
|
D | LLParser.cpp | 78 const SlotMapping *Slots) { in parseStandaloneConstantValue() argument 79 restoreParsingState(Slots); in parseStandaloneConstantValue() 91 const SlotMapping *Slots) { in parseTypeAtBeginning() argument 92 restoreParsingState(Slots); in parseTypeAtBeginning() 106 void LLParser::restoreParsingState(const SlotMapping *Slots) { in restoreParsingState() argument 107 if (!Slots) in restoreParsingState() 109 NumberedVals = Slots->GlobalValues; in restoreParsingState() 110 NumberedMetadata = Slots->MetadataNodes; in restoreParsingState() 111 for (const auto &I : Slots->NamedTypes) in restoreParsingState() 114 for (const auto &I : Slots->Types) in restoreParsingState() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/AsmParser/ |
D | Parser.h | 45 SlotMapping *Slots = nullptr, bool UpgradeDebugInfo = true, 66 SlotMapping *Slots = nullptr, 95 LLVMContext &Context, SlotMapping *Slots = nullptr, 122 SlotMapping *Slots = nullptr, 141 SlotMapping *Slots = nullptr, 171 SMDiagnostic &Err, SlotMapping *Slots = nullptr, 184 const SlotMapping *Slots = nullptr); 192 const SlotMapping *Slots = nullptr); 202 const Module &M, const SlotMapping *Slots = nullptr);
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instr_alugroup.h | 38 using Slots = std::array<AluInstr *, 5>; 42 using iterator = Slots::iterator; 43 using const_iterator = Slots::const_iterator; 100 Slots m_slots;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Value.h | 650 Use *Slots[MaxSlots]; in sortUseList() local 656 Slots[0] = UseList; in sortUseList() 669 if (!Slots[I]) in sortUseList() 676 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList() 677 Slots[I] = nullptr; in sortUseList() 686 Slots[I] = Current; in sortUseList() 694 if (Slots[I]) in sortUseList() 697 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Value.h | 757 Use *Slots[MaxSlots]; in sortUseList() local 763 Slots[0] = UseList; in sortUseList() 776 if (!Slots[I]) in sortUseList() 783 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList() 784 Slots[I] = nullptr; in sortUseList() 793 Slots[I] = Current; in sortUseList() 801 if (Slots[I]) in sortUseList() 804 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonShuffler.h | 38 unsigned Slots, Weight; variable 44 Slots = s & ((1u << HEXAGON_PACKET_SIZE) - 1); in setUnits() 50 unsigned getUnits() const { return (Slots); } in getUnits()
|
D | HexagonMCInstrInfo.cpp | 414 unsigned Slots = 0; in getOtherReservedSlots() local 425 Slots |= Units; in getOtherReservedSlots() 429 return Slots; in getOtherReservedSlots()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 455 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() local 456 Size = Slots.size(); in visitKnownRecord() 459 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in visitKnownRecord() 460 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in visitKnownRecord() 461 if ((SlotIndex + 1) < Slots.size()) { in visitKnownRecord() 462 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in visitKnownRecord() 471 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord() 473 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | container_memory_test.cc | 234 union Slots { in TEST() union 235 Slots() {} in TEST() function 236 ~Slots() {} in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 562 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 563 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {} in VFTableShapeRecord() 564 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 565 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {} in VFTableShapeRecord() 570 return Slots; in getSlots() 576 std::vector<VFTableSlotKind> Slots; variable
|
/third_party/PyYAML/tests/data/ |
D | construct-python-object.code | 20 Slots(1, 'two', [3,3,3]),
|
D | construct-python-object.data | 19 - !!python/object/new:test_constructor.Slots { state: !!python/tuple [null, { foo: 1, bar: 'two', b…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeTypeVTShape.cpp | 35 uint32_t NativeTypeVTShape::getCount() const { return Record.Slots.size(); } in getCount()
|
/third_party/PyYAML/tests/lib/ |
D | test_constructor.py | 19 NewArgs, NewArgsWithState, Reduce, ReduceWithState, Slots, MyInt, MyList, MyDict, \ 189 class Slots: class
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveIntervals.cpp | 902 ArrayRef<SlotIndex> Slots; in checkRegMaskInterference() local 905 Slots = getRegMaskSlotsInBlock(MBB->getNumber()); in checkRegMaskInterference() 908 Slots = getRegMaskSlots(); in checkRegMaskInterference() 914 ArrayRef<SlotIndex>::iterator SlotI = llvm::lower_bound(Slots, LiveI->start); in checkRegMaskInterference() 915 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in checkRegMaskInterference() 934 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]); in checkRegMaskInterference()
|
D | LiveInterval.cpp | 814 bool LiveRange::isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const { in isLiveAtIndexes() 815 ArrayRef<SlotIndex>::iterator SlotI = Slots.begin(); in isLiveAtIndexes() 816 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in isLiveAtIndexes()
|
D | RegisterCoalescer.cpp | 3466 const SlotIndexes &Slots = *LIS->getSlotIndexes(); in buildVRegToDbgValueMap() local 3482 SlotIndex CurrentSlot = Slots.getMBBStartIdx(&MBB); in buildVRegToDbgValueMap() 3489 CurrentSlot = Slots.getInstructionIndex(MI); in buildVRegToDbgValueMap() 3495 CloseNewDVRange(Slots.getMBBEndIdx(&MBB)); in buildVRegToDbgValueMap()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
D | video_decode_extensions.txt | 124 * if <<dpb-slot,DPB Slots>> are required for use as 161 decoded output picture>> would require <<dpb-slot,DPB Slots>> with 212 one of the available <<dpb-slot,DPB Slots>> needs to be selected for 221 In addition, one of the available <<dpb-slot,DPB Slots>> must: be selected
|
/third_party/python/Doc/c-api/ |
D | type.rst | 275 Slots in :c:type:`PyBufferProcs` in may be set in the unlimited API. 282 Slots other than ``Py_tp_doc`` may not be ``NULL``.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcRegisterInfo.td | 43 // Rd - Slots in the FP register file for 64-bit floating-point values. 50 // Rq - Slots in the FP register file for 128-bit floating-point values.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 588 bool isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600ISelLowering.cpp | 1809 SDValue Slots[4]; in constBufferLoad() local 1818 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr); in constBufferLoad() 1826 SDValue Result = DAG.getBuildVector(NewVT, DL, makeArrayRef(Slots, NumElements)); in constBufferLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypes.cpp | 549 IO.mapRequired("Slots", Record.Slots); in map()
|