Searched refs:tot (Results 1 - 25 of 54) sorted by relevance

123

/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dsnprintf-test.c62 int tot = 0; local
67 tot += try ("%d", int_values[i]);
68 tot += try ("%x", int_values[i]);
69 tot += try ("%X", int_values[i]);
70 tot += try ("%o", int_values[i]);
71 tot += try ("%#x", int_values[i]);
72 tot += try ("%#X", int_values[i]);
73 tot += try ("%#o", int_values[i]);
74 tot += try ("%10d", int_values[i]);
75 tot
95 int tot = 0; local
133 int tot = 0; local
228 int tot = 0; local
[all...]
H A Dreadv.c42 size_t tot = 0; local
47 tot += iov[i].iov_len;
48 buf = malloc(tot);
49 if (tot != 0 && buf == NULL) {
53 nb = ret = read (d, buf, tot);
H A Drecvmsg.c42 size_t tot = 0; local
48 tot += iov[i].iov_len;
49 buf = malloc(tot);
50 if (tot != 0 && buf == NULL) {
54 nb = ret = recvfrom (s, buf, tot, flags, msg->msg_name, &msg->msg_namelen);
H A Dwritev.c42 size_t tot = 0; local
47 tot += iov[i].iov_len;
48 buf = malloc(tot);
49 if (tot != 0 && buf == NULL) {
58 ret = write (d, buf, tot);
H A Dsendmsg.c44 size_t tot = 0; local
50 tot += iov[i].iov_len;
51 buf = malloc(tot);
52 if (tot != 0 && buf == NULL) {
61 ret = sendto (s, buf, tot, flags, msg->msg_name, msg->msg_namelen);
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dcmp.pl10 $tot=0;
25 $tot+=$n1;
43 $nm=$tot+$n1;
44 $tot+=$i+1;
45 printf STDERR "diff at char $tot of $nm\n";
/macosx-10.10/OpenSSL098-52/src/crypto/bf/asm/
H A Dbf-686.pl14 $tot="esi";
55 &BF_ENCRYPT($i+1,$R,$L,$P,$tot,$tmp1,$tmp2,$tmp3);
59 &BF_ENCRYPT($i+2,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3);
75 &BF_ENCRYPT($i,$R,$L,$P,$tot,$tmp1,$tmp2,$tmp3);
78 &BF_ENCRYPT($i-1,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3);
93 local($i,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3)=@_;
96 &mov( $tot, &DWP(&n2a($i*4),$P,"",0));
102 &xor( $L, $tot);
104 &mov( $tot, &DWP(&n2a($BF_OFF+0x0000),$P,$tmp1,4));
110 &add( $tot,
[all...]
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Ds23_pkt.c68 int i,num,tot; local
72 tot=s->init_off;
77 i=BIO_write(s->wbio,&(buf[tot]),num);
80 s->init_off=tot;
85 if (i == num) return(tot+i);
88 tot+=i;
H A Ds2_pkt.c418 unsigned int n,tot; local
443 tot=s->s2->wnum;
446 n=(len-tot);
449 i=do_ssl_write(s,&(buf[tot]),n);
452 s->s2->wnum=tot;
458 return(tot+i);
462 tot+=i;
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dapp_rand.c169 long tot=0; local
184 tot+=egd;
186 tot+=RAND_load_file(n,-1);
189 if (tot > 512)
191 return(tot);
/macosx-10.10/ksh-23/ksh/src/lib/libsum/
H A Dsum-ast4.c47 Ast4_sum_t tot; member in struct:Ast4_s
56 a->tot.sum0 ^= a->cur.sum0;
58 a->tot.sum1 ^= a->cur.sum1;
60 a->tot.sum2 ^= a->cur.sum2;
62 a->tot.sum3 ^= a->cur.sum3;
104 a = (flags & SUM_TOTAL) ? &((Ast4_t*)p)->tot : &((Ast4_t*)p)->cur;
/macosx-10.10/OpenSSL098-52/src/crypto/bn/asm/
H A Dco-586.pl109 local($tot,$end);
123 $tot=$num+$num-1;
137 for ($i=0; $i<$tot; $i++)
151 $v=2 if (($i+1) == $tot);
200 local($b,$tot,$end,$half);
224 $tot=$num+$num-1;
226 for ($i=0; $i<$tot; $i++)
239 $v=2 if ($i+1) == $tot;
/macosx-10.10/OpenSSL098-52/src/crypto/bn/asm/x86/
H A Dcomba.pl98 local($tot,$end);
112 $tot=$num+$num-1;
126 for ($i=0; $i<$tot; $i++)
140 $v=2 if (($i+1) == $tot);
189 local($b,$tot,$end,$half);
213 $tot=$num+$num-1;
215 for ($i=0; $i<$tot; $i++)
228 $v=2 if ($i+1) == $tot;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSoundEdit.c32 int sn, si, dn, di, tot = 0, blklen; local
39 tot = len;
41 while (tot > 0) {
42 sn = (from + tot) >> FEXP;
43 si = (from + tot) - (sn << FEXP);
44 dn = (to + tot) >> FEXP;
45 di = (to + tot) - (dn << FEXP);
55 blklen = min(blklen, tot);
78 tot -= blklen;
81 while (tot >
196 int dn, di, tot = 0, blklen; local
234 int sn, si, tot = 0, blklen; local
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/Test/
H A DHarness.pm239 my ($tot, $failedtests,$todo_passed) = execute_tests(tests => \@tests);
240 print get_results($tot, $failedtests,$todo_passed);
242 my $ok = _all_ok($tot);
248 die("Failed $tot->{bad}/$tot->{tests} test programs. " .
249 "@{[$tot->{max} - $tot->{ok}]}/$tot->{max} subtests failed.\n");
255 # my $ok = _all_ok(\%tot);
259 my($tot)
[all...]
/macosx-10.10/zlib-55/zlib/examples/
H A Dgzjoin.c264 local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out) argument
268 *tot = 0;
274 the output, and the gzip trailer is written. crc and tot maintains the
277 of gzcopy() to write the gzip header and to initialize crc and tot. */
278 local void gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot, argument
409 /* update crc and tot */
411 *tot += (unsigned long)len;
421 put4(*tot, out);
428 unsigned long crc, tot; /* running crc and total uncompressed length */ local
442 gzinit(&crc, &tot, stdou
[all...]
H A Dgzappend.c261 unsigned long crc, tot; local
343 tot = strm->total_out;
344 if ((tot & 0xffffffffUL) != read4(&gz))
370 strm->total_in = tot;
/macosx-10.10/OpenSSL098-52/src/crypto/des/
H A Ddes.c757 int i,j,tot; local
778 tot=0;
782 tot=valid;
802 if ((i+tot+8) > num)
805 j=(num/8*8)-tot-8;
806 memcpy(&(out[tot]),bb,(unsigned int)j);
807 tot+=j;
812 memcpy(&(out[tot]),bb,(unsigned int)i);
813 tot+=i;
815 return(tot);
829 int j,i,n,tot=0; local
[all...]
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dhash.c276 int tot = min; local
294 tot += count;
299 printf(" Items : %d\n", tot);
301 printf(" Average: %5.2f\n", (float)tot / (float)hash->h_nbuckets);
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dasn1_par.c122 const unsigned char *p,*ep,*tot,*op,*opp; local
137 tot=p+length;
139 while ((p < tot) && (op < p))
188 r=asn1_parse2(bp,&p,(long)(tot-p),
192 if ((r == 2) || (p >= tot)) break;
/macosx-10.10/uucp-11/uucp/contrib/
H A Duurate.c226 struct Host_entry *tot = NULL; variable in typeref:struct:Host_entry
889 tot = cur->next;
894 tot->call[IN].flow[IN].bytes += cur->call[IN].flow[IN].bytes;
895 tot->call[OUT].flow[IN].bytes += cur->call[OUT].flow[IN].bytes;
896 tot->call[IN].flow[OUT].bytes += cur->call[IN].flow[OUT].bytes;
897 tot->call[OUT].flow[OUT].bytes += cur->call[OUT].flow[OUT].bytes;
898 tot->call[IN].flow[IN].time += cur->call[IN].flow[IN].time;
899 tot->call[OUT].flow[IN].time += cur->call[OUT].flow[IN].time;
900 tot->call[IN].flow[OUT].time += cur->call[IN].flow[OUT].time;
901 tot
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/unix/
H A DjkAudIO_osx.c84 A->tot += numFrames;
104 A->tot = 0;
109 A->tot = 0;
226 int tot = (int) (frac * A->tot); local
228 /* printf("SnackAudioRead frames %d rpos %d tot %d\n", nFrames, A->rpos, A->tot);*/
230 if (nFrames > tot) {
231 nFrames = tot;
266 A->tot
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/comp/
H A Dc_zlib.c587 int tot = outl - zin->avail_out; local
589 if(ret < 0) return (tot > 0) ? tot : ret;
590 return tot;
633 int tot = inl - zout->avail_in; local
635 if(ret < 0) return (tot > 0) ? tot : ret;
636 return tot;
/macosx-10.10/text_cmds-88/col/
H A Dcol.c407 static int count_size, *count, i, save, sorted_size, tot; local
433 for (tot = 0, i = 0; i <= l->l_max_col; i++) {
435 count[i] = tot;
436 tot += save;
/macosx-10.10/OpenSSL098-52/src/crypto/txt_db/
H A Dtxt_db.c255 long i,j,n,nn,l,tot=0; local
293 tot+=j;
295 ret=tot;

Completed in 365 milliseconds

123