/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | shrinker.cpp | 138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local 151 while (attempt < step_limit_ && 181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { 216 if (interestingness_function_(transformed_binary, attempt)) { 225 // Either way, this was a shrink attempt, so increment our count of shrink 227 attempt++; 247 attempt < step_limit_ && 264 validator_options_, step_limit_, attempt) 283 // as a shrinker attempt. 284 attempt [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | shrinker.cpp | 138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local 151 while (attempt < step_limit_ && 181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { 216 if (interestingness_function_(transformed_binary, attempt)) { 225 // Either way, this was a shrink attempt, so increment our count of shrink 227 attempt++; 247 attempt < step_limit_ && 264 validator_options_, step_limit_, attempt) 283 // as a shrinker attempt. 284 attempt [all...] |
/third_party/spirv-tools/source/fuzz/ |
H A D | shrinker.cpp | 138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local 151 while (attempt < step_limit_ && 181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { 216 if (interestingness_function_(transformed_binary, attempt)) { 225 // Either way, this was a shrink attempt, so increment our count of shrink 227 attempt++; 247 attempt < step_limit_ && 264 validator_options_, step_limit_, attempt) 283 // as a shrinker attempt. 284 attempt [all...] |
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/delay/ |
H A D | delay.base.js | 7 this.attempt = 0; 13 Delay.prototype.setAttemptNumber = function (attempt) { 14 this.attempt = attempt; 37 return this.attempt;
|
H A D | delay.factory.js | 5 function DelayFactory(options, attempt) { 7 delay.setAttemptNumber(attempt);
|
/third_party/skia/infra/bots/recipe_modules/run/ |
H A D | api.py | 83 for attempt in range(attempts): 85 if attempt > 0: 86 step_name += ' (attempt %d)' % (attempt + 1) 90 if attempt > 0 and fail_build_on_failure: 91 del self._failed[-attempt:] 94 if attempt == attempts - 1: 98 between_attempts_fn(attempt+1)
|
/third_party/weex-loader/deps/weex-scripter/lib/ |
H A D | require-parse.js | 44 function attempt(aPath) { 56 attempt(absModulePath + '.js') 59 attempt(path.resolve(absModulePath, pkg.main + '.js')) 60 attempt(path.resolve(absModulePath, pkg.main)) 62 attempt(absModulePath + '/index.js')
|
/third_party/node/deps/npm/node_modules/retry/test/integration/ |
H A D | test-retry-operation.js | 18 operation.attempt(function(currentAttempt) { 87 operation.attempt(fn, timeoutOpts); 103 operation.attempt(function(currentAttempt) { 129 operation.attempt(function(currentAttempt) { 163 operation.attempt(function(currentAttempt) { 194 operation.attempt(function(currentAttempt) { 234 operation.attempt(function(currentAttempt) {
|
H A D | test-forever.js | 13 operation.attempt(function(numAttempt) {
|
/third_party/ffmpeg/libavformat/ |
H A D | network.c | 354 // Returns < 0 on error, 0 on successfully started connection attempt, 356 static int start_connect_attempt(struct ConnectionAttempt *attempt, in start_connect_attempt() argument 366 attempt->fd = ff_socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol, h); in start_connect_attempt() 367 if (attempt->fd < 0) in start_connect_attempt() 369 attempt->deadline_us = av_gettime_relative() + timeout_ms * 1000; in start_connect_attempt() 370 attempt->addr = ai; in start_connect_attempt() 372 ff_socket_nonblock(attempt->fd, 1); in start_connect_attempt() 375 customize_fd(customize_ctx, attempt->fd); in start_connect_attempt() 377 while ((ret = connect(attempt->fd, ai->ai_addr, ai->ai_addrlen))) { in start_connect_attempt() 382 closesocket(attempt in start_connect_attempt() [all...] |
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/ |
H A D | check-response.js | 45 const attempt = res.headers.get('x-fetch-attempts') 46 const attemptStr = attempt && attempt > 1 ? ` attempt #${attempt}` : ''
|
/third_party/mbedtls/library/ |
H A D | rsa_alt_helpers.c | 47 * of (a) and (b) above to attempt to factor N. 56 uint16_t attempt; /* Number of current attempt */ in mbedtls_rsa_deduce_primes() local 57 uint16_t iter; /* Number of squares computed in the current attempt */ in mbedtls_rsa_deduce_primes() 111 attempt = 0; in mbedtls_rsa_deduce_primes() 113 attempt = 1; in mbedtls_rsa_deduce_primes() 116 for (; attempt < num_primes; ++attempt) { in mbedtls_rsa_deduce_primes() 117 MBEDTLS_MPI_CHK(mbedtls_mpi_lset(&K, primes[attempt])); in mbedtls_rsa_deduce_primes() 159 * we reached 1, or K holds primes[attempt] in mbedtls_rsa_deduce_primes() [all...] |
/third_party/node/deps/npm/node_modules/retry/lib/ |
H A D | retry_operation.js | 91 RetryOperation.prototype.attempt = function(fn, timeoutOps) { 117 this.attempt(fn); 122 this.attempt(fn);
|
H A D | retry.js | 49 exports.createTimeout = function(attempt, opts) { 54 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt)); 94 op.attempt(function() {
|
/third_party/rust/crates/unicode-width/scripts/ |
H A D | unicode.py | 196 def try_extend(self, attempt: "Bucket") -> bool: 197 """If either `self` or `attempt`'s width list starts with the other bucket's width list, 198 set `self`'s width list to the longer of the two, add all of `attempt`'s codepoints 200 (less, more) = (self.widths, attempt.widths) 201 if len(self.widths) > len(attempt.widths): 202 (less, more) = (attempt.widths, self.widths) 205 self.entry_set |= attempt.entry_set
|
/third_party/skia/infra/bots/recipe_modules/run/examples/ |
H A D | full.py | 46 def between_attempts_fn(attempt): 47 api.run(api.step, 'between_attempts #%d' % attempt, 79 api.step_data('retry fail (attempt 2)', retcode=1) + 80 api.step_data('retry fail (attempt 3)', retcode=1) + 81 api.step_data('retry fail (attempt 4)', retcode=1) + 82 api.step_data('retry fail (attempt 5)', retcode=1) + 84 api.step_data('retry success (attempt 2)', retcode=1)
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect.js | 219 for (let attempt = 0; attempt < 5; attempt++) { 220 debuglog('connection attempt #%d', attempt);
|
/third_party/skia/infra/bots/recipe_modules/flavor/ |
H A D | ios.py | 39 def sleep(attempt): 40 self.m.python.inline('sleep before attempt %d' % attempt, """ 101 def uninstall_app(attempt):
|
/third_party/node/test/parallel/ |
H A D | test-inspector-bindings.js | 106 let attempt = 1; 109 if (attempt++ > 3)
|
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/delay/skip-first/ |
H A D | skip-first.delay.js | 67 return this.attempt === 0; 74 return this.attempt - 1;
|
/third_party/node/deps/v8/src/utils/ |
H A D | allocation.cc | 78 // We will attempt allocation this many times. After each failure, we call 396 for (int attempt = 0; attempt < kMaxAttempts; ++attempt) { in InitReservation() 415 // For the last attempt use the overreserved region to avoid an OOM crash. in InitReservation() 418 bool overreserve = (attempt == kMaxAttempts - 1); in InitReservation()
|
/third_party/python/PCbuild/ |
H A D | build.bat | 24 echo. depend on external libraries will not attempt to build if this flag
41 echo. --no-ctypes Do not attempt to build _ctypes
42 echo. --no-ssl Do not attempt to build _ssl
43 echo. --no-tkinter Do not attempt to build Tkinter
|
/third_party/backends/backend/pixma/ |
H A D | pixma_bjnp.c | 670 int try, attempt; in udp_command() local 692 attempt = 0; in udp_command() 706 && (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS) in udp_command() 1404 int attempt; in bjnp_recv_header() local 1411 attempt = 0; in bjnp_recv_header() 1422 (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS)); in bjnp_recv_header() 1567 int attempt; in bjnp_recv_data() local 1591 attempt = 0; in bjnp_recv_data() 1601 (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS)); in bjnp_recv_data() 2025 int attempt; in sanei_bjnp_find_devices() local [all...] |
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/ |
H A D | GlobalizationPreferences.java | 1090 String[] attempt = TimeZone.getAvailableIDs(getTerritory()); in guessTimeZone() 1091 if (attempt.length == 0) { in guessTimeZone() 1096 for (i = 0; i < attempt.length; ++i) { in guessTimeZone() 1097 if (attempt[i].indexOf("/") >= 0) break; in guessTimeZone() 1099 if (i > attempt.length) i = 0; in guessTimeZone() 1100 timezoneString = attempt[i]; in guessTimeZone()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | GlobalizationPreferences.java | 1092 String[] attempt = TimeZone.getAvailableIDs(getTerritory()); in guessTimeZone() 1093 if (attempt.length == 0) { in guessTimeZone() 1098 for (i = 0; i < attempt.length; ++i) { in guessTimeZone() 1099 if (attempt[i].indexOf("/") >= 0) break; in guessTimeZone() 1101 if (i > attempt.length) i = 0; in guessTimeZone() 1102 timezoneString = attempt[i]; in guessTimeZone()
|