Searched refs:tmp (Results 76 - 100 of 303) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dheapsort.c60 #define SWAP(a, b, count, size, tmp) { \
63 tmp = *a; \
65 *b++ = tmp; \
86 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \
97 SWAP(par, child, count, size, tmp); \
164 char tmp, *tmp1, *tmp2; local
185 CREATE(l, nmemb, i, j, t, p, size, cnt, tmp);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/modes/
H A Dcbc128.c124 union { size_t align; unsigned char c[16]; } tmp; local
161 (*block)(in, tmp.c, key);
164 out[n] = tmp.c[n] ^ ivec[n];
175 (*block)(in, tmp.c, key);
179 *(size_t *)(tmp.c+n) ^ *(size_t *)(ivec+n);
191 (*block)(in, tmp.c, key);
194 out[n] = tmp.c[n] ^ ivec[n];
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_akey.c86 char *tmp; local
88 tmp = hex_to_string(akeyid->keyid->data, akeyid->keyid->length);
89 X509V3_add_value("keyid", tmp, &extlist);
90 OPENSSL_free(tmp);
95 tmp = hex_to_string(akeyid->serial->data,
97 X509V3_add_value("serial", tmp, &extlist);
98 OPENSSL_free(tmp);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/evp/
H A Dbio_b64.c91 char tmp[B64_BLOCK_SIZE]; member in struct:b64_struct
194 i=BIO_read(b->next_bio,&(ctx->tmp[ctx->tmp_len]),
228 q=p=(unsigned char *)ctx->tmp;
252 &(ctx->tmp[0]))
255 &(ctx->tmp[0]));
257 ctx->tmp[x]=p[x];
271 if (p == (unsigned char *)&(ctx->tmp[0]))
284 ctx->tmp[ii]=p[ii];
313 (unsigned char *)ctx->tmp,jj);
316 if (ctx->tmp[j
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Da_object.c89 char ftmp[24], *tmp = ftmp; local
182 if (tmp != ftmp)
183 OPENSSL_free(tmp);
185 tmp = OPENSSL_malloc(tmpsize);
186 if (!tmp)
190 tmp[i++] = (unsigned char)BN_div_word(bl, 0x80L);
197 tmp[i++]=(unsigned char)l&0x7f;
211 out[len++]=tmp[i]|0x80;
212 out[len++]=tmp[0];
217 if (tmp !
[all...]
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dgetnetconfig.c245 char *stringp; /* tmp string pointer */
494 char *tmpp; /* tmp string pointer */
627 char *cp; /* tmp string */
695 char *tmp, *tmp2; local
698 if ((tmp=malloc(MAXNETCONFIGLINE)) == NULL)
701 free(tmp);
704 tmp2 = tmp;
715 p->nc_netid = (char *)strcpy(tmp,ncp->nc_netid);
716 tmp = strchr(tmp, '\
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_gcd.c347 BIGNUM *tmp; local
402 tmp=A; /* keep the BIGNUM object, the value does not matter */
428 /* most of the time D is very small, so we can optimize tmp := D*X+Y */
431 if (!BN_add(tmp,X,Y)) goto err;
437 if (!BN_lshift1(tmp,X)) goto err;
441 if (!BN_lshift(tmp,X,2)) goto err;
445 if (!BN_copy(tmp,X)) goto err;
446 if (!BN_mul_word(tmp,D->d[0])) goto err;
450 if (!BN_mul(tmp,D,X,ctx)) goto err;
452 if (!BN_add(tmp,tm
559 BIGNUM *tmp; local
[all...]
H A Dbn_add.c66 const BIGNUM *tmp; local
81 { tmp=a; a=b; b=tmp; }
109 const BIGNUM *tmp; local
115 { tmp=a; a=b; b=tmp; }
267 const BIGNUM *tmp; local
280 { tmp=a; a=b; b=tmp; }
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/aes/asm/
H A Daes-586.pl433 my $tmp = $key;
446 if ($i==3) { $tmp=$s[1]; }##%eax
447 &movz ($tmp,&HB($s[1]));
448 &movz ($tmp,&BP(-128,$te,$tmp,1));
449 &shl ($tmp,8);
450 &xor ($out,$tmp);
452 if ($i==3) { $tmp=$s[2]; &mov ($s[1],$__s0); }##%ebx
453 else { &mov ($tmp,$s[2]);
454 &shr ($tmp,1
[all...]
/barrelfish-2018-10-04/lib/libc/inet/
H A Dinet_pton.c83 u_char tmp[NS_INADDRSZ], *tp; local
87 *(tp = tmp) = 0;
114 memcpy(dst, tmp, NS_INADDRSZ);
136 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
141 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
213 memcpy(dst, tmp, NS_IN6ADDRSZ);
H A Dinet_cidr_pton.c89 int n, ch, tmp, bits; local
94 tmp = 0;
98 tmp *= 10;
99 tmp += n;
100 if (tmp > 255)
105 *dst++ = (u_char) tmp;
157 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
163 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
242 memcpy(dst, tmp, NS_IN6ADDRSZ);
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/controller/ehci/
H A Dusb_ehci_pipe.c197 uint16_t tmp = 0; local
201 tmp = interval;
203 while (tmp & interval) {
204 if (hc->qh_intr_stat[tmp] < hc->qh_intr_stat[match]) {
205 match = tmp;
207 tmp++;
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dcryptotest.c176 char *tmp = NULL; local
177 tmp = tmp;
178 tmp = (char*)aes_encrypt_in_place(&en, (unsigned char *)asqinput, &asqlen2, true);
179 // tmp = (char*)aes_encrypt_in_place(&en, (unsigned char *)asqinput + asqlen, &asqlen, true);
185 tmp = (char*)aes_decrypt_in_place(&de, (unsigned char*)asqinput + asqlen, (unsigned char*)plain + asqlen, &asqlen, false, true);
186 tmp = (char*)aes_decrypt_in_place(&de, (unsigned char*)asqinput, (unsigned char*)plain, &asqlen, true, false);
/barrelfish-2018-10-04/lib/libc/string/
H A Dstrsignal.c94 char tmp[20]; local
128 t = tmp;
141 if (t <= tmp)
/barrelfish-2018-10-04/kernel/arch/arm/
H A Dmultiboot.c73 #define CHECK(pa) { lpaddr_t tmp = pa; if (tmp > end) { end = tmp; } }
/barrelfish-2018-10-04/kernel/arch/x86/
H A Dmultiboot.c70 #define CHECK(pa) { lpaddr_t tmp = pa; if (tmp > end) { end = tmp; } }
/barrelfish-2018-10-04/kernel/
H A Dpaging_generic.c71 struct cte *tmp = mdb_predecessor(*next); local
74 while(is_copy(&tmp->cap, &(*next)->cap)) {
75 if (type_is_vnode(tmp->cap.type)) {
76 *next = tmp;
79 tmp = mdb_predecessor(tmp);
81 tmp = mdb_successor(*next);
82 while(is_copy(&tmp->cap, &(*next)->cap)) {
83 if (type_is_vnode(tmp->cap.type)) {
84 *next = tmp;
[all...]
/barrelfish-2018-10-04/lib/phoenix/
H A Datomic.h38 int tmp = n; local
39 while(tmp > 0) { tmp--; asm("" ::: "memory", "cc"); }
/barrelfish-2018-10-04/lib/libc/x86/sys/
H A D__vdso_gettc.c151 uint32_t tmp; local
159 tmp = th->th_x86_hpet_idx;
160 if (hpet_dev_map == NULL || tmp != hpet_idx) {
161 hpet_idx = tmp;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Dbctest35 "$bc" >tmp.bctest <<\EOF
50 if [ 0 != "`cat tmp.bctest`" ]; then
57 "$bc" >tmp.bctest <<\EOF
85 0" != "`cat tmp.bctest`" ]; then
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A DMakefile49 sh ./mkh $(MKHFLAGS) -i _REGEX_H_ $(REGEXHSRC) >regex.tmp
50 cmp -s regex.tmp regex.h 2>/dev/null || cp regex.tmp regex.h
51 rm -f regex.tmp
103 mf.tmp: Makefile
110 DTR=$(PRE) Makefile=mf.tmp $(POST)
111 dtr: $(FILES) mf.tmp
113 rm mf.tmp
123 rm -f junk* core core.* *.core dtr *.tmp lint
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dd1_srvr.c249 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
293 s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
327 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
328 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
356 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
369 s->s3->tmp.use_rsa_tmp=1;
371 s->s3->tmp.use_rsa_tmp=0;
375 if (s->s3->tmp.use_rsa_tmp
385 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
386 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/
H A Dic.c283 word *tmp; \
284 tmp = ConBufEntry((con_info)->data, 0); \
285 tmp[CON_DATA_OFF_FLAGS] = (con_info)->flags; \
286 tmp[CON_DATA_OFF_COUNT] = (con_info)->term_count; \
287 *((double *) (tmp + CON_DATA_OFF_RHS_LO)) = (con_info)->c.l; \
288 *((double *) (tmp + CON_DATA_OFF_RHS_HI)) = (con_info)->c.u; \
541 pword *tmp; \
543 tmp = attr + OFF_LO; \
544 Dereference(tmp); \
545 lwb = Dbl(tmp
777 pword *tmp; local
1663 pword tmp; local
1778 pword *tmp; local
1803 pword *tmp; local
2037 pword *tmp; local
2308 pword *tmp; local
2417 pword *tmp; local
2561 pword *tmp; local
2895 pword *tmp; local
3055 pword *pterm, *tmp; local
3558 pword *pterm, *tmp; local
3590 pword *pterm, *tmp; local
3739 pword *pterm, *tmp; local
4185 pword *tmp, *pterm; local
5415 pword *tmp; local
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A De_jn.c158 double q0,q1,h,tmp; int32_t k,m; local
163 tmp = z*q1 - q0;
165 q1 = tmp;
179 tmp = n;
181 tmp = tmp*__ieee754_log(fabs(v*tmp));
182 if(tmp<7.09782712893383973096e+02) {
/barrelfish-2018-10-04/lib/net/
H A Dnet_filter.c143 struct net_filter_state* tmp = calloc(1, sizeof(struct net_filter_state)); local
144 assert(tmp != NULL);
146 tmp->filters_ip.start = NULL;
147 tmp->filters_ip.num_ele = 0;
148 tmp->filters_mac.start = NULL;
149 tmp->filters_mac.num_ele = 0;
164 err = connect_to_net_filter(tmp, name);
165 *st = tmp;

Completed in 241 milliseconds

1234567891011>>