/external/python/cpython2/Tools/framer/framer/ |
D | slots.py | 3 class Slot(object): class 10 Slots = (Slot("ob_size"), 11 Slot("tp_name"), 12 Slot("tp_basicsize"), 13 Slot("tp_itemsize"), 14 Slot("tp_dealloc", "destructor"), 15 Slot("tp_print", "printfunc"), 16 Slot("tp_getattr", "getattrfunc"), 17 Slot("tp_setattr", "setattrfunc"), 18 Slot("tp_compare", "cmpfunc", "__cmp__"), [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 477 bool applyFirstUse(int Slot) { in applyFirstUse() argument 480 if (ConservativeSlots.test(Slot)) in applyFirstUse() 573 int Slot = MO.getIndex(); in getStartOrEndSlot() local 574 if (Slot >= 0) in getStartOrEndSlot() 575 return Slot; in getStartOrEndSlot() 588 int Slot = getStartOrEndSlot(MI); in isLifetimeStartOrEnd() local 589 if (Slot < 0) in isLifetimeStartOrEnd() 591 if (!InterestingSlots.test(Slot)) in isLifetimeStartOrEnd() 593 slots.push_back(Slot); in isLifetimeStartOrEnd() 598 if (!applyFirstUse(Slot)) { in isLifetimeStartOrEnd() [all …]
|
D | LiveStacks.cpp | 58 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) { in getOrCreateInterval() argument 59 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getOrCreateInterval() 60 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getOrCreateInterval() 62 I = S2IMap.emplace(std::piecewise_construct, std::forward_as_tuple(Slot), in getOrCreateInterval() 64 TargetRegisterInfo::index2StackSlot(Slot), 0.0F)) in getOrCreateInterval() 66 S2RCMap.insert(std::make_pair(Slot, RC)); in getOrCreateInterval() 69 const TargetRegisterClass *OldRC = S2RCMap[Slot]; in getOrCreateInterval() 70 S2RCMap[Slot] = TRI->getCommonSubClass(OldRC, RC); in getOrCreateInterval() 81 int Slot = I->first; in print() local 82 const TargetRegisterClass *RC = getIntervalRegClass(Slot); in print()
|
/external/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 331 bool applyFirstUse(int Slot) { in applyFirstUse() argument 334 if (ConservativeSlots.test(Slot)) in applyFirstUse() 432 int Slot = MO.getIndex(); in getStartOrEndSlot() local 433 if (Slot >= 0) in getStartOrEndSlot() 434 return Slot; in getStartOrEndSlot() 450 int Slot = getStartOrEndSlot(MI); in isLifetimeStartOrEnd() local 451 if (Slot < 0) in isLifetimeStartOrEnd() 453 if (!InterestingSlots.test(Slot)) in isLifetimeStartOrEnd() 455 slots.push_back(Slot); in isLifetimeStartOrEnd() 460 if (! applyFirstUse(Slot)) { in isLifetimeStartOrEnd() [all …]
|
D | LiveStackAnalysis.cpp | 58 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) { in getOrCreateInterval() argument 59 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getOrCreateInterval() 60 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getOrCreateInterval() 62 I = S2IMap.emplace(std::piecewise_construct, std::forward_as_tuple(Slot), in getOrCreateInterval() 64 TargetRegisterInfo::index2StackSlot(Slot), 0.0F)) in getOrCreateInterval() 66 S2RCMap.insert(std::make_pair(Slot, RC)); in getOrCreateInterval() 69 const TargetRegisterClass *OldRC = S2RCMap[Slot]; in getOrCreateInterval() 70 S2RCMap[Slot] = TRI->getCommonSubClass(OldRC, RC); in getOrCreateInterval() 81 int Slot = I->first; in print() local 82 const TargetRegisterClass *RC = getIntervalRegClass(Slot); in print()
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveStackAnalysis.h | 58 LiveInterval &getOrCreateInterval(int Slot, const TargetRegisterClass *RC); 60 LiveInterval &getInterval(int Slot) { in getInterval() argument 61 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 62 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getInterval() 67 const LiveInterval &getInterval(int Slot) const { in getInterval() argument 68 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 69 SS2IntervalMap::const_iterator I = S2IMap.find(Slot); in getInterval() 74 bool hasInterval(int Slot) const { return S2IMap.count(Slot); } in hasInterval() argument 76 const TargetRegisterClass *getIntervalRegClass(int Slot) const { in getIntervalRegClass() argument 77 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getIntervalRegClass() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | LiveStackAnalysis.h | 57 LiveInterval &getOrCreateInterval(int Slot, const TargetRegisterClass *RC); 59 LiveInterval &getInterval(int Slot) { in getInterval() argument 60 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 61 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getInterval() 66 const LiveInterval &getInterval(int Slot) const { in getInterval() argument 67 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 68 SS2IntervalMap::const_iterator I = S2IMap.find(Slot); in getInterval() 73 bool hasInterval(int Slot) const { in hasInterval() argument 74 return S2IMap.count(Slot); in hasInterval() 77 const TargetRegisterClass *getIntervalRegClass(int Slot) const { in getIntervalRegClass() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | LiveStacks.h | 62 LiveInterval &getOrCreateInterval(int Slot, const TargetRegisterClass *RC); 64 LiveInterval &getInterval(int Slot) { in getInterval() argument 65 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 66 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getInterval() 71 const LiveInterval &getInterval(int Slot) const { in getInterval() argument 72 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getInterval() 73 SS2IntervalMap::const_iterator I = S2IMap.find(Slot); in getInterval() 78 bool hasInterval(int Slot) const { return S2IMap.count(Slot); } in hasInterval() argument 80 const TargetRegisterClass *getIntervalRegClass(int Slot) const { in getIntervalRegClass() argument 81 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getIntervalRegClass() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | DemoteRegToStack.cpp | 40 AllocaInst *Slot; in DemoteRegToStack() local 42 Slot = new AllocaInst(I.getType(), 0, in DemoteRegToStack() 46 Slot = new AllocaInst(I.getType(), 0, I.getName()+".reg2mem", in DemoteRegToStack() 70 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, in DemoteRegToStack() 78 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U); in DemoteRegToStack() 102 new StoreInst(&I, Slot, InsertPt); in DemoteRegToStack() 104 return Slot; in DemoteRegToStack() 118 AllocaInst *Slot; in DemotePHIToStack() local 120 Slot = new AllocaInst(P->getType(), 0, in DemotePHIToStack() 124 Slot = new AllocaInst(P->getType(), 0, P->getName()+".reg2mem", in DemotePHIToStack() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LiveStackAnalysis.cpp | 55 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) { in getOrCreateInterval() argument 56 assert(Slot >= 0 && "Spill slot indice must be >= 0"); in getOrCreateInterval() 57 SS2IntervalMap::iterator I = S2IMap.find(Slot); in getOrCreateInterval() 59 I = S2IMap.insert(I, std::make_pair(Slot, in getOrCreateInterval() 60 LiveInterval(TargetRegisterInfo::index2StackSlot(Slot), 0.0F))); in getOrCreateInterval() 61 S2RCMap.insert(std::make_pair(Slot, RC)); in getOrCreateInterval() 64 const TargetRegisterClass *OldRC = S2RCMap[Slot]; in getOrCreateInterval() 65 S2RCMap[Slot] = TRI->getCommonSubClass(OldRC, RC); in getOrCreateInterval() 76 int Slot = I->first; in print() local 77 const TargetRegisterClass *RC = getIntervalRegClass(Slot); in print()
|
/external/llvm/lib/Transforms/Utils/ |
D | DemoteRegToStack.cpp | 32 AllocaInst *Slot; in DemoteRegToStack() local 34 Slot = new AllocaInst(I.getType(), nullptr, in DemoteRegToStack() 38 Slot = new AllocaInst(I.getType(), nullptr, I.getName() + ".reg2mem", in DemoteRegToStack() 74 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, in DemoteRegToStack() 82 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U); in DemoteRegToStack() 100 new StoreInst(&I, Slot, &*InsertPt); in DemoteRegToStack() 101 return Slot; in DemoteRegToStack() 114 AllocaInst *Slot; in DemotePHIToStack() local 116 Slot = new AllocaInst(P->getType(), nullptr, in DemotePHIToStack() 120 Slot = new AllocaInst(P->getType(), nullptr, P->getName() + ".reg2mem", in DemotePHIToStack() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | DemoteRegToStack.cpp | 35 AllocaInst *Slot; in DemoteRegToStack() local 37 Slot = new AllocaInst(I.getType(), DL.getAllocaAddrSpace(), nullptr, in DemoteRegToStack() 40 Slot = new AllocaInst(I.getType(), DL.getAllocaAddrSpace(), nullptr, in DemoteRegToStack() 76 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, in DemoteRegToStack() 84 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U); in DemoteRegToStack() 102 new StoreInst(&I, Slot, &*InsertPt); in DemoteRegToStack() 103 return Slot; in DemoteRegToStack() 118 AllocaInst *Slot; in DemotePHIToStack() local 120 Slot = new AllocaInst(P->getType(), DL.getAllocaAddrSpace(), nullptr, in DemotePHIToStack() 124 Slot = new AllocaInst(P->getType(), DL.getAllocaAddrSpace(), nullptr, in DemotePHIToStack() [all …]
|
/external/skia/include/private/ |
D | SkTHash.h | 49 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); } in approxBytesUsed() 75 Slot& s = fSlots[index]; in find() 104 Slot& s = fSlots[index]; in remove() 115 Slot& emptySlot = fSlots[index]; in remove() 126 Slot& s = fSlots[index]; in remove() 129 emptySlot = Slot(); in remove() 137 Slot& moveFrom = fSlots[index]; in remove() 168 Slot& s = fSlots[index]; in uncheckedSet() 195 SkAutoTArray<Slot> oldSlots = std::move(fSlots); in resize() 196 fSlots = SkAutoTArray<Slot>(capacity); in resize() [all …]
|
/external/skqp/include/private/ |
D | SkTHash.h | 49 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); } in approxBytesUsed() 75 Slot& s = fSlots[index]; in find() 104 Slot& s = fSlots[index]; in remove() 115 Slot& emptySlot = fSlots[index]; in remove() 126 Slot& s = fSlots[index]; in remove() 129 emptySlot = Slot(); in remove() 137 Slot& moveFrom = fSlots[index]; in remove() 168 Slot& s = fSlots[index]; in uncheckedSet() 195 SkAutoTArray<Slot> oldSlots = std::move(fSlots); in resize() 196 fSlots = SkAutoTArray<Slot>(capacity); in resize() [all …]
|
/external/deqp/framework/delibs/depool/ |
D | dePoolHash.h | 69 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \ 74 TYPENAME##Slot* nextSlot; \ 85 TYPENAME##Slot** slotTable; \ 86 TYPENAME##Slot* slotFreeList; \ 93 const TYPENAME##Slot* curSlot; \ 220 TYPENAME##Slot* slot = hash->slotTable[slotNdx]; \ 223 TYPENAME##Slot* nextSlot = slot->nextSlot; \ 234 TYPENAME##Slot* TYPENAME##_allocSlot (DE_PTR_TYPE(TYPENAME) hash) \ 236 TYPENAME##Slot* slot; \ 243 …slot = (TYPENAME##Slot*)deMemPool_alloc(hash->pool, sizeof(TYPENAME##Slot) * DE_HASH_ELEMENTS_PER_… [all …]
|
D | dePoolSet.h | 68 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \ 73 TYPENAME##Slot* nextSlot; \ 83 TYPENAME##Slot** slotTable; \ 84 TYPENAME##Slot* slotFreeList; \ 91 const TYPENAME##Slot* curSlot; \ 228 TYPENAME##Slot* slot = set->slotTable[slotNdx]; \ 231 TYPENAME##Slot* nextSlot = slot->nextSlot; \ 242 TYPENAME##Slot* TYPENAME##_allocSlot (DE_PTR_TYPE(TYPENAME) set) \ 244 TYPENAME##Slot* slot; \ 251 …slot = (TYPENAME##Slot*)deMemPool_alloc(set->pool, sizeof(TYPENAME##Slot) * DE_SET_ELEMENTS_PER_SL… [all …]
|
/external/llvm/lib/Transforms/IPO/ |
D | ConstantMerge.cpp | 119 GlobalVariable *&Slot = CMap[Init]; in mergeConstants() local 124 if (!Slot || IsBetterCanonical(*GV, *Slot)) in mergeConstants() 125 Slot = GV; in mergeConstants() 150 GlobalVariable *Slot = CMap[Init]; in mergeConstants() local 152 if (!Slot || Slot == GV) in mergeConstants() 155 if (!Slot->hasGlobalUnnamedAddr() && !GV->hasGlobalUnnamedAddr()) in mergeConstants() 159 Slot->setUnnamedAddr(GlobalValue::UnnamedAddr::None); in mergeConstants() 162 Replacements.push_back(std::make_pair(GV, Slot)); in mergeConstants()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | ConstantMerge.cpp | 147 GlobalVariable *&Slot = CMap[Pair]; in runOnModule() local 152 if (Slot == 0 || IsBetterCannonical(*GV, *Slot)) { in runOnModule() 153 Slot = GV; in runOnModule() 180 GlobalVariable *Slot = CMap[Pair]; in runOnModule() local 182 if (!Slot || Slot == GV) in runOnModule() 185 if (!Slot->hasUnnamedAddr() && !GV->hasUnnamedAddr()) in runOnModule() 189 Slot->setUnnamedAddr(false); in runOnModule() 192 Replacements.push_back(std::make_pair(GV, Slot)); in runOnModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | ConstantMerge.cpp | 146 GlobalVariable *&Slot = CMap[Init]; in mergeConstants() local 151 if (!Slot || IsBetterCanonical(*GV, *Slot)) in mergeConstants() 152 Slot = GV; in mergeConstants() 177 GlobalVariable *Slot = CMap[Init]; in mergeConstants() local 179 if (!Slot || Slot == GV) in mergeConstants() 182 if (!Slot->hasGlobalUnnamedAddr() && !GV->hasGlobalUnnamedAddr()) in mergeConstants() 189 Slot->setUnnamedAddr(GlobalValue::UnnamedAddr::None); in mergeConstants() 192 Replacements.push_back(std::make_pair(GV, Slot)); in mergeConstants()
|
/external/u-boot/doc/ |
D | README.fsl-ddr | 165 | Configuration | |DRAM controller| Slot 1 | Slot 2 | 168 + Slot 1 | Slot 2 |Write/Read| Write | Read |-------+------+-------+------+-------+------+-----… 171 | | | Slot 1 | off | 75 | 120 | off | off | off | off | off | 30 | 30 | 173 | | | Slot 2 | off | 75 | off | off | 30 | 30 | 120 | off | off | off | 175 | | | Slot 1 | off | 75 | 120 | off | off | off | 20 | 20 | | | 177 | | | Slot 2 | off | 75 | off | off | 20 | 20 | 120 *| off | | | 179 | | | Slot 1 | off | 75 | 120 *| off | | | off | off | 20 | 20 | 181 | | | Slot 2 | off | 75 | 20 | 20 | | | 120 | off | off | off | 183 | | | Slot 1 | off | 75 | 120 *| off | | | 30 | 30 | | | 185 | | | Slot 2 | off | 75 | 30 | 30 | | | 120 *| off | | | [all …]
|
/external/llvm/lib/IR/ |
D | AttributeImpl.h | 234 const IndexAttrPair *getNode(unsigned Slot) const { in getNode() argument 235 return getTrailingObjects<IndexAttrPair>() + Slot; in getNode() 290 unsigned getSlotIndex(unsigned Slot) const { in getSlotIndex() argument 291 return getNode(Slot)->first; in getSlotIndex() 297 AttributeSet getSlotAttributes(unsigned Slot) const { in getSlotAttributes() argument 298 return AttributeSet::get(Context, *getNode(Slot)); in getSlotAttributes() 303 AttributeSetNode *getSlotNode(unsigned Slot) const { in getSlotNode() argument 304 return getNode(Slot)->second; in getSlotNode() 314 iterator begin(unsigned Slot) const { return getSlotNode(Slot)->begin(); } in begin() argument 315 iterator end(unsigned Slot) const { return getSlotNode(Slot)->end(); } in end() argument
|
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 427 public void Slot(int voffset) in Slot() method in FlatBuffers.FlatBufferBuilder 442 …ublic void AddBool(int o, bool x, bool d) { if (ForceDefaults || x != d) { AddBool(x); Slot(o); } } in AddBool() 451 …c void AddSbyte(int o, sbyte x, sbyte d) { if (ForceDefaults || x != d) { AddSbyte(x); Slot(o); } } in AddSbyte() 460 …ublic void AddByte(int o, byte x, byte d) { if (ForceDefaults || x != d) { AddByte(x); Slot(o); } } in AddByte() 469 …lic void AddShort(int o, short x, int d) { if (ForceDefaults || x != d) { AddShort(x); Slot(o); } } in AddShort() 478 …id AddUshort(int o, ushort x, ushort d) { if (ForceDefaults || x != d) { AddUshort(x); Slot(o); } } in AddUshort() 487 … public void AddInt(int o, int x, int d) { if (ForceDefaults || x != d) { AddInt(x); Slot(o); } } in AddInt() 496 …ublic void AddUint(int o, uint x, uint d) { if (ForceDefaults || x != d) { AddUint(x); Slot(o); } } in AddUint() 505 …ublic void AddLong(int o, long x, long d) { if (ForceDefaults || x != d) { AddLong(x); Slot(o); } } in AddLong() 514 …c void AddUlong(int o, ulong x, ulong d) { if (ForceDefaults || x != d) { AddUlong(x); Slot(o); } } in AddUlong() [all …]
|
/external/libchrome/base/android/jni_generator/ |
D | testMotionEvent.javap | 683 Start Length Slot Name Signature 700 Start Length Slot Name Signature 718 Start Length Slot Name Signature 748 Start Length Slot Name Signature 780 Start Length Slot Name Signature 808 Start Length Slot Name Signature 840 Start Length Slot Name Signature 862 Start Length Slot Name Signature 879 Start Length Slot Name Signature 896 Start Length Slot Name Signature [all …]
|
D | testMotionEvent.javap7 | 846 Start Length Slot Name Signature 862 Start Length Slot Name Signature 880 Start Length Slot Name Signature 909 Start Length Slot Name Signature 940 Start Length Slot Name Signature 967 Start Length Slot Name Signature 998 Start Length Slot Name Signature 1019 Start Length Slot Name Signature 1035 Start Length Slot Name Signature 1051 Start Length Slot Name Signature [all …]
|
/external/llvm/lib/Target/Mips/ |
D | MipsDelaySlotFiller.cpp | 240 RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot, 245 bool searchBackward(MachineBasicBlock &MBB, Iter Slot) const; 249 bool searchForward(MachineBasicBlock &MBB, Iter Slot) const; 254 bool searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const; 647 RegDefsUses &RegDU, InspectMemInstr& IM, Iter Slot, in searchRange() argument 694 unsigned Opcode = (*Slot).getOpcode(); in searchRange() 707 bool Filler::searchBackward(MachineBasicBlock &MBB, Iter Slot) const { in searchBackward() 716 RegDU.init(*Slot); in searchBackward() 718 if (!searchRange(MBB, ReverseIter(Slot), MBB.rend(), RegDU, MemDU, Slot, in searchBackward() 722 MBB.splice(std::next(Slot), &MBB, std::next(Filler).base()); in searchBackward() [all …]
|