Searched refs:temp (Results 151 - 175 of 744) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/xdr/
H A Dxdr_stdio.c110 u_int32_t temp; local
112 if (fread(&temp, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
114 *lp = (long)ntohl(temp);
/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_heap.c234 int temp, i, max = h->elements-1;
245 DN_KEY_LT(new_key, p[(temp = HEAP_FATHER(i))].key);
246 i = temp ) { /* bubble up */
247 HEAP_SWAP(p[i], p[temp], buf);
252 while ( (temp = HEAP_LEFT(i)) <= max ) {
254 if (temp != max &&
255 DN_KEY_LT(p[temp+1].key, p[temp].key))
256 temp++; /* select child with min key */
257 if (DN_KEY_LT(>p[temp]
[all...]
/freebsd-11-stable/sys/mips/rmi/dev/iic/
H A Dmax6657.c83 int temp; local
86 temp = sc->sc_curtemp ;
87 return sysctl_handle_int(oidp, &temp, 0, req);
105 "temp", CTLTYPE_INT | CTLFLAG_RD, sc, 0,
/freebsd-11-stable/sys/arm/ti/am335x/
H A Dam335x_scm.c54 int i, temp; local
73 temp = sc->sc_last_temp + TZ_ZEROC;
75 return (sysctl_handle_int(oidp, &temp, 0, req));
/freebsd-11-stable/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_cmd.c196 struct mlx5_fpga_temperature *temp)
202 MLX5_SET(mtmp_reg, in, sensor_index, temp->index);
204 ((temp->index < MLX5_FPGA_INTERNAL_SENSORS_LOW) ||
205 (temp->index > MLX5_FPGA_INTERNAL_SENSORS_HIGH)) ? 1 : 0);
212 temp->index = MLX5_GET(mtmp_reg, out, sensor_index);
213 temp->temperature = MLX5_GET(mtmp_reg, out, temperature);
214 temp->mte = MLX5_GET(mtmp_reg, out, mte);
215 temp->max_temperature = MLX5_GET(mtmp_reg, out, max_temperature);
216 temp->tee = MLX5_GET(mtmp_reg, out, tee);
217 temp
195 mlx5_fpga_query_mtmp(struct mlx5_core_dev *dev, struct mlx5_fpga_temperature *temp) argument
[all...]
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx6_anatop.c330 uint32_t temp; local
335 temp = sc->cpu_minmhz;
336 err = sysctl_handle_int(oidp, &temp, 0, req);
340 op = cpufreq_nearest_oppt(sc, temp);
362 uint32_t temp; local
367 temp = sc->cpu_maxmhz;
368 err = sysctl_handle_int(oidp, &temp, 0, req);
372 op = cpufreq_nearest_oppt(sc, temp);
470 temp_to_count(struct imx6_anatop_softc *sc, uint32_t temp) argument
474 (sc->temp_high_val - temp) / (s
509 uint32_t temp; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dprefix.c95 char *temp = 0; local
102 prefix = getenv (temp = concat (key, "_ROOT", NULL));
107 if (temp)
108 free (temp);
H A DFREEBSD-libiberty6 choose-temp.c \
/freebsd-11-stable/sys/dev/iicbus/
H A Dad7417.c54 /* CPU A/B sensors, temp and adc: AD7417. */
438 unit = "temp";
466 ad7417_get_temp(device_t dev, uint32_t addr, int *temp) argument
482 *temp = (((int16_t)(read & 0xffc0)) >> 6) * 25 / 10;
520 int temp; local
542 temp = (rawval*diode_slope + diode_offset) >> 2;
543 temp = (10*(temp >> 16)) + ((10*(temp & 0xffff)) >> 16);
545 return (temp
553 int temp; local
589 int temp; local
[all...]
/freebsd-11-stable/sys/dev/syscons/rain/
H A Drain_saver.c81 u_char temp; local
120 temp = (vid[p] < MAX) ? 1 + vid[p] : 1;
122 vid[p + bpsl] = temp;
125 vid[p + bpsl - banksize] = temp;
/freebsd-11-stable/contrib/ofed/opensm/include/opensm/
H A Dosm_ucast_lash.h61 int temp; member in struct:_cdg_vertex
/freebsd-11-stable/stand/kshim/
H A Dbsd_busspace.c83 uint8_t temp = *datap++; local
85 bus_space_write_1(t, h, offset, temp);
94 uint16_t temp = *datap++; local
96 bus_space_write_2(t, h, offset, temp);
/freebsd-11-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c173 char temp[18]; local
176 (void)snprintf(temp, sizeof(temp), "%04i%02i%02i%02i%02i%02i%02i",
184 (void)memcpy(buf, temp, 16);
/freebsd-11-stable/contrib/unbound/libunbound/
H A Dlibworker.h146 * @param temp: temporary buffer for parse.
152 struct regional* temp, enum sec_status msg_security);
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-io.c321 char *temp; local
323 temp = rl_filename_completion_desired ? strrchr (pathname, '/') : (char *)NULL;
325 if (rl_filename_completion_desired && temp == 0 && isalpha (pathname[0]) && pathname[1] == ':')
326 temp = pathname + 1;
328 return (temp ? ++temp : pathname);
405 char *temp; local
461 temp = printable_part (matches[l]);
462 printed_len = print_filename (temp, matches[l]);
478 temp
[all...]
/freebsd-11-stable/contrib/groff/
H A DMakefile.cpg20 depend.temp: $(GENSRCS) $(YTABC)
/freebsd-11-stable/sys/dev/agp/
H A Dagp_ati.c175 u_int32_t temp; local
228 temp = pci_read_config(dev, apsize_reg, 4);
229 pci_write_config(dev, apsize_reg, temp | 1, 4);
235 temp = pci_read_config(dev, 4, 4); /* XXX: Magic reg# */
236 pci_write_config(dev, 4, temp | (1 << 14), 4);
249 u_int32_t apsize_reg, temp; local
264 temp = pci_read_config(dev, apsize_reg, 4);
265 pci_write_config(dev, apsize_reg, temp & ~1, 4);
/freebsd-11-stable/contrib/libreadline/
H A Dutil.c179 char *homedir, *temp; local
212 temp = (char *)xmalloc (len + 1);
213 strncpy (temp, rl_line_buffer + start, len);
214 temp[len] = '\0';
215 homedir = tilde_expand (temp);
216 free (temp);
/freebsd-11-stable/contrib/groff/src/libs/libxutil/
H A DXFontName.c62 XFontName temp; local
67 (name, temp.field, sizeof (temp.field),\
73 (name, &temp.field, \
92 temp.CharSetEncoding[0] = '\0';
97 *fontName = temp;
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Dlabel.y614 char temp = *q;
616 *p = temp;
685 string temp;
687 expr->evaluate(tentative, ref, temp, temp_pos);
688 (*func)(temp.contents(), temp.contents() + temp.length(), result);
696 string temp;
698 expr->evaluate(tentative, ref, temp, temp_pos);
699 const char *end, *start = (*func)(temp
[all...]
/freebsd-11-stable/libexec/bootpd/
H A Dhash.c234 hash_member *temp;
240 temp = (hash_member *) malloc(sizeof(hash_member));
241 if (!temp)
244 temp->data = element;
245 temp->next = (hashtable->table)[hashcode];
246 (hashtable->table)[hashcode] = temp;
229 hash_member *temp; local
/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_core.c634 u32 temp; local
656 temp = rk[3];
658 (Te2[(temp >> 16) & 0xff] & 0xff000000) ^
659 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
660 (Te0[(temp ) & 0xff] & 0x0000ff00) ^
661 (Te1[(temp >> 24) ] & 0x000000ff) ^
676 temp = rk[ 5];
678 (Te2[(temp >> 16) & 0xff] & 0xff000000) ^
679 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
680 (Te0[(temp )
736 u32 temp; local
1212 u32 temp; local
1314 u32 temp; local
[all...]
/freebsd-11-stable/contrib/byacc/
H A Dreader.c567 struct mstring *temp = msnew(); local
577 mputc(temp, c);
581 return msdone(temp);
588 mputc(temp, c);
602 struct mstring *temp = msnew(); local
608 mputc(temp, '*');
611 mputc(temp, c);
613 mputc(temp, ' ');
615 mputc(temp, '*');
616 mputc(temp, '/');
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dmain.c609 uint32_t temp, dbg_lvl; local
890 temp = strtoul(optarg, NULL, 0);
891 if (temp > 7) {
896 opt.lmc = (uint8_t) temp;
897 printf(" LMC = %d\n", temp);
991 temp = strtoul(optarg, NULL, 0);
992 if (temp > 15) {
997 opt.sm_priority = (uint8_t) temp;
998 printf(" Priority = %d\n", temp);
1109 temp
[all...]
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dgen_template.c466 template_members(struct templatehead *temp, const char *basetype, const char *name, const Type *t, int optional, int isstruct, int need_offset) argument
478 add_line(temp, "{ A1_OP_TYPE_EXTERN %s, %s, &asn1_extern_%s}",
482 add_line_pointer(temp, t->symbol->gen_name, poffset,
503 add_line(temp, "{ A1_PARSE_T(A1T_%s), %s, NULL }", itype, poffset);
507 add_line(temp, "{ A1_PARSE_T(A1T_GENERAL_STRING), %s, NULL }", poffset);
510 add_line(temp, "{ A1_PARSE_T(A1T_TELETEX_STRING), %s, NULL }", poffset);
513 add_line(temp, "{ A1_PARSE_T(A1T_PRINTABLE_STRING), %s, NULL }", poffset);
516 add_line(temp, "{ A1_PARSE_T(A1T_OCTET_STRING), %s, NULL }", poffset);
519 add_line(temp, "{ A1_PARSE_T(A1T_IA5_STRING), %s, NULL }", poffset);
522 add_line(temp, "{ A1_PARSE_
[all...]

Completed in 435 milliseconds

1234567891011>>