Searched refs:temp (Results 426 - 450 of 744) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/usr.bin/truss/
H A Dsetup.c467 char *temp; local
475 asprintf(&temp, "0x%lx",
478 temp = print_arg(&sc->args[i],
481 t->cs.s_args[i] = temp;
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_eke_common.c309 u8 temp[EAP_EKE_MAX_HASH_LEN]; local
313 /* temp = prf(0+, password) */
316 password, password_len, NULL, 0, temp) < 0)
318 wpa_hexdump_key(MSG_DEBUG, "EAP-EKE: temp = prf(0+, password)",
319 temp, sess->prf_len);
321 /* key = prf+(temp, ID_S | ID_P) */
329 if (eap_eke_prfplus(sess->prf, temp, sess->prf_len,
335 wpa_hexdump_key(MSG_DEBUG, "EAP-EKE: key = prf+(temp, ID_S | ID_P)",
/freebsd-11-stable/contrib/subversion/
H A Dget-deps.sh57 TEMPDIR=$BASEDIR/temp
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_plcr.c169 uint32_t temp, tsuInTenthNanos, bitFor1Micro; local
185 temp = (uint32_t)((integer<<16) & 0x00000000FFFFFFFF);
186 /* temp is effected by the rate. For low rates it may be as low as 0, and then we'll
191 if(temp != 0)
196 while ((temp & 0x80000000) == 0)
198 temp = temp << 1;
209 temp = (uint32_t)fraction; /* fraction will alyas be smaller than 2^16 */
210 if(!temp)
221 while ((temp
[all...]
/freebsd-11-stable/sys/vm/
H A Dvm_object.c531 vm_object_t temp; local
625 temp = robject->backing_object;
626 if (object == temp) {
636 temp = robject->backing_object;
637 if (object == temp) {
661 temp = object->backing_object;
662 if (temp != NULL) {
665 VM_OBJECT_WLOCK(temp);
667 temp->shadow_count--;
668 VM_OBJECT_WUNLOCK(temp);
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dsimplify-rtx.c400 rtx temp;
429 && (temp = simplify_unary_operation (NOT, mode,
431 return simplify_gen_binary (XOR, mode, XEXP (op, 0), temp);
437 && (temp = simplify_unary_operation (NOT, mode,
439 return simplify_gen_binary (XOR, mode, XEXP (op, 0), temp);
450 temp = simplify_gen_unary (NOT, mode, const1_rtx, mode);
451 return simplify_gen_binary (ROTATE, mode, temp, XEXP (op, 1));
544 temp = simplify_unary_operation (NEG, mode, XEXP (op, 1), mode);
545 if (temp)
546 return simplify_gen_binary (MINUS, mode, temp, XEX
394 rtx temp; local
4130 rtx temp; local
[all...]
H A Dprint-tree.c676 char temp[10];
678 sprintf (temp, "arg %d", i);
679 print_node (file, temp, TREE_OPERAND (node, i), indent + 4);
785 char temp[10];
786 sprintf (temp, "elt %d", i);
788 print_node_brief (file, temp, TREE_VEC_ELT (node, i), 0);
675 char temp[10]; local
784 char temp[10]; local
H A Dgimplify.c109 tree temp; /* Value */ member in struct:gimple_temp_hash_elt
496 I.E. given <temp> = &A, return A. */
555 elt_p->temp = ret = create_tmp_from_val (val);
561 ret = elt_p->temp;
957 voidify_wrapper_expr (tree wrapper, tree temp)
1010 temp = NULL_TREE;
1011 else if (temp)
1015 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1016 || TREE_CODE (temp) == MODIFY_EXPR);
1017 TREE_OPERAND (temp,
956 voidify_wrapper_expr(tree wrapper, tree temp) argument
1059 tree temp = voidify_wrapper_expr (bind_expr, NULL); local
3738 tree temp = voidify_wrapper_expr (*expr_p, NULL); local
4113 tree temp = voidify_wrapper_expr (*expr_p, NULL); local
4245 tree temp = TARGET_EXPR_SLOT (targ); local
5669 tree temp = NULL_TREE; local
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dbind.c443 register int i, c, l, temp; local
475 temp = (seq[i] == '?') ? RUBOUT : CTRL (_rl_to_upper (seq[i]));
476 array[l++] = META (temp);
535 for (temp = 2, c -= '0'; ISOCTAL (seq[i]) && temp--; i++)
542 for (temp = 2, c = 0; ISXDIGIT ((unsigned char)seq[i]) && temp--; i++)
544 if (temp == 2)
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dreg.cpp190 char temp = *q; local
192 *p = temp;
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c771 char temp[16]; local
799 strlcpy(temp, _PATH_TMP_XXX, sizeof(temp));
800 fd = mkstemp(temp);
802 warn("unable to create temporary file %s", temp);
812 recvrequest ("NLST", temp, *argv, filemode, 0, 0);
817 ftemp = fopen(temp, "r");
818 unlink(temp);
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_mesh.c619 p_lash->switches[sw2]->node->temp = LARGE;
621 s1->node->temp = 0;
628 if (s2->node->temp == LARGE)
637 if ((s2->node->temp + 1) < s3->node->temp) {
638 s3->node->temp = s2->node->temp + 1;
648 m[i][j] = s2->node->temp;
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_snmp.c2866 struct wlan_iface *temp, *prev; local
2874 SLIST_FOREACH(temp, &wlan_ifaces, w_if) {
2875 if ((cmp = strcmp(wif->wname, temp->wname)) <= 0)
2877 prev = temp;
2880 if (temp == NULL)
2883 SLIST_INSERT_AFTER(temp, wif, w_if);
3278 struct wlan_peer *temp, *prev; local
3280 SLIST_FOREACH(temp, &wif->peerlist, wp)
3281 if (memcmp(temp->pmac, wip->pmac, IEEE80211_ADDR_LEN) == 0)
3290 SLIST_FOREACH(temp,
3732 struct wlan_scan_result *prev, *temp; local
3927 struct wlan_mac_mac *temp, *prev; local
4265 struct wlan_mesh_route *temp, *prev; local
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp312 off_type temp = epptr() - newpos; local
314 __pbump((epptr() - pbase()) - temp);
/freebsd-11-stable/usr.bin/xinstall/
H A Dxinstall.c294 /* need to make a temp copy so we can compare stripped version */
869 * Compare the stripped temp file with the target.
1126 create_tempfile(const char *path, char *temp, size_t tsize) argument
1130 (void)strncpy(temp, path, tsize);
1131 temp[tsize - 1] = '\0';
1132 if ((p = strrchr(temp, '/')) != NULL)
1135 p = temp;
1136 (void)strncpy(p, "INS@XXXX", &temp[tsize - 1] - p);
1137 temp[tsize - 1] = '\0';
1138 return (mkstemp(temp));
[all...]
/freebsd-11-stable/sys/dev/usb/net/
H A Dif_rue.c292 uint8_t temp[2]; local
294 USETW(temp, val);
295 return (rue_write_mem(sc, reg, &temp, 2));
301 uint8_t temp[4]; local
303 USETDW(temp, val);
304 return (rue_write_mem(sc, reg, &temp, 4));
/freebsd-11-stable/sys/netinet/
H A Dtcp_lro.c406 struct lro_mbuf_sort temp; local
416 temp = parray[x];
417 for (y = x; y > 0 && temp.seq < parray[y - 1].seq; y--)
419 parray[y] = temp;
449 temp = parray[x];
451 parray[y] = temp;
/freebsd-11-stable/contrib/lua/src/
H A Dldebug.c65 StkId temp = ci->func; /* exchange its 'func' and 'extra' values */ local
67 ci->extra = savestack(L, temp);
599 lua_Number temp; local
600 if (!tonumber(p1, &temp)) /* first operand is wrong? */
610 lua_Integer temp; local
611 if (!tointeger(p1, &temp))
/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/sys/dev/drm2/i915/
H A Dintel_dp.c1688 uint32_t temp; local
1691 temp = I915_READ(DP_TP_CTL(port));
1694 temp |= DP_TP_CTL_SCRAMBLE_DISABLE;
1696 temp &= ~DP_TP_CTL_SCRAMBLE_DISABLE;
1698 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1703 temp |= DP_TP_CTL_LINK_TRAIN_IDLE;
1704 I915_WRITE(DP_TP_CTL(port), temp); local
1710 temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
1713 temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
1717 temp |
1726 I915_WRITE(DP_TP_CTL(port), temp); local
2879 u32 temp = I915_READ(PEG_BAND_GAP_DATA); local
[all...]
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hub.c2509 usb_ticks_t temp; local
2538 temp = ticks - udev->pwr_save.last_xfer_time;
2547 } else if ((temp >= limit) &&
2580 temp = ticks - udev->pwr_save.last_xfer_time;
2586 if (temp < mintime)
2587 mintime = temp;
2893 usb_timeout_t temp; local
2899 temp = usbd_get_dma_delay(udev);
2900 if (temp != 0)
2901 usb_pause_mtx(NULL, USB_MS_TO_TICKS(temp));
2961 int8_t temp; local
[all...]
/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/contrib/gdb/gdb/
H A Dutils.c2709 unsigned long temp[3];
2713 temp[i] = addr % (1000 * 1000 * 1000);
2717 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2721 sprintf (paddr_str, "%s%lu", sign, temp[0]);
2724 sprintf (paddr_str, "%s%lu%09lu", sign, temp[1], temp[0]);
2727 sprintf (paddr_str, "%s%lu%09lu%09lu", sign, temp[2], temp[1], temp[
2696 unsigned long temp[3]; local
[all...]
/freebsd-11-stable/sys/arm/cavium/cns11xx/
H A Dif_ece.c1062 struct mac_list * temp; local
1079 temp = (struct mac_list*)malloc(sizeof(struct mac_list),
1082 memcpy(temp->mac_addr, mac, ETHER_ADDR_LEN);
1083 temp->next = 0;
1085 current->next = temp;
1086 current = temp;
1088 mac_list_header = temp;
1089 current = temp;
1099 temp = current;
1101 free(temp, M_DEVBU
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp783 ValueObjectSP temp(valobj_sp->Dereference(error));
792 valobj_sp = temp;
801 ValueObjectSP temp(valobj_sp->GetChildAtIndex(0, true));
810 valobj_sp = temp;
972 long temp = child_index; local
974 final_index = temp;
983 ValueObjectSP temp(valobj_sp->Dereference(error));
992 valobj_sp = temp;
1000 ValueObjectSP temp(valobj_sp->GetChildAtIndex(0, true));
1009 valobj_sp = temp;
[all...]

Completed in 263 milliseconds

<<11121314151617181920>>