| /freebsd-12.1/usr.bin/ctags/ |
| H A D | ctags.c | 96 int step; /* step through args */ in main() local 151 for (exit_val = step = 0; step < argc; ++step) in main() 153 warn("%s", argv[step]); in main() 157 curfile = argv[step]; in main() 158 find_entries(argv[step]); in main() 178 for (step = 0; step < argc; step++) { in main() 182 if (regcomp(regx + step, lbuf, in main() 188 for (step = 0; step < argc; step++) in main() 189 if (regexec(regx + step, in main() 194 for (step = 0; step < argc; step++) in main() [all …]
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | tree-ssa-loop-prefetch.c | 240 if ((*groups)->step == step in find_or_create_group() 245 if ((*groups)->step < step) in find_or_create_group() 251 group->step = step; in find_or_create_group() 349 step = iv.step; in idx_analyze_ref() 405 *step = 0; in analyze_ref() 427 ar_data.step = step; in analyze_ref() 497 HOST_WIDE_INT step = ref->group->step; in prune_ref_by_self_reuse() local 508 step = -step; in prune_ref_by_self_reuse() 543 HOST_WIDE_INT step = ref->group->step; in prune_ref_by_group_reuse() local 560 if (!step) in prune_ref_by_group_reuse() [all …]
|
| H A D | tree-ssa-loop-niter.c | 435 if ((iv0->step && integer_onep (iv0->step) in number_of_iterations_lt() 437 || (iv1->step && integer_all_onesp (iv1->step) in number_of_iterations_lt() 455 step = fold_convert (niter_type, iv0->step); in number_of_iterations_lt() 468 zps.step = step; in number_of_iterations_lt() 621 if (!zero_p (iv0->step) && !zero_p (iv1->step)) in number_of_iterations_cond() 627 iv0->step, iv1->step); in number_of_iterations_cond() 636 if (zero_p (iv0->step) && zero_p (iv1->step)) in number_of_iterations_cond() 642 if (iv0->step && tree_int_cst_sign_bit (iv0->step)) in number_of_iterations_cond() 645 if (!zero_p (iv1->step) && !tree_int_cst_sign_bit (iv1->step)) in number_of_iterations_cond() 1150 : (iv0.step in number_of_iterations_exit() [all …]
|
| H A D | tree-ssa-address.c | 113 if (step) in gen_addr_rtx() 180 if (addr->step && !integer_onep (addr->step)) in addr_for_mem_ref() 263 if (step) in tree_mem_ref_addr() 324 if (addr->step && integer_onep (addr->step)) in create_mem_ref_raw() 517 parts->step = NULL_TREE; in addr_to_parts() 583 if (parts.step && !integer_onep (parts.step)) in create_mem_ref() 675 gcc_assert (!parts.step || integer_onep (parts.step)); in create_mem_ref() 732 if (addr.step) in maybe_fold_tmr() 735 off, addr.step); in maybe_fold_tmr() 736 addr.step = NULL_TREE; in maybe_fold_tmr() [all …]
|
| H A D | loop-iv.c | 511 iv0->step = simplify_gen_binary (op, mode, iv0->step, iv1->step); in iv_add() 556 iv->step = simplify_gen_binary (MULT, mode, iv->step, mby); in iv_mult() 2091 if (iv0.step != const0_rtx && iv1.step != const0_rtx) in iv_number_of_iterations() 2096 iv0.step = simplify_gen_binary (MINUS, comp_mode, iv0.step, iv1.step); in iv_number_of_iterations() 2102 if (iv0.step == const0_rtx && iv1.step == const0_rtx) in iv_number_of_iterations() 2209 step = iv0.step; in iv_number_of_iterations() 2278 inc = INTVAL (iv0.step) - INTVAL (iv1.step); in iv_number_of_iterations() 2321 iv0.step = simplify_gen_binary (MINUS, comp_mode, iv0.step, iv1.step); in iv_number_of_iterations() 2328 iv0.step = lowpart_subreg (mode, iv0.step, comp_mode); in iv_number_of_iterations() 2362 step = iv0.step; in iv_number_of_iterations() [all …]
|
| H A D | tree-ssa-loop-manip.c | 75 if (TREE_CODE (step) == INTEGER_CST) in create_iv() 77 if (TYPE_UNSIGNED (TREE_TYPE (step))) in create_iv() 79 step1 = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step); in create_iv() 80 if (tree_int_cst_lt (step1, step)) in create_iv() 83 step = step1; in create_iv() 91 && may_negate_without_overflow_p (step)) in create_iv() 94 step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step); in create_iv() 101 step = force_gimple_operand (step, &stmts, true, var); in create_iv() 107 vb, step)); in create_iv() 694 tree step = desc->control.step; in determine_exit_conditions() local [all …]
|
| H A D | tree-ssa-loop-ivopts.c | 894 if (step && integer_zerop (step)) in alloc_iv() 899 iv->step = step; in alloc_iv() 957 return (zero_p (iv.step) ? NULL_TREE : iv.step); in determine_biv_step() 987 step = fold_convert (type, step); in find_bivs() 1284 if (zero_p (iv0->step) && zero_p (iv1->step)) in find_interesting_uses_cond() 1543 step = civ->step; in find_interesting_uses_address() 1992 step = fold_convert (type, step); in add_candidate_1() 2027 if (step && operand_equal_p (step, cand->iv->step, 0)) in add_candidate_1() 4093 tree step = iv->step, period, type; in iv_period() local 5380 step = cand->iv->step; in rewrite_use_nonlinear_expr() [all …]
|
| /freebsd-12.1/contrib/ipfilter/lib/ |
| H A D | interror.c | 528 int l = -1, r = IPF_NUM_ERRORS + 1, step; local 529 step = (r - l) / 2;; 531 while (step != 0) { 532 ie = ipf_errors + l + step; 535 step = l + step; 537 r = step; 539 l = step; 540 step = (r - l) / 2;;
|
| /freebsd-12.1/contrib/gperf/src/ |
| H A D | search.cc | 1224 step->_expected_lower = in find_asso_values() 1227 step->_expected_upper = in find_asso_values() 1233 step->_next = steps; in find_asso_values() 1234 steps = step; in find_asso_values() 1244 for (Step *step = steps; step; step = step->_next) in find_asso_values() local 1255 step->_expected_lower, step->_expected_upper); in find_asso_values() 1277 for (Step *step = steps; step; step = step->_next) in find_asso_values() local 1409 step->_asso_value_max = 2 * step->_asso_value_max; in find_asso_values() 1463 Step *step = steps; in find_asso_values() local 1464 steps = step->_next; in find_asso_values() [all …]
|
| /freebsd-12.1/lib/libvgl/ |
| H A D | simple.c | 226 int sign_x, sign_y, step, reverse, i; in VGLLine() local 232 step = 1; in VGLLine() 234 step = -1; in VGLLine() 289 plot(object, ++x, y += step, reverse, in VGLLine() 293 plot(object, --x1, y1 -= step, reverse, in VGLLine() 300 plot(object, x1, y1 -= step, reverse, in VGLLine() 344 plot(object, x, y += step, reverse, color); in VGLLine() 354 plot(object, ++x, y += step, reverse, in VGLLine() 359 plot(object, --x1, y1 -= step, reverse, in VGLLine() 377 plot(object, ++x, y += step, reverse, in VGLLine() [all …]
|
| /freebsd-12.1/lib/libnv/ |
| H A D | msgio.c | 361 unsigned int i, step, j; in fd_recv() local 369 ret = i = step = 0; in fd_recv() 372 step = PKG_MAX_SIZE; in fd_recv() 374 step = nfds - i; in fd_recv() 375 ret = fd_package_recv(sock, fds + i, step); in fd_recv() 384 i += step; in fd_recv() 393 unsigned int i, step; in fd_send() local 401 ret = i = step = 0; in fd_send() 404 step = PKG_MAX_SIZE; in fd_send() 406 step = nfds - i; in fd_send() [all …]
|
| /freebsd-12.1/contrib/gdb/gdb/gdbserver/ |
| H A D | server.c | 174 default_action.step = 0; in handle_v_cont() 186 resume_info[i].step = 1; in handle_v_cont() 188 resume_info[i].step = 0; in handle_v_cont() 278 myresume (int step, int sig) in myresume() argument 283 if (step || sig || cont_thread > 0) in myresume() 287 resume_info[0].step = step; in myresume() 293 resume_info[n].step = 0; in myresume()
|
| /freebsd-12.1/usr.sbin/diskinfo/ |
| H A D | diskinfo.c | 420 if (step > 16384) in speeddisk() 421 step = 16384; in speeddisk() 429 b1 = sectorcount - step; in speeddisk() 433 b0 += step; in speeddisk() 435 b1 -= step; in speeddisk() 445 b0 += step; in speeddisk() 447 b1 += step; in speeddisk() 456 b0 += step; in speeddisk() 458 b1 += step; in speeddisk() 467 b0 += step; in speeddisk() [all …]
|
| /freebsd-12.1/tests/sys/cddl/zfs/tests/acl/nontrivial/ |
| H A D | zfs_acl_chmod_inherit_002_pos.ksh | 146 typeset -i count=0 pass=0 passcnt=0 isinherit=0 maxnumber=4 step=0 169 step=0 173 step=1 247 step=0 293 if (( step > 0 )); then 294 (( count = count + step ))
|
| H A D | zfs_acl_chmod_inherit_003_pos.ksh | 147 typeset -i count=0 pass=0 passcnt=0 isinherit=0 maxnumber=4 step=0 170 step=0 174 step=1 258 step=0 306 if (( step > 0 )); then 307 (( count = count + step ))
|
| /freebsd-12.1/gnu/usr.bin/gdb/gdbserver/ |
| H A D | fbsd-low.c | 58 int step, int signal); 643 resume_info.step = resume_info.sig = resume_info.leave_stopped = 0; in fbsd_wait() 776 int step, int signal) in fbsd_resume_one_process() argument 806 step ? "step" : "continue", signal, in fbsd_resume_one_process() 823 if (step == 0) in fbsd_resume_one_process() 825 step = 1; in fbsd_resume_one_process() 858 process->stepping = step; in fbsd_resume_one_process() 903 int step; in fbsd_continue_one_thread() local 912 step = process->stepping || process->resume->step; in fbsd_continue_one_thread() 914 step = process->resume->step; in fbsd_continue_one_thread() [all …]
|
| /freebsd-12.1/crypto/openssl/crypto/aes/asm/ |
| H A D | aesv8-armx.pl | 387 mov $step,#16 389 cclr $step,eq 395 vld1.8 {$dat},[$inp],$step 456 cclr $step,eq 461 vld1.8 {q8},[$inp],$step 493 cclr $step,eq 500 vld1.8 {q8},[$inp],$step 722 mov $step,#16 731 cclr $step,lo 835 mov $step,#16 [all …]
|
| /freebsd-12.1/contrib/libarchive/libarchive/ |
| H A D | archive_blake2sp_ref.c | 300 size_t i, step; in main() local 321 for(step = 1; step < BLAKE2S_BLOCKBYTES; ++step) { in main() 333 while (mlen >= step) { in main() 334 if ( (err = blake2sp_update(&S, p, step)) < 0 ) { in main() 337 mlen -= step; in main() 338 p += step; in main()
|
| H A D | archive_blake2s_ref.c | 308 size_t i, step; in main() local 329 for(step = 1; step < BLAKE2S_BLOCKBYTES; ++step) { in main() 341 while (mlen >= step) { in main() 342 if ( (err = blake2s_update(&S, p, step)) < 0 ) { in main() 345 mlen -= step; in main() 346 p += step; in main()
|
| /freebsd-12.1/usr.bin/last/ |
| H A D | last.c | 455 ARG *step; in want() local 463 for (step = arglist; step; step = step->next) in want() 464 switch(step->type) { in want() 471 if (!strcasecmp(step->name, bp->ut_host)) in want() 475 if (!strcmp(step->name, bp->ut_line)) in want() 479 if (!strcmp(step->name, bp->ut_user)) in want()
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_shadow_setup.cc | 68 uptr step = GetMmapGranularity(); in ProtectGap() local 69 while (size > step && addr < kZeroBaseMaxShadowStart) { in ProtectGap() 70 addr += step; in ProtectGap() 71 size -= step; in ProtectGap()
|
| /freebsd-12.1/tools/regression/kgssapi/ |
| H A D | gsstest.c | 45 int step; /* test step number */ member 187 args.step = 1; in main() 214 args.step = 2; in main() 240 args.step = 3; in main() 267 args.step = 4; in main() 285 args.step = 5; in main()
|
| /freebsd-12.1/contrib/dialog/ |
| H A D | buttons.c | 270 dlg_button_x_step(const char **labels, int limit, int *gap, int *margin, int *step) in dlg_button_x_step() argument 292 *step = *gap + (used + count - 1) / count; in dlg_button_x_step() 307 int gap, margin, step; in dlg_button_layout() local 310 while (!dlg_button_x_step(labels, width, &gap, &margin, &step)) in dlg_button_layout() 333 int step = 0; in dlg_draw_buttons() local 351 step = 1; in dlg_draw_buttons() 353 dlg_button_x_step(labels, limit, &gap, &margin, &step); in dlg_draw_buttons() 383 if ((y += step) > limit) in dlg_draw_buttons() 386 if ((x += step) > limit) in dlg_draw_buttons()
|
| /freebsd-12.1/sys/crypto/skein/ |
| H A D | skein_debug.c | 19 static void Show64_step(size_t cnt,const u64b_t *X,size_t step) in Show64_step() argument 22 for (i=j=0;i < cnt;i++,j+=step) in Show64_step() 36 size_t step = (xptr & 1) ? 2 : 1; in Show64_flag() local 37 if (step != 1) in Show64_flag() 41 Show64_step(cnt,X,step); in Show64_flag()
|
| /freebsd-12.1/sys/dev/qlxgbe/ |
| H A D | ql_misc.c | 112 step = 1; in ql_rdwr_offchip_mem() 118 step = 2; in ql_rdwr_offchip_mem() 124 step = 3; in ql_rdwr_offchip_mem() 131 step = 4; in ql_rdwr_offchip_mem() 137 step = 5; in ql_rdwr_offchip_mem() 143 step = 6; in ql_rdwr_offchip_mem() 149 step = 7; in ql_rdwr_offchip_mem() 155 step = 7; in ql_rdwr_offchip_mem() 161 step = 8; in ql_rdwr_offchip_mem() 168 step = 9; in ql_rdwr_offchip_mem() [all …]
|