HomeSort by: relevance | last modified time | path
    Searched refs:cnt (Results 1 - 25 of 1691) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libgcc/config/nios2/
lib2-mul.c 31 USItype cnt = a; local
33 while (cnt)
35 if (cnt & 1)
38 cnt >>= 1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/nios2/
lib2-mul.c 31 USItype cnt = a; local
33 while (cnt)
35 if (cnt & 1)
38 cnt >>= 1;
  /src/external/bsd/nvi/dist/ex/
ex.awk 4 printf("#define %s %d\n", $2, cnt++);
ex_z.c 43 db_recno_t cnt, equals, lno; local
56 * a line from the cnt if using the window size to leave room for
60 cnt = cmdp->count;
63 cnt = O_VAL(sp, O_SCROLL) * 2;
65 cnt = O_VAL(sp, O_WINDOW) - 1;
74 case E_C_CARAT: /* Display cnt * 2 before the line. */
76 if (lno > cnt * 2)
77 cmdp->addr1.lno = (lno - cnt * 2) + 1;
80 cmdp->addr2.lno = (cmdp->addr1.lno + cnt) - 1;
83 cmdp->addr1.lno = lno > cnt ? (lno - cnt) + 1 : 1
    [all...]
  /src/external/bsd/nvi/dist/ipc/
ipc.awk 4 printf("#define %s %d\n", $2, ++cnt);
vipc.awk 4 printf("#define %s %d\n", $2, ++cnt);
  /src/external/lgpl3/mpfr/dist/src/
nbits_ulong.c 33 int cnt; local
39 count_leading_zeros (cnt, (mp_limb_t) n);
40 cnt = GMP_NUMB_BITS - cnt;
44 cnt = 0;
49 cnt += 16;
57 cnt += 8;
65 cnt += 4;
73 cnt += 2;
79 cnt += 1 + (n >= 2)
93 int cnt; local
    [all...]
  /src/external/gpl2/texinfo/dist/util/
infosrch 33 $cnt = 0;
36 print "$target\n $lines[($cnt-1)]\n<$cnt> $lines[$cnt]\n $lines[($cnt+1)]\n";
40 if($lines[($cnt-6)]){
41 print " $lines[($cnt-6)]\n";
43 if($lines[($cnt-5)]){
44 print " $lines[($cnt-5)]\n";
46 if($lines[($cnt-4)])
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
int_util.h 29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
  /src/external/bsd/nsd/dist/compat/
setproctitle.c 27 ssize_t cnt = 0; local
40 cnt = readlink("/proc/self/exe", buf, len);
41 } while (cnt >= 0 && (size_t)cnt == len);
43 if (cnt >= 0) {
44 buf[cnt] = '\0';
57 int cnt = 0, off = 0; local
64 cnt = snprintf(buf, sizeof(buf), "%s%s", basename(exe), sep);
65 if ((size_t)cnt >= sizeof(buf)) {
66 cnt = 31; /* leave room for '\0' *
    [all...]
  /src/external/lgpl3/gmp/dist/mpf/
get_d_2exp.c 40 int cnt; local
51 count_leading_zeros (cnt, ptr[abs_size - 1]);
52 cnt -= GMP_NAIL_BITS;
54 *expptr = EXP(src) * GMP_NUMB_BITS - cnt;
55 return mpn_get_d (ptr, abs_size, size, -(abs_size * GMP_NUMB_BITS - cnt));
pow_ui.c 43 int cnt; local
54 count_leading_zeros (cnt, (mp_limb_t) e);
55 cnt = GMP_LIMB_BITS - 1 - cnt;
61 mpf_init2 (t, mpf_get_prec (r) + cnt);
64 while (--cnt > 0)
67 if ((e >> cnt) & 1)
  /src/bin/pax/
buf_subs.c 219 off_t cnt; local
248 if ((cnt = (skcnt/blksz) * blksz) < skcnt)
249 cnt += blksz;
250 if (ar_rev((off_t)cnt) < 0)
258 if ((cnt -= skcnt) > 0) {
274 bufpt = buf + cnt;
385 pback(char *pt, int cnt)
387 bufpt -= cnt;
388 memcpy(bufpt, pt, cnt);
404 off_t cnt; local
493 int cnt; local
530 int cnt; local
577 int cnt; local
615 int cnt; local
685 int cnt = 0; local
784 int cnt; local
885 int cnt; local
933 int cnt; local
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/printf/
flt1282mpn.c 70 int cnt; local
75 count_leading_zeros (cnt, res_ptr[N - 1]);
76 cnt -= NUM_LEADING_ZEROS;
77 res_ptr[N - 1] = res_ptr[N - 1] << cnt
78 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt));
79 res_ptr[0] <<= cnt; local
80 *expt = FLT128_MIN_EXP - 1 - cnt;
84 count_leading_zeros (cnt, res_ptr[0]);
85 if (cnt >= NUM_LEADING_ZEROS)
87 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS)
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
flt1282mpn.c 70 int cnt; local
75 count_leading_zeros (cnt, res_ptr[N - 1]);
76 cnt -= NUM_LEADING_ZEROS;
77 res_ptr[N - 1] = res_ptr[N - 1] << cnt
78 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt));
79 res_ptr[0] <<= cnt; local
80 *expt = FLT128_MIN_EXP - 1 - cnt;
84 count_leading_zeros (cnt, res_ptr[0]);
85 if (cnt >= NUM_LEADING_ZEROS)
87 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS)
    [all...]
  /src/external/bsd/ipf/dist/lib/
count4bits.c 22 int cnt = 0, i, j; local
28 cnt++;
32 for (i = 32, j = cnt; i; i--, j--) {
38 return cnt;
  /src/sys/arch/sparc/dev/
sxreg.h 194 #define SX_LD(dreg, cnt, o) (0x80000000 | ((cnt) << 23) | SX_LOAD | \
196 #define SX_LDB(dreg, cnt, o) (0x80000000 | ((cnt) << 23) | SX_LOAD | \
198 #define SX_LDW(dreg, cnt, o) (0x80000000 | ((cnt) << 23) | SX_LOAD | \
200 #define SX_LDP(dreg, cnt, o) (0x80000000 | ((cnt) << 23) | SX_LOAD | \
202 #define SX_LDUQ0(dreg, cnt, o) (0x80000000 | ((cnt) << 23) | SX_LOAD |
    [all...]
  /src/usr.bin/tail/
read.c 143 int blen, cnt, recno, wrap; local
153 blen = cnt = recno = wrap = 0;
156 if (++cnt > blen) {
161 p = sp + cnt - 1;
165 if (lines[recno].blen < cnt) {
167 cnt + 256)) == NULL)
170 lines[recno].blen = cnt + 256;
172 memmove(lines[recno].l, sp, lines[recno].len = cnt);
173 cnt = 0;
186 if (cnt) {
    [all...]
  /src/external/lgpl3/gmp/dist/mpz/
tdiv_q_2exp.c 1 /* mpz_tdiv_q_2exp -- Divide an integer by 2**CNT. Round the quotient
36 mpz_tdiv_q_2exp (mpz_ptr r, mpz_srcptr u, mp_bitcnt_t cnt)
44 limb_cnt = cnt / GMP_NUMB_BITS;
54 cnt %= GMP_NUMB_BITS;
55 if (cnt != 0)
57 mpn_rshift (rp, up, rn, cnt);
  /src/usr.bin/paste/
paste.c 100 int cnt, output; local
106 for (cnt = 0; cnt < argc; cnt++) {
107 if (strcmp(argv[cnt], "-") == 0)
108 fpp[cnt] = stdin;
109 else if (!(fpp[cnt] = fopen(argv[cnt], "r")))
110 err(1, "%s", argv[cnt]);
117 for (cnt = 0; cnt < argc; cnt++)
164 int cnt; local
201 int cnt; local
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/menu/
platform.cpp 39 int i, cnt; local
42 for (i = cnt = 0, name = platid_name_table;
49 if (n == cnt)
55 if (n == cnt) {
64 return reinterpret_cast <void *>(cnt);
67 cnt++;
  /src/external/lgpl3/gmp/dist/mpn/generic/
lshift.c 33 /* Shift U (pointed to by up and n limbs long) cnt bits to the left
38 1. 0 < cnt < GMP_NUMB_BITS.
43 mpn_lshift (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt)
51 ASSERT (cnt >= 1);
52 ASSERT (cnt < GMP_NUMB_BITS);
58 tnc = GMP_NUMB_BITS - cnt;
61 high_limb = (low_limb << cnt) & GMP_NUMB_MASK;
67 high_limb = (low_limb << cnt) & GMP_NUMB_MASK;
lshiftc.c 34 /* Shift U (pointed to by up and n limbs long) cnt bits to the left
39 1. 0 < cnt < GMP_NUMB_BITS.
44 mpn_lshiftc (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt)
52 ASSERT (cnt >= 1);
53 ASSERT (cnt < GMP_NUMB_BITS);
59 tnc = GMP_NUMB_BITS - cnt;
62 high_limb = (low_limb << cnt);
68 high_limb = low_limb << cnt;
rshift.c 33 /* Shift U (pointed to by up and N limbs long) cnt bits to the right
38 1. 0 < cnt < GMP_NUMB_BITS.
43 mpn_rshift (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt)
51 ASSERT (cnt >= 1);
52 ASSERT (cnt < GMP_NUMB_BITS);
55 tnc = GMP_NUMB_BITS - cnt;
58 low_limb = high_limb >> cnt;
64 low_limb = high_limb >> cnt;
  /src/crypto/external/apache2/openssl/dist/test/recipes/
02-test_ordinals.t 22 my $cnt = 0;
45 $number = $cnt + 1 if $number eq '?';
46 $number = $cnt if $number eq '?+';
47 if ($cnt > $number
48 || ($cnt == $number && ($qualifier ne $newqual
54 $cnt = $tokens[1];

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>