Searched refs:temp (Results 226 - 250 of 744) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_x86core.c478 u32 temp; local
500 temp = rk[3];
502 ((u32)Te4[(temp >> 8) & 0xff] ) ^
503 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^
504 ((u32)Te4[(temp >> 24) ] << 16) ^
505 ((u32)Te4[(temp ) & 0xff] << 24) ^
520 temp = rk[ 5];
522 ((u32)Te4[(temp >> 8) & 0xff] ) ^
523 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^
524 ((u32)Te4[(temp >> 2
580 u32 temp; local
[all...]
/freebsd-11-stable/contrib/telnet/telnet/
H A Dtelnet.c211 char *temp, temp2[10]; local
216 baudrate = (uint32_t)strtol(arg, &temp, 10);
217 if (temp[0] != '\0' || (baudrate == 0 && errno != 0))
239 printsub('>', &temp[2], sizeof(temp2) - 2);
778 unsigned char temp[50]; local
784 snprintf(temp, sizeof(temp), "%c%c%c%c%s%c%c", IAC, SB, TELOPT_TTYPE,
786 ring_supply_data(&netoring, temp, len);
787 printsub('>', &temp[2], len-2);
801 unsigned char temp[5 local
900 unsigned char temp[50], *dp; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dcplus-dem.c1574 string temp; local
1606 /* temp is initialized in do_type */
1607 success = do_type (work, mangled, &temp);
1610 string_appends (tname, &temp);
1612 string_delete(&temp);
1941 string temp; local
2015 /* temp is initialized in do_type */
2016 success = do_type (work, mangled, &temp);
2019 string_appends (tname, &temp);
2024 int len = temp
3129 string temp; local
3506 string temp; local
3513 string temp; local
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dcplus-dem.c1574 string temp; local
1606 /* temp is initialized in do_type */
1607 success = do_type (work, mangled, &temp);
1610 string_appends (tname, &temp);
1612 string_delete(&temp);
1941 string temp; local
2015 /* temp is initialized in do_type */
2016 success = do_type (work, mangled, &temp);
2019 string_appends (tname, &temp);
2024 int len = temp
3129 string temp; local
3506 string temp; local
3513 string temp; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-structalias.c2196 char *temp; local
2208 num_printed = asprintf (&temp, "%s_%u",
2214 num_printed = asprintf (&temp, "D.%u", DECL_UID (decl));
2218 res = ggc_strdup (temp);
2219 free (temp);
2401 struct constraint_expr temp; local
2403 temp.offset = 0;
2404 temp.var = integer_id;
2405 temp.type = SCALAR;
2406 VEC_safe_push (ce_s, heap, *results, &temp);
2522 struct constraint_expr temp; local
2736 struct constraint_expr temp; local
2754 struct constraint_expr temp; local
3306 varinfo_t temp = get_varinfo (c2->var); local
4318 struct constraint_expr temp = lhs; local
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dr100.c1879 uint32_t temp = idx_value >> 4; local
1881 track->textures[i].enabled = !!(temp & (1 << i));
2927 uint32_t temp; local
2929 temp = RREG32(RADEON_CONFIG_CNTL);
2931 temp &= ~RADEON_CFG_VGA_RAM_EN;
2932 temp |= RADEON_CFG_VGA_IO_DIS;
2934 temp &= ~RADEON_CFG_VGA_IO_DIS;
2936 WREG32(RADEON_CONFIG_CNTL, temp);
3258 uint32_t temp, data, mem_trcd, mem_trp, mem_tras; local
3357 temp
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Ddb_iterator.c81 char temp[PATH_MAX]; local
82 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%s%s", name, DBM_SUFFIX);
83 if (stat(temp, sb) == 0 && S_ISREG(sb->st_mode)) {
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_chronolog.c181 int temp; /* int temp */ local
190 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
192 if (temp == 0) {
200 pp->lencode = temp;
H A Drefclock_dumbclock.c204 int temp; /* int temp */ local
213 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
215 if (temp == 0) {
223 pp->lencode = (u_short)temp;
H A Drefclock_ulink.c196 int temp; /* int temp */ local
201 char char_quality[2]; /* temp quality flag */
209 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
215 if (temp == 0) {
223 pp->lencode = temp;
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthread.c152 pthread_attr_t *temp; local
170 temp = &attr->attr;
172 temp = NULL;
179 if ((stat = pthread_create((*new)->td, temp, dummy_worker, (*new))) == 0) {
/freebsd-11-stable/sys/dev/drm2/i915/
H A Ddvo_ivch.c244 uint16_t temp; local
254 if (!ivch_read(dvo, VR00, &temp))
262 if ((temp & VR00_BASE_ADDRESS_MASK) != dvo->slave_addr) {
265 (temp & VR00_BASE_ADDRESS_MASK), dvo->slave_addr);
/freebsd-11-stable/lib/libc/stdlib/
H A Dradixsort.c133 stack s[SIZE], *sp, *sp0, *sp1, temp; local
204 swap(*sp0, *sp1, temp); /* Play it safe -- biggest bin last. */
232 stack s[512], *sp, *sp0, *sp1, temp; local
285 swap(*sp0, *sp1, temp);
287 for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
/freebsd-11-stable/usr.bin/mail/
H A DMakefile7 quit.c send.c strings.c temp.c tty.c util.c vars.c
/freebsd-11-stable/sys/dev/iicbus/
H A Dds1775.c132 if (strcmp(name, "temp-monitor") != 0 ||
228 SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(oid), OID_AUTO, "temp",
260 int temp; local
265 temp = ds1775_sensor_read(sc);
266 if (temp < 0)
269 error = sysctl_handle_int(oidp, &temp, 0, req);
/freebsd-11-stable/stand/usb/tools/
H A Dsysinit.c69 uint32_t temp; local
73 temp = 0;
76 temp |= (val & 0xF) << ((endian & 0xF) * 4);
80 return (temp);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dauthreadkeys.c271 u_char temp; local
280 temp = (u_char)(ptr - hex);
282 keystr[j / 2] |= temp;
284 keystr[j / 2] = temp << 4;
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_util.c193 char *temp, *string, *last; local
203 temp = string;
215 bcopy(temp, string, current_size);
216 free(temp, M_LINUX);
/freebsd-11-stable/sys/dev/mlx5/mlx5_fpga/
H A Dcmd.h64 struct mlx5_fpga_temperature *temp);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc62 const rep_t temp = aRep;
64 bRep = temp;
/freebsd-11-stable/contrib/unbound/services/
H A Dlocalzone.h297 * @param temp: temporary storage region.
315 * Data pointed to by qinfo->local_alias is allocated in 'temp' or refers to
317 * if it needs to keep it beyond the lifetime of 'temp' or a dynamic update
322 struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
335 * @param temp: temp region for encoding.
343 struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp,
455 * @param temp: region to allocate rrset in 'r'
461 struct regional* temp);
590 * @param temp
[all...]
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dtp_main.c151 atf_fs_path_t temp; local
153 err = atf_fs_path_init_fmt(&temp, "%s", argv0);
157 err = atf_fs_path_branch_path(&temp, dir);
159 atf_fs_path_fini(&temp);
232 atf_fs_path_t temp; local
234 err = atf_fs_path_init_fmt(&temp, "%s", value);
237 *param = temp;
/freebsd-11-stable/contrib/dma/
H A Dnet.c252 char *temp; local
277 len = base64_encode(login, strlen(login), &temp);
284 send_remote_command(fd, "%s", temp);
285 free(temp);
293 len = base64_encode(password, strlen(password), &temp);
297 send_remote_command(fd, "%s", temp);
298 free(temp);
537 /* temp failure */
/freebsd-11-stable/sys/dev/usb/misc/
H A Dugold.c315 int32_t temp = (msb << 24) | ((lsb & 0xF0) << 16); local
316 return (((int64_t)temp * (int64_t)1000000LL) >> 24);
326 int temp; local
351 temp = ugold_ds75_temp(buf[4], buf[5]);
352 sc->sc_sensor[UGOLD_OUTER] = temp + sc->sc_calib[UGOLD_OUTER];
356 temp = ugold_ds75_temp(buf[2], buf[3]);
357 sc->sc_sensor[UGOLD_INNER] = temp + sc->sc_calib[UGOLD_INNER];
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspa_config.c171 char *temp; local
186 temp = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
193 (void) snprintf(temp, MAXPATHLEN, "%s.tmp", dp->scd_path);
195 err = vn_open(temp, UIO_SYSSPACE, oflags, 0644, &vp, CRCREAT, 0);
202 err = vn_rename(temp, dp->scd_path, UIO_SYSSPACE);
206 (void) vn_remove(temp, UIO_SYSSPACE, RMFILE);
209 kmem_free(temp, MAXPATHLEN);

Completed in 248 milliseconds

1234567891011>>