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

1 2 3 4 5 6 7 891011>>

  /external/v8/src/ic/arm64/
stub-cache-arm64.cc 19 // Probe primary or secondary table.
138 // Probe the primary table.
147 // Probe the secondary table.
  /external/v8/src/ic/mips/
stub-cache-mips.cc 143 // Probe the primary table.
147 // Primary miss: Compute hash for secondary probe.
154 // Probe the secondary table.
  /external/v8/src/ic/mips64/
stub-cache-mips64.cc 146 // Probe the primary table.
150 // Primary miss: Compute hash for secondary probe.
157 // Probe the secondary table.
  /external/v8/src/ic/ppc/
stub-cache-ppc.cc 164 // Probe the primary table.
168 // Primary miss: Compute hash for secondary probe.
174 // Probe the secondary table.
  /external/v8/src/ic/s390/
stub-cache-s390.cc 159 // Probe the primary table.
163 // Primary miss: Compute hash for secondary probe.
169 // Probe the secondary table.
  /external/v8/src/ic/x64/
stub-cache-x64.cc 138 // Probe the primary table.
141 // Primary miss: Compute hash for secondary probe.
150 // Probe the secondary table.
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 94 /** Timestamp of last Beacon/Probe Response frame */
96 /** Time of the last update (i.e., Beacon or Probe Response RX) */
104 /** Length of the following IE field in octets (from Probe Response) */
  /external/iputils/
traceroute6.c 66 * internet host. We find out intermediate hops by launching probe
74 * round trip time of each probe. If the probe answers come from
78 * probe.
80 * Probe packets are UDP format. We don't want the destination
163 * icmp's) until we probe with a ttl that's at least twice the path
205 * of the "likely" range). To keep track of which probe is being
208 * port number before each probe.
317 u_short port = 32768+666; /* start udp dest port # for probe packets */
343 int ch, i, on, probe, seq, tos, ttl local
    [all...]
  /external/icu/icu4c/source/test/letest/
PortableFontInstance.cpp 209 le_uint16 probe = fDirPower; local
215 while (probe > (1 << 0)) {
216 probe >>= 1;
218 if (SWAPL(fDirectory->tableDirectory[table + probe].tag) <= tag) {
219 table += probe;
  /external/icu/icu4c/source/test/perf/leperf/
PortableFontInstance.cpp 208 le_uint16 probe = fDirPower; local
214 while (probe > (1 << 0)) {
215 probe >>= 1;
217 if (SWAPL(fDirectory->tableDirectory[table + probe].tag) <= tag) {
218 table += probe;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
IndicInputMethodImpl.java 67 int probe = power; local
74 while (probe > (1 << 0)) {
75 probe >>= 1;
77 if (JOIN_WITH_NUKTA[index + probe] <= ch) {
78 index += probe;
  /external/jacoco/org.jacoco.doc/docroot/doc/
classids.html 137 few probes are inserted at "strategic" places. These probe positions are
140 <code>n</code> boolean flags indicating whether the probe has been executed or
146 file is used to get information about probe execution status. But as probes
150 time. Because this is a deterministic process we get the same probe positions.
158 we would end-up with different probes. For example the probe at index
  /external/v8/src/
compilation-cache.cc 96 // Probe the script generation tables. Make sure not to leak handles
151 // Probe the script generation tables. Make sure not to leak handles
156 Handle<Object> probe = table->Lookup(source, context, language_mode); local
157 if (probe->IsSharedFunctionInfo()) {
159 Handle<SharedFunctionInfo>::cast(probe);
  /external/sfntly/cpp/src/sfntly/table/core/
name_table.cc 300 NameEntryId probe(platform_id, encoding_id, language_id, name_id);
302 return (name_entry_map_.find(probe) != name_entry_map_.end());
310 NameEntryId probe(platform_id, encoding_id, language_id, name_id);
313 if (name_entry_map_.find(probe) != name_entry_map_.end()) {
314 return name_entry_map_[probe];
316 NameEntryBuilderPtr builder = new NameEntryBuilder(probe);
317 name_entry_map_[probe] = builder;
325 NameEntryId probe(platform_id, encoding_id, language_id, name_id);
327 NameEntryBuilderMap::iterator position = name_entry_map_.find(probe);
423 NameEntryId probe = builder_entry->name_entry_id() local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaEnvReverbTest.java 352 EnergyProbe probe = null; local
364 probe = new EnergyProbe(0);
389 int energy1000 = probe.capture(1000);
412 if (probe != null) {
413 probe.release();
426 EnergyProbe probe = null; local
464 // create probe after reverb so that it is chained behind the reverb in the
466 probe = new EnergyProbe(0);
474 int energy1000 = probe.capture(1000);
499 if (probe != null)
    [all...]
  /art/runtime/jdwp/
jdwp_socket.cc 66 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe);
116 static JdwpSocketState* SocketStartup(JdwpState* state, uint16_t port, bool probe) {
124 PLOG(probe ? ERROR : FATAL) << "Socket create failed";
132 PLOG(probe ? ERROR : FATAL) << "setsockopt(SO_REUSEADDR) failed";
146 PLOG(probe ? ERROR : FATAL) << "Attempt to bind to port " << port << " failed";
153 PLOG(probe ? ERROR : FATAL) << "Listen failed";
171 * (This is currently called several times during startup as we probe
  /external/fio/
server.c 74 "PROBE",
671 struct cmd_probe_reply_pdu probe; local
674 dprint(FD_NET, "server: sending probe reply\n");
678 memset(&probe, 0, sizeof(probe));
679 gethostname((char *) probe.hostname, sizeof(probe.hostname));
681 probe.bigendian = 1;
683 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version))
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 283 void *Probe = OldBuckets[i];
284 if (!Probe) continue;
285 while (Node *NodeInBucket = GetNextPtr(Probe)) {
287 Probe = NodeInBucket->getNextInBucket();
309 void *Probe = *Bucket;
314 while (Node *NodeInBucket = GetNextPtr(Probe)) {
319 Probe = NodeInBucket->getNextInBucket();
424 void *Probe = NodePtr->getNextInBucket();
426 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
430 void **Bucket = GetBucketPtr(Probe);
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_registrar.c 1086 * wps_registrar_probe_req_rx - Notify Registrar of Probe Request
1088 * @addr: MAC address of the Probe Request sender
1091 * This function is called on an AP when a Probe Request with WPS IE is
1103 "WPS: Probe Request with WPS data received",
1111 "Probe Request");
1117 "in Probe Request");
1142 wpa_printf(MSG_DEBUG, "WPS: Probe Request for PBC received from "
1145 wpa_printf(MSG_DEBUG, "WPS: Invalid Probe Request WPS IE: No "
1149 wpa_hexdump(MSG_DEBUG, "WPS: UUID-E from Probe Request", attr.uuid_e,
1160 "based on Probe Request from the Enrollee
1245 struct wpabuf *probe; local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
ProbeInserterTest.java 241 // The locals in this frame are filled with TOP up to the probe variable
253 // The locals in this frame are filled with TOP up to the probe variable
266 // The locals in this frame are filled with TOP up to the probe variable
  /system/connectivity/shill/cellular/
active_passive_out_of_credits_detector.cc 103 SLOG(this, 2) << "Portal detection failed. Launching active probe "
132 SLOG(this, 2) << "Requesting active probe for out-of-credit detection.";
176 LOG(WARNING) << "Active probe determined possible out-of-credits "
  /cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
EncryptionAppTest.java 408 final File probe = new File(otherContext.getFilesDir(), local
411 Log.d(TAG, "Waiting for " + probe + "...");
412 if (probe.exists()) {
417 throw new AssertionError("Failed to find " + probe);
  /developers/build/prebuilts/gradle/ActivityInstrumentation/
README.md 5 This sample provides a basic example of using an InstrumentationTest to probe the
  /developers/samples/android/testing/ActivityInstrumentation/
README.md 5 This sample provides a basic example of using an InstrumentationTest to probe the
  /development/ndk/platforms/android-3/include/linux/mmc/
card.h 93 int (*probe)(struct mmc_card *); member in struct:mmc_driver

Completed in 677 milliseconds

1 2 3 4 5 6 7 891011>>