Searched refs:slotIndex (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/libauto-186/
H A DPointerHash.h62 int32_t slotIndex(void *pointer) const; // returns the index of the slot containing pointer, or -1 if pointer is not in the set
67 inline bool contains(void *pointer) const { return slotIndex(pointer) != -1; }
H A DPointerHash.cpp71 int32_t PointerHash::slotIndex(void *pointer) const function in class:Auto::PointerHash
114 int32_t index = slotIndex(pointer);
H A DThread.h60 inline void setScanned(void *p) { int32_t i = slotIndex(p); if (i != -1) setScanned(i); }
64 inline void setMarked(void *p) { int32_t i = slotIndex(p); if (i != -1) setMarked(i); }
H A DThreadLocalCollector.cpp63 int32_t blockIndex = _localBlocks.slotIndex(block);
542 assert(_localBlocks.slotIndex(startingBlock) != -1);
/macosx-10.10.1/libunwind-35.3/src/
H A DDwarfInstructions.hpp965 unsigned int slotIndex = regOffsetFromBaseOffset/8; local
969 return UNWIND_X86_64_REG_RBX << (slotIndex*3);
971 return UNWIND_X86_64_REG_R12 << (slotIndex*3);
973 return UNWIND_X86_64_REG_R13 << (slotIndex*3);
975 return UNWIND_X86_64_REG_R14 << (slotIndex*3);
977 return UNWIND_X86_64_REG_R15 << (slotIndex*3);
1348 unsigned int slotIndex = regOffsetFromBaseOffset/4; local
1352 return UNWIND_X86_REG_EBX << (slotIndex*3);
1354 return UNWIND_X86_REG_ECX << (slotIndex*3);
1356 return UNWIND_X86_REG_EDX << (slotIndex*
[all...]

Completed in 114 milliseconds