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

1234567891011>>

/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dmount29 TMP_FSTAB=/tmp/bsdinstall-tmp-fstab
/freebsd-11-stable/tests/sys/geom/class/uzip/
H A Dconf.sh20 mntpoint=$(mktemp -d tmp.XXXXXX) || exit
/freebsd-11-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-11-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...]
H A Drsa.c268 struct bignum *tmp, *a = NULL, *b = NULL; local
275 tmp = bignum_init();
276 if (tmp == NULL)
279 if (bignum_set_unsigned_bin(tmp, in, inlen) < 0)
281 if (bignum_cmp(key->n, tmp) < 0) {
289 * up calculation. This is equivalent to tmp = tmp^d mod n
305 /* a = tmp^dmp1 mod p */
306 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
309 /* b = tmp
[all...]
/freebsd-11-stable/stand/i386/pxeldr/
H A DMakefile30 CLEANFILES+= ${BOOT}.tmp
33 cat ${LDR} ${LOADER} > ${.TARGET}.tmp
34 ${DD} if=${.TARGET}.tmp of=${.TARGET} obs=2k conv=osync
35 rm ${.TARGET}.tmp
/freebsd-11-stable/contrib/tcsh/nls/
H A Dcatgen3 TMP=/tmp/catgen.$$
/freebsd-11-stable/libexec/revnetgroup/
H A Dhash.c179 struct grouplist *tmp; local
185 tmp = (struct grouplist *)malloc(sizeof(struct grouplist));
186 tmp->groupname = strdup(data);
187 tmp->next = NULL;
192 tmp->next = cur->groups;
193 cur->groups = tmp;
203 new->groups = tmp;
H A Drevnetgroup.c163 struct grouplist *tmp; local
165 tmp = mcur->groups;
166 while(tmp) {
167 printf ("%s", tmp->groupname);
168 tmp = tmp->next;
169 if (tmp)
/freebsd-11-stable/usr.bin/bmake/unit-tests/
H A DMakefile82 CLEANFILES += *.rawout *.out *.status *.tmp *.core *.tmp
116 2>&1 ; echo $$? >${.TARGET:R}.status ; } > ${.TARGET}.tmp
117 @mv ${.TARGET}.tmp ${.TARGET}
130 < ${.IMPSRC} > ${.TARGET}.tmp
131 @echo "exit status `cat ${.TARGET:R}.status`" >> ${.TARGET}.tmp
132 @mv ${.TARGET}.tmp ${.TARGET}
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddsrec.c223 int tmp; local
236 tmp = flags; /* Data or header record */
242 tmp = flags >> SREC_TERM_SHIFT; /* Term record */
247 if ((tmp & SREC_2_BYTE_ADDR) && (targ_addr <= 0xffff))
249 else if ((tmp & SREC_3_BYTE_ADDR) && (targ_addr <= 0xffffff))
251 else if (tmp & SREC_4_BYTE_ADDR)
295 for (tmp = 0; tmp < payload_size; tmp++)
299 k = binbuf[tmp];
[all...]
/freebsd-11-stable/crypto/openssl/crypto/dh/
H A Ddh_check.c154 BIGNUM *tmp = NULL; local
162 tmp = BN_CTX_get(ctx);
163 if (tmp == NULL || !BN_set_word(tmp, 1))
165 if (BN_cmp(pub_key, tmp) <= 0)
167 if (BN_copy(tmp, dh->p) == NULL || !BN_sub_word(tmp, 1))
169 if (BN_cmp(pub_key, tmp) >= 0)
174 if (!BN_mod_exp(tmp, pub_key, dh->q, dh->p, ctx))
176 if (!BN_is_one(tmp))
[all...]
/freebsd-11-stable/crypto/openssl/util/
H A Dopenssl-format-source90 tmp=$(mktemp /tmp/indent.XXXXXX)
91 trap 'rm -f "$tmp"' HUP INT TERM EXIT
137 > "$tmp"
139 expand "$j" | indent $INDENT_ARGS > "$tmp"
141 mv "$tmp" "$j"
/freebsd-11-stable/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...]
/freebsd-11-stable/sys/libkern/
H A Dinet_ntop.c75 char tmp[sizeof "255.255.255.255"]; local
78 l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
82 strlcpy(dst, tmp, size);
102 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
145 tp = tmp;
161 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
177 if ((socklen_t)(tp - tmp) > size) {
180 strcpy(dst, tmp);
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Devergreen.c220 u32 tmp = RREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset); local
224 tmp |= EVERGREEN_GRPH_UPDATE_LOCK;
225 WREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset, tmp);
247 tmp &= ~EVERGREEN_GRPH_UPDATE_LOCK;
248 WREG32(EVERGREEN_GRPH_UPDATE + radeon_crtc->crtc_offset, tmp);
479 u32 tmp; local
485 tmp = RREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset);
486 tmp |= EVERGREEN_CRTC_DISP_READ_REQUEST_DISABLE;
487 WREG32(EVERGREEN_CRTC_CONTROL + radeon_crtc->crtc_offset, tmp);
504 u32 tmp; local
573 u32 tmp; local
643 u32 tmp = DC_HPDx_CONNECTION_TIMER(0x9c4) | local
736 u32 tmp; local
807 u32 tmp = RREG32(MC_SHARED_CHMAP); local
1062 u32 tmp, arb_control3; local
1200 u32 tmp; local
1218 u32 tmp; local
1240 u32 tmp; local
1299 u32 tmp; local
1332 u32 tmp; local
1358 u32 crtc_enabled, tmp, frame_count, blackout; local
1442 u32 tmp, frame_count; local
1526 u32 tmp; local
1739 u32 tmp; local
1825 u32 hdp_host_path_cntl, tmp; local
2365 u32 tmp; local
2509 u32 tmp; local
2584 u32 tmp; local
2848 u32 tmp; local
2996 u32 wptr, tmp; local
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_instr.c72 char *tmp; local
89 } else if ((tmp = typeCalloc(char, need)) == 0) {
93 wcstombs(tmp, wch, n3);
95 str[i++] = tmp[i3];
96 free(tmp);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dclocktime.c65 int32 y, tmp, idx, min; local
71 tmp = ((int32)second +
84 test[0] = (u_int32)(*yearstart) + tmp;
98 * the seconds offset in 'tmp', we make an educated guess
106 y = ntp_to_year(rec_ui - tmp);
111 test[idx] = ystt[idx] + tmp;
/freebsd-11-stable/contrib/gdb/
H A Ddjunpack.bat27 djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
30 Rem an empty fnchange.tmp even if the command failed for some reason.
31 copy fnchange.tmp junk.tmp > nul
32 if not exist junk.tmp GoTo NoDjTar
33 del junk.tmp
34 sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
36 copy fnchange.lst junk.tmp > nul
37 if not exist junk.tmp GoTo NoSed
38 del junk.tmp
[all...]
/freebsd-11-stable/contrib/elftoolchain/ar/benchmark/
H A Dacp.sh18 test -e $dst -o -e /tmp/acp \
19 && { echo "$dst or /tmp/acp exists, exiting"; exit 1; }
25 $1, $3, $5, ($1>0?L/$1:0)}' /tmp/acp | sort | head -n 1
55 time $ar $op > /dev/null 2>> /tmp/acp
60 rm -rf /tmp/acp
65 rm -f /tmp/acp
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn_util.c128 unsigned int tmp; local
130 for (tmp = 0; x >= (2 * tmp) + 1; x -= (2 * tmp++) + 1)
132 return (tmp);
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dget_princs_s.c48 char **tmp; local
49 tmp = realloc(d->princs, (d->count + 1) * sizeof(*tmp));
50 if(tmp == NULL)
52 d->princs = tmp;
/freebsd-11-stable/sys/dev/hatm/
H A Dif_hatm_rx.c166 struct mbuf *tmp; local
168 for (tmp = vcc->chain; tmp != NULL; tmp = tmp->m_next) {
169 printf("mbuf %p: len=%u\n", tmp, tmp->m_len);
170 for (ptr = mtod(tmp, u_char *);
171 ptr < mtod(tmp, u_char *) + tmp
[all...]
/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_pwri.c226 unsigned char *tmp; local
236 tmp = OPENSSL_malloc(inlen);
237 if (!tmp)
240 EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl,
247 EVP_DecryptUpdate(ctx, tmp, &outl, tmp + inlen - blocklen, blocklen);
249 EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen);
254 EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen);
256 if (((tmp[
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dmri.c194 struct wildcard_list *tmp; local
212 tmp = xmalloc (sizeof *tmp);
213 tmp->next = NULL;
214 tmp->spec.name = p->name;
215 tmp->spec.exclude_name_list = NULL;
216 tmp->spec.sorted = none;
217 lang_add_wild (NULL, tmp, FALSE);
223 tmp = xmalloc (sizeof *tmp);
[all...]

Completed in 521 milliseconds

1234567891011>>