Searched refs:tmp (Results 51 - 75 of 303) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ecdh/
H A Dech_ossl.c113 EC_POINT *tmp=NULL; local
140 if ((tmp=EC_POINT_new(group)) == NULL)
146 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx))
154 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, y, ctx))
162 if (!EC_POINT_get_affine_coordinates_GF2m(group, tmp, x, y, ctx))
208 if (tmp) EC_POINT_free(tmp);
/barrelfish-2018-10-04/lib/libc/inet/
H A Dinet_ntop.c86 char tmp[sizeof "255.255.255.255"]; local
89 l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
94 strlcpy(dst, tmp, size);
114 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
155 tp = tmp;
171 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp))) {
189 if ((socklen_t)(tp - tmp) > size) {
193 strcpy(dst, tmp);
[all...]
H A Dinet_net_pton.c67 int n, ch, tmp = 0, dirty, bits; local
85 tmp = n;
87 tmp = (tmp << 4) | n;
91 *dst++ = (u_char) tmp;
98 *dst++ = (u_char) (tmp << 4);
103 tmp = 0;
107 tmp *= 10;
108 tmp += n;
109 if (tmp > 25
268 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
[all...]
/barrelfish-2018-10-04/lib/posixcompat/
H A Dinet_ntop.c82 char tmp[sizeof "255.255.255.255"]; local
85 l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
90 strlcpy(dst, tmp, size);
110 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
153 tp = tmp;
169 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
185 if ((socklen_t)(tp - tmp) > size) {
189 strcpy(dst, tmp);
[all...]
H A Dinet_pton.c82 u_char tmp[NS_INADDRSZ], *tp; local
86 *(tp = tmp) = 0;
113 memcpy(dst, tmp, NS_INADDRSZ);
137 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
142 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
214 memcpy(dst, tmp, NS_IN6ADDRSZ);
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dmap.c115 struct memmmgt *tmp = (struct memmmgt*)(i * structsize + mmgtva); local
116 if (tmp->va == 0) {
117 r = frame_alloc(&(tmp->frame), BASE_PAGE_SIZE, NULL);
121 tmp->va = vspace_map(tmp->frame, 0, BASE_PAGE_SIZE, NULL, NULL);
122 if (tmp->va == 0) {
128 if ((tmp->bitmap[j] & (mask << k)) == 0) {
129 tmp->bitmap[j] |= (mask << k);
130 return (tmp->va + ((j * 64) + k) * l1_line_size);
141 struct memmmgt *tmp local
160 int *tmp = (int*)alloc_mem(eff_size); local
175 int *tmp = (int*)malloc(size * sizeof(int)); local
245 int *tmp = alloc_list(list[0]); local
[all...]
H A Dmatrix.c65 register int tmp = 0; local
67 tmp = tmp + A[i][k] * B[k][j];
69 C[i][j] = tmp;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/objects/
H A Dobj_xref.c93 nid_triple tmp; local
95 tmp.sign_id = signid;
99 int idx = sk_nid_triple_find(sig_app, &tmp);
107 rv = OBJ_bsearch_sig(&tmp, sigoid_srt,
120 nid_triple tmp; local
121 const nid_triple *t=&tmp;
124 tmp.hash_id = dig_nid;
125 tmp.pkey_id = pkey_nid;
129 int idx = sk_nid_triple_find(sigx_app, &tmp);
/barrelfish-2018-10-04/lib/barrelfish/
H A Dbulk_transfer.c25 struct bulk_buf *tmp; local
29 tmp = bt->free_list->next;
31 bt->free_list = tmp;
36 tmp = bt->alloc_list->next;
38 bt->free_list = tmp;
71 struct bulk_buf *tmp = local
73 assert(tmp != NULL);
75 current_pbuf->next = tmp;
76 current_pbuf = tmp;
/barrelfish-2018-10-04/usr/skb/programs/
H A Dalgos_systems63 ./mach $i ../data/data_$j.txt > tmp.out.dat;
64 egrep Abort tmp.out.dat;
71 egrep No tmp.out.dat;
77 zahlen=$(sed -r -e '/^res.*/!d' -e 's/res[\t]//' -e 's/\n//g' tmp.out.dat)
100 grep 'rootbridge(' ../data/data_$j.txt >> ../data/data_linux_$j.txt.pl.tmp;
101 echo -e "[compute_required_resources],[\"../data/data_linux_$j.txt.pl.tmp\"],[bridge_linux],bridge_programming(B,_)," \
102 "compute_required_resources([B], ResList, nodot).\n\nhalt." | eclipse-clp > tmp.out.dat;
103 egrep Abort tmp.out.dat;
110 egrep No tmp.out.dat;
116 zahlen=$(sed -r -e '/^res.*/!d' -e 's/res[\t]//' -e 's/\n//g' tmp
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/modes/
H A Dcts128.c61 union { size_t align; unsigned char c[16]; } tmp; local
77 memcpy(tmp.c,out-16,16);
79 memcpy(out,tmp.c,residue);
84 *(size_t *)(tmp.c+n) = 0;
85 memcpy(tmp.c,in,residue);
88 (*cbc)(tmp.c,out-16,16,key,ivec,1);
97 union { size_t align; unsigned char c[32]; } tmp; local
113 (*block)(in,tmp.c+16,key);
116 *(size_t *)(tmp.c+n) = *(size_t *)(tmp
135 union { size_t align; unsigned char c[32]; } tmp; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
85 tmp=BN_CTX_get(ctx);
86 if (!rr || !tmp) goto err;
126 if (bn_wexpand(tmp,k*2) == NULL) goto err;
127 bn_sqr_recursive(rr->d,a->d,al,tmp->d);
131 if (bn_wexpand(tmp,max) == NULL) goto err;
132 bn_sqr_normal(rr->d,a->d,al,tmp->d);
136 if (bn_wexpand(tmp,max) == NULL) goto err;
137 bn_sqr_normal(rr->d,a->d,al,tmp->d);
152 bn_check_top(tmp);
158 bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp) argument
[all...]
H A Dbn_kron.c68 BIGNUM *A, *B, *tmp; local
175 tmp = A; A = B; B = tmp;
176 tmp->neg = 0;
/barrelfish-2018-10-04/lib/devif/
H A Dregion_pool.c119 struct region** tmp; local
123 tmp = calloc(new_size, sizeof(struct region*));
124 if (tmp == NULL) {
131 tmp[i] = NULL;
138 tmp[index] = pool->pool[i];
143 pool->pool = tmp;
175 struct region* tmp; local
176 tmp = pool->pool[i];
178 if (tmp == NULL) {
183 if (tmp
[all...]
/barrelfish-2018-10-04/lib/tzcode/stdtime/
H A Dlocaltime.c186 struct tm * tmp);
188 struct tm * tmp);
197 static time_t time1(struct tm * tmp,
201 static time_t time2(struct tm *tmp,
205 static time_t time2sub(struct tm *tmp,
210 const struct state * sp, struct tm * tmp);
1341 localsub(const time_t *const timep, const long offset, struct tm *const tmp) argument
1352 return gmtsub(timep, offset, tmp);
1379 result = localsub(&newt, offset, tmp);
1380 if (result == tmp) {
1471 localtime_r(const time_t *const timep, struct tm *tmp) argument
1570 gmtime_r(const time_t *const timep, struct tm *tmp) argument
1834 time2sub(struct tm *const tmp, struct tm *(*const funcp)(const time_t *, long, struct tm *), const long offset, int *const okayp, const int do_norm_secs) argument
2020 time2(struct tm * const tmp, struct tm * (*const funcp)(const time_t *, long, struct tm *), const long offset, int *const okayp) argument
2115 mktime(struct tm *const tmp) argument
2128 timelocal(struct tm *const tmp) argument
2136 timegm(struct tm *const tmp) argument
2144 timeoff(struct tm *const tmp, const long offset) argument
2161 gtime(struct tm *const tmp) argument
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A De_jnf.c114 float q0,q1,h,tmp; int32_t k,m; local
119 tmp = z*q1 - q0;
121 q1 = tmp;
135 tmp = n;
137 tmp = tmp*__ieee754_logf(fabsf(v*tmp));
138 if(tmp<(float)8.8721679688e+01) {
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost_sign.c53 BIGNUM *k=NULL,*tmp=NULL,*tmp2=NULL; local
64 tmp=BN_CTX_get(ctx);
67 BN_mod(tmp,md,dsa->q,ctx);
68 if (BN_is_zero(tmp))
79 BN_mod_exp(tmp,dsa->g, k, dsa->p,ctx);
81 BN_mod(newsig->r,tmp,dsa->q,ctx);
85 BN_mod_mul(tmp,dsa->priv_key,newsig->r,dsa->q,ctx);
88 BN_mod_add(newsig->s,tmp,tmp2,dsa->q,ctx);
138 BIGNUM *md, *tmp=NULL; local
154 tmp
[all...]
/barrelfish-2018-10-04/lib/libc/string/
H A Dstrerror.c66 char tmp[EBUFSIZE]; local
68 t = tmp + sizeof(tmp);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_prn.c91 char *tmp; local
93 tmp = OPENSSL_malloc(len);
94 if (tmp)
96 ascii2ebcdic(tmp, nval->value, len);
97 BIO_printf(out, "%s:%s", nval->name, tmp);
98 OPENSSL_free(tmp);
135 char *tmp; local
137 tmp = OPENSSL_malloc(len);
138 if (tmp)
140 ascii2ebcdic(tmp, valu
[all...]
/barrelfish-2018-10-04/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-2018-10-04/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-2018-10-04/lib/acpica/tests/aslts/
H A DMakefile.def30 COMPILER_LOG="$(TOP)/tmp/aml/$(aslversion)/compile.txt"
31 COMPILER_ERROR_LOG="$(TOP)/tmp/aml/$(aslversion)/error.txt"
44 # Rule to create directories located into aslts/tmp/aml;
47 ${SETOF_AMLDIRS:%=$(TOP)/tmp/aml/$(aslversion)/%}:
52 install_all_modes_of_test_case: ${SETOF_AMLDIRS:%=$(TOP)/tmp/aml/$(aslversion)/%}
94 echo "---- Move: $$j.aml $(TOP)/tmp/aml/$(aslversion)/$$CUR_AMLDIR" >> $(COMPILER_LOG); \
95 mv $$j.aml $(TOP)/tmp/aml/$(aslversion)/$$CUR_AMLDIR; \
107 # Move results to aslts/tmp/aml directory.
109 # Create aslts/tmp/aml/<version> directory with the precautions.
135 if [ ! -d ./tmp ]; the
[all...]
/barrelfish-2018-10-04/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;
/barrelfish-2018-10-04/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-2018-10-04/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));

Completed in 209 milliseconds

1234567891011>>