Searched refs:Slots (Results 1 - 20 of 20) sorted by relevance

/external/python/cpython2/Tools/framer/framer/
H A Dslots.py10 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]
H A Dbases.py157 for s in Slots:
205 for s in Slots[:-5]: # XXX
/external/llvm/include/llvm/AsmParser/
H A DParser.h37 /// \param Slots The optional slot mapping that will be initialized during
42 SlotMapping *Slots = nullptr);
53 /// \param Slots The optional slot mapping that will be initialized during
58 SlotMapping *Slots = nullptr);
64 /// \param Slots The optional slot mapping that will be initialized during
68 SlotMapping *Slots = nullptr);
78 /// \param Slots The optional slot mapping that will be initialized during
82 SlotMapping *Slots = nullptr);
89 /// \param Slots The optional slot mapping that will restore the parsing state
93 const SlotMapping *Slots
[all...]
/external/llvm/lib/AsmParser/
H A DParser.cpp26 SlotMapping *Slots) {
31 return LLParser(F.getBuffer(), SM, Err, &M, Slots).Run();
37 SlotMapping *Slots) {
41 if (parseAssemblyInto(F, *M, Err, Slots))
50 SlotMapping *Slots) {
59 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots);
65 SlotMapping *Slots) {
67 return parseAssembly(F, Err, Context, Slots);
71 const Module &M, const SlotMapping *Slots) {
77 .parseStandaloneConstantValue(C, Slots))
25 parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err, SlotMapping *Slots) argument
34 parseAssembly(MemoryBufferRef F, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
47 parseAssemblyFile(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
62 parseAssemblyString(StringRef AsmString, SMDiagnostic &Err, LLVMContext &Context, SlotMapping *Slots) argument
70 parseConstantValue(StringRef Asm, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots) argument
82 parseType(StringRef Asm, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots) argument
98 parseTypeAtBeginning(StringRef Asm, unsigned &Read, SMDiagnostic &Err, const Module &M, const SlotMapping *Slots) argument
[all...]
H A DLLParser.h94 SlotMapping *Slots; member in class:llvm::LLParser
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);
H A DLLParser.cpp62 const SlotMapping *Slots) {
63 restoreParsingState(Slots);
75 const SlotMapping *Slots) {
76 restoreParsingState(Slots);
90 void LLParser::restoreParsingState(const SlotMapping *Slots) { argument
91 if (!Slots)
93 NumberedVals = Slots->GlobalValues;
94 NumberedMetadata = Slots->MetadataNodes;
95 for (const auto &I : Slots->NamedTypes)
98 for (const auto &I : Slots
61 parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots) argument
74 parseTypeAtBeginning(Type *&Ty, unsigned &Read, const SlotMapping *Slots) argument
[all...]
/external/libese/apps/weaver/card/src/com/android/weaver/
H A DSlots.java19 public interface Slots extends javacard.framework.Shareable { interface in inherits:javacard.framework.Shareable
H A DWeaver.java38 private Slots mSlots;
79 mSlots = (Slots) JCSystem.getAppletShareableInterfaceObject(
/external/llvm/lib/IR/
H A DAttributeImpl.h243 ArrayRef<std::pair<unsigned, AttributeSetNode *> > Slots)
244 : Context(C), NumSlots(Slots.size()), AvailableFunctionAttrs(0) {
250 if (Slots.size() >= 2) {
251 for (const std::pair<unsigned, AttributeSetNode *> *i = Slots.begin() + 1,
252 *e = Slots.end();
259 std::copy(Slots.begin(), Slots.end(), getTrailingObjects<IndexAttrPair>());
265 const std::pair<unsigned, AttributeSetNode *> &Last = Slots.back();
242 AttributeSetImpl(LLVMContext &C, ArrayRef<std::pair<unsigned, AttributeSetNode *> > Slots) argument
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h32 unsigned Slots, Weight; member in class:llvm::HexagonResource
38 Slots = s & ~(~0U << HEXAGON_PACKET_SIZE);
42 unsigned getUnits() const { return (Slots); };
/external/llvm/lib/DebugInfo/CodeView/
H A DTypeTableBuilder.cpp178 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); local
180 Builder.writeUInt16(Slots.size());
181 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) {
182 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4;
183 if ((SlotIndex + 1) < Slots.size()) {
184 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]);
H A DTypeRecord.cpp192 std::vector<VFTableSlotKind> Slots;
200 Slots.push_back(static_cast<VFTableSlotKind>(Value));
203 Slots.push_back(static_cast<VFTableSlotKind>(Value));
209 return VFTableShapeRecord(Slots);
/external/libese/apps/weaver/card/src/com/android/weaver/core/
H A DCoreSlots.java25 import com.android.weaver.Slots;
29 class CoreSlots implements Slots {
/external/llvm/include/llvm/IR/
H A DValue.h640 Use *Slots[MaxSlots]; local
646 Slots[0] = UseList;
659 if (!Slots[I])
664 // Since the uses in Slots[I] originally preceded those in Current, send
665 // Slots[I] in as the left parameter to maintain a stable sort.
666 Current = mergeUseLists(Slots[I], Current, Cmp);
667 Slots[I] = nullptr;
676 Slots[I] = Current;
684 if (Slots[I])
685 // Since the uses in Slots[
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DValue.h650 Use *Slots[MaxSlots]; local
656 Slots[0] = UseList;
669 if (!Slots[I])
674 // Since the uses in Slots[I] originally preceded those in Current, send
675 // Slots[I] in as the left parameter to maintain a stable sort.
676 Current = mergeUseLists(Slots[I], Current, Cmp);
677 Slots[I] = nullptr;
686 Slots[I] = Current;
694 if (Slots[I])
695 // Since the uses in Slots[
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h620 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) argument
621 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {}
622 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) argument
623 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {}
635 return Slots;
650 std::vector<VFTableSlotKind> Slots; member in class:llvm::codeview::VFTableShapeRecord
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp852 ArrayRef<SlotIndex> Slots; local
855 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
858 Slots = getRegMaskSlots();
865 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
866 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
885 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
H A DLiveInterval.cpp754 bool LiveRange::isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const {
755 ArrayRef<SlotIndex>::iterator SlotI = Slots.begin();
756 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h548 // provided slot indexes. Slots which occur in holes between
550 bool isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const;
/external/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp1597 SDValue Slots[4]; local
1606 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr);
1614 Result = DAG.getBuildVector(NewVT, DL, makeArrayRef(Slots, NumElements));

Completed in 990 milliseconds