Searched refs:temp (Results 251 - 275 of 744) sorted by relevance

<<11121314151617181920>>

/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);
/freebsd-11-stable/lib/libusbhid/
H A Dparse.c533 uint32_t temp; local
548 temp = h.pos + (h.report_size * h.report_count);
550 if (hpos < temp)
551 hpos = temp;
560 temp = 0;
562 temp = hpos - lpos;
565 return ((temp + 7) / 8 + report_id);
/freebsd-11-stable/contrib/gcc/
H A Dexpmed.c798 rtx temp;
927 temp = force_reg (mode, op0);
931 temp = expand_binop (mode, and_optab, temp,
934 temp = force_reg (mode, temp);
941 temp = expand_binop (mode, ior_optab, temp, value,
943 temp = force_reg (mode, temp);
796 rtx temp; local
2188 rtx op1, temp = 0; local
3154 rtx temp = expand_mult_const (mode, op0, -INTVAL (op1), local
3203 rtx temp = op0; local
3604 rtx result, temp, shift, label; local
3704 rtx temp, label; local
[all...]
H A Ddojump.c165 rtx temp;
177 temp = integer_zerop (exp) ? if_false_label : if_true_label;
178 if (temp)
179 emit_jump (temp);
589 temp = expand_normal (exp);
592 if (GET_CODE (temp) == SUBREG)
595 if (SUBREG_PROMOTED_VAR_P (temp)
596 && REG_P (XEXP (temp, 0)))
597 temp = XEXP (temp,
164 rtx temp; local
[all...]
H A Dgcc.c214 /* Nonzero means write "temp" files in source directory
1917 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2284 /* This is the common prefix we use to make temp file names.
2287 Thus, all temp file names contain this prefix.
2288 In practice, all temp file names start with this prefix.
2327 struct temp_file *temp;
2328 for (temp = always_delete_queue; temp; temp = temp local
2313 struct temp_file *temp; local
2377 struct temp_file *temp; local
2389 struct temp_file *temp; local
3305 const char *temp; local
[all...]
H A Dlambda-mat.c346 lambda_matrix temp; local
350 temp = lambda_matrix_new (n, n);
351 lambda_matrix_copy (mat, temp, n, n);
359 row = temp[j];
365 lambda_matrix_col_negate (temp, n, i);
374 lambda_matrix_col_exchange (temp, n, j, min_col);
385 lambda_matrix_col_add (temp, n, j, i, factor);
400 row = temp[j];
427 lambda_matrix_col_add (temp, n, j, i, factor);
/freebsd-11-stable/sys/dev/amdsmb/
H A Damdsmb.c283 u_char sts, temp; local
287 amdsmb_ec_read(sc, SMB_PRTCL, &temp);
288 if (temp != 0)
293 amdsmb_ec_read(sc, SMB_PRTCL, &temp);
294 } while (temp != 0 && count--);
471 u_char temp[2]; local
480 amdsmb_ec_read(sc, SMB_DATA + 0, &temp[0]);
481 amdsmb_ec_read(sc, SMB_DATA + 1, &temp[1]);
482 *word = temp[0] | (temp[
[all...]
/freebsd-11-stable/sys/dev/usb/
H A Dusb_handle_request.c482 } temp; local
659 temp.buf[0] = udev->curr_config_no;
660 src_mcopy = temp.buf;
677 USETW(temp.wStatus, wValue);
678 src_mcopy = temp.wStatus;
679 max_len = sizeof(temp.wStatus);
739 temp.wStatus[0] =
741 temp.wStatus[1] = 0;
742 src_mcopy = temp.wStatus;
743 max_len = sizeof(temp
[all...]
/freebsd-11-stable/sbin/savecore/
H A Dsavecore.c486 static char *buf = NULL, *temp = NULL; local
548 if (temp == NULL) {
549 temp = malloc(sectorsize);
550 if (temp == NULL) {
556 read(fd, temp, sectorsize) != (ssize_t)sectorsize) {
562 memcpy(&kdhl, temp, sizeof(kdhl));
632 read(fd, temp, sectorsize) != (ssize_t)sectorsize) {
639 memcpy(&kdhf, temp, sizeof(kdhf));
789 memcpy(temp, &kdhl, sizeof(kdhl));
791 write(fd, temp, sectorsiz
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_mod.c167 BN_ULONG carry, temp, mask, *rp, *tp = storage; local
182 temp = ((ap[ai] & mask) + carry) & BN_MASK2;
183 carry = (temp < carry);
186 tp[i] = ((bp[bi] & mask) + temp) & BN_MASK2;
187 carry += (tp[i] < temp);
/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/lib/libusb/
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/sys/netinet/
H A Dtcp_sack.c320 tcp_seq temp = start; local
322 head_blk.start = temp;
325 tcp_seq temp = end; local
327 head_blk.end = temp;
545 struct sackhole *cur, *temp; local
635 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL);
636 if (temp != NULL) {
692 temp = cur;
694 tcp_sackhole_remove(tp, temp);
717 temp
[all...]
/freebsd-11-stable/contrib/gcc/config/s390/
H A Ds390.c1209 /* If we cannot handle the operation directly, use a temp register. */
2876 rtx temp = reg? reg : gen_reg_rtx (Pmode);
2884 emit_move_insn (temp, addr);
2886 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
2919 rtx temp = gen_reg_rtx (Pmode);
2923 emit_move_insn (temp, new);
2925 new = gen_const_mem (Pmode, temp);
2934 rtx temp = gen_reg_rtx (Pmode);
2942 emit_move_insn (temp, addr);
2944 new = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp);
2875 rtx temp = reg? reg : gen_reg_rtx (Pmode); local
2918 rtx temp = gen_reg_rtx (Pmode); local
2933 rtx temp = gen_reg_rtx (Pmode); local
2981 rtx temp = reg? reg : gen_reg_rtx (Pmode); local
3032 rtx temp = reg? reg : gen_reg_rtx (Pmode); local
3061 rtx temp = reg? reg : gen_reg_rtx (Pmode); local
3164 rtx new, tls_call, temp, base, r2, insn; local
3358 rtx temp = no_new_pseudos ? operands[0] : gen_reg_rtx (Pmode); local
3428 rtx temp = gen_reg_rtx (Pmode); local
3441 rtx temp = gen_reg_rtx (Pmode); local
3451 rtx temp = gen_reg_rtx (Pmode); local
3530 rtx dst_addr, src_addr, count, blocks, temp; local
3633 rtx dst_addr, src_addr, count, blocks, temp, dstp1 = NULL_RTX; local
3738 rtx addr0, addr1, count, blocks, temp; local
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_crt.c94 u32 temp; local
96 temp = I915_READ(crt->adpa_reg);
97 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
98 temp &= ~ADPA_DAC_ENABLE;
102 temp |= ADPA_DAC_ENABLE;
105 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
108 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
111 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
115 I915_WRITE(crt->adpa_reg, temp);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c718 double temp; local
759 temp = ufvalue;
760 my_modf(temp, &intpart);
771 temp = intpart*0.1;
772 my_modf(temp, &intpart);
773 idx = (int) ((temp -intpart +0.05)* 10.0);
774 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
775 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
786 temp = fracpart*0.1;
787 my_modf(temp,
[all...]
/freebsd-11-stable/sys/mips/cavium/
H A Docteon_ebt3000_cf.c354 uint16_t temp; local
355 temp = cf_inw_16(TF_DATA);
356 *ptr_16++ = SWAP_SHORT(temp);
407 uint16_t temp = *ptr_16++; local
408 cf_outw_16(TF_DATA, SWAP_SHORT(temp));
449 uint16_t temp; local
450 temp = cf_inw_16(TF_DATA);
453 cf_priv->drive_param.u.buf[count] = (temp & 0xff);
454 cf_priv->drive_param.u.buf[count + 1] = (temp & 0xff00) >> 8;
/freebsd-11-stable/sys/dev/iicbus/
H A Dds3231.c145 ds3231_temp_read(struct ds3231_softc *sc, int *temp) argument
161 *temp = ((int16_t)buf >> 8) * 10;
168 *temp += t;
170 *temp = -(*temp);
171 *temp += TZ_ZEROC;
179 int error, temp; local
183 if (ds3231_temp_read(sc, &temp) != 0)
185 error = sysctl_handle_int(oidp, &temp, 0, req);
/freebsd-11-stable/sys/dev/sfxge/common/
H A Dsiena_nvram.c515 uint16_t temp[4]; local
544 temp[0] = EFX_WORD_FIELD(verp->version_w, EFX_WORD_0);
545 temp[1] = EFX_WORD_FIELD(verp->version_x, EFX_WORD_0);
546 temp[2] = EFX_WORD_FIELD(verp->version_y, EFX_WORD_0);
547 temp[3] = EFX_WORD_FIELD(verp->version_z, EFX_WORD_0);
548 if (memcmp(version, temp, sizeof (temp)) < 0)
549 memcpy(version, temp, sizeof (temp));
/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/contrib/gdb/gdb/
H A Dvalprint.c273 unsigned long temp[3];
277 temp[i] = val_ulong % (1000 * 1000 * 1000);
281 while (val_ulong != 0 && i < (sizeof (temp) / sizeof (temp[0])));
286 sign, temp[0]);
290 sign, temp[1], temp[0]);
294 sign, temp[2], temp[1], temp[
272 unsigned long temp[3]; local
342 unsigned long temp = val_long; local
351 LONGEST temp = (val_long >> (sizeof (long) * HOST_CHAR_BIT - 1)); local
[all...]
/freebsd-11-stable/sys/dev/acpi_support/
H A Dacpi_ibm.c956 int temp[8]; local
972 &temp[i])) || ABS(temp[i]) == 128 || temp[i] == 0)
973 temp[i] = -1;
976 temp[i] = (temp[i] - 2731 + 5) / 10;
979 error = sysctl_handle_opaque(oidp, &temp, 8*sizeof(int), req);
994 char temp[128]; local
1016 strlcpy(temp, sbuf_dat
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dx86-mont.pl136 $temp="mm6";
216 &movd ($temp,&DWP($frame,"esp")); # tp[0]
220 &paddq ($mul1,$temp); # +=tp[0]
230 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
236 &paddq ($car0,$temp); # +=tp[1]
247 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1]
255 &paddq ($car0,$temp); # +=tp[j+1]
274 &movd ($temp,&DWP($frame+4,"esp",$num,4)); # += tp[num]
276 &paddq ($car1,$temp);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/
H A Demmintrin.h377 __v2df temp = (__v2df) vec_cmpeq ((__v2df) __A, (__v2df)__B); local
378 return ((__m128d)vec_nor (temp, temp));
851 __v4si result, temp; local
859 : "=wa" (temp)
864 temp = vec_mergeo (temp, temp);
865 result = (__v4si) vec_vpkudum ((__vector long long) temp,
871 result = (__v4si) vec_perm ((__v16qu) temp, (__v16q
889 __v4si temp; local
916 __v4si temp; local
960 __v4si temp; local
1132 __v4sf temp = vec_splat ((__v4sf)__B, 0); local
[all...]
/freebsd-11-stable/contrib/unbound/services/
H A Dlocalzone.c1242 struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec,
1262 repinfo, temp, env->now_tv) || !reply_info_answer_encode(qinfo, &rep,
1264 buf, 0, 0, temp, udpsize, edns, (int)(edns->bits&EDNS_DO), 0)) {
1276 struct regional* temp, int rcode, int r)
1284 rcode, edns, repinfo, temp, env->now_tv))
1294 struct regional* temp)
1329 temp, sizeof(struct packed_rrset_data)
1349 d->rr_len = (size_t*)regional_alloc_zero(temp,
1351 d->rr_data = (uint8_t**)regional_alloc_zero(temp,
1353 d->rr_ttl = (time_t*)regional_alloc_zero(temp,
1240 local_encode(struct query_info* qinfo, struct module_env* env, struct edns_data* edns, struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec, int rcode) argument
1274 local_error_encode(struct query_info* qinfo, struct module_env* env, struct edns_data* edns, struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp, int rcode, int r) argument
1292 local_data_find_tag_datas(const struct query_info* qinfo, struct config_strlist* list, struct ub_packed_rrset_key* r, struct regional* temp) argument
1380 find_tag_datas(struct query_info* qinfo, struct config_strlist* list, struct ub_packed_rrset_key* r, struct regional* temp) argument
1403 local_data_answer(struct local_zone* z, struct module_env* env, struct query_info* qinfo, struct edns_data* edns, struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp, int labs, struct local_data** ldp, enum localzone_type lz_type, int tag, struct config_strlist** tag_datas, size_t tag_datas_size, char** tagname, int num_tags) argument
1562 local_zones_zone_answer(struct local_zone* z, struct module_env* env, struct query_info* qinfo, struct edns_data* edns, struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp, struct local_data* ld, enum localzone_type lz_type) argument
1736 local_zones_answer(struct local_zones* zones, struct module_env* env, struct query_info* qinfo, struct edns_data* edns, sldns_buffer* buf, struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist, size_t taglen, uint8_t* tagactions, size_t tagactionssize, struct config_strlist** tag_datas, size_t tag_datas_size, char** tagname, int num_tags, struct view* view) argument
[all...]

Completed in 403 milliseconds

<<11121314151617181920>>