Searched refs:Probe (Results 1 - 16 of 16) sorted by relevance

/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/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/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-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/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_;
H A Dremote_bitrate_estimator_abs_send_time.cc127 for (std::list<Probe>::const_iterator it = probes_.begin();
175 LOG(LS_INFO) << "Probe failed, sent at " << send_bitrate_bps
205 LOG(LS_INFO) << "Probe successful, sent at "
293 LOG(LS_INFO) << "Probe packet received: send time=" << send_time_ms
298 probes_.push_back(Probe(send_time_ms, arrival_time_ms, payload_size));
/external/llvm/lib/Target/X86/
H A DX86WinAllocaExpander.cpp44 enum Lowering { TouchAndSub, Sub, Probe }; enumerator in enum:__anon13372::X86WinAllocaExpander::Lowering
104 return Probe;
172 case Probe:
241 case Probe:
/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/v8/src/
H A Dv8.cc80 CpuFeatures::Probe(false);
H A Dflags.cc572 CpuFeatures::Probe(false);
H A Dassembler.h226 static void Probe(bool cross_compile) { function in class:v8::internal::CpuFeatures
234 Probe(false);
/external/v8/src/snapshot/
H A Dmksnapshot.cc152 i::CpuFeatures::Probe(true);
/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;

Completed in 2173 milliseconds