/third_party/alsa-lib/test/ |
D | user-ctl-element-set.c | 23 int (*add_elem_set)(struct elem_set_trial *trial, 25 int (*check_elem_props)(struct elem_set_trial *trial, 27 void (*change_elem_members)(struct elem_set_trial *trial, 29 int (*allocate_elem_set_tlv)(struct elem_set_trial *trial, 56 static int add_bool_elem_set(struct elem_set_trial *trial, in add_bool_elem_set() argument 59 return snd_ctl_add_boolean_elem_set(trial->handle, info, in add_bool_elem_set() 60 trial->element_count, trial->member_count); in add_bool_elem_set() 63 static void change_bool_elem_members(struct elem_set_trial *trial, in change_bool_elem_members() argument 69 for (i = 0; i < trial->member_count; ++i) { in change_bool_elem_members() 75 static int allocate_bool_elem_set_tlv(struct elem_set_trial *trial, in allocate_bool_elem_set_tlv() argument [all …]
|
/third_party/node/deps/v8/tools/clusterfuzz/trials/ |
D | PRESUBMIT.py | 24 for trial in trials: 26 k in trial for k in ('app_args', 'app_name', 'probability')): 27 results.append('trial {} is not configured correctly'.format(trial)) 28 if trial['app_name'] != 'd8': 29 results.append('trial {} has an incorrect app_name'.format(trial)) 30 if not isinstance(trial['probability'], float): 31 results.append('trial {} probability is not a float'.format(trial)) 32 if not (0 <= trial['probability'] <= 1): 34 'trial {} has invalid probability value'.format(trial)) 35 if not isinstance(trial['app_args'], str) or not trial['app_args']: [all …]
|
/third_party/alsa-utils/axfer/test/ |
D | mapper-test.c | 69 static int test_demux(struct mapper_trial *trial, snd_pcm_access_t access, in test_demux() argument 77 struct container_context *cntrs = trial->cntrs; in test_demux() 78 enum container_format cntr_format = trial->cntr_format; in test_demux() 115 test_demuxer(&trial->mapper, access, bytes_per_sample, in test_demux() 117 frame_count, cntrs, cntr_count, trial->verbose); in test_demux() 160 static int test_mux(struct mapper_trial *trial, snd_pcm_access_t access, in test_mux() argument 168 struct container_context *cntrs = trial->cntrs; in test_mux() 205 test_muxer(&trial->mapper, access, bytes_per_sample, samples_per_frame, in test_mux() 207 cntr_count, trial->verbose); in test_mux() 220 static int test_mapper(struct mapper_trial *trial, snd_pcm_access_t access, in test_mapper() argument [all …]
|
D | container-test.c | 140 struct container_trial *trial = gen->private_data; in callback() local 170 test_builder(&trial->cntr, fd, trial->format, access, in callback() 173 trial->verbose); in callback() 181 test_parser(&trial->cntr, fd, trial->format, access, in callback() 183 buf, frame_count, trial->verbose); in callback() 277 struct container_trial *trial; in main() local 306 trial = gen.private_data; in main() 307 trial->format = i; in main() 308 trial->verbose = verbose; in main()
|
/third_party/icu/tools/colprobe/ |
D | sortedlines.cpp | 490 Line lower, upper, trial, toAdd, helper; in detectContractions() local 554 trial = *firstRep[i]; in detectContractions() 555 trial.append(*UB[UCOL_PRIMARY]); in detectContractions() 556 trial.append(*secondRep[j]); in detectContractions() 566 trial.setToConcat(secondRep[j], firstRep[i]); in detectContractions() 568 trial.setToConcat(firstRep[i], secondRep[j]); in detectContractions() 572 NFCTrialLen = unorm_normalize(trial.name, trial.len, UNORM_NFC, 0, NFCTrial, 256, &status); in detectContractions() 573 …if((u_strcmp(trial.name, NFCTrial) == 0) || u_strFindLast(NFCTrial, NFCTrialLen, secondRep[j]->nam… in detectContractions() 592 if (probe.compare(lower, trial) >= 0) { // if lower is bigger than trial in detectContractions() 600 else if (probe.compare(trial, upper) > 0) { // trial is bigger than upper?? in detectContractions() [all …]
|
/third_party/icu/icu4c/source/test/perf/howExpensiveIs/ |
D | howExpensiveIs.cpp | 308 double trial = unum_parseDouble(fFmt,fStr,fLen, NULL, &setupStatus); in warmup() local 309 if(U_SUCCESS(setupStatus) && trial!=fExpect) { in warmup() 312 fFile,fLine,getName(),trial,fExpect); in warmup() 317 double trial=0.0; in run() local 320 trial = unum_parse(fFmt,fStr,fLen, NULL, &setupStatus); in run() 437 int32_t trial = unum_formatDouble(fFmt,fExpect, buf, 100, NULL, &setupStatus); in warmup() local 439 || trial!=fLen in warmup() 440 ||trial<=0 in warmup() 441 || u_strncmp(fStr,buf,trial) ) { in warmup() 443 u_strToUTF8(strBuf,200,NULL,buf,trial+1,&setupStatus); in warmup() [all …]
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/ |
D | preprocess.t | 28 for my $trial (1, 0) { 31 if ($trial == 0) {
|
/third_party/openssl/external/perl/Text-Template-1.56/t/ |
D | preprocess.t | 28 for my $trial (1, 0) { 31 if ($trial == 0) {
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | alpha_enc.c | 252 FilterTrial trial; in ApplyFiltersAndEncode() local 255 &trial); in ApplyFiltersAndEncode() 256 if (ok && trial.score < best.score) { in ApplyFiltersAndEncode() 258 best = trial; in ApplyFiltersAndEncode() 260 VP8BitWriterWipeOut(&trial.bw); in ApplyFiltersAndEncode()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | README.md | 29 * `--steps-per-trial x`: Fixed number of steps to run for each test trial. 38 * `--max-trial-time x`: Run each test trial under this max time. Defaults to 10 seconds. 41 * `--no-finish`: Don't call glFinish after each test trial.
|
D | ANGLEPerfTest.cpp | 297 for (uint32_t trial = 0; trial < numTrials; ++trial) in run() local 304 printf("Trial %d time: %.2lf seconds.\n", trial + 1, trialTime); in run()
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
D | tomoyo_new_test.c | 618 int trial; in main() local 619 for (trial = 0; trial < 2; trial++) { in main()
|
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/ |
D | DawnPerfTest.cpp | 224 for (unsigned int trial = 0; trial < kNumTrials; ++trial) { in RunTest() local
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | flat_hash_map_test.cc | 288 for (size_t trial = 0; trial < 20; ++trial) { in TEST() local
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | RoundTripTest.java | 231 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 232 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 233 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 244 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 245 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 246 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 252 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 253 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 254 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
D | RoundTripTest.java | 246 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 247 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 248 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 259 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 260 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 261 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul() 267 String trial = Normalizer.compose(sample, false); in getRepresentativeBoundaryHangul() local 268 if (trial.length() == 2) { in getRepresentativeBoundaryHangul() 269 resultToAddTo.add(trial); in getRepresentativeBoundaryHangul()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | TransliterationChart.java | 126 String trial = (String)sit.next(); in main() local 127 if (!sets[i].containsAll(trial)) continue; in main() 128 item = trial; in main()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | caniter.cpp | 575 UnicodeString trial; in extract() local 576 nfd.normalize(temp, trial, status); in extract() 577 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) { in extract()
|
/third_party/icu/icu4c/source/common/ |
D | caniter.cpp | 575 UnicodeString trial; in extract() local 576 nfd.normalize(temp, trial, status); in extract() 577 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) { in extract()
|
/third_party/node/deps/icu-small/source/common/ |
D | caniter.cpp | 575 UnicodeString trial; in extract() local 576 nfd.normalize(temp, trial, status); in extract() 577 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) { in extract()
|
/third_party/skia/tests/ |
D | PathOpsBuilderConicTest.cpp | 79 static void setupOne(skiatest::Reporter* reporter, int col, int row, int rot, int trial) { in setupOne() argument 82 r.setSeed(col * 100000000 + row * 10000000 + rot * 1000000 + trial); in setupOne() 107 for (int trial = FLAGS_processOffset * trialRuns; --trialRuns >= 0; ++trial) { in DEF_TEST() local 111 && trial == oneOff.fTrial) { in DEF_TEST() 116 setupOne(reporter, col, row, rot, trial); in DEF_TEST()
|
/third_party/openssl/doc/man3/ |
D | BN_generate_prime.pod | 132 The test performed on B<p> are trial division by a number of small primes 143 If B<do_trial_division> set to B<0>, the trial division will be skipped. 144 BN_is_prime_ex() and BN_is_prime() always skip the trial division. 156 If the trial division is done, and no divisors are found and B<cb>
|
D | DSA_generate_parameters.pod | 67 When a candidate for q has passed a test by trial division, 86 When a candidate for p has passed the test by trial division,
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 988 for (String trial : strings) { in matches() 989 if (trial.isEmpty()) { in matches() 993 char c = trial.charAt(forward ? 0 : trial.length() - 1); in matches() 1000 int length = matchRest(text, offset[0], limit, trial); in matches() 1010 if (length == trial.length()) { in matches() 1087 String trial = null; in matchesAt() local 1091 trial = it.next(); in matchesAt() 1092 char firstStringChar = trial.charAt(0); in matchesAt() 1099 int tempLen = matchesAt(text, offset, trial); in matchesAt() 1103 trial = it.next(); in matchesAt()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | UnicodeSet.java | 924 for (String trial : strings) { in matches() 930 char c = trial.charAt(forward ? 0 : trial.length() - 1); in matches() 937 int length = matchRest(text, offset[0], limit, trial); in matches() 947 if (length == trial.length()) { in matches() 1025 String trial = null; in matchesAt() local 1029 trial = it.next(); in matchesAt() 1030 char firstStringChar = trial.charAt(0); in matchesAt() 1037 int tempLen = matchesAt(text, offset, trial); in matchesAt() 1041 trial = it.next(); in matchesAt()
|