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

1234567891011>>

/barrelfish-master/lib/openssl-1.0.0d/demos/bio/
H A Dsaccept.c33 BIO *ssl_bio,*tmp; local
93 tmp=BIO_pop(in);
94 BIO_free_all(tmp);
/barrelfish-master/include/arch/aarch64/machine/
H A Datomic.h60 uint32_t tmp; \
68 : "=&r"(tmp), "=&r"(res) \
77 uint64_t tmp; \
85 : "=&r"(tmp), "=&r"(res) \
106 uint32_t tmp; \
117 : "=&r"(tmp), "=&r"(res) \
129 uint64_t tmp; \
140 : "=&r"(tmp), "=&r"(res) \
155 uint32_t tmp, ret; local
163 : "=&r"(tmp), "
174 uint64_t tmp, ret; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Da_time.c79 char tmp[24];
87 ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len);
88 tmpstr.data = tmp;
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-master/lib/openssl-1.0.0d/ms/
H A Dtestce.bat90 copy ..\certs\*.pem cert.tmp >nul
91 cecopy cert.tmp CE:\OpenSSL
116 cerun CE:\OpenSSL\openssl verify -CAfile \OpenSSL\cert.tmp \OpenSSL\certs\*.pem
131 cerun CE:\OpenSSL\ssltest -ssl2 -server_auth -CAfile \OpenSSL\cert.tmp
135 cerun CE:\OpenSSL\ssltest -ssl2 -client_auth -CAfile \OpenSSL\cert.tmp
139 cerun CE:\OpenSSL\ssltest -ssl2 -server_auth -client_auth -CAfile \OpenSSL\cert.tmp
147 cerun CE:\OpenSSL\ssltest -ssl3 -server_auth -CAfile \OpenSSL\cert.tmp
151 cerun CE:\OpenSSL\ssltest -ssl3 -client_auth -CAfile \OpenSSL\cert.tmp
155 cerun CE:\OpenSSL\ssltest -ssl3 -server_auth -client_auth -CAfile \OpenSSL\cert.tmp
163 cerun CE:\OpenSSL\ssltest -server_auth -CAfile \OpenSSL\cert.tmp
[all...]
/barrelfish-master/lib/libc/iconv/
H A Dcitrus_module.c181 int dewey[MAXDEWEY], tmp[MAXDEWEY]; local
212 if ((n = _getdewey(tmp, dp->d_name+len+4)) == 0)
223 if (tmp[0] == major)
226 if (tmp[0] == major) {
227 if (n == 1 || tmp[1] >= minor)
236 if (_cmpndewey(tmp, n, dewey, ndewey) <= 0)
244 bcopy(tmp, dewey, sizeof(dewey));
/barrelfish-master/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-master/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-master/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-master/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-master/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-master/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-master/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-master/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-master/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-master/lib/libc/string/
H A Dstrsignal.c94 char tmp[20]; local
128 t = tmp;
141 if (t <= tmp)
/barrelfish-master/lib/phoenix/
H A Datomic.h38 int tmp = n; local
39 while(tmp > 0) { tmp--; asm("" ::: "memory", "cc"); }
/barrelfish-master/kernel/arch/arm/
H A Dmultiboot.c73 #define CHECK(pa) { lpaddr_t tmp = pa; if (tmp > end) { end = tmp; } }
/barrelfish-master/kernel/arch/x86/
H A Dmultiboot.c70 #define CHECK(pa) { lpaddr_t tmp = pa; if (tmp > end) { end = tmp; } }
/barrelfish-master/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-master/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-master/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-master/usr/bench/cow/
H A Dbench_rdtsc.c95 struct bench_calc_st tmp = { 0 }; local
97 st = &tmp;
107 struct bench_calc_st tmp = { 0 }; local
109 st = &tmp;

Completed in 299 milliseconds

1234567891011>>