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

1 2 3 4 5 6 7 8 91011>>

  /src/bin/rcp/
extern.h 35 int cnt; member in struct:__anon34
  /src/games/battlestar/
getcom.c 78 int cnt; local
80 cnt = 1;
88 while (cnt < WORDLEN && *buf1 &&
94 cnt++;
97 cnt++;
103 cnt++;
106 cnt++;
110 cnt++;
112 if (cnt == WORDLEN)
  /src/lib/libc/stdlib/
getsubopt.c 67 int cnt; local
112 for (cnt = 0; *tokens; ++tokens, ++cnt)
114 return(cnt);
  /src/external/bsd/mdocml/dist/
compat_getsubopt.c 41 int cnt; local
83 for (cnt = 0; *tokens; ++tokens, ++cnt)
85 return(cnt);
  /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/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
many-headers.c 26 int ind, cnt; local
28 cnt = 100000;
29 for (ind = 0; ind < cnt; ind++)
  /src/external/lgpl3/gmp/dist/mpf/
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)
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));
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
many-headers.c 26 int ind, cnt; local
28 cnt = 100000;
29 for (ind = 0; ind < cnt; ind++)
  /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/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/external/bsd/nvi/dist/vi/
v_put.c 44 u_long cnt; local
54 for (cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1; cnt--;) {
75 u_long cnt; local
85 for (cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1; cnt--;) {
v_xchar.c 89 u_long cnt; local
96 cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1;
97 if (cnt >= vp->m_start.cno)
100 vp->m_start.cno -= cnt;
v_left.c 42 db_recno_t cnt; local
54 cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1;
55 if (vp->m_start.cno > cnt)
56 vp->m_stop.cno = vp->m_start.cno - cnt;
80 db_recno_t cnt, lno; local
97 cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1;
98 if (cnt != 1) {
  /src/external/lgpl3/gmp/dist/mpn/generic/
scan0.c 43 int cnt; local
57 count_trailing_zeros (cnt, alimb);
58 return (p - up - 1) * GMP_NUMB_BITS + cnt;
scan1.c 43 int cnt; local
57 count_trailing_zeros (cnt, alimb);
58 return (p - up - 1) * GMP_NUMB_BITS + 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...]
add_ui.c 70 int cnt; local
75 count_leading_zeros (cnt, (mp_limb_t) u);
76 up[0] = (mp_limb_t) u << cnt;
77 MPFR_SET_EXP (uu, GMP_NUMB_BITS - cnt);
  /src/games/hangman/
getguess.c 96 int cnt; local
99 cnt = 0;
102 if (++cnt > 100)
  /src/usr.bin/ctags/
print.c 63 int cnt; local
76 else for (cnt = 0, cp = lbuf; GETC(!=, EOF) && cnt < ENDLINE; ++cnt) {
78 if (cnt > ENDLINE - 2)
81 ++cnt;
84 if (cnt > ENDLINE - 2)
87 ++cnt;
  /src/usr.sbin/altq/altqstat/
qdisc_blue.c 55 int cnt = count; local
89 if (count != 0 && --cnt == 0)
  /src/external/bsd/elftoolchain/dist/libdwarf/
dwarf_macinfo.c 57 Dwarf_Unsigned cnt; local
77 cnt = ms->ms_cnt - i;
78 if (max_count != 0 && cnt > max_count)
79 cnt = max_count;
82 *entry_cnt = cnt;
  /src/external/bsd/libarchive/dist/libarchive/test/
test_archive_write_set_passphrase.c 67 int *cnt; local
71 cnt = (int *)_client_data;
72 *cnt += 1;
80 int cnt = 0; local
85 archive_write_set_passphrase_callback(a, &cnt, callback1));
88 assertEqualInt(1, cnt);
91 assertEqualInt(1, cnt);
  /src/external/bsd/nvi/dist/ex/
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...]

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>