HomeSort by relevance Sort by last modified time
    Searched defs:Probe (Results 1 - 7 of 7) sorted by null

  /external/ceres-solver/include/ceres/
gradient_checker.h 59 // CostFunction, and then call Probe(). Check that the return value is
68 // Here we stash some results from the probe, for later
92 // probe_point: The parameter values at which to probe.
95 // this amount, then the probe fails.
104 static bool Probe(double const* const* probe_point,
110 LOG(INFO) << "-------------------- Starting Probe() --------------------";
  /external/chromium_org/chrome/browser/net/
dns_probe_service_unittest.cc 36 void Probe() {
60 Probe();
126 // New rules should apply, since a new probe should be run.
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.cc 99 unsigned Probe = First;
101 if (!__ubsan_vptr_hash_set[Probe] || __ubsan_vptr_hash_set[Probe] == V)
102 return &__ubsan_vptr_hash_set[Probe];
103 Probe += ((V >> 16) & 65535) + 1;
104 if (Probe >= HashTableSize)
105 Probe -= HashTableSize;
107 // FIXME: Pick a random entry from the probe sequence to evict rather than
  /external/chromium_org/v8/src/
hashmap.h 91 Entry* Probe(void* key, uint32_t hash);
117 Entry* p = Probe(key, hash);
133 p = Probe(key, hash);
147 Entry* p = Probe(key, hash);
240 TemplateHashMapImpl<AllocationPolicy>::Probe(void* key, uint32_t hash) {
assembler.h 172 static void Probe(bool cross_compile) {
180 Probe(false);
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 260 void *Probe = OldBuckets[i];
261 if (!Probe) continue;
262 while (Node *NodeInBucket = GetNextPtr(Probe)) {
264 Probe = NodeInBucket->getNextInBucket();
286 void *Probe = *Bucket;
291 while (Node *NodeInBucket = GetNextPtr(Probe)) {
296 Probe = NodeInBucket->getNextInBucket();
401 void *Probe = NodePtr->getNextInBucket();
403 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
407 void **Bucket = GetBucketPtr(Probe);
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 695 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket();
696 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;

Completed in 970 milliseconds