/external/llvm/lib/AsmParser/ |
D | Parser.cpp | 26 SlotMapping *Slots) { in parseAssemblyInto() argument 31 return LLParser(F.getBuffer(), SM, Err, &M, Slots).Run(); in parseAssemblyInto() 37 SlotMapping *Slots) { in parseAssembly() argument 41 if (parseAssemblyInto(F, *M, Err, Slots)) in parseAssembly() 50 SlotMapping *Slots) { in parseAssemblyFile() argument 59 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots); in parseAssemblyFile() 65 SlotMapping *Slots) { in parseAssemblyString() argument 67 return parseAssembly(F, Err, Context, Slots); in parseAssemblyString() 71 const Module &M, const SlotMapping *Slots) { in parseConstantValue() argument 77 .parseStandaloneConstantValue(C, Slots)) in parseConstantValue() [all …]
|
D | LLParser.h | 94 SlotMapping *Slots; variable 144 SlotMapping *Slots = nullptr) 146 Slots(Slots), BlockAddressPFS(nullptr) {} 149 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots); 152 const SlotMapping *Slots); 167 void restoreParsingState(const SlotMapping *Slots);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | Parser.cpp | 28 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument 36 M ? M->getContext() : Context, Slots, UpgradeDebugInfo, in parseAssemblyInto() 43 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssembly() argument 48 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, UpgradeDebugInfo, in parseAssembly() 57 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyFile() argument 67 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots, in parseAssemblyFile() 73 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyWithIndex() argument 79 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex() 88 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyFileWithIndex() argument 98 Context, Slots, UpgradeDebugInfo, in parseAssemblyFileWithIndex() [all …]
|
D | LLParser.h | 98 SlotMapping *Slots; variable 172 SlotMapping *Slots = nullptr, bool UpgradeDebugInfo = true, 175 Slots(Slots), BlockAddressPFS(nullptr), in Context() 182 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots); 185 const SlotMapping *Slots); 200 void restoreParsingState(const SlotMapping *Slots);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/AsmParser/ |
D | Parser.h | 46 SlotMapping *Slots = nullptr, bool UpgradeDebugInfo = true, 67 SlotMapping *Slots = nullptr, 96 LLVMContext &Context, SlotMapping *Slots = nullptr, 123 SlotMapping *Slots = nullptr, 142 SlotMapping *Slots = nullptr, 172 SMDiagnostic &Err, SlotMapping *Slots = nullptr, 185 const SlotMapping *Slots = nullptr); 193 const SlotMapping *Slots = nullptr); 203 const Module &M, const SlotMapping *Slots = nullptr);
|
/external/python/cpython2/Tools/framer/framer/ |
D | slots.py | 10 Slots = (Slot("ob_size"), variable 59 TP_NAME = Slots[1] 60 TP_BASICSIZE = Slots[2] 61 TP_DEALLOC = Slots[4] 62 TP_DOC = Slots[20] 63 TP_METHODS = Slots[27] 64 TP_MEMBERS = Slots[28]
|
D | bases.py | 157 for s in Slots: 205 for s in Slots[:-5]: # XXX
|
/external/llvm/include/llvm/AsmParser/ |
D | Parser.h | 42 SlotMapping *Slots = nullptr); 58 SlotMapping *Slots = nullptr); 68 SlotMapping *Slots = nullptr); 82 SlotMapping *Slots = nullptr); 93 const SlotMapping *Slots = nullptr); 101 const SlotMapping *Slots = nullptr); 111 const Module &M, const SlotMapping *Slots = nullptr);
|
/external/llvm/lib/IR/ |
D | AttributeImpl.h | 243 ArrayRef<std::pair<unsigned, AttributeSetNode *> > Slots) in AttributeSetImpl() 244 : Context(C), NumSlots(Slots.size()), AvailableFunctionAttrs(0) { in AttributeSetImpl() 250 if (Slots.size() >= 2) { in AttributeSetImpl() 251 for (const std::pair<unsigned, AttributeSetNode *> *i = Slots.begin() + 1, in AttributeSetImpl() 252 *e = Slots.end(); in AttributeSetImpl() 259 std::copy(Slots.begin(), Slots.end(), getTrailingObjects<IndexAttrPair>()); in AttributeSetImpl() 265 const std::pair<unsigned, AttributeSetNode *> &Last = Slots.back(); in AttributeSetImpl()
|
/external/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()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeTableBuilder.cpp | 178 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in writeVFTableShape() local 180 Builder.writeUInt16(Slots.size()); in writeVFTableShape() 181 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in writeVFTableShape() 182 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in writeVFTableShape() 183 if ((SlotIndex + 1) < Slots.size()) { in writeVFTableShape() 184 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in writeVFTableShape()
|
D | TypeRecord.cpp | 192 std::vector<VFTableSlotKind> Slots; in deserialize() local 200 Slots.push_back(static_cast<VFTableSlotKind>(Value)); in deserialize() 203 Slots.push_back(static_cast<VFTableSlotKind>(Value)); in deserialize() 209 return VFTableShapeRecord(Slots); in deserialize()
|
/external/llvm/include/llvm/IR/ |
D | Value.h | 640 Use *Slots[MaxSlots]; in sortUseList() local 646 Slots[0] = UseList; in sortUseList() 659 if (!Slots[I]) in sortUseList() 666 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList() 667 Slots[I] = nullptr; in sortUseList() 676 Slots[I] = Current; in sortUseList() 684 if (Slots[I]) in sortUseList() 687 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Value.h | 697 Use *Slots[MaxSlots]; in sortUseList() local 703 Slots[0] = UseList; in sortUseList() 716 if (!Slots[I]) in sortUseList() 723 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList() 724 Slots[I] = nullptr; in sortUseList() 733 Slots[I] = Current; in sortUseList() 741 if (Slots[I]) in sortUseList() 744 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonShuffler.h | 39 unsigned Slots, Weight; variable 45 Slots = s & ((1u << HEXAGON_PACKET_SIZE) - 1); in setUnits() 51 unsigned getUnits() const { return (Slots); } in getUnits()
|
D | HexagonMCInstrInfo.cpp | 416 unsigned Slots = 0; in getOtherReservedSlots() local 427 Slots |= Units; in getOtherReservedSlots() 431 return Slots; in getOtherReservedSlots()
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonShuffler.h | 32 unsigned Slots, Weight; variable 38 Slots = s & ~(~0U << HEXAGON_PACKET_SIZE); in setUnits() 42 unsigned getUnits() const { return (Slots); }; in getUnits()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 265 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() local 266 Size = Slots.size(); in visitKnownRecord() 269 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in visitKnownRecord() 270 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in visitKnownRecord() 271 if ((SlotIndex + 1) < Slots.size()) { in visitKnownRecord() 272 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in visitKnownRecord() 281 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord() 283 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
|
/external/libese/apps/weaver/card/src/com/android/weaver/core/ |
D | CoreSlots.java | 25 import com.android.weaver.Slots; 29 class CoreSlots implements Slots {
|
/external/libese/apps/weaver/card/src/com/android/weaver/ |
D | Weaver.java | 38 private Slots mSlots; 79 mSlots = (Slots) JCSystem.getAppletShareableInterfaceObject( in process()
|
D | Slots.java | 19 public interface Slots extends javacard.framework.Shareable { interface
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 538 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 539 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {} in VFTableShapeRecord() 540 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 541 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {} in VFTableShapeRecord() 546 return Slots; in getSlots() 552 std::vector<VFTableSlotKind> Slots; variable
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 620 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 621 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {} in VFTableShapeRecord() 622 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 623 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {} in VFTableShapeRecord() 635 return Slots; in getSlots() 650 std::vector<VFTableSlotKind> Slots; variable
|
/external/llvm/lib/CodeGen/ |
D | LiveIntervalAnalysis.cpp | 852 ArrayRef<SlotIndex> Slots; in checkRegMaskInterference() local 855 Slots = getRegMaskSlotsInBlock(MBB->getNumber()); in checkRegMaskInterference() 858 Slots = getRegMaskSlots(); in checkRegMaskInterference() 865 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start); in checkRegMaskInterference() 866 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in checkRegMaskInterference() 885 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]); in checkRegMaskInterference()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LiveIntervals.cpp | 892 ArrayRef<SlotIndex> Slots; in checkRegMaskInterference() local 895 Slots = getRegMaskSlotsInBlock(MBB->getNumber()); in checkRegMaskInterference() 898 Slots = getRegMaskSlots(); in checkRegMaskInterference() 905 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start); in checkRegMaskInterference() 906 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in checkRegMaskInterference() 925 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]); in checkRegMaskInterference()
|