HomeSort by relevance Sort by last modified time
    Searched full:probe (Results 126 - 150 of 1009) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/lib/ubsan/
ubsan_type_hash_itanium.cc 100 unsigned Probe = First;
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;
108 // FIXME: Pick a random entry from the probe sequence to evict rather than
  /external/fio/
gfio.h 73 struct probe_widget probe; member in struct:gui
122 struct probe_widget probe; member in struct:gui_entry
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
sample_probe_fn.hpp 38 * Contains a sample probe policy.
46 /// A sample probe policy.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
sample_probe_fn.hpp 38 * Contains a sample probe policy.
46 /// A sample probe policy.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/hash_fn/
sample_probe_fn.hpp 38 * Contains a sample probe policy.
46 /// A sample probe policy.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/hash_fn/
sample_probe_fn.hpp 38 * Contains a sample probe policy.
46 /// A sample probe policy.
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 62 * field to also use it as a "probe" -- a self-adjusting thread
130 int probe = (p == 0) ? 1 : p; // skip 0 local
134 U.putInt(t, PROBE, probe);
143 if (U.getInt(Thread.currentThread(), PROBE) == 0)
910 U.putInt(Thread.currentThread(), PROBE, probe); local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaPresetReverbTest.java 197 EnergyProbe probe = null; local
209 probe = new EnergyProbe(0);
232 int energy1000 = probe.capture(1000);
255 if (probe != null) {
256 probe.release();
269 EnergyProbe probe = null; local
305 // create probe after reverb so that it is chained behind the reverb in the
307 probe = new EnergyProbe(0);
315 int energy1000 = probe.capture(1000);
340 if (probe != null)
    [all...]
  /developers/samples/android/testing/ActivityInstrumentation/
template-params.xml 30 This sample provides a basic example of using an InstrumentationTest to probe the
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_is_capture_device.cc 25 printf("[Error] Can not probe caps on device '%s'\n", argv[1]);
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/
control.vaapi 7 PURPOSE = 'Probe for the video decoding capability'
  /external/compiler-rt/lib/builtins/i386/
chkstk2.S 8 // _chkstk (_alloca) routine - probe stack between %esp and (%esp-%eax) in 4k increments,
  /external/compiler-rt/lib/builtins/x86_64/
chkstk2.S 8 // _chkstk (_alloca) routine - probe stack between %rsp and (%rsp-%rax) in 4k increments,
  /external/icu/icu4c/source/layout/
PairPositioningSubtables.cpp 151 le_uint16 probe = power * recordSize;
159 while (probe > recordSize) {
160 probe >>= 1;
161 trial = (const PairValueRecord *) ((char *) record + probe);
KernTable.cpp 222 le_uint32 probe = searchRange;
224 while (probe > KERN_PAIRINFO_SIZE && LE_SUCCESS(success)) {
225 probe >>= 1;
226 tpRef = LEReferenceTo<PairInfo>(pairs, success, p, probe); // (char*)p + probe
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
ClassProbesVisitor.java 18 * A {@link ClassVisitor} with additional methods to get probe insertion
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
OfflineInstrumentationAccessGenerator.java 22 * obtain probe arrays. This generator is designed for offline instrumentation
  /external/llvm/test/CodeGen/ARM/Windows/
stack-probe-non-default.ll 19 attributes #0 = { "stack-probe-size"="8096" }
  /bootable/recovery/minzip/
Hash.c 154 /* probe for new spot, wrapping around */
176 * We probe on collisions, wrapping around the table.
189 /* jump to the first entry and probe for a match */
254 /* jump to the first entry and probe for a match */
300 * Look up an entry, counting the number of times we have to probe.
315 /* jump to the first entry and probe for a match */
376 LOGV("Probe: min=%d max=%d, total=%d in %d (%d), avg=%.3f\n",
  /external/e2fsprogs/lib/blkid/
Makefile.in 21 OBJS= cache.o dev.o devname.o devno.o getsize.o llseek.o probe.o \
25 $(srcdir)/getsize.c $(srcdir)/llseek.c $(srcdir)/probe.c \
99 tst_probe: $(srcdir)/probe.c $(DEPLIBS_BLKID)
101 $(Q) $(CC) -o tst_probe -DTEST_PROGRAM $(srcdir)/probe.c $(LIBS_BLKID) $(ALL_CFLAGS)
211 probe.o: $(srcdir)/probe.c $(top_builddir)/lib/config.h \
213 $(srcdir)/probe.h
  /frameworks/compile/mclinker/include/mcld/ADT/
HashBase.tcc 123 const unsigned int probe = 1;
150 index += probe;
166 const unsigned int probe = 1;
181 index += probe;
224 // Otherwise probe for a spot.
225 const unsigned int probe = 1;
227 new_bucket += probe;
  /external/icu/icu4c/source/common/
usc_impl.c 163 int32_t probe = pairedCharPower; local
170 while (probe > (1 << 0)) {
171 probe >>= 1;
173 if (ch >= pairedChars[pairIndex + probe]) {
174 pairIndex += probe;
uvectr32.cpp 309 int32_t probe = (min + max) / 2; local
310 //int8_t c = (*compare)(elements[probe], tok);
312 if (elements[probe] > tok) {
313 max = probe;
316 min = probe + 1;
  /external/v8/src/ic/ia32/
stub-cache-ia32.cc 65 // probe, and need to be dropped before calling the handler.
126 // probe, and need to be dropped before calling the handler.
188 // Probe the primary table.
192 // Primary miss: Compute hash for secondary probe.
201 // Probe the secondary table.
  /external/v8/src/ic/x87/
stub-cache-x87.cc 65 // probe, and need to be dropped before calling the handler.
126 // probe, and need to be dropped before calling the handler.
188 // Probe the primary table.
192 // Primary miss: Compute hash for secondary probe.
201 // Probe the secondary table.

Completed in 648 milliseconds

1 2 3 4 56 7 8 91011>>