Searched refs:loop (Results 76 - 100 of 312) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_msq.c118 ppb_MS_init(device_t bus, device_t dev, struct ppb_microseq *loop, int opcode) argument
124 xfer->loop = loop;
157 * Execute a microseq loop
169 /* loop: */
171 MS_DBRA(-1 /* loop: */),
183 /* execute the loop */
288 if (!xfer->loop) {
315 ppb_MS_microseq(bus, dev, xfer->loop, &error);
/freebsd-9.3-release/sys/boot/pc98/boot0.5/
H A Dsupport.s43 loop wait_loop
87 loop beep_loop1
92 loop beep_loop2
/freebsd-9.3-release/contrib/ntp/util/
H A Dsht.c129 printf (" l loop (so, rcl will read and clear in a loop\n");
163 int loop=0; local
167 case 'l': loop=1; break;
185 if (loop) {
/freebsd-9.3-release/usr.bin/yacc/
H A Dreader.c406 loop:
415 if (line) goto loop;
435 goto loop;
487 goto loop;
498 goto loop;
514 goto loop;
539 loop:
549 goto loop;
553 goto loop;
562 goto loop;
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dloop-iv.c21 /* This is a simple analysis of induction variables of the loop. The major use
22 is for determining the number of iterations of a loop for loop unrolling,
30 The analysis works always with one loop -- you must call
31 iv_analysis_loop_init (loop) for it. All the other functions then work with
32 this loop. When you need to work with another loop, just call
48 iv_current_loop_df (): Returns the dataflow object for the current loop used
75 /* The use is trivial invariant of the loop, i.e. is not changed
76 inside the loop
243 iv_analysis_loop_init(struct loop *loop) argument
1698 simplify_using_initial_values(struct loop *loop, enum rtx_code op, rtx *expr) argument
1989 iv_number_of_iterations(struct loop *loop, rtx insn, rtx condition, struct niter_desc *desc) argument
2541 check_simple_exit(struct loop *loop, edge e, struct niter_desc *desc) argument
2588 find_simple_exit(struct loop *loop, struct niter_desc *desc) argument
2676 get_simple_loop_desc(struct loop *loop) argument
2729 free_simple_loop_desc(struct loop *loop) argument
[all...]
H A Dtree-ssa-loop-ivopts.c21 /* This pass tries to find the optimal set of induction variables for the loop.
60 All of this is done loop by loop. Doing it globally is theoretically
96 /* The expected number of loop iterations. TODO -- use profiling instead of
118 bool has_nonlin_use; /* For a loop-level invariant, whether it is used in
203 /* The currently optimized loop. */
204 struct loop *current_loop;
209 /* Numbers of iterations for all exits of the current loop. */
299 optimizing such a loop would help, and it would take ages). */
347 /* The single loop exi
350 single_dom_exit(struct loop *loop) argument
582 stmt_after_ip_normal_pos(struct loop *loop, tree stmt) argument
628 stmt_after_increment(struct loop *loop, struct iv_cand *cand, tree stmt) argument
947 struct loop *loop = bb_for_stmt (phi)->loop_father; local
967 struct loop *loop = data->current_loop; local
1003 struct loop *loop = data->current_loop; local
1035 struct loop *loop = data->current_loop; local
1087 struct loop *loop = data->current_loop; local
1299 expr_invariant_in_loop_p(struct loop *loop, tree expr) argument
1345 struct loop *loop = dta->ivopts_data->current_loop; local
2091 allow_ip_end_pos_p(struct loop *loop) argument
2532 var_at_stmt(struct loop *loop, struct iv_cand *cand, tree stmt) argument
3031 get_computation_aff(struct loop *loop, struct iv_use *use, struct iv_cand *cand, tree at, struct affine_tree_combination *aff) argument
3198 get_computation_at(struct loop *loop, struct iv_use *use, struct iv_cand *cand, tree at) argument
3214 get_computation(struct loop *loop, struct iv_use *use, struct iv_cand *cand) argument
4077 cand_value_at(struct loop *loop, struct iv_cand *cand, tree at, tree niter) argument
4116 struct loop *loop = data->current_loop; local
4139 struct loop *loop = data->current_loop; local
4414 struct loop *loop = data->current_loop; local
5803 tree_ssa_iv_optimize_loop(struct ivopts_data *data, struct loop *loop) argument
5877 struct loop *loop; local
[all...]
H A Dtree-data-ref.h28 in the loop, and step is the stride of data-ref in the loop in bytes;
52 /* Access function related to first location in the loop. */
85 /* First location accessed by the data-ref in the loop. */
197 typedef struct loop *loop_p;
232 /* The analyzed loop nest. */
256 the loop nest. */
273 extern tree find_data_references_in_loop (struct loop *,
275 extern void compute_data_dependences_for_loop (struct loop *, bool,
304 struct loop *loop
[all...]
H A Dtree-data-ref.c23 /* This pass walks a given loop structure searching for array
37 information allows a loop parallelization),
44 - loop carried level dependence
774 struct loop *loopi;
785 fprintf (outf, " loop nest: (");
903 estimate_niter_from_size_of_data (struct loop *loop,
913 step = evolution_part_in_loop_num (access_fn, loop->num);
951 record_estimate (loop, estimation, boolean_true_node, stmt);
959 If ESTIMATE_ONLY is true, we just set the estimated number of loop
901 estimate_niter_from_size_of_data(struct loop *loop, tree opnd0, tree access_fn, tree stmt) argument
962 analyze_array_indexes(struct loop *loop, VEC(tree,heap) **access_fns, tree ref, tree stmt, bool estimate_only) argument
1058 struct loop *loop = loop_containing_stmt (stmt); local
1228 analyze_offset_expr(tree expr, struct loop *loop, tree *initial_offset, tree *misalign, tree *aligned_to, tree *step) argument
1609 struct loop *loop = loop_containing_stmt (stmt); local
1959 struct loop *loop = loop_containing_stmt (stmt); local
4100 find_data_references_in_loop(struct loop *loop, VEC (data_reference_p, heap) **datarefs) argument
4234 find_loop_nest_1(struct loop *loop, VEC (loop_p, heap) **loop_nest) argument
4265 find_loop_nest(struct loop *loop, VEC (loop_p, heap) **loop_nest) argument
4280 compute_data_dependences_for_loop(struct loop *loop, bool compute_self_and_read_read_dependences, VEC (data_reference_p, heap) **datarefs, VEC (ddr_p, heap) **dependence_relations) argument
[all...]
/freebsd-9.3-release/release/picobsd/qemu/
H A DPICOBSD111 device loop # Network loopback
/freebsd-9.3-release/sys/arm/conf/
H A DDB-78XXX54 device loop
H A DDOCKSTAR50 device loop
H A DSHEEVAPLUG48 device loop
H A DTS780049 device loop
/freebsd-9.3-release/crypto/heimdal/kdc/
H A Dmain.c96 loop(context, config);
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dasn1_print.c50 loop (unsigned char *buf, size_t len, int indent) function
118 loop_length = loop (buf, length, indent + 2);
131 loop_length = loop (buf, length, indent + 2);
234 errx(1, "internal error in indefinite form loop detection");
262 ret = loop (buf, len, 0);
/freebsd-9.3-release/contrib/ntp/ntpsnmpd/
H A DntpSnmpSubagentObject.c72 int loop; local
84 loop = TRUE;
85 for (i = 0; loop && i <= str_cnt; i++) {
95 loop = FALSE;
/freebsd-9.3-release/sys/dev/isp/
H A DHardware.txt73 of breed for fabrics or segmented loop (which Brocade
92 This also supports fabric and segmented loop.
144 Rinky-tink, but a solid 4 bay loop only entry model.
245 and so the second unit just isn't seen and the loop isn't stable.
273 in segmented loop mode. This avoids LIPs propagating where you don't
/freebsd-9.3-release/tools/regression/security/proc_to_proc/
H A Dscenario.c271 int error, desirederror, loop; local
273 for (loop = 0; loop < LOOP_MAX+1; loop++) {
333 switch (loop) {
/freebsd-9.3-release/usr.sbin/gstat/
H A Dgstat.c58 if (flag_b && !loop) \
77 int curx, cury, maxx, maxy, line_len, loop, max_flen; local
101 loop = 1;
349 /* We loop extra to make sure we get the information. */
350 if (!loop)
352 loop = 0;
/freebsd-9.3-release/crypto/openssl/crypto/engine/
H A Deng_dyn.c431 int num, loop; local
440 for (loop = 0; loop < num; loop++) {
441 const char *s = sk_value(ctx->dirs, loop);
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Dintel_iic.c234 u32 val, loop; local
263 loop = 0;
278 } while (--len != 0 && ++loop < 4);
281 val = loop = 0;
283 val |= *buf++ << (8 * loop);
284 } while (--len != 0 && ++loop < 4);
303 val = loop = 0;
305 val |= *buf++ << (8 * loop);
306 } while (--len != 0 && ++loop < 4);
/freebsd-9.3-release/share/examples/ppp/
H A Dppp.conf.sample560 # ppploop stream tcp nowait root /usr/sbin/ppp ppp -direct inet-loop-in
562 inet-loop:
569 set server /var/run/ppp/loop "" 0177
571 inet-loop-in:
583 load inet-loop
586 set device "!ssh whatevermachine /usr/sbin/ppp -direct inet-loop-in"
680 load loop
769 # while [ $n -lt 1000 ]; do ppp -b loop; n=$(($n + 1)); done
771 # If you want to test concurrency, try using ``ppp -dd loop'' instead.
773 loop
[all...]
/freebsd-9.3-release/usr.bin/usbhidctl/
H A Dusbhid.c63 static void dumpdata(int f, report_desc_t r, int loop);
300 dumpdata(int f, report_desc_t rd, int loop) argument
373 } while (loop || kind < 3);
452 int loop = 0; local
463 loop ^= 1;
526 dumpdata(f, r, loop);
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dremote-e7000.c552 int loop; local
561 loop = 0;
575 * we get stuck in this loop ...
586 /* Shouldn't we either break here, or check for sync in inner loop? */
590 if (loop++ == 20)
593 loop = 0;
1374 int loop;
1395 loop = 1;
1396 while (loop)
1407 loop
1997 int loop = 1; local
[all...]
/freebsd-9.3-release/bin/date/
H A Dnetdate.c135 loop:
166 goto loop;

Completed in 301 milliseconds

1234567891011>>