Searched refs:temp (Results 126 - 150 of 744) sorted by last modified time

1234567891011>>

/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/usb/controller/
H A Dxhci_pci.c202 uint32_t temp; local
206 temp = pci_read_config(self, PCI_XHCI_INTEL_USB3_PSSEN, 4) |
209 temp |= set;
210 temp &= ~clear;
216 pci_write_config(self, PCI_XHCI_INTEL_USB3_PSSEN, temp & usb3_mask, 4);
217 pci_write_config(self, PCI_XHCI_INTEL_XUSB2PR, temp & usb2_mask, 4);
219 device_printf(self, "Port routing mask set to 0x%08x\n", temp);
H A Dxhci.h455 uint8_t temp[128]; member in union:xhci_hub_desc
/freebsd-11-stable/sbin/bectl/
H A Dbectl.c142 bool temp; local
144 temp = false;
148 temp = true;
167 if ((err = be_activate(be, argv[0], temp)) != 0)
174 if (temp)
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_port.c163 struct bridge_port *temp; local
168 temp = bridge_port_find_pos(headp, bp->sysindex);
170 if (temp == NULL)
173 TAILQ_INSERT_AFTER(headp, temp, bp, b_p);
/freebsd-11-stable/lib/libusb/
H A Dlibusb10_hotplug.c113 libusb_device *temp; local
135 TAILQ_FOREACH_SAFE(adev, &ctx->hotplug_devs, hotplug_entry, temp) {
154 TAILQ_FOREACH_SAFE(adev, &hotplug_devs, hotplug_entry, temp) {
H A Dlibusb20_ugen20.c108 uint32_t temp = 0; local
113 temp *= 10;
114 temp += (*ptr - '0');
115 if (temp >= 1000000) {
128 return (temp);
520 int temp; local
522 if (ioctl(pdev->file_ctrl, IOUSB(USB_GET_CONFIG), &temp)) {
525 *pindex = temp;
533 int temp = cfg_index; local
538 if (ioctl(pdev->file_ctrl, IOUSB(USB_SET_CONFIG), &temp)) {
567 int temp = 0; local
600 int temp; local
630 int temp; local
662 int temp; local
698 int temp = iface_index; local
710 int temp = iface_index; local
748 struct usb_fs_complete temp; local
803 } temp; local
845 struct usb_fs_close temp; local
860 struct usb_fs_clear_stall_sync temp; local
877 struct usb_fs_start temp; local
916 struct usb_fs_stop temp; local
1076 ugen20_root_set_template(struct libusb20_backend *pbe, int temp) argument
[all...]
H A Dlibusb20_int.h63 typedef int (libusb20_root_set_template_t)(struct libusb20_backend *pbe, int temp);
H A Dlibusb20.h288 int libusb20_be_set_template(struct libusb20_backend *pbe, int temp);
H A Dlibusb20.c874 uint8_t temp[255]; local
884 0, 0, temp, sizeof(temp));
889 langid = temp[2] | (temp[3] << 8);
892 langid, temp, sizeof(temp));
897 if (temp[0] < 2) {
906 n = (temp[0] / 2) - 1;
918 c = temp[(
1223 libusb20_be_set_template(struct libusb20_backend *pbe, int temp) argument
1231 int temp; local
[all...]
/freebsd-11-stable/usr.sbin/etcupdate/
H A Detcupdate.sh833 temp=$(mktemp -t etcupdate)
834 diff3 -E -m ${DESTDIR}$1 ${OLDTREE}$1 ${NEWTREE}$1 > ${temp}
836 cat ${temp} > ${DESTDIR}$1
837 rm -f ${temp}
/freebsd-11-stable/lib/libc/gen/
H A Dpw_scan.c92 unsigned long temp; local
121 temp = strtoul(p, &ep, 10);
122 if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) {
127 id = temp;
156 temp = strtoul(p, &ep, 10);
157 if ((temp == ULONG_MAX && errno == ERANGE) || temp > GID_MAX) {
162 id = temp;
/freebsd-11-stable/contrib/unbound/util/
H A Dmodule.c160 struct inplace_cb* temp = env->inplace_cb_lists[type]; local
163 while(temp) {
164 if(temp->id == id) {
166 env->inplace_cb_lists[type] = temp->next;
167 free(temp);
168 temp = env->inplace_cb_lists[type];
171 prev->next = temp->next;
172 free(temp);
173 temp = prev->next;
177 prev = temp;
[all...]
/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/tcpdump/
H A Dprint-rx.c830 #define AFSUUIDOUT() {uint32_t temp; int _i; \
832 temp = EXTRACT_32BITS(bp); \
834 ND_PRINT((ndo, " %08x", temp)); \
835 temp = EXTRACT_32BITS(bp); \
837 ND_PRINT((ndo, "%04x", temp)); \
838 temp = EXTRACT_32BITS(bp); \
840 ND_PRINT((ndo, "%04x", temp)); \
842 temp = EXTRACT_32BITS(bp); \
844 ND_PRINT((ndo, "%02x", (unsigned char) temp)); \
2534 int32_t temp; local
[all...]
H A Dprint-nfs.c810 char temp[NFSX_V3FHMAX+1]; local
817 strncpy(temp, sfsname, stringlen);
818 temp[stringlen] = '\0';
820 spacep = strchr(temp, ' ');
824 ND_PRINT((ndo, " fh %s/", temp));
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-sita.c530 pcap_if_t *p1, *p2, *prev, *temp; local
542 temp = p2->next;
545 p1->next = temp;
547 temp = p2->next;
550 p1->next = temp;
H A Dpcap-rpcap.c692 struct activehosts *temp; /* temp var needed to scan the host list chain, to detect if we're in active mode */ local
696 temp = activeHosts;
697 while (temp)
699 if (temp->sockctrl == pr->rmt_sockctrl)
704 temp = temp->next;
950 struct activehosts *temp; /* temp var needed to scan the host list chain */ local
951 struct addrinfo hints, *addrinfo, *ai_next; /* temp va
1020 struct activehosts *temp; /* temp var needed to scan the host list chain, to detect if we're in active mode */ local
2638 struct activehosts *temp, *prev; /* temp var needed to scan he host list chain */ local
2769 struct activehosts *temp, *prev; /* temp var needed to scan the host list chain */ local
2877 struct activehosts *temp; /* temp var needed to scan the host list chain */ local
[all...]
/freebsd-11-stable/sys/dev/usb/input/
H A Dums.c289 int32_t temp; local
290 temp = hid_get_data(buf, len, &info->sc_loc_z);
292 temp = -temp;
293 dz -= temp;
/freebsd-11-stable/sys/dev/an/
H A Dif_an.c1594 char buf[17], temp; local
1608 temp = *ptr2++;
1609 if (isprint(temp))
1610 buf[count] = temp;
1793 /* Cache the temp keys */
/freebsd-11-stable/contrib/expat/lib/
H A Dxmlparse.c1826 char *temp = NULL; local
1829 temp = (char *)REALLOC(parser, parser->m_buffer, bytesToAllocate);
1831 if (temp == NULL) {
1837 parser->m_buffer = temp;
2416 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); local
2417 if (temp == NULL)
2423 tag->name.str = (XML_Char *)temp;
2429 = (XML_Char *)temp + (tag->name.localPart - (XML_Char *)tag->buf);
2430 tag->buf = temp;
2431 tag->bufEnd = temp
2740 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); local
3073 ATTRIBUTE *temp; local
3229 NS_ATT *temp; local
3491 XML_Char *temp = (XML_Char *)REALLOC( local
5767 DEFAULT_ATTRIBUTE *temp; local
6676 BLOCK *temp; local
6768 CONTENT_SCAFFOLD *temp; local
[all...]
/freebsd-11-stable/sys/dev/amdtemp/
H A Damdtemp.c103 * 0xFC register is only valid on the D18F3 PCI device; SMN temp
146 * provide the current temp. bit 19, when clear, means the temp is reported in
587 int32_t auxtemp[2], temp; local
594 temp = imax(auxtemp[0], auxtemp[1]);
599 temp = imax(auxtemp[0], auxtemp[1]);
602 temp = sc->sc_gettemp(dev, sensor);
605 error = sysctl_handle_int(oidp, &temp, 0, req);
616 uint32_t mask, offset, temp; local
619 temp
653 uint32_t temp; local
677 uint32_t temp; local
699 uint32_t temp, val; local
[all...]
/freebsd-11-stable/sys/dev/jedec_dimm/
H A Djedec_dimm.c341 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "temp",
926 int temp; local
938 temp = val & 0xfff;
940 temp = -temp;
942 temp *= 625;
944 temp += 2731500;
949 temp = (temp + 500) / 1000;
951 rc = sysctl_handle_int(oidp, &temp,
[all...]
/freebsd-11-stable/sys/dev/nvme/
H A Dnvme_qpair.c1046 STAILQ_HEAD(, nvme_request) temp;
1066 STAILQ_INIT(&temp);
1067 STAILQ_SWAP(&qpair->queued_req, &temp, nvme_request);
1069 while (!STAILQ_EMPTY(&temp)) {
1070 req = STAILQ_FIRST(&temp);
1071 STAILQ_REMOVE_HEAD(&temp, stailq);
/freebsd-11-stable/contrib/tcsh/
H A Ded.defns.c1946 KEYCMD temp[NT_NUM_KEYS]; local
1952 /* copy ASCII ordered map to temp table */
1954 temp[i] = list[table][i];
1958 list[table][_toebcdic[i]] = temp[i];

Completed in 200 milliseconds

1234567891011>>