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

1234567891011>>

/freebsd-10.1-release/contrib/ofed/management/opensm/opensm/
H A Dmain.c521 uint32_t temp, dbg_lvl; local
754 temp = strtol(optarg, NULL, 0);
755 if (temp > 7) {
760 opt.lmc = (uint8_t) temp;
761 printf(" LMC = %d\n", temp);
820 temp = strtol(optarg, NULL, 0);
821 if (0 > temp || 15 < temp) {
826 opt.sm_priority = (uint8_t) temp;
827 printf(" Priority = %d\n", temp);
[all...]
/freebsd-10.1-release/sys/dev/ata/chipsets/
H A Data-serverworks.c264 u_int16_t temp; local
267 temp = ATA_IDX_INW(ch, ATA_SECTOR);
268 request->u.ata.lba = (u_int64_t)(temp & 0x00ff) |
269 ((u_int64_t)(temp & 0xff00) << 24);
270 temp = ATA_IDX_INW(ch, ATA_CYL_LSB);
271 request->u.ata.lba |= ((u_int64_t)(temp & 0x00ff) << 8) |
272 ((u_int64_t)(temp & 0xff00) << 32);
273 temp = ATA_IDX_INW(ch, ATA_CYL_MSB);
274 request->u.ata.lba |= ((u_int64_t)(temp & 0x00ff) << 16) |
275 ((u_int64_t)(temp
[all...]
/freebsd-10.1-release/contrib/ntp/util/
H A Dntp-keygen.c314 EVP_PKEY *pkey = NULL; /* temp key */
324 u_int temp; local
475 temp = RAND_load_file(pathbuf, -1);
476 if (temp == 0) {
483 "Random seed file %s %u bytes\n", pathbuf, temp);
847 u_char temp; local
853 &temp, sizeof(temp));
858 if (temp == '#')
861 if (temp >
1139 u_int temp; local
1318 u_int temp; local
1547 u_int temp; local
2239 int temp; local
[all...]
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_gnutar.c471 struct archive_entry *temp = archive_entry_new2(&a->archive); local
475 archive_entry_set_uname(temp, "root");
476 archive_entry_set_gname(temp, "wheel");
478 archive_entry_set_pathname(temp, "././@LongLink");
479 archive_entry_set_size(temp, gnutar->linkname_length + 1);
480 ret = archive_format_gnutar_header(a, buff, temp, 'K');
486 archive_entry_free(temp);
500 struct archive_entry *temp = archive_entry_new2(&a->archive); local
504 archive_entry_set_uname(temp, "root");
505 archive_entry_set_gname(temp, "whee
[all...]
/freebsd-10.1-release/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
353 temp = (integer * 10) + (fraction >> 5) * 10 / 8;
355 return (temp + ZERO_C_TO_K);
365 unsigned int temp; local
371 temp = max6690_sensor_read(sens);
372 if (temp < 0)
375 error = sysctl_handle_int(oidp, &temp, 0, req);
/freebsd-10.1-release/sys/dev/usb/controller/
H A Dxhci_pci.c152 uint32_t temp; local
156 temp = pci_read_config(self, PCI_XHCI_INTEL_USB3_PSSEN, 4) |
159 temp |= set;
160 temp &= ~clear;
166 pci_write_config(self, PCI_XHCI_INTEL_USB3_PSSEN, temp & usb3_mask, 4);
167 pci_write_config(self, PCI_XHCI_INTEL_XUSB2PR, temp & usb2_mask, 4);
169 device_printf(self, "Port routing mask set to 0x%08x\n", temp);
/freebsd-10.1-release/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-10.1-release/contrib/texinfo/info/
H A Dman.c181 char *temp; local
195 temp = (char *)xmalloc (34 + strlen (temp_dirname) + strlen (filename));
196 strcpy (temp, temp_dirname);
197 if (!IS_SLASH (temp[(strlen (temp)) - 1]))
198 strcat (temp, "/");
199 strcat (temp, filename);
200 temp_end = temp + strlen (temp);
210 statable = (stat (temp,
[all...]
H A Dnodemenu.c167 char **temp; local
187 temp = (char **)xmalloc ((1 + newlen) * sizeof (char *));
190 temp[j++] = lines[i];
192 temp[j] = (char *)NULL;
194 lines = temp;
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dnamed_atomic.c621 apr_int64_t temp; local
624 NA_SYNCHRONIZE(atomic, temp = synched_write(&atomic->data->value, new_value));
627 *old_value = temp;
637 apr_int64_t temp; local
640 NA_SYNCHRONIZE(atomic, temp = synched_add(&atomic->data->value, delta));
643 *new_value = temp;
654 apr_int64_t temp; local
657 NA_SYNCHRONIZE(atomic, temp = synched_cmpxchg(&atomic->data->value,
662 *old_value = temp;
/freebsd-10.1-release/sys/dev/drm2/i915/
H A Dintel_crt.c62 u32 temp, reg; local
69 temp = I915_READ(reg);
70 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
71 temp &= ~ADPA_DAC_ENABLE;
75 temp |= ADPA_DAC_ENABLE;
78 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
81 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
84 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
88 I915_WRITE(reg, temp);
/freebsd-10.1-release/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-10.1-release/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-10.1-release/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-10.1-release/contrib/ncurses/ncurses/trace/
H A Dlib_traceatr.c118 char temp[80]; local
138 (void) sprintf(temp, "{%d}", pairnum);
143 (void) sprintf(temp,
149 (void) sprintf(temp, "{%d}", pairnum);
152 result = _nc_trace_bufcat(bufnum, temp);
/freebsd-10.1-release/contrib/ntp/ntpd/
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-10.1-release/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.c1251 struct index *temp; local
1257 STAILQ_FOREACH(temp, &(OBJECT_IDX_LIST(object)), link) {
1258 if ((ptr = snmp_parse_subindex(snmptoolctx, str, temp, object))
1392 struct snmp_object *temp; local
1400 SLIST_FOREACH(temp, &snmptoolctx->snmp_objectlist, link)
1401 if (asn_compare_oid(&(temp->val.var), oid) == 0)
1404 if (temp == NULL) {
1409 SLIST_REMOVE(&snmptoolctx->snmp_objectlist, temp, snmp_object, link);
1410 if (temp->val.syntax == SNMP_SYNTAX_OCTETSTRING &&
1411 temp
1902 struct asn_oid temp, out; local
1976 struct index *temp; local
[all...]
/freebsd-10.1-release/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-10.1-release/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-10.1-release/sys/dev/usb/serial/
H A Dusb_serial.c1278 unsigned int temp; local
1282 temp = ucom_cons_tx_high - ucom_cons_tx_low;
1283 temp %= UCOM_CONS_BUFSIZE;
1287 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_tx_low))
1288 temp = (UCOM_CONS_BUFSIZE - ucom_cons_tx_low);
1290 if (temp > len)
1291 temp = len;
1295 usbd_copy_in(pc, offset, ucom_cons_tx_buf + ucom_cons_tx_low, temp);
1299 ucom_cons_tx_low += temp;
1304 *actlen = temp;
1357 unsigned int temp; local
1549 unsigned int temp; local
[all...]
/freebsd-10.1-release/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)");
460 int temp; local
466 status = acpi_GetInteger(sc->tz_handle, acpi_tz_tmp_name, &temp);
475 acpi_tz_sanity(sc, &temp, acpi_tz_tmp_name);
476 if (temp == -1)
479 ACPI_DEBUG_PRINT((ACPI_DB_VALUES, "got %d.%dC\n", TZ_KELVTOC(temp)));
480 sc->tz_temperature = temp;
492 int temp; local
784 int temp, *temp_ptr; local
[all...]
/freebsd-10.1-release/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-10.1-release/contrib/groff/src/include/
H A Dptable.h137 char *temp = new char[strlen(key)+1]; \
138 strcpy(temp, key); \
139 v[n].key = temp; \
/freebsd-10.1-release/sys/boot/common/
H A Disapnp.c129 u_char temp; local
143 temp = inb(isapnp_readport);
145 buffer[i] = temp;

Completed in 409 milliseconds

1234567891011>>