Searched refs:temp (Results 176 - 200 of 744) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_chu.c472 int temp; local
558 temp = 0;
561 temp = P_TRACE;
566 temp);
569 temp);
662 l_fp ltemp; /* l_fp temp */
994 l_fp tstmp; /* timestamp temp */
1181 int temp; local
1199 temp = up->cbuf[i + 4] & 0xf;
1201 temp |
1439 int temp; local
1613 int temp; local
[all...]
H A Drefclock_arbiter.c241 int temp; local
243 char tbuf[BMAX]; /* temp buffer */
251 temp = refclock_gtlin(rbufp, tbuf, sizeof(tbuf), &trtmp);
267 if (temp == 0)
272 if (temp < 3)
339 if (up->tcswitch <= 1 || temp < LENARB)
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-serverworks.c263 u_int16_t temp; local
266 temp = ATA_IDX_INW(ch, ATA_SECTOR);
267 request->u.ata.lba = (u_int64_t)(temp & 0x00ff) |
268 ((u_int64_t)(temp & 0xff00) << 24);
269 temp = ATA_IDX_INW(ch, ATA_CYL_LSB);
270 request->u.ata.lba |= ((u_int64_t)(temp & 0x00ff) << 8) |
271 ((u_int64_t)(temp & 0xff00) << 32);
272 temp = ATA_IDX_INW(ch, ATA_CYL_MSB);
273 request->u.ata.lba |= ((u_int64_t)(temp & 0x00ff) << 16) |
274 ((u_int64_t)(temp
[all...]
/freebsd-11-stable/contrib/ntp/util/
H A Dntp-keygen.c318 EVP_PKEY *pkey = NULL; /* temp key */
328 u_int temp; local
487 temp = RAND_load_file(pathbuf, -1);
488 if (temp == 0) {
495 "Random seed file %s %u bytes\n", pathbuf, temp);
859 u_char temp; local
865 &temp, sizeof(temp));
870 if (temp == '#')
873 if (temp >
1151 u_int temp; local
1330 u_int temp; local
1559 u_int temp; local
2251 int temp; local
[all...]
/freebsd-11-stable/sys/arm/arm/
H A Dstdatomic.c209 uint32_t old, temp, ras_start; \
229 : "=&r" (old), "=m" (*mem), "=&r" (temp) \
239 uint32_t expected, old, temp, ras_start; \
261 : "=&r" (old), "=m" (*mem), "=&r" (temp) \
592 uint32_t old, temp; local
601 : "=&r" (old), "=m" (*mem), "=&r" (temp)
610 uint32_t old, temp; local
622 : "=&r" (old), "=m" (*mem), "=&r" (temp)
745 uint32_t old, temp, ras_start; \
765 : "=&r" (old), "=m" (*mem), "=&r" (temp) \
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_gnutar.c472 struct archive_entry *temp = archive_entry_new2(&a->archive); local
476 archive_entry_set_uname(temp, "root");
477 archive_entry_set_gname(temp, "wheel");
479 archive_entry_set_pathname(temp, "././@LongLink");
480 archive_entry_set_size(temp, length);
481 ret = archive_format_gnutar_header(a, buff, temp, 'K');
482 archive_entry_free(temp);
502 struct archive_entry *temp = archive_entry_new2(&a->archive); local
506 archive_entry_set_uname(temp, "root");
507 archive_entry_set_gname(temp, "whee
[all...]
/freebsd-11-stable/sys/dev/iicbus/
H A Dmax6690.c158 if (strcmp(name, "temp-monitor") != 0 ||
303 SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(oid), OID_AUTO, "temp",
327 int err, temp; local
357 temp = (integer * 10) + (fraction >> 5) * 10 / 8;
359 return (temp + ZERO_C_TO_K);
369 int temp; local
375 temp = max6690_sensor_read(sens);
376 if (temp < 0)
379 error = sysctl_handle_int(oidp, &temp, 0, req);
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_lm75/
H A Dsnmp_lm75.c67 int32_t temp; member in struct:lm75_snmp_sensor
218 int idx, temp; local
226 len = sizeof(temp);
227 if (update_sensor_sysctl(&temp, &len, idx, "temperature") != 0)
239 sensor->temp = (temp - TZ_ZEROC) / 10;
427 value->v.integer = sensor->temp;
/freebsd-11-stable/sys/dev/sym/
H A Dsym_fw2.h259 SCR_LOAD_REL (temp, 4),
262 SCR_STORE_ABS (temp, 4),
267 SCR_LOAD_REL (temp, 4),
316 SCR_LOAD_REL (temp, 4),
630 SCR_STORE_REL (temp, 4),
713 SCR_LOAD_REL (temp, 4),
717 SCR_STORE_ABS (temp, 4),
741 SCR_STORE_REL (temp, 4),
750 SCR_LOAD_REL (temp, 4),
795 SCR_STORE_REL (temp,
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dread_termcap.c818 char temp[PBUFSIZ]; local
819 temp[0] = 0;
822 && strlen(home) < sizeof(temp) - 10) { /* setup path */
823 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
827 _nc_STRCAT(temp, ".termcap", sizeof(temp));
828 _nc_safe_strcat(&desc, temp);
911 char temp[PATH_MAX]; local
913 _nc_str_init(&desc, temp, sizeo
[all...]
H A Dcaptoinfo.c141 static char temp[2]; local
142 temp[0] = (char) c;
143 return save_string(s, temp);
528 char temp[80]; local
536 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
539 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
542 bufptr = save_string(bufptr, temp);
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-dse.c252 tree use_stmt, temp; local
279 single_imm_use (defvar, &use_p, &temp);
287 use_stmt = temp;
288 else if (temp != use_stmt)
348 single_imm_use (DEF_FROM_PTR (var1), &use_p, &temp); local
H A Drtl-factoring.c750 pattern_seq temp = *pseq; local
751 (*pseq) = temp->next_pattern_seq;
752 temp->next_pattern_seq = pattern_seqs;
753 pattern_seqs = temp;
763 pattern_seq temp = *pseq; local
764 *pseq = temp->next_pattern_seq;
765 free_pattern_seq (temp);
798 pattern_seq temp = *pseq; local
799 *pseq = temp->next_pattern_seq;
800 free_pattern_seq (temp);
819 matching_seq temp = *mseq; local
913 seq_block temp = local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dmake-relative-prefix.c237 char *temp; local
239 temp = getenv ("PATH");
240 if (temp)
243 size_t prefixlen = strlen (temp) + 1;
249 startp = endp = temp;
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dmake-relative-prefix.c237 char *temp; local
239 temp = getenv ("PATH");
240 if (temp)
243 size_t prefixlen = strlen (temp) + 1;
249 startp = endp = temp;
/freebsd-11-stable/sys/arm/nvidia/tegra124/
H A Dtegra124_coretemp.c69 int val, temp, rv; local
81 sc->tsens_id, &temp);
91 val = temp / 100;
95 val = (sc->core_max_temp - temp) / 1000;
107 if ((temp > sc->core_max_temp) && !sc->overheat_log) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp219 llvm::StringRef left, temp;
220 std::tie(left, temp) = name.split('[');
229 assert(!temp.empty());
233 if (temp[0] == '\"' || temp[0] == '\'') {
234 quote_char = temp.take_front();
235 temp = temp.drop_front();
239 std::tie(key, sub_name) = temp.split(']');
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dx509info.c156 const char *temp;
167 temp = apr_psprintf(scratch_pool, "%d.%d", *p / 40, *p % 40);
174 temp = apr_psprintf(scratch_pool, ".%d", *p);
208 temp = apr_psprintf(scratch_pool, "%s%d", dot ? "" : ".", collector);
210 svn_stringbuf_appendcstr(out, temp);
154 const char *temp; local
/freebsd-11-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.c1243 struct index *temp; local
1249 STAILQ_FOREACH(temp, &(OBJECT_IDX_LIST(object)), link) {
1250 if ((ptr = snmp_parse_subindex(snmptoolctx, str, temp, object))
1383 struct snmp_object *temp; local
1391 SLIST_FOREACH(temp, &snmptoolctx->snmp_objectlist, link)
1392 if (asn_compare_oid(&(temp->val.var), oid) == 0)
1395 if (temp == NULL) {
1400 SLIST_REMOVE(&snmptoolctx->snmp_objectlist, temp, snmp_object, link);
1401 if (temp->val.syntax == SNMP_SYNTAX_OCTETSTRING &&
1402 temp
1893 struct asn_oid temp, out; local
1967 struct index *temp; local
[all...]
/freebsd-11-stable/contrib/dialog/
H A Ddialog.c557 char temp[80]; local
563 sprintf(temp, format, group, have);
564 Usage(temp);
1148 char temp[80]; local
1149 sprintf(temp, "Expected a string-parameter for %.20s", argv[*num]);
1150 Usage(temp);
1171 char temp[80]; local
1172 sprintf(temp, "Expected a numeric-parameter for %.20s", argv[*num]);
1173 Usage(temp);
1208 char temp[8 local
1697 char temp[256]; local
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_i2c.c99 uint32_t temp; local
131 temp = RREG32(rec->mask_clk_reg);
132 temp &= ~(1 << 16);
133 WREG32(rec->mask_clk_reg, temp);
137 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
138 WREG32(rec->a_clk_reg, temp);
140 temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask;
141 WREG32(rec->a_data_reg, temp);
144 temp = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask;
145 WREG32(rec->en_clk_reg, temp);
167 uint32_t temp; local
[all...]
/freebsd-11-stable/sys/dev/usb/serial/
H A Dusb_serial.c1340 unsigned int temp; local
1344 temp = ucom_cons_tx_high - ucom_cons_tx_low;
1345 temp %= UCOM_CONS_BUFSIZE;
1349 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_tx_low))
1350 temp = (UCOM_CONS_BUFSIZE - ucom_cons_tx_low);
1352 if (temp > len)
1353 temp = len;
1357 usbd_copy_in(pc, offset, ucom_cons_tx_buf + ucom_cons_tx_low, temp);
1361 ucom_cons_tx_low += temp;
1366 *actlen = temp;
1419 unsigned int temp; local
1611 unsigned int temp; local
[all...]
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_thermal.c96 int tz_thflags; /*Current temp-related flags*/
282 acpi_tz_temp_sysctl, "IK", "passive cooling temp setpoint");
287 "too hot temp setpoint (suspend now)");
292 "critical temp setpoint (shutdown now)");
471 int temp; local
477 status = acpi_GetInteger(sc->tz_handle, acpi_tz_tmp_name, &temp);
486 acpi_tz_sanity(sc, &temp, acpi_tz_tmp_name);
487 if (temp == -1)
490 ACPI_DEBUG_PRINT((ACPI_DB_VALUES, "got %d.%dC\n", TZ_KELVTOC(temp)));
491 sc->tz_temperature = temp;
503 int temp; local
795 int temp, *temp_ptr; local
[all...]
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A Dhtml-text.cpp496 tag_definition *temp =NULL; local
515 * push tag onto temp stack
517 p->next = temp;
518 temp = p;
543 while (temp != NULL) {
544 if (temp->type == COLOR_TAG)
545 push_para(&temp->col);
547 push_para(temp->type, temp->arg1, temp
[all...]
/freebsd-11-stable/contrib/groff/src/include/
H A Dptable.h137 char *temp = new char[strlen(key)+1]; \
138 strcpy(temp, key); \
139 v[n].key = temp; \

Completed in 398 milliseconds

1234567891011>>