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

<<11121314151617181920>>

/freebsd-11-stable/sys/arm64/include/
H A Datomic.h62 uint32_t tmp; \
70 : "=&r"(tmp), "=&r"(res) \
79 uint64_t tmp; \
87 : "=&r"(tmp), "=&r"(res) \
108 uint32_t tmp; \
119 : "=&r"(tmp), "=&r"(res) \
123 *cmpval = tmp; \
132 uint64_t tmp; \
143 : "=&r"(tmp), "=&r"(res) \
147 *cmpval = tmp; \
212 uint32_t tmp, ret; local
231 uint64_t tmp, ret; local
[all...]
/freebsd-11-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-11-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-11-stable/contrib/ldns/compat/
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-11-stable/contrib/amd/scripts/
H A Dtest-attrcache.in22 mapfile="/tmp/amd.testmap.$$"
30 a type:=link;fs:=/tmp/a
37 a type:=link;fs:=/tmp/b
44 # rm -f /tmp/a /tmp/b $mapfile $logfile
47 touch /tmp/a
48 touch /tmp/b
55 inode_a=`ls -lLi /tmp/a | awk '{print $1}'`
56 inode_b=`ls -lLi /tmp/b | awk '{print $1}'`
/freebsd-11-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-11-stable/contrib/unbound/compat/
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-11-stable/crypto/heimdal/lib/kadm5/
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-11-stable/crypto/heimdal/lib/krb5/
H A Dcrypto-des-common.c100 unsigned char tmp[24]; local
113 EVP_Cipher(&ctx->dctx, tmp, C->checksum.data, 24);
116 EVP_DigestUpdate(m, tmp, 8); /* confounder */
120 if(ct_memcmp(res, tmp + 8, sizeof(res)) != 0) {
124 memset(tmp, 0, sizeof(tmp));
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetusershell.c120 char *tmp; local
132 if(getconfattr(SC_SYS_LOGIN, SC_SHELLS, &tmp, SEC_LIST) != 0)
135 for(cp = tmp, nsh = 0; *cp; cp += strlen(cp) + 1, nsh++);
141 strings = malloc(cp - tmp);
147 memcpy(strings, tmp, cp - tmp);
/freebsd-11-stable/sys/libkern/
H A Dinet_pton.c83 u_char tmp[NS_INADDRSZ], *tp; local
87 *(tp = tmp) = 0;
114 memcpy(dst, tmp, NS_INADDRSZ);
138 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
143 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
215 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-11-stable/contrib/dtc/libfdt/
H A Dlibfdt.h1176 fdt32_t tmp = cpu_to_fdt32(val); local
1177 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1211 fdt64_t tmp = cpu_to_fdt64(val); local
1212 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1288 fdt32_t tmp = cpu_to_fdt32(val); local
1289 return fdt_property(fdt, name, &tmp, sizeof(tmp));
1293 fdt64_t tmp local
1449 fdt32_t tmp = cpu_to_fdt32(val); local
1484 fdt64_t tmp = cpu_to_fdt64(val); local
1621 fdt32_t tmp = cpu_to_fdt32(val); local
1656 fdt64_t tmp = cpu_to_fdt64(val); local
[all...]
/freebsd-11-stable/sys/contrib/libfdt/
H A Dlibfdt.h1196 fdt32_t tmp = cpu_to_fdt32(val); local
1197 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1231 fdt64_t tmp = cpu_to_fdt64(val); local
1232 return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1308 fdt32_t tmp = cpu_to_fdt32(val); local
1309 return fdt_property(fdt, name, &tmp, sizeof(tmp));
1313 fdt64_t tmp local
1516 fdt32_t tmp = cpu_to_fdt32(val); local
1551 fdt64_t tmp = cpu_to_fdt64(val); local
1688 fdt32_t tmp = cpu_to_fdt32(val); local
1723 fdt64_t tmp = cpu_to_fdt64(val); local
[all...]
/freebsd-11-stable/sys/contrib/ck/include/gcc/arm/
H A Dck_pr.h190 T tmp; \
198 : "=&r" (tmp), "=&r" (flag) \
215 int tmp; \
225 :"=&r" (previous), "=&r" (tmp) \
259 T tmp; \
271 : "=&r" (ret), "=&r" (tmp) \
301 void *previous, *tmp; local
310 "=&r" (tmp)
322 void *previous, *tmp; local
331 "=&r" (tmp)
514 uintptr_t previous, r, tmp; local
[all...]
/freebsd-11-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-11-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);
/freebsd-11-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);
H A Daes-siv.c67 u8 tmp[AES_BLOCK_SIZE], tmp2[AES_BLOCK_SIZE]; local
75 os_memcpy(tmp, zero, sizeof(zero));
76 tmp[AES_BLOCK_SIZE - 1] = 1;
77 data[0] = tmp;
78 data_len[0] = sizeof(tmp);
84 ret = omac1_aes_vector(key, key_len, 1, data, data_len, tmp);
94 dbl(tmp);
95 xor(tmp, tmp2);
102 xorend(buf, len[i], tmp, AES_BLOCK_SIZE);
109 dbl(tmp);
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_i2c.c411 u32 tmp, reg; local
426 tmp = RREG32(RADEON_BIOS_6_SCRATCH);
427 WREG32(RADEON_BIOS_6_SCRATCH, tmp | ATOM_S6_HW_I2C_BUSY_STATE);
554 tmp = RREG32(i2c_cntl_0);
555 if (tmp & RADEON_I2C_GO)
557 tmp = RREG32(i2c_cntl_0);
558 if (tmp & RADEON_I2C_DONE)
561 DRM_DEBUG("i2c write error 0x%08x\n", tmp);
562 WREG32(i2c_cntl_0, tmp | RADEON_I2C_ABORT);
586 tmp
662 u32 tmp, reg; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dc-incpath.c189 struct cpp_dir **pcur, *tmp, *cur; local
222 for (tmp = system; tmp; tmp = tmp->next)
223 if (INO_T_EQ (tmp->ino, cur->ino) && tmp->dev == cur->dev
224 && cur->construct == tmp->construct)
227 if (!tmp)
231 for (tmp
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/krb5/
H A Dimport_sec_context.c53 int32_t flags, tmp; local
96 if (krb5_ret_int32 (sp, &tmp) != 0)
98 ac->flags = tmp;
144 if (krb5_ret_int32 (sp, &tmp) != 0)
146 ac->keytype = tmp;
147 if (krb5_ret_int32 (sp, &tmp) != 0)
149 ac->cksumtype = tmp;
189 if (krb5_ret_int32 (sp, &tmp))
191 ctx->flags = tmp;
192 if (krb5_ret_int32 (sp, &tmp))
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_sqr.c81 BIGNUM *tmp, *rr; local
97 tmp = BN_CTX_get(ctx);
98 if (!rr || !tmp)
131 if (bn_wexpand(tmp, k * 2) == NULL)
133 bn_sqr_recursive(rr->d, a->d, al, tmp->d);
135 if (bn_wexpand(tmp, max) == NULL)
137 bn_sqr_normal(rr->d, a->d, al, tmp->d);
141 if (bn_wexpand(tmp, max) == NULL)
143 bn_sqr_normal(rr->d, a->d, al, tmp->d);
156 bn_check_top(tmp);
162 bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp) argument
[all...]
/freebsd-11-stable/crypto/heimdal/kadmin/
H A Dload.c100 time_t tmp; local
104 ret = parse_time_string (&tmp, s);
109 **t = tmp;
131 unsigned int tmp; local
135 ret = parse_integer (&tmp, s);
140 **u = tmp;
154 int tmp; local
159 if (sscanf(p, "%d", &tmp) != 1)
161 ent->kvno = tmp;
173 if(sscanf(p, "%d", &tmp)
259 Event tmp; local
277 unsigned int tmp; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/srp/
H A Dsrp_lib.c87 unsigned char *tmp; local
95 if ((tmp = OPENSSL_malloc(longN)) == NULL)
97 BN_bn2bin(N, tmp);
101 EVP_DigestUpdate(&ctxt, tmp, longN);
103 memset(tmp, 0, longN);
104 longg = BN_bn2bin(g, tmp);
106 EVP_DigestUpdate(&ctxt, tmp + longg, longN - longg);
107 EVP_DigestUpdate(&ctxt, tmp, longg);
108 OPENSSL_free(tmp);
156 BIGNUM *tmp local
264 BIGNUM *tmp = NULL, *tmp2 = NULL, *tmp3 = NULL, *k = NULL, *K = NULL; local
[all...]
/freebsd-11-stable/contrib/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) {
1470 localtime_r(const time_t *const timep, struct tm *tmp) argument
1569 gmtime_r(const time_t *const timep, struct tm *tmp) argument
1833 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
2019 time2(struct tm * const tmp, struct tm * (*const funcp)(const time_t *, long, struct tm *), const long offset, int *const okayp) argument
2114 mktime(struct tm *const tmp) argument
2127 timelocal(struct tm *const tmp) argument
2135 timegm(struct tm *const tmp) argument
2143 timeoff(struct tm *const tmp, const long offset) argument
2160 gtime(struct tm *const tmp) argument
[all...]

Completed in 319 milliseconds

<<11121314151617181920>>