Searched refs:tmp (Results 251 - 275 of 1981) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/ipfilter/
H A Dipf_rb.h147 _t *tmp; \
152 tmp = parent->_f.right; \
153 if (tmp->_f.colour == C_RED) { \
154 tmp->_f.colour = C_BLACK; \
157 tmp = parent->_f.right; \
159 if ((tmp->_f.left == &_n##_rb_zero || \
160 tmp->_f.left->_f.colour == C_BLACK) && \
161 (tmp->_f.right == &_n##_rb_zero || \
162 tmp->_f.right->_f.colour == C_BLACK)) { \
163 tmp
[all...]
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dipf_rb.h147 _t *tmp; \
152 tmp = parent->_f.right; \
153 if (tmp->_f.colour == C_RED) { \
154 tmp->_f.colour = C_BLACK; \
157 tmp = parent->_f.right; \
159 if ((tmp->_f.left == &_n##_rb_zero || \
160 tmp->_f.left->_f.colour == C_BLACK) && \
161 (tmp->_f.right == &_n##_rb_zero || \
162 tmp->_f.right->_f.colour == C_BLACK)) { \
163 tmp
[all...]
/freebsd-13-stable/contrib/unbound/compat/
H A Dinet_ntop.c94 char tmp[sizeof "255.255.255.255"]; local
97 l = snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]);
102 strlcpy(dst, tmp, size);
122 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local
165 tp = tmp;
166 ep = tmp + sizeof(tmp);
210 if ((size_t)(tp - tmp) > size) {
214 strlcpy(dst, tmp, size);
H A Dinet_pton.c100 uint8_t tmp[NS_INADDRSZ], *tp; local
104 *(tp = tmp) = 0;
130 memcpy(dst, tmp, NS_INADDRSZ);
154 uint8_t tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
159 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
228 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-13-stable/contrib/ldns/compat/
H A Dinet_ntop.c94 char tmp[sizeof "255.255.255.255"]; local
97 l = snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]);
102 strlcpy(dst, tmp, size);
122 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local
165 tp = tmp;
166 ep = tmp + sizeof(tmp);
210 if ((size_t)(tp - tmp) > size) {
214 strlcpy(dst, tmp, size);
H A Dinet_pton.c100 uint8_t tmp[NS_INADDRSZ], *tp; local
104 *(tp = tmp) = 0;
130 memcpy(dst, tmp, NS_INADDRSZ);
154 uint8_t tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
159 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
228 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-13-stable/contrib/openresolv/
H A DMakefile87 mkdir /tmp/${DISTPREFIX}
88 cp -RPp * /tmp/${DISTPREFIX}
89 (cd /tmp/${DISTPREFIX}; make clean)
90 tar -cvjpf ${DISTFILE} -C /tmp ${DISTPREFIX}
91 rm -rf /tmp/${DISTPREFIX}
104 rm -rf /tmp/${DISTPREFIX}
105 ${INSTALL} -d /tmp/${DISTPREFIX}
106 tar xvJpf ${DISTFILE} -C /tmp
118 ${MAKE} _import-src DESTDIR=`if [ -n "${DESTDIR}" ]; then echo "${DESTDIR}"; else echo /tmp/${DISTPREFIX}; fi`
/freebsd-13-stable/sys/dev/syscons/dragon/
H A Ddragon_saver.c118 int tmp; local
124 for (tmp = 0; tmp < 3*CURVE; ++tmp) {
125 dragon_pal[3+tmp] = (u_char)random();
167 tmp = dx; dx = dy; dy = -tmp; /* turn right */
171 tmp = dx; dx = -dy; dy = tmp; /* turn left */
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dsalt-des3.c47 unsigned char tmp[24]; local
64 ret = _krb5_n_fold(str, len, tmp, 24);
73 memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
80 DES_ede3_cbc_encrypt(tmp,
81 tmp, sizeof(tmp),
86 memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
91 memset(tmp, 0, sizeof(tmp));
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dinet_ntop.c89 char tmp[sizeof "255.255.255.255"]; local
92 l = snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]);
97 strlcpy(dst, tmp, size);
117 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local
158 tp = tmp;
159 ep = tmp + sizeof(tmp);
203 if ((size_t)(tp - tmp) > size) {
207 strlcpy(dst, tmp, size);
/freebsd-13-stable/usr.sbin/pw/
H A Dpw.c115 int mode = -1, which = -1, tmp; local
170 else if (mode == -1 && (tmp = getindex(Modes, argv[1])) != -1)
171 mode = tmp;
172 else if (which == -1 && (tmp = getindex(Which, argv[1])) != -1)
173 which = tmp;
175 ((tmp = getindex(Combo1, argv[1])) != -1 ||
176 (tmp = getindex(Combo2, argv[1])) != -1)) {
177 which = tmp / M_NUM;
178 mode = tmp % M_NUM;
/freebsd-13-stable/contrib/bearssl/src/aead/
H A Dgcm.c91 unsigned char ty[16], tmp[16]; local
95 memset(tmp, 0, 8);
96 br_enc64be(tmp + 8, (uint64_t)len << 3);
97 ctx->gh(ty, ctx->h, tmp, 16);
239 unsigned char tmp[16]; local
254 br_enc64be(tmp, ctx->count_aad << 3);
255 br_enc64be(tmp + 8, ctx->count_ctr << 3);
256 ctx->gh(ctx->y, ctx->h, tmp, 16);
270 unsigned char tmp[16]; local
272 br_gcm_get_tag(ctx, tmp);
280 unsigned char tmp[16]; local
[all...]
/freebsd-13-stable/sys/opencrypto/
H A Dgfmult.c239 struct gf128 tmp; local
241 tmp = MAKE_GF128(0, 0);
243 tmp = gfmultword4(a.v[1], b.v[1], c.v[1], d.v[1], tmp, tbl);
244 tmp = gfmultword4(a.v[0], b.v[0], c.v[0], d.v[0], tmp, tbl);
246 return tmp;
262 struct gf128 tmp; local
264 tmp = MAKE_GF128(0, 0);
271 tmp
[all...]
/freebsd-13-stable/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c264 const char *tmp; local
267 tmp = krb5_config_get_string(context, NULL,
271 if(tmp != NULL)
272 check_library = tmp;
275 tmp = krb5_config_get_string(context, NULL,
279 if(tmp != NULL)
280 check_function = tmp;
323 struct kadm5_pw_policy_verifier *v, **tmp; local
358 tmp = realloc(verifiers, (num_verifiers + 1) * sizeof(*verifiers));
359 if (tmp
381 char **tmp; local
[all...]
H A Dchpass_c.c47 int32_t tmp; local
75 krb5_ret_int32(sp, &tmp);
79 return tmp;
92 int32_t tmp; local
123 krb5_ret_int32(sp, &tmp);
127 return tmp;
/freebsd-13-stable/lib/libcompat/4.3/
H A Drexec.c139 char *hdir, buf[BUFSIZ], *tmp; local
178 if ((tmp = strchr(host, '.')) != NULL &&
179 strcasecmp(tmp, mydomain) == 0 &&
180 strncasecmp(host, tokval, tmp - host) == 0 &&
181 tokval[tmp - host] == '\0')
235 tmp = macros[macnum].mac_name;
236 *tmp++ = c;
239 *tmp++ = c;
245 *tmp = '\0';
259 tmp
[all...]
/freebsd-13-stable/crypto/openssl/crypto/cms/
H A Dcms_pwri.c181 unsigned char *tmp; local
191 if ((tmp = OPENSSL_malloc(inlen)) == NULL) {
196 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
203 || !EVP_DecryptUpdate(ctx, tmp, &outl,
204 tmp + inlen - blocklen, blocklen)
206 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen)
211 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen))
214 if (((tmp[1] ^ tmp[
[all...]
/freebsd-13-stable/sys/vm/
H A Dvm_radix.c389 struct vm_radix_node *rnode, *tmp; local
414 tmp = vm_radix_node_get(vm_radix_trimkey(index,
416 if (tmp == NULL)
419 vm_radix_addpage(tmp, index, clev, page, UNSERIALIZED);
420 vm_radix_addpage(tmp, m->pindex, clev, m, UNSERIALIZED);
422 vm_radix_node_store(parentp, tmp, LOCKED);
428 tmp = vm_radix_node_load(parentp, LOCKED);
429 if (tmp == NULL) {
435 rnode = tmp;
445 tmp
763 struct vm_radix_node *rnode, *parent, *tmp; local
844 struct vm_radix_node *rnode, *tmp; local
892 struct vm_radix_node *rnode, *tmp; local
[all...]
/freebsd-13-stable/usr.sbin/iscsid/
H A Dlogin.c335 int which, tmp; local
344 tmp = strtoul(value, NULL, 10);
345 if (tmp < 0 || tmp > 31)
347 conn->conn_protocol_level = tmp;
395 tmp = strtoul(value, NULL, 10);
396 if (tmp <= 0)
399 if (tmp > isl->isl_max_send_data_segment_length) {
401 "from %d to %d", tmp,
403 tmp
[all...]
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Dcrypto_internal-modexp.c62 struct bignum *p, *q, *tmp; local
68 tmp = bignum_init();
69 failed = !p || !q || !tmp ||
72 bignum_exptmod(pub, q, p, tmp) < 0 ||
73 bignum_cmp_d(tmp, 1) != 0;
76 bignum_deinit(tmp);
/freebsd-13-stable/contrib/bearssl/src/symcipher/
H A Dchacha20_ct.c51 unsigned char tmp[64]; local
87 br_enc32le(&tmp[u << 2], state[u] + CW[u]);
90 br_enc32le(&tmp[u << 2], state[u] + kw[u - 4]);
92 br_enc32le(&tmp[48], state[12] + cc);
94 br_enc32le(&tmp[u << 2], state[u] + ivw[u - 13]);
99 buf[u] ^= tmp[u];
/freebsd-13-stable/contrib/apr/network_io/unix/
H A Dinet_pton.c110 unsigned char tmp[INADDRSZ], *tp; local
114 *(tp = tmp) = 0;
140 memcpy(dst, tmp, INADDRSZ);
163 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
168 memset((tp = tmp), '\0', IN6ADDRSZ);
237 memcpy(dst, tmp, IN6ADDRSZ);
/freebsd-13-stable/contrib/ntp/libparse/
H A Ddata_mbg.c137 TM_GPS *tmp
140 tmp->year = get_lsb_int16(buffpp);
141 tmp->month = *(*buffpp)++;
142 tmp->mday = *(*buffpp)++;
143 tmp->yday = get_lsb_int16(buffpp);
144 tmp->wday = *(*buffpp)++;
145 tmp->hour = *(*buffpp)++;
146 tmp->min = *(*buffpp)++;
147 tmp->sec = *(*buffpp)++;
148 tmp
258 mbg_tm_str( char **buffpp, TM_GPS *tmp, int size, int print_status ) argument
[all...]
/freebsd-13-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dt_mount.sh91 mkdir tmp
100 umount -f tmp 2>/dev/null || :
122 mkdir tmp
124 mount -t tmpfs -o -s9223372036854775808 tmpfs tmp
126 mount -t tmpfs -o -s9223372036854775808g tmpfs tmp
127 rmdir tmp
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dinet_pton.c86 unsigned char tmp[NS_INADDRSZ], *tp; local
90 *(tp = tmp) = 0;
117 memcpy(dst, tmp, NS_INADDRSZ);
138 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
143 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
213 memcpy(dst, tmp, NS_IN6ADDRSZ);

Completed in 100 milliseconds

<<11121314151617181920>>