Searched defs:Probe (Results 1 - 12 of 12) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DDebugInfoProbe.cpp1 //===-- DebugInfoProbe.cpp - DebugInfo Probe ------------------------------===//
208 DebugInfoProbe *&Probe = Entry.getValue(); local
209 if (!Probe)
210 Probe = new DebugInfoProbe();
211 Probe->initialize(P->getPassName(), F);
222 DebugInfoProbe *&Probe = Entry.getValue(); local
223 assert (Probe && "DebugInfoProbe is not initialized!");
224 Probe->finalize(F);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimator_abs_send_time.h30 struct Probe { struct in namespace:webrtc
31 Probe(int64_t send_time_ms, int64_t recv_time_ms, size_t payload_size) function in struct:webrtc::Probe
145 std::list<Probe> probes_;
/external/llvm/lib/Target/X86/
H A DX86WinAllocaExpander.cpp44 enum Lowering { TouchAndSub, Sub, Probe }; enumerator in enum:__anon14603::X86WinAllocaExpander::Lowering
104 return Probe;
172 case Probe:
241 case Probe:
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_itanium.cc100 unsigned Probe = First; local
102 if (!__ubsan_vptr_hash_set[Probe] || __ubsan_vptr_hash_set[Probe] == V)
103 return &__ubsan_vptr_hash_set[Probe];
104 Probe += ((V >> 16) & 65535) + 1;
105 if (Probe >= HashTableSize)
106 Probe -= HashTableSize;
/external/llvm/lib/Support/
H A DFoldingSet.cpp283 void *Probe = OldBuckets[i]; local
284 if (!Probe) continue;
285 while (Node *NodeInBucket = GetNextPtr(Probe)) {
287 Probe = NodeInBucket->getNextInBucket();
324 void *Probe = *Bucket; local
329 while (Node *NodeInBucket = GetNextPtr(Probe)) {
334 Probe = NodeInBucket->getNextInBucket();
439 void *Probe = NodePtr->getNextInBucket(); local
441 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
445 void **Bucket = GetBucketPtr(Probe);
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DFoldingSet.cpp260 void *Probe = OldBuckets[i]; local
261 if (!Probe) continue;
262 while (Node *NodeInBucket = GetNextPtr(Probe)) {
264 Probe = NodeInBucket->getNextInBucket();
286 void *Probe = *Bucket; local
291 while (Node *NodeInBucket = GetNextPtr(Probe)) {
296 Probe = NodeInBucket->getNextInBucket();
401 void *Probe = NodePtr->getNextInBucket(); local
403 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
407 void **Bucket = GetBucketPtr(Probe);
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DFoldingSet.cpp283 void *Probe = OldBuckets[i]; local
284 if (!Probe) continue;
285 while (Node *NodeInBucket = GetNextPtr(Probe)) {
287 Probe = NodeInBucket->getNextInBucket();
324 void *Probe = *Bucket; local
329 while (Node *NodeInBucket = GetNextPtr(Probe)) {
334 Probe = NodeInBucket->getNextInBucket();
439 void *Probe = NodePtr->getNextInBucket(); local
441 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
445 void **Bucket = GetBucketPtr(Probe);
[all...]
/external/v8/src/base/
H A Dhashmap.h122 Entry* Probe(const Key& key, uint32_t hash) const;
164 Entry* entry = Probe(key, hash);
184 Entry* entry = Probe(key, hash);
197 Entry* entry = Probe(key, hash);
206 Entry* p = Probe(key, hash);
298 TemplateHashMapImpl<Key, Value, MatchFun, AllocationPolicy>::Probe( function in class:TemplateHashMapImpl
326 entry = Probe(key, hash);
359 Entry* new_entry = Probe(entry->key, entry->hash);
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h674 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket(); local
675 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DFoldingSet.h576 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket(); local
577 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DFoldingSet.h686 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket(); local
687 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;
/external/v8/src/
H A Dassembler.h226 static void Probe(bool cross_compile) { function in class:v8::internal::CpuFeatures
234 Probe(false);

Completed in 353 milliseconds