Searched refs:tmp (Results 126 - 150 of 303) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/lwip/src/core/ipv4/
H A Dinet_chksum.c204 u32_t sum = 0, tmp; local
224 tmp = sum + *pl++; /* ping */
225 if (tmp < sum) {
226 tmp++; /* add back carry */
229 sum = tmp + *pl++; /* pong */
230 if (sum < tmp) {
/barrelfish-2018-10-04/lib/arranet/
H A Dinet_chksum.c196 u32_t sum = 0, tmp; local
215 tmp = sum + *pl++; /* ping */
216 if (tmp < sum) {
217 tmp++; /* add back carry */
220 sum = tmp + *pl++; /* pong */
221 if (sum < tmp) {
/barrelfish-2018-10-04/usr/acpi/
H A Dacpi_ec.c204 ACPI_INTEGER tmp; local
205 as = acpi_eval_integer(handle, "_GLK", &tmp);
206 ec->use_glk = (ACPI_SUCCESS(as) && tmp);
341 ACPI_INTEGER tmp; local
342 as = acpi_eval_integer(ec->handle, "_GLK", &tmp);
343 ec->use_glk = (ACPI_SUCCESS(as) && tmp);
/barrelfish-2018-10-04/include/vm/
H A Dvm_radix.c337 struct vm_radix_node *rnode, *tmp; local
376 tmp = vm_radix_node_get(vm_radix_trimkey(index,
379 if (tmp == NULL) {
385 tmp->rn_count = 0;
386 vm_radix_node_put(tmp);
389 *parentp = tmp;
390 vm_radix_addpage(tmp, index, clev, page);
391 vm_radix_addpage(tmp, m->pindex, clev, m);
415 tmp = vm_radix_node_get(vm_radix_trimkey(index, clev + 1), 2, clev);
417 if (tmp
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Ds3_enc.c231 is_exp=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
232 c=s->s3->tmp.new_sym_enc;
233 m=s->s3->tmp.new_hash;
237 if (s->s3->tmp.new_compression == NULL)
240 comp=s->s3->tmp.new_compression->method;
315 p=s->s3->tmp.key_block;
320 j=is_exp ? (cl < SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher) ?
321 cl : SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher)) : cl;
343 if (n > s->s3->tmp.key_block_length)
396 if (s->s3->tmp
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A DCA.com169 $ X509 -x509toreq -in newreq.pem -signkey newreq.pem -out tmp.pem
171 $ CA -policy policy_anything -out newcert.pem -infiles tmp.pem
196 $ tmp=$STATUS
197 $ IF tmp .NE. 0 THEN RET=tmp
/barrelfish-2018-10-04/usr/tests/capops/
H A Dretype.c120 err = cnode_create_from_mem(cncap, cnram, &tmp.cnode, DEFAULT_CNODE_BITS);
122 tmp.slot = 0;
124 err = cap_retype(tmp, cap2, BASE_PAGE_SIZE, ObjType_Frame, BASE_PAGE_SIZE, 3);
127 for (tmp.slot = 0; tmp.slot <= 2; tmp.slot++) {
128 err = invoke_frame_identify(tmp, &fi);
130 if (bor_id.base + (2+tmp.slot)*BASE_PAGE_SIZE != fi.base ||
134 snprintf(buf, 16, "slot %d: ", tmp.slot);
135 print_unexpected(buf, bor_id.base + (2+tmp
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_div.c195 mp_word tmp; local
196 tmp = ((mp_word) x.dp[i]) << ((mp_word) DIGIT_BIT);
197 tmp |= ((mp_word) x.dp[i - 1]);
198 tmp /= ((mp_word) y.dp[t]);
199 if (tmp > (mp_word) MP_MASK)
200 tmp = MP_MASK;
201 q.dp[i - t - 1] = (mp_digit) (tmp & (mp_word) (MP_MASK));
/barrelfish-2018-10-04/lib/tommath/mtest/
H A Dmtest.c72 int n, tmp; local
284 tmp = abs(rand()) & THE_MASK;
285 mp_add_d(&a, tmp, &b);
288 printf("%s\n%d\n", buf, tmp);
293 tmp = abs(rand()) & THE_MASK;
294 mp_sub_d(&a, tmp, &b);
297 printf("%s\n%d\n", buf, tmp);
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dconsole.tcl792 ![catch {EvalSlave history event [incr id -1]} tmp]} {
793 set lbl [lindex [split $tmp "\n"] 0]
794 if {[string len $lbl]>32} { set lbl [string range $tmp 0 29]... }
797 $con insert limit [list $tmp]
872 set tmp $data(cmdsave)
875 set data(cmdsave) $tmp
879 $w insert limit $tmp
953 set data(tmp) [CmdGet $data(console)]
960 set tmp [expr $pcnt/100.0*[$data(console) index end]]
961 $data(console) delete 1.0 "$tmp linestar
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dsch_util.c82 pword *cur_mc, *tmp, *cur_tail; local
96 tmp = cur_mc->val.ptr;
97 Dereference_(tmp);
98 Get_Name(tmp->val,tmp->tag,key);
100 tmp = cur_mc->val.ptr+1;
101 Dereference_(tmp);
102 if (IsList(tmp->tag)) {
103 tmp = tmp
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_div.c185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
226 tmp=BN_CTX_get(ctx);
232 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
269 if (!bn_wexpand(tmp,(div_n+1))) goto err;
380 l0=bn_mul_words(tmp->d,sdiv->d,div_n,q);
381 tmp->d[div_n]=l0;
385 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n+1))
395 * that q != 0, but if q == 0 then tmp is
430 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
447 tmp
[all...]
H A Dbn_shift.c172 BN_ULONG l,tmp; local
211 tmp =(l>>rb)&BN_MASK2;
213 *(t++) =(tmp|(l<<lb))&BN_MASK2;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c365 char *tmp, *q; local
370 if(!(tmp = OPENSSL_malloc(len * 3 + 1))) {
374 q = tmp;
382 ebcdic2ascii(tmp, tmp, q - tmp - 1);
385 return tmp;
679 unsigned char tmp[16]; member in struct:__anon1299
680 /* Total number of bytes in tmp */
745 memcpy(v6, v6stat.tmp, v6sta
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost2001.c101 BIGNUM *r=NULL,*s=NULL,*X=NULL,*tmp=NULL,*tmp2=NULL, *k=NULL,*e=NULL; local
162 if (!tmp) tmp = BN_CTX_get(ctx);
163 BN_mod_mul(tmp,priv_key,r,order,ctx);
167 BN_mod_add(s,tmp,tmp2,order,ctx);
191 BIGNUM *X=NULL,*tmp=NULL; local
201 tmp = BN_CTX_get(ctx);
227 BN_sub(tmp,order,sig->r);
228 BN_mod_mul(z2,tmp,v,order,ctx);
/barrelfish-2018-10-04/lib/libc/db/btree/
H A Dbt_put.c73 u_int32_t nbytes, tmp; local
127 tmp = key->size;
129 &tmp, sizeof(u_int32_t));
139 tmp = data->size;
141 &tmp, sizeof(u_int32_t));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Da_gentm.c74 char tmp[24];
78 ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len);
79 tmpstr.data = tmp;
H A Da_utctm.c74 char tmp[24];
78 ebcdic2ascii(tmp, x.data, (len >= sizeof tmp) ? sizeof tmp : len);
79 x.data = tmp;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/cluster_labs/
H A DMakefile93 sed -e '/^# DO NOT DELETE.*/,$$d' < Makefile > Makefile.tmp
94 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
95 gcc -M $(CFLAGS) $(SRC) >> Makefile.tmp
96 perl ../../../util/clean-depend.pl < Makefile.tmp > Makefile.new
97 rm -f Makefile.tmp Makefile
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/ibmca/
H A DMakefile93 sed -e '/^# DO NOT DELETE.*/,$$d' < Makefile > Makefile.tmp
94 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
95 gcc -M $(CFLAGS) $(SRC) >> Makefile.tmp
96 perl ../../../util/clean-depend.pl < Makefile.tmp > Makefile.new
97 rm -f Makefile.tmp Makefile
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/rsaref/
H A DMakefile114 sed -e '/^# DO NOT DELETE.*/,$$d' < Makefile > Makefile.tmp
115 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
116 gcc -M $(CFLAGS) $(SRC) >> Makefile.tmp
117 perl ../../../util/clean-depend.pl < Makefile.tmp > Makefile.new
118 rm -f Makefile.tmp Makefile
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/zencod/
H A DMakefile93 sed -e '/^# DO NOT DELETE.*/,$$d' < Makefile > Makefile.tmp
94 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
95 gcc -M $(CFLAGS) $(SRC) >> Makefile.tmp
96 perl ../../../util/clean-depend.pl < Makefile.tmp > Makefile.new
97 rm -f Makefile.tmp Makefile
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Defx_filter.c54 uint16_t tmp; local
57 tmp = 0x1fff ^ (uint16_t)(key >> 16);
58 tmp = tmp ^ tmp >> 3 ^ tmp >> 6;
59 tmp = tmp ^ tmp >> 9;
62 tmp
[all...]
/barrelfish-2018-10-04/lib/libc/posix1e/
H A Dacl_support_nfs4.c100 const char *tmp; local
102 while ((tmp = format_flag(&var, flags)) != NULL) {
103 off += snprintf(str + off, size - off, "%s/", tmp);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bio/
H A Db_sock.c571 unsigned int tmp[4]; local
574 tmp[0]=tmp[1]=tmp[2]=tmp[3]=0;
582 tmp[num]=tmp[num]*10+c-'0';
583 if (tmp[num] > 255) return(0);
597 ip[0]=tmp[0];
598 ip[1]=tmp[
[all...]

Completed in 9276 milliseconds

1234567891011>>