Searched refs:temp (Results 276 - 300 of 1594) sorted by relevance

<<11121314151617181920>>

/netbsd-current/external/gpl2/groff/dist/
H A DMakefile.lib16 depend.temp: $(GENSRCS)
/netbsd-current/external/gpl2/texinfo/dist/info/
H A Dtilde.c313 void *temp = (void *)malloc (bytes);
315 if (!temp)
317 return (temp);
325 void *temp;
328 temp = (char *)malloc (bytes);
330 temp = (char *)realloc (pointer, bytes);
332 if (!temp)
335 return (temp);
312 void *temp = (void *)malloc (bytes); local
324 void *temp; local
/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
H A Damdgpu_vega20_thermal.c224 int temp = 0; local
226 temp = RREG32_SOC15(THM, 0, mmCG_MULT_THERMAL_STATUS);
228 temp = (temp & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >>
231 temp = temp & 0x1ff;
233 temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
234 return temp;
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/
H A Dtilde.c459 void *temp = (char *)malloc (bytes);
461 if (!temp)
463 return (temp);
469 void *temp;
472 temp = malloc (bytes);
474 temp = realloc (pointer, bytes);
476 if (!temp)
479 return (temp);
458 void *temp = (char *)malloc (bytes); local
468 void *temp; local
/netbsd-current/external/gpl3/gdb/dist/readline/readline/
H A Dtilde.c459 void *temp = (char *)malloc (bytes);
461 if (!temp)
463 return (temp);
469 void *temp;
472 temp = malloc (bytes);
474 temp = realloc (pointer, bytes);
476 if (!temp)
479 return (temp);
458 void *temp = (char *)malloc (bytes); local
468 void *temp; local
H A Dcomplete.c721 char *temp, *x; local
726 temp = strrchr (pathname, '/');
728 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
729 temp = pathname + 1;
732 if (temp == 0 || *temp == '\0')
734 else if (temp[1] == 0 && temp == pathname)
740 else if (temp[1] == '\0')
742 for (x = temp
1533 char *temp, *t; local
1689 char *temp; local
1974 char *temp; local
2461 char *temp, *dentry, *convfn; local
[all...]
/netbsd-current/sys/arch/hppa/gsc/
H A Dlpt_gsc.c100 u_char temp; local
107 temp = bus_space_read_1(iot, ioh, off) & mask;
108 } while (temp != data && --timeout);
110 (unsigned)(base + off), (unsigned)data, (unsigned)temp, timeout));
111 return (temp == data);
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Drefclock_tt560.c255 unsigned char temp; local
259 temp = byte_swap.byte[3];
261 byte_swap.byte[0] = temp;
263 temp = byte_swap.byte[2];
265 byte_swap.byte[1] = temp;
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Ddg-cmp-results.sh73 temp=`grep "$header" $OFILE`
74 if test -z "$temp"; then
78 temp=`grep "$header" $NFILE`
79 if test -z "$temp"; then
83 unset temp
/netbsd-current/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-perfpow.c109 mpz_t n, np, temp, primes[NRP]; local
119 mpz_init (temp);
187 mpz_pow_ui (temp, primes[j], exp[j]);
188 mpz_mul (n, n, temp);
225 mpz_clear (temp);
/netbsd-current/sys/dev/i2c/
H A Dtitemp.c154 uint8_t reg_hi, reg_lo, temp[2]; local
169 if ((error = titemp_read(sc, reg_hi, &temp[0])) != 0)
171 if ((error = titemp_read(sc, reg_lo, &temp[1])) != 0)
180 ((uint64_t)temp[0] * 1000000) +
181 ((uint64_t)(temp[1]>>4) * 62500) +
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Ddg-cmp-results.sh73 temp=`grep "$header" $OFILE`
74 if test -z "$temp"; then
78 temp=`grep "$header" $NFILE`
79 if test -z "$temp"; then
83 unset temp
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bus/
H A Dhwsq.h121 u32 temp = hwsq_rd32(ram, reg); local
122 if (temp != ((temp & ~mask) | data) || reg->force)
123 hwsq_wr32(ram, reg, (temp & ~mask) | data);
124 return temp;
/netbsd-current/external/gpl2/rcs/dist/src/
H A Drcs.c111 * Permit dates past 1999/12/31. Make lock and temp files faster and safer.
676 char const *temp; local
681 temp = sp;
692 pt->ssymbol = temp;
791 char const *temp; local
797 temp = sp;
804 headstate = temp;
815 pt->status = temp;
1173 struct hshentry *target, *target2, *temp; local
1185 temp
[all...]
/netbsd-current/lib/libc/db/hash/
H A Dhash_page.c85 temp = 3 * sizeof(uint16_t); \
86 _DIAGASSERT((size_t)HASH_BSIZE(hashp) >= temp); \
87 ((uint16_t *)(void *)(P))[1] = (uint16_t)(HASH_BSIZE(hashp) - temp); \
100 size_t temp; local
107 temp = OFFSET(bp);
108 _DIAGASSERT(temp >= key->size);
109 off = (uint16_t)(temp - key->size);
121 temp = (n + 3) * sizeof(uint16_t);
122 _DIAGASSERT(off >= temp);
123 bp[n + 1] = (uint16_t)(off - temp);
138 size_t temp; local
195 size_t temp; local
296 size_t temp; local
484 size_t temp; local
541 size_t temp; local
872 size_t temp; local
[all...]
/netbsd-current/usr.bin/menuc/
H A Dmdb.c72 id_rec *temp; local
74 temp = find_id (root, name);
76 if (temp == NULL) {
78 temp = calloc(1, sizeof(id_rec));
79 temp->id = strdup(name);
80 temp->info = NULL;
81 temp->menu_no = menu_no;
82 menus[menu_no++] = temp;
83 insert_id(&root, temp);
91 return temp;
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dexpr.cc665 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
666 emit_move_insn (to, temp);
700 rtx temp;
778 temp = gen_reg_rtx (mode);
779 convert_move (temp, x, unsignedp);
780 return temp;
1679 rtx temp = expand_binop (mode, sub_optab, op0, op1, NULL_RTX,
1682 temp = expand_binop (mode, ior_optab, m_accumulator, temp, temp,
663 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from)); local
698 rtx temp; local
1676 rtx temp = expand_binop (mode, sub_optab, op0, op1, NULL_RTX, local
2697 rtx temp; local
2719 rtx temp; local
3639 rtx temp; local
4252 rtx temp; local
4696 rtx temp; local
5609 rtx temp = assign_stack_temp (GET_MODE (to_rtx), local
5629 rtx temp = assign_stack_temp (GET_MODE (to_rtx), local
5762 rtx temp; local
5893 rtx temp; local
6002 convert_move (SUBREG_REG (target), temp, local
7441 rtx temp; local
7923 rtx temp = expand_simple_binop (GET_MODE (value), code, local
8759 rtx temp; local
8862 expand_misaligned_mem_ref(rtx temp, machine_mode mode, int unsignedp, unsigned int align, rtx target, rtx *alt_rtl) argument
8941 rtx op0, op1, op2, temp; local
10342 rtx op0, op1, temp, decl_rtl; local
12768 tree temp = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg1), local
12873 rtx temp, vector; local
[all...]
/netbsd-current/sys/external/isc/libsodium/dist/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c103 __m128i temp = _mm_xor_si128(nv, rkeys[0]); local
105 temp = _mm_aesenc_si128(temp, rkeys[1]);
106 temp = _mm_aesenc_si128(temp, rkeys[2]);
107 temp = _mm_aesenc_si128(temp, rkeys[3]);
108 temp = _mm_aesenc_si128(temp, rkeys[4]);
109 temp
[all...]
/netbsd-current/sys/dev/pci/bktr/
H A Dbktr_core.c1311 unsigned int temp; local
1388 temp = 0;
1389 if (!(c_temp & 0x40)) temp |= METEOR_STATUS_HCLK;
1390 if (!(c_temp & 0x10)) temp |= METEOR_STATUS_FIDT;
1391 *(u_short *)arg = temp;
1395 temp = *(unsigned int*)arg & BT848_IFORM_FORMAT;
1399 OUTB(bktr, BKTR_IFORM, (temp_iform | temp | format_params[temp].iform_xtsel));
1400 switch(temp) {
1410 OUTB(bktr, BKTR_ADELAY, format_params[temp]
1937 unsigned int temp, temp1; local
2347 unsigned int temp; local
3449 unsigned int temp; local
[all...]
/netbsd-current/external/lgpl3/gmp/dist/
H A Dgmpxx.h111 mpz_t temp; \
113 temp->_mp_d = limbs; \
114 __mpz_set_ui_safe (temp, l)
116 mpz_t temp; \
118 temp->_mp_d = limbs; \
119 __mpz_set_si_safe (temp, l)
121 mpz_t temp; \
123 temp->_mp_d = limbs; \
124 temp->_mp_alloc = __GMPZ_DBL_LIMBS; \
125 mpz_set_d (temp,
284 mpf_t temp; local
419 mpf_t temp; local
427 mpf_t temp; local
607 mpf_t temp; local
780 mpf_t temp; local
788 mpf_t temp; local
1143 mpf_t temp; local
1154 mpf_t temp; local
1171 mpf_t temp; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dexpr.c645 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from));
646 emit_move_insn (to, temp);
680 rtx temp;
738 temp = gen_reg_rtx (mode);
739 convert_move (temp, x, unsignedp);
740 return temp;
1481 rtx temp = expand_binop (mode, sub_optab, op0, op1, NULL_RTX,
1484 temp = expand_binop (mode, ior_optab, m_accumulator, temp, temp,
643 rtx temp = force_reg (to_mode, gen_lowpart (to_mode, from)); local
678 rtx temp; local
1478 rtx temp = expand_binop (mode, sub_optab, op0, op1, NULL_RTX, local
2506 rtx temp; local
2528 rtx temp; local
3443 rtx temp; local
3982 rtx temp; local
4426 rtx temp; local
5331 rtx temp = assign_stack_temp (GET_MODE (to_rtx), local
5351 rtx temp = assign_stack_temp (GET_MODE (to_rtx), local
5459 rtx temp; local
5586 rtx temp; local
5691 convert_move (SUBREG_REG (target), temp, local
7080 rtx temp; local
7562 rtx temp = expand_simple_binop (GET_MODE (value), code, local
8385 rtx temp; local
8487 expand_misaligned_mem_ref(rtx temp, machine_mode mode, int unsignedp, unsigned int align, rtx target, rtx *alt_rtl) argument
8516 rtx op0, op1, op2, temp; local
9899 rtx op0, op1, temp, decl_rtl; local
12288 tree temp = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg1), local
12393 rtx temp, vector; local
[all...]
/netbsd-current/games/sail/
H A Ddr_1.c273 int crew[3], men = 0, target, temp; local
341 temp = portside(closest, sp, 1)
343 if (temp < 1)
344 temp += 8;
345 if (temp > 8)
346 temp -= 8;
347 sternrake = temp > 4 && temp < 6;
385 temp = sp->specs->class;
386 if ((temp >
[all...]
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dtcp.c477 uv_os_sock_t temp[2]; local
486 if (socketpair(AF_UNIX, flags, protocol, temp))
490 fds[0] = temp[0];
491 fds[1] = temp[1];
495 if (socketpair(AF_UNIX, type, protocol, temp))
498 if ((err = uv__cloexec(temp[0], 1)))
500 if ((err = uv__cloexec(temp[1], 1)))
505 if ((err = uv__nonblock(temp[0], 1)))
508 if ((err = uv__nonblock(temp[1], 1)))
511 fds[0] = temp[
[all...]
/netbsd-current/external/gpl2/texinfo/dist/makeinfo/
H A Dinsertion.c206 INSERTION_ELT *temp = insertion_stack;
208 if (temp == NULL)
211 in_fixed_width_font = temp->in_fixed_width_font;
212 inhibit_paragraph_indentation = temp->inhibited;
213 filling_enabled = temp->filling_enabled;
214 indented_fill = temp->indented_fill;
215 free_and_clear (&(temp->item_function));
216 free_and_clear (&(temp->filename));
218 free (temp);
272 INSERTION_ELT *temp
205 INSERTION_ELT *temp = insertion_stack; local
271 INSERTION_ELT *temp = insertion_stack; local
361 char temp[10]; local
1903 char *temp; local
2058 char *temp; local
[all...]
/netbsd-current/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.c103 cd9660node *temp; local
116 TAILQ_FOREACH(temp, &node->cn_children, cn_next_child) {
117 if ((r = cd9660_susp_finalize(diskStructure, temp)) < 0)
209 struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST; local
220 TAILQ_FOREACH(temp, &node->head, rr_ll) {
225 * CD9660_SUSP_ENTRY_SIZE(temp));
227 working -= CD9660_SUSP_ENTRY_SIZE(temp);
229 last = temp;
230 susp_used += CD9660_SUSP_ENTRY_SIZE(temp);
255 for (temp
300 struct ISO_SUSP_ATTRIBUTES *temp; local
447 struct ISO_SUSP_ATTRIBUTES* temp; local
[all...]

Completed in 356 milliseconds

<<11121314151617181920>>