| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | hw-doloop.cc | 38 dump_hwloops (hwloop_info loops) in dump_hwloops() argument 42 for (loop = loops; loop; loop = loop->next) in dump_hwloops() 61 for (ix = 0; loop->loops.iterate (ix, &i); ix++) in dump_hwloops() 347 hwloop_info loops = NULL; in discover_loops() local 398 loop->next = loops; in discover_loops() 399 loops = loop; in discover_loops() 417 for (loop = loops; loop; loop = loop->next) in discover_loops() 424 for (other = loops; other; other = other->next) in discover_loops() 433 loop->loops.safe_push (other); in discover_loops() 436 other->loops.safe_push (loop); in discover_loops() [all …]
|
| D | cfgloop.h | 321 struct GTY (()) loops { struct 339 void init_loops_structure (struct function *, struct loops *, unsigned); argument 340 extern struct loops *flow_loops_find (struct loops *); 342 extern void flow_loops_free (struct loops *); 562 struct loops *loops = loops_for_fn (fn); in get_loops() local 563 if (!loops) in get_loops() 566 return loops->larray; in get_loops() 575 struct loops *loops = loops_for_fn (fn); in number_of_loops() local 576 if (!loops) in number_of_loops() 579 return vec_safe_length (loops->larray); in number_of_loops() [all …]
|
| D | omp-expand.cc | 1568 const omp_for_data_loop *loop = &fd->loops[ix]; in expand_oacc_collapse_init() 1673 const omp_for_data_loop *loop = &fd->loops[ix]; in expand_oacc_collapse_vars() 1830 && !TYPE_UNSIGNED (TREE_TYPE (fd->loops[fd->last_nonrect].v))) in expand_omp_for_init_counts() 1850 tree itype = TREE_TYPE (fd->loops[i].v); in expand_omp_for_init_counts() 1852 t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts() 1853 fold_convert (itype, fd->loops[i].n1), in expand_omp_for_init_counts() 1854 fold_convert (itype, fd->loops[i].n2)); in expand_omp_for_init_counts() 1865 tree itype = TREE_TYPE (fd->loops[i].v); in expand_omp_for_init_counts() 1873 if (fd->loops[i].m1 || fd->loops[i].m2) in expand_omp_for_init_counts() 1880 && ((t = fold_binary (fd->loops[i].cond_code, boolean_type_node, in expand_omp_for_init_counts() [all …]
|
| D | cfgloop.cc | 208 flow_loops_free (struct loops *loops) in flow_loops_free() argument 210 if (loops->larray) in flow_loops_free() 216 FOR_EACH_VEC_SAFE_ELT (loops->larray, i, loop) in flow_loops_free() 224 vec_free (loops->larray); in flow_loops_free() 366 struct loops *loops, unsigned num_loops) in init_loops_structure() argument 370 memset (loops, 0, sizeof *loops); in init_loops_structure() 371 vec_alloc (loops->larray, num_loops); in init_loops_structure() 381 loops->larray->quick_push (root); in init_loops_structure() 382 loops->tree_root = root; in init_loops_structure() 422 struct loops * [all …]
|
| D | function.h | 262 struct loops *x_current_loops; 502 inline struct loops * 511 set_loops_for_fn (struct function *fn, struct loops *loops) in set_loops_for_fn() argument 513 gcc_checking_assert (fn->x_current_loops == NULL || loops == NULL); in set_loops_for_fn() 514 fn->x_current_loops = loops; in set_loops_for_fn()
|
| D | omp-general.h | 81 struct omp_for_data_loop *loops; member 102 struct omp_for_data_loop *loops);
|
| D | omp-general.cc | 184 struct omp_for_data_loop *loops) in omp_extract_for_data() argument 302 fd->loops = loops; in omp_extract_for_data() 304 fd->loops = &fd->loop; in omp_extract_for_data() 306 if (fd->ordered && fd->collapse == 1 && loops != NULL) in omp_extract_for_data() 308 fd->loops = loops; in omp_extract_for_data() 383 && (fd->ordered == 0 || loops == NULL)) in omp_extract_for_data() 385 else if (loops != NULL) in omp_extract_for_data() 386 loop = loops + i; in omp_extract_for_data() 406 if (loops != NULL) in omp_extract_for_data() 407 loops[j].non_rect_referenced = true; in omp_extract_for_data() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/ |
| D | loop.texi | 13 GCC provides extensive infrastructure for work with natural loops, i.e., 15 chapter describes representation of loops in GCC, both on GIMPLE and in 20 * Loop representation:: Representation and analysis of loops. 21 * Loop querying:: Getting information about loops. 35 This chapter describes the representation of loops in GCC, and functions 43 passes to allow attaching meta information to individual loops 48 the loop. Loops with several latches may appear if several loops share 50 The representation of loops in GCC however allows only loops with a 51 single latch. During loop analysis, headers of such loops are split and 54 variables in the loops is used to determine whether the latches [all …]
|
| /netbsd/src/external/lgpl3/mpc/dist/ |
| D | TODO | 48 10000 loops, best of 3: 42.2 us per loop 50 100 loops, best of 3: 5.29 ms per loop 54 10000 loops, best of 3: 83.7 us per loop 56 100 loops, best of 3: 17 ms per loop 61 10000 loops, best of 3: 90.8 us per loop 63 1 loops, best of 3: 2.29 s per loop 67 10000 loops, best of 3: 84 us per loop 69 100 loops, best of 3: 2.1 ms per loop 72 10000 loops, best of 3: 92 us per loop 74 1 loops, best of 3: 2.28 s per loop
|
| /netbsd/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| D | test_rsa.c | 54 static int loops = 1; variable 57 { "loops", 0, arg_integer, &loops, 256 printf("running keygen with %d loops\n", loops); in main() 260 for (i = 0; i < loops; i++) { in main() 301 p = emalloc(loops * size); in main() 303 RAND_bytes(p, loops * size); in main() 306 for (i = 0; i < loops; i++) in main() 362 for (i = 0; i < loops; i++) { in main()
|
| D | test_bulk.c | 81 static int loops = 20; variable 98 { "loops", 0, arg_integer, &loops, 131 for (i = 0; i < loops; i++) { in test_bulk_cipher() 186 for (i = 0; i < loops; i++) { in test_bulk_digest()
|
| /netbsd/src/external/lgpl3/mpc/dist/src/ |
| D | norm.c | 48 int loops; in mpc_norm() local 62 loops = 0; in mpc_norm() 66 loops++; in mpc_norm() 68 if (loops >= max_loops) { in mpc_norm() 92 } while (loops < max_loops && inexact != 0 in mpc_norm()
|
| D | log.c | 30 int loops; in mpc_log() local 124 for (loops = 1; !ok && loops <= 2; loops++) { in mpc_log()
|
| D | log10.c | 35 int ok = 0, loops = 0, check_exact = 0, special_re, special_im, in mpc_log10() local 52 loops ++; in mpc_log10() 53 prec += (loops <= 2) ? mpc_ceil_log2 (prec) + 4 : prec / 2; in mpc_log10()
|
| /netbsd/src/crypto/external/bsd/heimdal/dist/tests/gss/ |
| D | check-basic.in | 138 --loops=10 \ 144 --loops=10 \ 151 --loops=10 \ 158 --loops=10 \
|
| /netbsd/src/sys/rump/librump/rumpkern/ |
| D | emul.c | 221 int loops; in rump_delay() local 242 for (loops = 0; loops < 1000*1000*100; loops++) { in rump_delay()
|
| /netbsd/src/sys/dev/pci/bktr/ |
| D | bktr_audio.c | 484 int auto_detect, loops; in msp_autodetect() local 530 loops = 10; in msp_autodetect() 534 loops++; in msp_autodetect() 535 } while (auto_detect > 0xff && loops < 50); in msp_autodetect() 537 bktr_name(bktr), loops*10, auto_detect); in msp_autodetect()
|
| /netbsd/src/external/bsd/openldap/dist/tests/progs/ |
| D | slapd-mtread.c | 291 ptpass = config->outerloops * config->loops; in main() 383 nobind, config->loops, force, idx ); in do_onethread() 471 for (i = 0; i < config->loops; i++) { in do_onerwthread() 522 config->loops, sbase, filter ); in do_random() 559 for ( i = 0; i < config->loops; i++ ) { in do_random() 598 config->loops, sbase, filter ); in do_random2() 614 for ( i = 0; i < config->loops; i++ ) { in do_random2()
|
| D | slapd-tester.c | 128 int loops = LOOPS; in main() local 321 } else if ( lutil_atoi( &loops, optarg ) != 0 ) { in main() 510 if ( sloops[0] == '\0' ) snprintf( sloops, sizeof( sloops ), "%d", 10 * loops ); in main() 511 if ( rloops[0] == '\0' ) snprintf( rloops, sizeof( rloops ), "%d", 20 * loops ); in main() 512 if ( aloops[0] == '\0' ) snprintf( aloops, sizeof( aloops ), "%d", loops ); in main() 513 if ( nloops[0] == '\0' ) snprintf( nloops, sizeof( nloops ), "%d", loops ); in main() 514 if ( mloops[0] == '\0' ) snprintf( mloops, sizeof( mloops ), "%d", loops ); in main() 515 if ( bloops[0] == '\0' ) snprintf( bloops, sizeof( bloops ), "%d", 20 * loops ); in main()
|
| D | slapd-modify.c | 164 (long) pid, config->loops, entry ); in do_modify() 167 for ( ; i < config->loops; i++ ) { in do_modify()
|
| D | slapd-modrdn.c | 170 (long) pid, config->loops, entry ); in do_modrdn() 173 for ( ; i < config->loops; i++ ) { in do_modrdn()
|
| D | slapd-read.c | 166 noattrs, nobind, config->loops, force ); in main() 192 (long) pid, config->loops, sbase, filter ); in do_random() 227 for ( i = 0; i < config->loops; i++ ) { in do_random()
|
| /netbsd/src/external/ibm-public/postfix/dist/src/local/ |
| D | Musings | 15 re-injecting messages into itself. These local forwarding loops 24 it cannot prevent local forwarding loops. The Postfix system adds 26 loops.
|
| /netbsd/src/sys/arch/x86/x86/ |
| D | errata.c | 511 int loops = 0; in amd_errata_1474_thread() local 521 loops = 900; in amd_errata_1474_thread() 524 while (loops++ < AMD_ERRATA_1474_BAD_DAYS) { in amd_errata_1474_thread() 525 if (loops == AMD_ERRATA_1474_WARN_DAYS) { in amd_errata_1474_thread()
|
| /netbsd/src/external/bsd/ntp/dist/tests/libntp/ |
| D | calendar.c | 780 int loops, iloop; in test_NtpToNtp() 783 for (loops = 0; loops < 16; ++loops) { in test_NtpToNtp() 839 int loops, iloop; in test_NtpToTime() 842 for (loops = 0; loops < 16; ++loops) { in test_NtpToTime()
|