Home
last modified time | relevance | path

Searched refs:probe (Results 51 - 75 of 121) sorted by relevance

12345

/third_party/ffmpeg/libavformat/
H A Dmm.c61 static int probe(const AVProbeData *p) in probe() function
196 .read_probe = probe,
H A Dact.c38 static int probe(const AVProbeData *p) in probe() function
205 .read_probe = probe,
H A Danm.c51 static int probe(const AVProbeData *p) in probe() function
222 .read_probe = probe,
H A Dicodec.c45 static int probe(const AVProbeData *p) in probe() function
224 .read_probe = probe,
H A Dmca.c36 static int probe(const AVProbeData *p) in probe() function
225 .read_probe = probe,
H A Dffmetadec.c29 static int probe(const AVProbeData *p) in probe() function
228 .read_probe = probe,
H A Dbink.c64 static int probe(const AVProbeData *p) in probe() function
331 .read_probe = probe,
/third_party/ffmpeg/tools/
H A Dprobetest.c38 static void probe(AVProbeData *pd, int type, int p, int size) in probe() function
194 probe(&pd, type, p, size); in main()
/third_party/icu/tools/colprobe/
H A Dsortedlines.h33 StrengthProbe probe; member in SortedLines
55 SortedLines(const UnicodeSet &set, const UnicodeSet &excludeBounds, const StrengthProbe &probe, UPrinter *logger, UPrinter *debug);
/third_party/toybox/toys/pending/
H A Dtraceroute.c37 -t Type-of-service in probe packets (default 0)(RANGE 0 to 255)
109 //sends a single probe packet with sequence(SEQ) and time-to-live(TTL)
141 //sends a single probe packet with sequence(SEQ) and time-to-live(TTL)
208 int probe, dest_reach = 0, print_verbose = 1; in do_trace() local
216 for (probe = 0, seq = 0; probe < TT.ttl_probes; ++probe) { in do_trace()
221 if (probe && (toys.optflags & FLAG_z)) msleep(TT.pause_time); in do_trace()
618 error_exit("probe addr failed"); in traceroute_main()
/third_party/icu/icu4c/source/common/
H A Duvector.cpp469 int32_t probe = (min + max) / 2; in sortedInsert() local
470 int32_t c = (*compare)(elements[probe], e); in sortedInsert()
472 max = probe; in sortedInsert()
475 min = probe + 1; in sortedInsert()
/third_party/node/deps/icu-small/source/common/
H A Duvector.cpp469 int32_t probe = (min + max) / 2; in sortedInsert() local
470 int32_t c = (*compare)(elements[probe], e); in sortedInsert()
472 max = probe; in sortedInsert()
475 min = probe + 1; in sortedInsert()
/third_party/python/Lib/test/test_asyncio/
H A Dtest_windows_events.py261 async def probe(): function
273 await probe()
282 await self.loop.create_task(probe())
289 await probe()
/third_party/skia/third_party/externals/icu/source/common/
H A Duvector.cpp468 int32_t probe = (min + max) / 2; in sortedInsert() local
469 int8_t c = (*compare)(elements[probe], e); in sortedInsert()
471 max = probe; in sortedInsert()
474 min = probe + 1; in sortedInsert()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_registrar.c1306 struct wpabuf *probe; in wps_set_ie() local
1323 probe = wpabuf_alloc(500 + vendor_len); in wps_set_ie()
1324 if (!beacon || !probe) in wps_set_ie()
1352 if (wps_build_version(probe) || in wps_set_ie()
1353 wps_build_wps_state(reg->wps, probe) || in wps_set_ie()
1354 wps_build_ap_setup_locked(reg->wps, probe) || in wps_set_ie()
1355 wps_build_selected_registrar(reg, probe) || in wps_set_ie()
1356 wps_build_sel_reg_dev_password_id(reg, probe) || in wps_set_ie()
1357 wps_build_sel_reg_config_methods(reg, probe) || in wps_set_ie()
1358 wps_build_resp_type(probe, re in wps_set_ie()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_tests.c242 float *probe = &pixels[(y*w + x)*4]; in util_probe_rect_rgba_multi() local
245 if (fabs(probe[c] - expected[e*4+c]) >= TOLERANCE) { in util_probe_rect_rgba_multi()
254 probe[0], probe[1], probe[2], probe[3]); in util_probe_rect_rgba_multi()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DNameTable.java1357 NameEntryId probe = new NameEntryId(platformId, encodingId, languageId, nameId); in has()
1358 return this.getNameBuilders().containsKey(probe); in has()
1363 NameEntryId probe = new NameEntryId(platformId, encodingId, languageId, nameId); in nameBuilder()
1364 NameEntryBuilder builder = this.getNameBuilders().get(probe); in nameBuilder()
1366 builder = new NameEntryBuilder(probe); in nameBuilder()
1367 this.getNameBuilders().put(probe, builder); in nameBuilder()
1373 NameEntryId probe = new NameEntryId(platformId, encodingId, languageId, nameId); in remove()
1374 return (this.getNameBuilders().remove(probe) != null); in remove()
/third_party/backends/lib/
H A Dalloca.c166 auto char probe; /* Probes stack depth: */ local
167 register char *depth = ADDRESS_FUNCTION (probe);
/third_party/ffmpeg/libavcodec/
H A Dv4l2_context.h118 * @param[in] probe Probe only and ignore changes to the format.
121 int ff_v4l2_context_get_format(V4L2Context* ctx, int probe);
H A Dv4l2_m2m.c62 static int v4l2_prepare_contexts(V4L2m2mContext *s, int probe) in v4l2_prepare_contexts() argument
79 av_log(log_ctx, probe ? AV_LOG_DEBUG : AV_LOG_INFO, in v4l2_prepare_contexts()
/third_party/pulseaudio/src/modules/alsa/
H A Dalsa-util.c1729 snd_mixer_t *pa_alsa_open_mixer(pa_hashmap *mixers, int alsa_card_index, bool probe) { in pa_alsa_open_mixer() argument
1731 snd_mixer_t *m = pa_alsa_open_mixer_by_name(mixers, md, probe); in pa_alsa_open_mixer()
1736 pa_alsa_mixer *pa_alsa_create_mixer(pa_hashmap *mixers, const char *dev, snd_mixer_t *m, bool probe) { in pa_alsa_create_mixer() argument
1743 pm->used_for_probe_only = probe; in pa_alsa_create_mixer()
1749 snd_mixer_t *pa_alsa_open_mixer_by_name(pa_hashmap *mixers, const char *dev, bool probe) { in pa_alsa_open_mixer_by_name() argument
1760 if (!probe) in pa_alsa_open_mixer_by_name()
1798 pm = pa_alsa_create_mixer(mixers, dev_idx, m, probe); in pa_alsa_open_mixer_by_name()
1801 pm2 = pa_alsa_create_mixer(mixers, dev_id, m, probe); in pa_alsa_open_mixer_by_name()
1813 pm = pa_alsa_create_mixer(mixers, dev, m, probe); in pa_alsa_open_mixer_by_name()
1823 snd_mixer_t *pa_alsa_open_mixer_for_pcm(pa_hashmap *mixers, snd_pcm_t *pcm, bool probe) { in pa_alsa_open_mixer_for_pcm() argument
[all...]
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/
H A Dbootstrap.py37 def probe(cls, env=None): member in ButlerBootstrap
41 env (dict): The environment to probe. If None, `os.getenv` will be used.
/third_party/backends/backend/
H A Dp5.h195 static P5_Model *probe (const char *devicename);
/third_party/curl/lib/
H A Ddoh.h68 struct dnsprobe probe[DOH_PROBE_SLOTS]; member
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRuleBasedBreakIterator.java1828 int probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2; in seek()
1829 probe = modChunkSize(probe); in seek()
1830 if (fBoundaries[probe] > pos) { in seek()
1831 max = probe; in seek()
1833 min = modChunkSize(probe + 1); in seek()

Completed in 22 milliseconds

12345