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

  /external/v8/src/
hashmap.cc 66 Entry* p = Probe(key, hash);
81 p = Probe(key, hash);
94 Entry* p = Probe(key, hash);
178 HashMap::Entry* HashMap::Probe(void* key, uint32_t hash) {
  /external/llvm/lib/VMCore/
DebugInfoProbe.cpp 1 //===-- DebugInfoProbe.cpp - DebugInfo Probe ------------------------------===//
10 // This file implements DebugInfoProbe. This probe can be used by a pass
32 EnableDebugInfoProbe("enable-debug-info-probe", cl::Hidden,
33 cl::desc("Enable debug info probe"));
208 DebugInfoProbe *&Probe = Entry.getValue();
209 if (!Probe)
210 Probe = new DebugInfoProbe();
211 Probe->initialize(P->getPassName(), F);
222 DebugInfoProbe *&Probe = Entry.getValue();
223 assert (Probe && "DebugInfoProbe is not initialized!")
    [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 576 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket();
577 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1;
  /external/v8/src/arm/
assembler-arm.cc 74 void CpuFeatures::Probe() {
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 58 void CpuFeatures::Probe() {
136 F0 probe = FUNCTION_CAST<F0>(reinterpret_cast<Address>(memory->address())); local
137 supported_ = probe();
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 52 void CpuFeatures::Probe(bool portable) {
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 49 void CpuFeatures::Probe() {
137 F0 probe = FUNCTION_CAST<F0>(reinterpret_cast<Address>(memory->address())); local
138 supported_ = probe();
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86str.h 305 Bool (*Probe)(struct _DriverRec *drv, int flags);
315 Bool (*Probe)(struct _DriverRec *drv, int flags);
817 * Flags for driver Probe() functions.
982 xf86ProbeProc *Probe;
    [all...]

Completed in 183 milliseconds