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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dgcc_qdiv.c18 double yq, tmp, q; local
43 tmp = LOWORDER(yq, yHi, yLo, qHi, qLo);
44 tmp = (x - yq) - tmp;
45 tmp = ((tmp + x1) - y1 * q) / y;
46 x = q + tmp;
48 dst.s.lo = (q - x) + tmp;
/freebsd-11-stable/lib/libc/nameser/
H A Dns_ttl.c100 u_long ttl, tmp; local
104 tmp = 0;
111 tmp *= 10;
112 tmp += (ch - '0');
121 case 'W': tmp *= 7;
122 case 'D': tmp *= 24;
123 case 'H': tmp *= 60;
124 case 'M': tmp *= 60;
128 ttl += tmp;
129 tmp
152 char tmp[50]; local
[all...]
/freebsd-11-stable/sys/riscv/include/
H A Dasm.h61 #define SET_FAULT_HANDLER(handler, tmp) \
62 ld tmp, PC_CURTHREAD(gp); \
63 ld tmp, TD_PCB(tmp); /* Load the pcb */ \
64 sd handler, PCB_ONFAULT(tmp) /* Set the handler */
/freebsd-11-stable/contrib/dialog/
H A Ddialog.pl32 local ( $tmp, $height, $message_len );
36 $tmp = $message;
37 if (chop($tmp) eq "\n") {
42 $tmp = system("dialog --title \"$title\" --msgbox \"$message\" $height $width");
43 if ($tmp) {
52 local ( $tmp, $height, $message_len );
56 $tmp = $message;
57 if (chop($tmp) eq "\n") {
67 local ( $tmp, $height, $message_len );
71 $tmp
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/WIN32-Code/
H A Dtree.h80 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
81 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
82 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
83 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
84 (head)->sph_root = tmp; \
87 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
88 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
89 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
90 (head)->sph_root = tmp; \
93 #define SPLAY_LINKLEFT(head, tmp, fiel
[all...]
/freebsd-11-stable/sys/crypto/aesni/
H A Daesencdec.h116 __m128i tmp; local
119 tmp = from ^ keysched[0];
121 tmp = _mm_aesenc_si128(tmp, keysched[i]);
122 tmp = _mm_aesenc_si128(tmp, keysched[i + 1]);
125 tmp = _mm_aesenc_si128(tmp, keysched[rounds]);
126 return _mm_aesenclast_si128(tmp, keysched[rounds + 1]);
132 __m128i tmp; local
[all...]
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Dmemory.c126 void *tmp, *tmp_aligned; local
143 if (posix_memalign(&tmp, page_size, page_size))
147 size = get_page_size(tmp);
148 tmp_aligned = (void *) ((uintptr_t) tmp & ~(size - 1));
151 tmp_aligned = tmp;
157 free(tmp);
211 struct ibv_mem_node *tmp; local
213 tmp = node->left;
215 node->left = tmp->right;
221 node->parent->right = tmp;
235 struct ibv_mem_node *tmp; local
369 struct ibv_mem_node *child, *parent, *sib, *tmp; local
544 struct ibv_mem_node *node, *tmp = NULL; local
564 struct ibv_mem_node *tmp = NULL; local
593 struct ibv_mem_node *node, *tmp; local
[all...]
/freebsd-11-stable/sbin/iscontrol/
H A Dauth_subr.c61 char *tmp; local
70 if((len = str2bin(chapSecret, &tmp)) == 0) {
74 MD5Update(&ctx, tmp, len);
75 free(tmp);
77 if((len = str2bin(cp, &tmp)) == 0) {
81 MD5Update(&ctx, tmp, len);
82 free(tmp);
94 char *tmp; local
103 if((len = str2bin(chapSecret, &tmp)) == 0) {
107 SHA1_Update(&ctx, tmp, le
157 unsigned char tmp[1024]; local
[all...]
/freebsd-11-stable/contrib/wpa/src/common/
H A Ddragonfly.c60 struct crypto_bignum *tmp; local
63 tmp = crypto_bignum_init();
64 if (!tmp || crypto_bignum_rand(tmp, prime) < 0) {
65 crypto_bignum_deinit(tmp, 0);
69 res = crypto_bignum_legendre(tmp, prime);
71 *qr = tmp;
73 *qnr = tmp;
75 crypto_bignum_deinit(tmp, 0);
90 struct crypto_bignum *tmp, *pm local
[all...]
/freebsd-11-stable/share/me/
H A DMakefile10 FILES= ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/} revisions
11 CLEANFILES+= ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/}
16 ${file}.tmp: ${file}
20 .for file in ${MESRCS:S/$/.tmp/} revisions
24 .for file in ${TMSRCS:S/$/.tmp/}
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dget_princs_c.c48 int32_t tmp; local
74 krb5_ret_int32(sp, &tmp);
75 ret = tmp;
78 krb5_ret_int32(sp, &tmp);
79 *princs = calloc(tmp + 1, sizeof(**princs));
84 for(i = 0; i < tmp; i++)
86 *count = tmp;
H A Drandkey_c.c48 int32_t tmp; local
76 krb5_ret_int32(sp, &tmp);
77 ret = tmp;
82 krb5_ret_int32(sp, &tmp);
83 k = malloc(tmp * sizeof(*k));
88 for(i = 0; i < tmp; i++)
90 *n_keys = tmp;
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dtest-map.c66 uint32_t *tmp = malloc(out_len * sizeof(uint32_t)); local
67 if (tmp == NULL && out_len != 0)
69 ret = _wind_stringprep_map(c->in, c->in_len, tmp, &out_len, WIND_PROFILE_NAME);
76 free(tmp);
79 if (memcmp(c->out, tmp, out_len * sizeof(uint32_t)) != 0) {
81 free(tmp);
84 free(tmp);
/freebsd-11-stable/crypto/heimdal/doc/
H A DMakefile.am18 $(dxy_subst) < $(srcdir)/hcrypto.din > hcrypto.dxy.tmp
19 chmod +x hcrypto.dxy.tmp
20 mv hcrypto.dxy.tmp hcrypto.dxy
23 $(dxy_subst) < $(srcdir)/hdb.din > hdb.dxy.tmp
24 chmod +x hdb.dxy.tmp
25 mv hdb.dxy.tmp hdb.dxy
28 $(dxy_subst) < $(srcdir)/hx509.din > hx509.dxy.tmp
29 chmod +x hx509.dxy.tmp
30 mv hx509.dxy.tmp hx509.dxy
33 $(dxy_subst) < $(srcdir)/gssapi.din > gssapi.dxy.tmp
[all...]
/freebsd-11-stable/contrib/top/
H A Dgetans41 tmp=`echo $input | tr -d 0123456789.`
42 if [ -n "$tmp" ]; then
49 tmp=`echo $input | tr -d 0123456789`
50 if [ -n "$tmp" ]; then
58 tmp=`echo $input | tr -d 0123456789`
59 if [ -n "$tmp" ]; then
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_strnid.c237 ASN1_STRING_TABLE *tmp; local
246 if (!(tmp = ASN1_STRING_TABLE_get(nid))) {
247 tmp = OPENSSL_malloc(sizeof(ASN1_STRING_TABLE));
248 if (!tmp) {
252 tmp->flags = flags | STABLE_FLAGS_MALLOC;
253 tmp->nid = nid;
254 tmp->minsize = tmp->maxsize = -1;
257 tmp->flags = (tmp
291 ASN1_STRING_TABLE *tmp; local
[all...]
/freebsd-11-stable/tests/sys/fs/
H A DMakefile16 CLEANFILES+= h_funcs.subr.tmp
20 sed -e '/atf_require_prog mount_$${name}/d' >>${.TARGET}.tmp
21 mv ${.TARGET}.tmp ${.TARGET}
/freebsd-11-stable/tests/sys/kern/acct/
H A DMakefile9 CLEANFILES+= convert.c convert.c.tmp
17 -e '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' ${.ALLSRC} >${.TARGET}.tmp
18 mv ${.TARGET}.tmp ${.TARGET}
/freebsd-11-stable/usr.bin/locate/locate/
H A Dupdatedb.sh45 : ${TMPDIR:=/tmp}; export TMPDIR
56 : ${PRUNEPATHS="/tmp /usr/tmp /var/tmp /var/db/portsnap /var/db/freebsd-update"} # unwanted directories
91 tmp=$TMPDIR/_updatedb$$
92 trap 'rm -f $tmp; rmdir $TMPDIR' 0 1 2 3 5 10 15
96 $mklocatedb -presort > $tmp
98 if [ -n "$($find $tmp -size -257c -print)" ]; then
99 echo "updatedb: locate database $tmp is empty" >&2
102 cat $tmp >
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dmktime.c135 struct tm * tmp
141 tmbuf = *tmp;
183 struct tm * tmp,
196 yourtm = *tmp;
255 *tmp = *localtime(&t);
257 *tmp = *gmtime(&t);
268 struct tm * tmp
274 if (tmp->tm_isdst > 1)
275 tmp->tm_isdst = 1;
276 t = time2(tmp,
182 time2( struct tm * tmp, int * okayp, int usezn ) argument
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dxstrtol.c121 __strtol_t tmp; local
137 tmp = __strtol (s, p, strtol_base);
148 *val = tmp;
160 *val = tmp;
186 overflow = bkm_scale (&tmp, 512);
190 overflow = bkm_scale (&tmp, 1024);
198 overflow = bkm_scale_by_power (&tmp, base, 6);
202 overflow = bkm_scale_by_power (&tmp, base, 3);
206 overflow = bkm_scale_by_power (&tmp, base, 1);
211 overflow = bkm_scale_by_power (&tmp, bas
[all...]
/freebsd-11-stable/contrib/ntp/sntp/tests/
H A DpacketHandling.c119 l_fp reftime, tmp; local
132 tmp.l_ui = 1000000000UL;
133 tmp.l_uf = 0UL;
134 HTONL_FP(&tmp, &rpkt.org);
137 tmp.l_ui = 1000000001UL;
138 tmp.l_uf = 2147483648UL;
139 HTONL_FP(&tmp, &rpkt.rec);
142 tmp.l_ui = 1000000002UL;
143 tmp.l_uf = 0UL;
144 HTONL_FP(&tmp,
165 l_fp reftime, tmp; local
[all...]
/freebsd-11-stable/sys/sys/
H A Dtree.h85 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
86 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
87 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
88 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
89 (head)->sph_root = tmp; \
92 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
93 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
94 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
95 (head)->sph_root = tmp; \
98 #define SPLAY_LINKLEFT(head, tmp, fiel
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/common/
H A Dfstest_rumpfs.c50 char tmp[64]; local
53 snprintf(tmp, sizeof(tmp), "%"PRId64, size);
54 res = setenv("RUMP_MEMLIMIT", tmp, 0);
/freebsd-11-stable/contrib/libucl/tests/
H A Dschema.test4 rm /tmp/_ucl_test_schema.out ||true
10 $PROG >> /tmp/_ucl_test_schema.out < $i

Completed in 165 milliseconds

1234567891011>>