Searched refs:tmp (Results 176 - 200 of 2125) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.bin/bmake/tests/
H A Dtest-new.mk6 rm -rf /tmp/${USER}.make.test
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dr600.c624 u32 tmp; local
630 tmp = RREG32(DC_HPD1_INT_CONTROL);
632 tmp &= ~DC_HPDx_INT_POLARITY;
634 tmp |= DC_HPDx_INT_POLARITY;
635 WREG32(DC_HPD1_INT_CONTROL, tmp);
638 tmp = RREG32(DC_HPD2_INT_CONTROL);
640 tmp &= ~DC_HPDx_INT_POLARITY;
642 tmp |= DC_HPDx_INT_POLARITY;
643 WREG32(DC_HPD2_INT_CONTROL, tmp);
646 tmp
731 u32 tmp = DC_HPDx_CONNECTION_TIMER(0x9c4) | DC_HPDx_RX_INT_TIMER(0xfa); local
837 u32 tmp; local
843 u32 tmp; local
891 u32 tmp; local
948 u32 tmp; local
988 u32 tmp; local
1023 u32 tmp; local
1038 u32 tmp; local
1168 u32 tmp; local
1291 u32 tmp; local
1363 u32 tmp; local
1477 u32 pipe_rb_ratio, pipe_rb_remain, tmp; local
1531 u32 tmp; local
2233 u32 tmp; local
2465 uint32_t tmp = 0; local
2518 u32 tmp; local
3090 uint32_t tmp = 0; local
3154 u32 tmp = 0; local
3434 u32 tmp; local
3704 u32 tmp; local
3829 u32 wptr, tmp; local
4134 u32 tmp; local
4261 u32 link_width_cntl, lanes, speed_cntl, training_cntl, tmp; local
[all...]
H A Dr300.c61 uint32_t tmp; local
66 tmp = RREG32_PCIE(RADEON_PCIE_TX_GART_CNTL);
67 WREG32_PCIE(RADEON_PCIE_TX_GART_CNTL, tmp | RADEON_PCIE_TX_GART_INVALIDATE_TLB);
69 WREG32_PCIE(RADEON_PCIE_TX_GART_CNTL, tmp);
119 uint32_t tmp; local
131 tmp = RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_DISCARD;
132 WREG32_PCIE(RADEON_PCIE_TX_GART_CNTL, tmp);
134 tmp = rdev->mc.gtt_end & ~RADEON_GPU_PAGE_MASK;
135 WREG32_PCIE(RADEON_PCIE_TX_GART_END_LO, tmp);
145 tmp
159 u32 tmp; local
315 uint32_t tmp; local
330 uint32_t gb_tile_config, tmp; local
386 u32 status, tmp; local
446 u32 tmp; local
565 uint32_t tmp; local
605 uint32_t tmp, tile_flags = 0; local
1341 u32 tmp; local
[all...]
/freebsd-11-stable/usr.bin/unifdef/
H A Dunifdef.h48 mktempmode(char *tmp, int mode) argument
50 int fd = mkstemp(tmp);
/freebsd-11-stable/contrib/wpa/src/utils/
H A Deloop_win.c117 struct eloop_sock *tmp; local
133 tmp = os_realloc_array(eloop.readers, eloop.reader_count + 1,
135 if (tmp == NULL) {
141 tmp[eloop.reader_count].sock = sock;
142 tmp[eloop.reader_count].eloop_data = eloop_data;
143 tmp[eloop.reader_count].user_data = user_data;
144 tmp[eloop.reader_count].handler = handler;
145 tmp[eloop.reader_count].event = event;
147 eloop.readers = tmp;
187 struct eloop_event *tmp; local
241 struct eloop_timeout *timeout, *tmp; local
344 struct eloop_timeout *tmp; local
362 struct eloop_timeout *tmp; local
394 struct eloop_timeout *tmp; local
469 struct eloop_signal *tmp; local
[all...]
/freebsd-11-stable/sys/arm/include/
H A Datomic-v6.h98 uint32_t tmp = 0, tmp2 = 0; local
107 : "=&r" (tmp), "+r" (tmp2)
114 uint64_t tmp; local
119 " ldrexd %Q[tmp], %R[tmp], [%[ptr]] \n"
120 " adds %Q[tmp], %Q[val] \n"
121 " adc %R[tmp], %R[tmp], %R[val] \n"
122 " strexd %[exf], %Q[tmp], %R[tmp], [
147 uint32_t tmp = 0, tmp2 = 0; local
163 uint64_t tmp; local
196 uint32_t tmp; local
215 uint64_t tmp; local
326 uint64_t tmp; local
416 uint32_t tmp = 0, tmp2 = 0, ret = 0; local
433 uint64_t ret, tmp; local
513 uint32_t ret, tmp = 0, tmp2 = 0; local
530 uint64_t ret, tmp; local
560 uint32_t tmp = 0, tmp2 = 0; local
576 uint64_t tmp; local
609 uint32_t tmp = 0, tmp2 = 0; local
625 uint64_t tmp; local
658 uint64_t tmp; local
707 uint32_t tmp, tmp2, res, mask; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dser-tcp.c61 int n, port, tmp; local
80 tmp = min (port_str - name, (int) sizeof hostname - 1);
81 strncpy (hostname, name, tmp); /* Don't want colon */
82 hostname[tmp] = '\000'; /* Tie off host name */
111 tmp = 1;
112 ioctl (scb->fd, FIONBIO, &tmp);
179 tmp = 0;
180 ioctl (scb->fd, FIONBIO, &tmp);
185 tmp = 1;
187 (char *)&tmp, sizeo
[all...]
/freebsd-11-stable/sys/dev/nand/
H A Dnandsim_log.c90 char tmp[NANDSIM_ENTRY_SIZE]; local
121 len = vsnprintf(tmp, NANDSIM_ENTRY_SIZE - 1, fmt, ap);
122 tmp[NANDSIM_ENTRY_SIZE - 1] = 0;
141 bcopy(tmp, &sc->log_buff[sc->log_idx], len);
145 bcopy(tmp, &sc->log_buff[sc->log_idx], rest);
146 bcopy(&tmp[rest], sc->log_buff, len - rest);
155 len = vsnprintf(tmp, NANDSIM_ENTRY_SIZE - 1, fmt, ap);
156 tmp[NANDSIM_ENTRY_SIZE - 1] = 0;
172 strcat(string, tmp);
175 strlcat(string, tmp, NANDSIM_ENTRY_SIZ
[all...]
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/config/
H A Dt_config.sh190 : >tmp
191 grep -q '^a\.o:' $f >>tmp
192 grep -q '^b\.o:' $f >>tmp
193 grep -q '^c\.o:' $f >>tmp
195 [ ! -s tmp ] &&
212 sed -ne '/^struct cfdriver \* const cfdriver_list_initial\[\]/,/^};/p' $f >tmp.cfdriver
213 sed -ne '/^struct cfdata cfdata\[\]/,/^};/p' $f >tmp.cfdata
216 grep -q '&d_cd,' tmp.cfdriver &&
220 grep -q '{ "d",' tmp.cfdata &&
246 grep -q '^%' $f >tmp
[all...]
/freebsd-11-stable/sbin/iscontrol/
H A Dmisc.c87 char *src, *dst, *tmp; local
91 tmp = NULL;
96 if((tmp = malloc((len+1)/2)) == NULL) {
100 dst = tmp;
107 len = dst - tmp;
115 if((tmp = malloc(len)) == NULL) {
119 dst = tmp;
140 len = dst - tmp;
147 if((tmp = malloc(len)) == NULL)
149 dst = tmp;
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dxml.c259 serf_bucket_t *tmp;
261 tmp = SERF_BUCKET_SIMPLE_STRING_LEN(XML_HEADER, sizeof(XML_HEADER) - 1,
263 serf_bucket_aggregate_append(agg_bucket, tmp);
273 serf_bucket_t *tmp;
275 tmp = SERF_BUCKET_SIMPLE_STRING_LEN("<", 1, bkt_alloc);
276 serf_bucket_aggregate_append(agg_bucket, tmp);
278 tmp = SERF_BUCKET_SIMPLE_STRING(tag, bkt_alloc);
279 serf_bucket_aggregate_append(agg_bucket, tmp);
287 tmp = SERF_BUCKET_SIMPLE_STRING_LEN(" ", 1, bkt_alloc);
288 serf_bucket_aggregate_append(agg_bucket, tmp);
257 serf_bucket_t *tmp; local
271 serf_bucket_t *tmp; local
314 serf_bucket_t *tmp; local
355 serf_bucket_t *tmp; local
[all...]
/freebsd-11-stable/usr.sbin/ypserv/
H A Dyp_access.c113 struct securenet *tmp; local
121 tmp = securenets->next;
123 securenets = tmp;
155 tmp = malloc(sizeof(struct securenet));
157 if (!inet_aton((char *)&addr1, (struct in_addr *)&tmp->net)) {
159 free(tmp);
163 if (!inet_aton((char *)&addr2, (struct in_addr *)&tmp->mask)) {
165 free(tmp);
169 tmp->next = securenets;
170 securenets = tmp;
222 struct securenet *tmp; local
[all...]
/freebsd-11-stable/sys/fs/unionfs/
H A Dunion_vfsops.c81 char *tmp; local
134 if (vfs_getopt(mp->mnt_optnew, "udir", (void **)&tmp, NULL) == 0) {
135 if (tmp != NULL)
136 udir = (mode_t)strtol(tmp, &ep, 8);
137 if (tmp == NULL || *ep) {
143 if (vfs_getopt(mp->mnt_optnew, "ufile", (void **)&tmp, NULL) == 0) {
144 if (tmp != NULL)
145 ufile = (mode_t)strtol(tmp, &ep, 8);
146 if (tmp == NULL || *ep) {
173 if (vfs_getopt(mp->mnt_optnew, "uid", (void **)&tmp,
[all...]
/freebsd-11-stable/libexec/rtld-elf/arm/
H A Dreloc.c190 Elf_Addr tmp; local
215 tmp = (Elf_Addr)obj->relocbase + def->st_value
217 if ((tmp & 0xfe000000) != 0xfe000000 &&
218 (tmp & 0xfe000000) != 0) {
224 (long) tmp, (long) tmp);
227 tmp >>= 2;
228 *where = (*where & 0xff000000) | (tmp & 0x00ffffff);
243 tmp = *where + (Elf_Addr)defobj->relocbase +
245 *where = tmp;
[all...]
/freebsd-11-stable/contrib/binutils/bfd/doc/
H A DMakefile.am83 ./$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../aoutx.h >aoutx.tmp
84 $(SHELL) $(srcdir)/../../move-if-change aoutx.tmp aoutx.texi
88 ./$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../archive.c >archive.tmp
89 $(SHELL) $(srcdir)/../../move-if-change archive.tmp archive.texi
93 ./$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../archures.c >archures.tmp
94 $(SHELL) $(srcdir)/../../move-if-change archures.tmp archures.texi
100 ./$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../bfd.c >bfd.tmp
101 $(SHELL) $(srcdir)/../../move-if-change bfd.tmp bfdt.texi
105 ./$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../cache.c >cache.tmp
106 $(SHELL) $(srcdir)/../../move-if-change cache.tmp cach
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Dexcept.c64 tree tmp; local
68 tmp = build_function_type (void_type_node, void_list_node);
69 terminate_node = build_cp_library_fn_ptr ("terminate", tmp);
75 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
76 tmp = build_function_type (void_type_node, tmp);
78 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp);
173 tree tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node); local
174 fn = push_library_fn (fn, build_function_type (ptr_type_node, tmp));
193 tree tmp local
539 tree tmp = tree_cons (NULL_TREE, size_type_node, void_list_node); local
631 tree tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node); local
649 tree tmp; local
[all...]
/freebsd-11-stable/usr.sbin/ctld/
H A Dparse.y111 uint64_t tmp;
113 if (expand_number($2, &tmp) != 0) {
119 conf->conf_debug = tmp;
125 uint64_t tmp;
127 if (expand_number($2, &tmp) != 0) {
133 conf->conf_timeout = tmp;
139 uint64_t tmp;
141 if (expand_number($2, &tmp) != 0) {
147 conf->conf_maxproc = tmp;
175 uint64_t tmp;
[all...]
/freebsd-11-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-11-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-11-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-11-stable/contrib/gperf/src/
H A Dkeyword.cc41 unsigned int tmp; local
43 for (j = i, tmp = base[j]; j > 0 && tmp < base[j - 1]; j--)
46 base[j] = tmp;
/freebsd-11-stable/lib/libc/stdio/
H A Dfdopen.c53 int flags, oflags, fdflags, tmp; local
74 tmp = fdflags & (O_ACCMODE | O_EXEC);
75 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
/freebsd-11-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-11-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-11-stable/crypto/openssl/crypto/evp/
H A De_idea.c110 IDEA_KEY_SCHEDULE tmp; local
112 idea_set_encrypt_key(key, &tmp);
113 idea_set_decrypt_key(&tmp, ctx->cipher_data);
114 OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE));

Completed in 328 milliseconds

1234567891011>>