Searched refs:tmp (Results 201 - 225 of 1981) sorted by relevance

1234567891011>>

/freebsd-13-stable/usr.sbin/ypserv/
H A Dyp_access.c115 struct securenet *tmp; local
123 tmp = securenets->next;
125 securenets = tmp;
157 tmp = malloc(sizeof(struct securenet));
159 if (!inet_aton((char *)&addr1, (struct in_addr *)&tmp->net)) {
161 free(tmp);
165 if (!inet_aton((char *)&addr2, (struct in_addr *)&tmp->mask)) {
167 free(tmp);
171 tmp->next = securenets;
172 securenets = tmp;
224 struct securenet *tmp; local
[all...]
/freebsd-13-stable/libexec/rtld-elf/arm/
H A Dreloc.c185 Elf_Addr tmp; local
210 tmp = (Elf_Addr)obj->relocbase + def->st_value
212 if ((tmp & 0xfe000000) != 0xfe000000 &&
213 (tmp & 0xfe000000) != 0) {
219 (long) tmp, (long) tmp);
222 tmp >>= 2;
223 *where = (*where & 0xff000000) | (tmp & 0x00ffffff);
238 tmp = *where + (Elf_Addr)defobj->relocbase +
240 *where = tmp;
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-ilk.c367 unsigned long int tmp; local
405 tmp = 0;
406 tmp = pent->pipe_bpid & ~(~tmp << CVMX_ILK_PIPE_BPID_SZ);
407 tmp <<= (CVMX_ILK_PIPE_BPID_SZ + CVMX_ILK_ENT_CTRL_SZ) * j;
408 ilk_rxx_mem_cal0.u64 |= tmp;
410 tmp = 0;
411 tmp = pent->ent_ctrl & ~(~tmp << CVMX_ILK_ENT_CTRL_SZ);
412 tmp <<
608 unsigned long int tmp; local
712 cvmx_ilk_cal_entry_t *tmp; local
[all...]
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A DMakefile.am174 hxtool-commands.c hxtool-commands.h *.tmp \
234 $(do_subst) < $(srcdir)/test_ca.in > test_ca.tmp
235 chmod +x test_ca.tmp
236 mv test_ca.tmp test_ca
239 $(do_subst) < $(srcdir)/test_cert.in > test_cert.tmp
240 chmod +x test_cert.tmp
241 mv test_cert.tmp test_cert
244 $(do_subst) < $(srcdir)/test_chain.in > test_chain.tmp
245 chmod +x test_chain.tmp
246 mv test_chain.tmp test_chai
[all...]
/freebsd-13-stable/sys/arm/include/
H A Datomic-v6.h95 uint32_t tmp = 0, tmp2 = 0; local
104 : "=&r" (tmp), "+r" (tmp2)
111 uint64_t tmp; local
116 " ldrexd %Q[tmp], %R[tmp], [%[ptr]] \n"
117 " adds %Q[tmp], %Q[val] \n"
118 " adc %R[tmp], %R[tmp], %R[val] \n"
119 " strexd %[exf], %Q[tmp], %R[tmp], [
144 uint32_t tmp = 0, tmp2 = 0; local
160 uint64_t tmp; local
573 uint32_t tmp = 0, tmp2 = 0, ret = 0; local
590 uint64_t ret, tmp; local
670 uint32_t ret, tmp = 0, tmp2 = 0; local
687 uint64_t ret, tmp; local
717 uint32_t tmp = 0, tmp2 = 0; local
733 uint64_t tmp; local
766 uint32_t tmp = 0, tmp2 = 0; local
782 uint64_t tmp; local
815 uint64_t tmp; local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/srp/
H A Dsrp_lib.c26 unsigned char *tmp = NULL; local
34 if ((tmp = OPENSSL_malloc(numN * 2)) == NULL)
36 if (BN_bn2binpad(x, tmp, numN) < 0
37 || BN_bn2binpad(y, tmp + numN, numN) < 0
38 || !EVP_Digest(tmp, numN * 2, digest, NULL, EVP_sha1(), NULL))
42 OPENSSL_free(tmp);
61 BIGNUM *tmp = NULL, *S = NULL; local
67 if ((bn_ctx = BN_CTX_new()) == NULL || (tmp = BN_new()) == NULL)
72 if (!BN_mod_exp(tmp, v, u, N, bn_ctx))
74 if (!BN_mod_mul(tmp,
179 BIGNUM *tmp = NULL, *tmp2 = NULL, *tmp3 = NULL, *k = NULL, *K = NULL; local
[all...]
/freebsd-13-stable/contrib/opie/
H A Dopiepasswd.c235 char tmp[OPIE_RESPONSE_MAX + 2]; local
246 if (opiechallenge(&opie, pp->pw_name, tmp)) {
253 if (c = strrchr(tmp, ' '))
262 printf("Old secret pass phrase:\n\t%s\n\tResponse: ", tmp);
263 if (!opiereadpass(tmp, sizeof(tmp), 1))
264 tmp[0] = 0;
265 i = opieverify(&opie, tmp);
266 if (!tmp[0]) {
281 if (opiechallenge(&opie, pp->pw_name, tmp)) {
418 char tmp[4]; local
[all...]
/freebsd-13-stable/contrib/wpa/src/tls/
H A Dasn1.c58 u8 tmp; local
80 tmp = *pos++;
82 "0x%02x", tmp);
83 hdr->tag = (hdr->tag << 7) | (tmp & 0x7f);
84 } while (tmp & 0x80);
92 tmp = *pos++;
93 if (tmp & 0x80) {
94 if (tmp == 0xff) {
99 tmp &= 0x7f; /* number of subsequent octets */
101 if (tmp >
133 u8 tmp; local
[all...]
/freebsd-13-stable/lib/libc/stdio/
H A Dfdopen.c55 int flags, oflags, fdflags, tmp; local
76 tmp = fdflags & (O_ACCMODE | O_EXEC);
77 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A De_idea.c61 IDEA_KEY_SCHEDULE tmp; local
63 IDEA_set_encrypt_key(key, &tmp);
64 IDEA_set_decrypt_key(&tmp, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
65 OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE));
/freebsd-13-stable/contrib/tcsh/nls/
H A Dcatgen3 TMP=/tmp/catgen.$$
/freebsd-13-stable/contrib/bearssl/src/rsa/
H A Drsa_i15_modulus.c31 uint16_t tmp[2 * ((BR_MAX_RSA_SIZE + 14) / 15) + 5]; local
52 t = tmp;
53 tlen = (sizeof tmp) / (sizeof tmp[0]);
H A Drsa_i31_modulus.c31 uint32_t tmp[2 * ((BR_MAX_RSA_SIZE + 30) / 31) + 5]; local
52 t = tmp;
53 tlen = (sizeof tmp) / (sizeof tmp[0]);
H A Drsa_i62_pub.c42 uint64_t tmp[TLEN]; local
76 m = (uint32_t *)tmp;
77 a = (uint32_t *)(tmp + fwlen);
100 tmp + 2 * fwlen, TLEN - 2 * fwlen);
/freebsd-13-stable/contrib/bmake/
H A Dimport.sh54 TF=/tmp/.$USER.$$
69 mkdir -p ../tmp
77 $GIT diff --staged | tee ../tmp/bmake-import.diff
78 echo "$GIT tag -a vendor/NetBSD/bmake/$VERSION" > ../tmp/bmake-post.sh
79 echo "After you commit, run $here/../tmp/bmake-post.sh"
/freebsd-13-stable/contrib/kyua/bootstrap/
H A DMakefile.am.inc72 $(srcdir)/bootstrap/testsuite.at -o $@.tmp; \
73 mv $@.tmp $@
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_readlinev.c55 char *word, **wordv, **tmp; local
71 tmp = realloc(wordv, wordvsize * sizeof *wordv);
72 if (tmp == NULL) {
77 wordv = tmp;
/freebsd-13-stable/sys/contrib/libsodium/dist-build/
H A Dgenerate-emscripten-symbols.sh50 sed s/EXPORTED_FUNCTIONS_STANDARD=\'.*\'/EXPORTED_FUNCTIONS_STANDARD=\'${out}\'/ < emscripten.sh > emscripten.sh.tmp && \
51 mv -f emscripten.sh.tmp emscripten.sh
54 sed s/EXPORTED_FUNCTIONS_SUMO=\'.*\'/EXPORTED_FUNCTIONS_SUMO=\'${out}\'/ < emscripten.sh > emscripten.sh.tmp && \
55 mv -f emscripten.sh.tmp emscripten.sh
/freebsd-13-stable/stand/i386/pxeldr/
H A DMakefile30 CLEANFILES+= ${BOOT}.tmp
33 cat ${LDR} ${LOADER} > ${.TARGET}.tmp
34 ${DD} if=${.TARGET}.tmp of=${.TARGET} bs=2048 conv=sync
35 rm ${.TARGET}.tmp
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dreplay.c132 struct rc_entry tmp; local
142 tmp.stamp = auth_lifespan;
143 fwrite(&tmp, 1, sizeof(tmp), f);
204 struct rc_entry ent, tmp; local
220 fread(&tmp, sizeof(ent), 1, f);
221 t = ent.stamp - tmp.stamp;
222 while(fread(&tmp, sizeof(ent), 1, f)){
223 if(tmp.stamp < t)
225 if(memcmp(tmp
301 char *tmp = malloc(4 * piece->length + 1); local
[all...]
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dvsyslog.c83 char *tmp; local
88 tmp = realloc (fmt2, fmt2_len + 1);
89 if (tmp == NULL) {
94 fmt2 = tmp;
/freebsd-13-stable/crypto/openssl/crypto/asn1/
H A Dt_pkey.c50 unsigned char *buf = NULL, *tmp = NULL; local
73 buf = tmp = OPENSSL_malloc(buflen);
85 tmp++;
87 if (ASN1_buf_print(bp, tmp, n, indent + 4) == 0)
/freebsd-13-stable/crypto/openssl/crypto/dh/
H A Ddh_check.c41 BIGNUM *tmp = NULL; local
49 tmp = BN_CTX_get(ctx);
50 if (tmp == NULL)
57 if (BN_copy(tmp, dh->p) == NULL || !BN_sub_word(tmp, 1))
59 if (BN_cmp(dh->g, tmp) >= 0)
183 BIGNUM *tmp = NULL; local
191 tmp = BN_CTX_get(ctx);
192 if (tmp == NULL || !BN_set_word(tmp,
[all...]
/freebsd-13-stable/tests/sys/geom/class/uzip/
H A Dconf.sh20 mntpoint=$(mktemp -d tmp.XXXXXX) || exit
/freebsd-13-stable/libexec/revnetgroup/
H A Dhash.c181 struct grouplist *tmp; local
187 tmp = (struct grouplist *)malloc(sizeof(struct grouplist));
188 tmp->groupname = strdup(data);
189 tmp->next = NULL;
194 tmp->next = cur->groups;
195 cur->groups = tmp;
205 new->groups = tmp;

Completed in 132 milliseconds

1234567891011>>