HomeSort by relevance Sort by last modified time
    Searched defs:counter (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/arcfour/
arcfour_str2key.c 14 int counter; local
15 for (counter=0;counter<len;counter++) {
16 unicode[2*counter]=ascii[counter];
17 unicode[2*counter + 1]=0x00;
66 int counter;
67 for(counter=0;counter<16;counter++
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cdrw/
write_image.c 181 int counter; local
187 for (counter = 0; counter < 200; counter++) {
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
winchnstr.c 57 int counter = 0; local
70 while ((counter < ncols) && maxcols > 0) {
74 if (counter + eucw > ncols)
82 counter++;
86 counter++;
89 if (counter < ncols)
91 return (counter);
winnstr.c 55 int counter = 0; local
69 while (counter < ncols) {
72 if (counter + eucw > ncols)
80 counter++;
85 counter++;
96 if (counter < ncols)
99 return (counter);
winnwstr.c 46 int counter = 0; local
61 while (counter < ncols) {
81 counter++;
91 if (counter < ncols)
94 return (counter);
winstr.c 50 int counter = 0; local
69 str[counter++] = (char) wc;
73 str[counter++] = (char) wc;
76 str[counter] = '\0';
78 return (counter);
delkey.c 56 int counter = 0, i, num_deleted_keys = 0; local
68 while (++counter < numkeys) {
88 i = (numkeys - counter) - 1;
91 if (counter <= *lmorder) {
92 if (counter < *first_macro) {
93 if (counter <= *lkorder)
init_costs.c 128 static int counter = 0; variable
133 counter++;
151 counter = 0;
153 return (counter);
newwin.c 54 int counter = 0; local
66 while (counter < nlines) {
67 memSset(&win->_y[counter][0], (chtype) ' ', ncols);
73 win->_y16[counter][i] = (_ochtype) ' ';
76 counter++;
waddwchnstr.c 49 int counter; local
69 counter = win->_maxx - my_x;
70 while ((ncols > 0) && (*string) && (counter > 0)) {
81 if ((scrw = wcscrw(rawc)) > counter)
106 counter -= scrw;
winwchnstr.c 48 int counter = 0; local
64 while ((counter < ncols) && maxcols > 0) {
83 counter++;
85 if (counter < ncols)
87 return (counter);
winwstr.c 41 int counter = 0; local
79 return (counter);
vidupdate.c 159 * counter is the maximum attributes allowed on a terminal.
179 int counter = max_attributes, i, j, tempmode; local
192 if ((j = counter) >= 0) {
  /onnv/onnv-gate/usr/src/cmd/sgs/dump/common/
fcns.c 83 int counter; local
107 for (counter = 0; counter < nseg; counter++) {
109 if (gelf_getphdr(elf_file, counter, &p_phdr) == 0) {
  /onnv/onnv-gate/usr/src/common/openssl/crypto/dsa/
dsagen.c 99 int counter,h; local
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
dsa_gen.c 112 int counter=0; local
201 counter=0;
209 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter))
257 counter++;
261 if (counter >= 4096) break;
304 if (counter_ret != NULL) *counter_ret=counter;
dsatest.c 141 int counter,ret=0,i,j; local
161 seed, 20, &counter, &h, &cb))
170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h);
174 if (counter != 105)
176 BIO_printf(bio_err,"counter should be 105\n");
  /onnv/onnv-gate/usr/src/uts/common/os/
bitmap.c 175 int counter = start >> BT_ULSHIFT; local
190 word = map[counter];
205 while ((word == 0) && (counter < limit)) {
206 word = map[++counter];
214 if ((counter == limit) && (partial_stop != BT_ULMASK)) {
231 return ((counter << BT_ULSHIFT) | (lowbit(word) - 1));
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
send_tgs.c 234 krb5_pa_data * const * counter; local
236 for (counter = padata; *counter; counter++, i++);
244 for (i = 1, counter = padata; *counter; counter++, i++)
245 combined_padata[i] = (krb5_pa_data *) *counter;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
conversions.c 79 int counter; local
84 for (counter = 0; c_list[counter].string; ++counter)
85 if (strstr(str, c_list[counter].string))
86 rc = rc | c_list[counter].value;
  /onnv/onnv-gate/usr/src/cmd/prstat/
prfile.c 96 int counter; local
99 counter = abs(fd_cnt_old - fd_cnt) + NUM_RESERVED_FD;
109 counter--;
113 if (counter == 0)
  /onnv/onnv-gate/usr/src/cmd/wbem/provider/tools/rds/
rdfile.c 114 int counter; local
117 counter = abs(fd_cnt_old - fd_cnt) + NUM_RESERVED_FD;
127 counter--;
131 if (counter == 0)
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/
bn_blind.c 126 unsigned int counter; member in struct:bn_blinding_st
155 ret->counter = BN_BLINDING_COUNTER;
183 if (--(b->counter) == 0 && b->e != NULL &&
198 if (b->counter == 0)
199 b->counter = BN_BLINDING_COUNTER;
  /onnv/onnv-gate/usr/src/uts/intel/io/
pit_beep.c 256 int counter; local
259 counter = 0;
261 counter = PIT_HZ / freq;
262 if (counter > UINT16_MAX)
263 counter = UINT16_MAX;
264 else if (counter < 1)
265 counter = 1;
269 outb(PITCTR2_PORT, counter & 0xff);
270 outb(PITCTR2_PORT, counter >> 8);
  /onnv/onnv-gate/usr/src/cmd/lms/SyncLib/src/
ThreadUnix.cpp 159 int counter = 5; // givin it 5 tries local
163 while (counter > 0) {
169 --counter;

Completed in 6173 milliseconds

1 2 3 4