Searched defs:Probe (Results 1 - 7 of 7) sorted by path

/external/llvm/include/llvm/ADT/
H A DFoldingSet.h690 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket(); local
691 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;
/external/llvm/lib/Support/
H A DFoldingSet.cpp262 void *Probe = OldBuckets[i]; local
263 if (!Probe) continue;
264 while (Node *NodeInBucket = GetNextPtr(Probe)) {
266 Probe = NodeInBucket->getNextInBucket();
288 void *Probe = *Bucket; local
293 while (Node *NodeInBucket = GetNextPtr(Probe)) {
298 Probe = NodeInBucket->getNextInBucket();
403 void *Probe = NodePtr->getNextInBucket(); local
405 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
409 void **Bucket = GetBucketPtr(Probe);
[all...]
/external/v8/src/arm/
H A Dassembler-arm.cc82 void CpuFeatures::Probe() { function in class:v8::internal::CpuFeatures
111 // Probe for additional features not already known to be available.
/external/v8/src/
H A Dhashmap.h97 Entry* Probe(void* key, uint32_t hash);
122 Entry* p = Probe(key, hash);
137 p = Probe(key, hash);
151 Entry* p = Probe(key, hash);
240 typename TemplateHashMapImpl<P>::Entry* TemplateHashMapImpl<P>::Probe(void* key, function in class:v8::TemplateHashMapImpl
/external/v8/src/ia32/
H A Dassembler-ia32.cc58 // The Probe method needs executable memory, so it uses Heap::CreateCode.
60 void CpuFeatures::Probe() { function in class:v8::internal::CpuFeatures
/external/v8/src/mips/
H A Dassembler-mips.cc76 void CpuFeatures::Probe() { function in class:v8::internal::CpuFeatures
102 // Probe for additional features not already known to be available.
/external/v8/src/x64/
H A Dassembler-x64.cc49 void CpuFeatures::Probe() { function in class:v8::internal::CpuFeatures

Completed in 162 milliseconds