Home
last modified time | relevance | path

Searched refs:guess (Results 1 - 25 of 37) sorted by relevance

12

/third_party/node/deps/v8/src/base/numbers/
H A Dstrtod.cc342 // The variable guess should be a close guess that is either the correct double
349 double guess) { in BignumStrtod()
350 if (guess == std::numeric_limits<double>::infinity()) { in BignumStrtod()
351 return guess; in BignumStrtod()
354 DiyFp upper_boundary = Double(guess).UpperBoundary(); in BignumStrtod()
380 return guess; in BignumStrtod()
382 return Double(guess).NextDouble(); in BignumStrtod()
383 } else if ((Double(guess).Significand() & 1) == 0) { in BignumStrtod()
385 return guess; in BignumStrtod()
348 BignumStrtod(Vector<const char> buffer, int exponent, double guess) BignumStrtod() argument
409 double guess; Strtod() local
[all...]
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dstrtod.cc417 // Returns true if the guess is the correct double.
418 // Returns false, when guess is either correct or the next-lower double.
420 double* guess) {
422 *guess = 0.0;
426 *guess = Double::Infinity();
430 *guess = 0.0;
434 if (DoubleStrtod(trimmed, exponent, guess) ||
435 DiyFpStrtod(trimmed, exponent, guess)) {
438 if (*guess == Double::Infinity()) {
469 double guess;
[all...]
/third_party/icu/icu4c/source/i18n/
H A Ddouble-conversion-strtod.cpp431 // Returns true if the guess is the correct double.
432 // Returns false, when guess is either correct or the next-lower double.
434 double* guess) {
436 *guess = 0.0;
440 *guess = Double::Infinity();
444 *guess = 0.0;
448 if (DoubleStrtod(trimmed, exponent, guess) ||
449 DiyFpStrtod(trimmed, exponent, guess)) {
452 if (*guess == Double::Infinity()) {
485 double guess;
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-strtod.cpp431 // Returns true if the guess is the correct double.
432 // Returns false, when guess is either correct or the next-lower double.
434 double* guess) {
436 *guess = 0.0;
440 *guess = Double::Infinity();
444 *guess = 0.0;
448 if (DoubleStrtod(trimmed, exponent, guess) ||
449 DiyFpStrtod(trimmed, exponent, guess)) {
452 if (*guess == Double::Infinity()) {
485 double guess;
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-strtod.cpp431 // Returns true if the guess is the correct double.
432 // Returns false, when guess is either correct or the next-lower double.
434 double* guess) {
436 *guess = 0.0;
440 *guess = Double::Infinity();
444 *guess = 0.0;
448 if (DoubleStrtod(trimmed, exponent, guess) ||
449 DiyFpStrtod(trimmed, exponent, guess)) {
452 if (*guess == Double::Infinity()) {
485 double guess;
[all...]
/third_party/node/lib/internal/modules/esm/
H A Dresolve.js177 let guess;
180 if (fileExists(guess = new URL(`./${packageConfig.main}`, packageJSONUrl))) {
181 return guess;
182 } else if (fileExists(guess = new URL(`./${packageConfig.main}.js`, packageJSONUrl))) {
184 } else if (fileExists(guess = new URL(`./${packageConfig.main}.json`, packageJSONUrl))) {
186 } else if (fileExists(guess = new URL(`./${packageConfig.main}.node`, packageJSONUrl))) {
188 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index.js`, packageJSONUrl))) {
190 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index.json`, packageJSONUrl))) {
192 } else if (fileExists(guess = new URL(`./${packageConfig.main}/index.node`, packageJSONUrl))) {
195 guess
[all...]
/third_party/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp502 int guess = -1; in doBinarySearch() local
505 if (newGuess == guess) in doBinarySearch()
507 guess = newGuess; in doBinarySearch()
509 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name); in doBinarySearch()
515 hi = guess; in doBinarySearch()
517 lo = guess; in doBinarySearch()
540 int guess = -1; in doBinarySearch() local
543 if (newGuess == guess) in doBinarySearch()
545 guess = newGuess; in doBinarySearch()
549 ri = strcmp((gSortedLines[line])->icuSortKey, (gSortedLines[guess]) in doBinarySearch()
591 int guess = -1; doBinarySearch() local
642 int guess = -1; doBinarySearch() local
[all...]
/third_party/ffmpeg/libavutil/
H A Dfixed_dsp.h178 int retval, bit_mask, guess, square, i; in fixed_sqrt() local
191 guess = retval + bit_mask; in fixed_sqrt()
192 accu = (int64_t)guess * guess; in fixed_sqrt()
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DCollationPerformanceTest.java345 int guess = -1; in doBinarySearch()
348 if(newGuess == guess){ in doBinarySearch()
351 guess = newGuess; in doBinarySearch()
352 r = tests[j].compareTo(tests[guess]); in doBinarySearch()
358 hi = guess; in doBinarySearch()
360 lo = guess; in doBinarySearch()
376 int guess = -1; in doBinarySearch()
379 if(newGuess == guess){ in doBinarySearch()
382 guess = newGuess; in doBinarySearch()
383 r = com.ibm.icu.text.Normalizer.compare(tests[j], tests[guess], Normalize in doBinarySearch()
[all...]
/third_party/python/Lib/
H A Dmimetypes.py5 guess_type(url, strict=True) -- guess the MIME type and encoding of a URL.
7 guess_extension(type, strict=True) -- guess the extension for a given MIME type.
69 URL, and can guess a reasonable extension given a MIME type.
611 --extension / -e -- guess extension instead of type
638 guess = guess_extension(gtype, strict)
639 if not guess: print("I don't know anything about type", gtype)
640 else: print(guess)
642 guess, encoding = guess_type(gtype, strict)
643 if not guess: print("I don't know anything about type", gtype)
644 else: print('type:', guess, 'encodin
[all...]
/third_party/node/deps/uvwasi/src/
H A Duv_mapping.c258 uv_handle_type guess; in uvwasi__get_filetype_by_fd() local
263 guess = uv_guess_handle(fd); in uvwasi__get_filetype_by_fd()
264 if (guess == UV_TTY || guess == UV_FILE) { in uvwasi__get_filetype_by_fd()
/third_party/ffmpeg/tests/fate/
H A Dmov.mak32 fate-mov-guess-delay-1 \
33 fate-mov-guess-delay-2 \
34 fate-mov-guess-delay-3 \
121 fate-mov-guess-delay-1: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries stream=has_b_frames -select_streams v $(TARGET_SAMPLES)/h264/h264_3bf_nopyramid_nobsrestriction.mp4
122 fate-mov-guess-delay-2: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries stream=has_b_frames -select_streams v $(TARGET_SAMPLES)/h264/h264_3bf_pyramid_nobsrestriction.mp4
123 fate-mov-guess-delay-3: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries stream=has_b_frames -select_streams v $(TARGET_SAMPLES)/h264/h264_4bf_pyramid_nobsrestriction.mp4
/third_party/backends/tools/
H A Dupdate-upstreams.sh19 for file in config.guess config.sub; do
/third_party/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp425 int guess; in binary_search() local
429 guess = (high + low)/2; in binary_search()
430 if (last_guess == guess) break; // nothing to search in binary_search()
432 r = (this->*fn)(random, guess); in binary_search()
438 high = guess; in binary_search()
440 low = guess; in binary_search()
442 last_guess = guess; in binary_search()
/third_party/node/deps/v8/tools/debug_helper/
H A Ddebug-helper-internal.h156 for (const auto& guess : guessed_types_) { in GetPublicView()
157 guessed_types_raw_.push_back(guess.c_str()); in GetPublicView()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDumbTextComponent.java664 int guess = (lowGuess + highGuess)/2; in point2Offset()
665 int width = fm.stringWidth(contents.substring(lineStarts[line],guess)); in point2Offset()
667 lowGuess = guess; in point2Offset()
671 highGuess = guess; in point2Offset()
/third_party/ltp/include/mk/
H A Dautomake.mk69 AUTOMAKE_FILES := config.guess config.sub install-sh missing stamp-h1
/third_party/ltp/testcases/realtime/
H A DMakefile49 AUTOMAKE_FILES := config.guess config.sub install-sh missing stamp-h1
/third_party/lame/libmp3lame/
H A Dvbrquantize.c326 int const guess = calc_scalefac(l3_xmin, bw); in guess_scalefac_x34() local
327 if (guess < sf_min) return sf_min; in guess_scalefac_x34()
328 if (guess >= 255) return 255; in guess_scalefac_x34()
331 return guess; in guess_scalefac_x34()
443 * Using a "good guess" may help to reduce this amount. in block_sf()
445 uint8_t guess = calc_scalefac(l3_xmin[sfb], l); in block_sf()
446 DEBUGF(that->gfc, "sfb=%3d guess=%3d found=%3d diff=%3d\n", sfb, guess, m2, in block_sf()
447 m2 - guess); in block_sf()
/third_party/python/Lib/http/
H A Dserver.py890 slow) to look inside the data to make a better guess.
899 guess, _ = mimetypes.guess_type(path)
900 if guess:
901 return guess
/third_party/ffmpeg/libavcodec/
H A Derror_resilience.c133 * guess the dc of blocks which do not have an undamaged dc
209 int64_t guess, weight_sum; in guess_dc() local
219 guess = 0; in guess_dc()
222 guess += weight*(int64_t)col[b_x + b_y*stride][j]; in guess_dc()
225 guess = (guess + weight_sum / 2) / weight_sum; in guess_dc()
226 dc[b_x + b_y * stride] = guess; in guess_dc()
1180 /* guess MVs */ in ff_er_frame_end()
1276 /* guess DC for damaged blocks */ in ff_er_frame_end()
/third_party/skia/third_party/externals/freetype/builds/
H A Dtoplevel.mk278 # The locations of the latest `config.guess' and `config.sub' versions (from
282 CONFIG_GUESS = ~/git/config/config.guess
/third_party/skia/third_party/externals/harfbuzz/
H A Dgit.mk88 config.guess \
/third_party/zlib/contrib/pascal/
H A Dzlibpas.pas44 data_type: Integer; (* best guess about the data type: ascii or binary *)
/third_party/skia/third_party/externals/microhttpd/
H A Dconfig.guess2 # Attempt to guess a canonical system name.
30 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
50 GNU config.guess ($timestamp)
378 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
677 # $ CC_FOR_BUILD=cc ./config.guess
679 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
1375 $0: unable to guess system type
1381 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
1390 config.guess timestamp = $timestamp

Completed in 25 milliseconds

12