Searched refs:temp (Results 376 - 400 of 744) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/dev/agp/
H A Dagp_i810.c2072 uint32_t temp; local
2076 temp = pci_read_config(sc->bdev, AGP_I915_IFPADDR, 4);
2077 if ((temp & 1) != 0) {
2078 temp &= ~1;
2082 (uintmax_t)temp);
2089 error = agp_i915_chipset_flush_alloc_page(dev, temp,
2090 temp + PAGE_SIZE - 1);
2098 temp = rman_get_start(sc->sc_flush_page_res);
2099 pci_write_config(sc->bdev, AGP_I915_IFPADDR, temp | 1, 4);
2108 uint32_t temp; local
2125 uint64_t temp; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-reassoc.c873 struct operand_entry temp = *oe3; local
876 oe1->op = temp.op;
877 oe1->rank= temp.rank;
1149 tree temp; local
1176 temp = binlhs;
1178 binrhs = temp;
1226 tree temp = TREE_OPERAND (rhs, 0); local
1228 TREE_OPERAND (rhs, 1) = temp;
H A Dflow.c2322 rtx temp, canon_r;
2335 for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
2336 if (anti_dependence (r, XEXP (temp, 0)))
2338 rtx mem = XEXP (temp, 0);
2618 rtx temp = pbi->mem_set_list;
2622 while (temp)
2624 next = XEXP (temp,
2316 rtx temp, canon_r; local
2611 rtx temp = pbi->mem_set_list; local
3538 rtx insns, temp; local
4081 rtx temp = pbi->mem_set_list; local
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dheaders-sh.in150 TMPTMP=$TMPDIR/${SHOW}-temp$$
/freebsd-11-stable/contrib/groff/contrib/mm/
H A DMakefile.sub13 CLEANADD=temp
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_pm.c445 int temp; local
449 temp = rv6xx_get_temp(rdev);
452 temp = rv770_get_temp(rdev);
456 temp = evergreen_get_temp(rdev);
459 temp = sumo_get_temp(rdev);
462 temp = si_get_temp(rdev);
465 temp = 0;
469 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
/freebsd-11-stable/sys/kern/
H A Dkern_malloc.c112 MALLOC_DEFINE(M_TEMP, "temp", "misc temporary data buffers");
861 struct malloc_type *mtp, *temp; local
875 for (temp = kmemstatistics; temp != NULL;
876 temp = temp->ks_next) {
877 if (temp->ks_next == mtp) {
878 temp->ks_next = mtp->ks_next;
882 KASSERT(temp,
/freebsd-11-stable/usr.bin/tail/
H A Dreverse.c249 struct bfelem *temp; local
269 entries, temp) {
/freebsd-11-stable/sys/dev/wpi/
H A Dif_wpivar.h112 int16_t temp; member in struct:wpi_power_group
211 int temp; member in struct:wpi_softc
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hid.c568 uint32_t temp; local
589 temp = h.loc.pos + (h.loc.size * h.loc.count);
591 if (hpos < temp)
592 hpos = temp;
599 temp = 0;
601 temp = hpos - lpos;
605 temp += 8;
610 return ((temp + 7) / 8);
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c330 void **temp; local
334 return (!radix_tree_iter_find(&xa->root, &iter, &temp));
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_dstlist.c657 frdest_t frd, *temp; local
674 size = sizeof(*temp) + frd.fd_name;
675 KMALLOCS(temp, frdest_t *, size);
676 if (temp == NULL) {
682 err = COPYIN(op->iplo_struct, temp, size);
685 KFREES(temp, size);
699 KFREES(temp, size);
704 KFREES(temp, size);
/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...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_irig.c420 l_fp ltemp; /* l_fp temp */
847 int temp; local
881 temp = up->bits;
883 temp >>= 1;
885 up->timecode[--up->xptr] = hexchar[temp & 0xf];
886 up->timecode[--up->xptr] = hexchar[(temp >> 5) &
H A Dntp_crypto.c2030 unsigned long temp; /* result from strtoul */ local
2044 temp = strtoul(v+len-3, NULL, 10);
2045 pjd->second = temp;
2048 temp = strtoul(v+len-5, NULL, 10);
2049 pjd->minute = temp;
2052 temp = strtoul(v+len-7, NULL, 10);
2053 pjd->hour = temp;
2056 temp = strtoul(v+len-9, NULL, 10);
2057 pjd->monthday = temp;
2060 temp
2366 int temp; local
2689 u_int temp; local
3041 int temp; local
3166 int i, temp; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_fops.c407 struct drm_file *temp; local
408 list_for_each_entry(temp, &dev->filelist, lhead) {
409 if ((temp->master == file_priv->master) &&
410 (temp != file_priv))
411 temp->authenticated = 0;
/freebsd-11-stable/sys/dev/bktr/
H A Dbktr_audio.c126 u_long temp; local
208 temp = INL(bktr, BKTR_GPIO_DATA) & ~bktr->card.gpio_mux_bits;
210 OUTL(bktr, BKTR_GPIO_DATA, temp | (cmd & 0xff));
211 printf("%s: cmd: %d audio mux %x temp %x \n", bktr_name(bktr),
212 cmd, bktr->card.audiomuxs[ idx ], temp );
214 OUTL(bktr, BKTR_GPIO_DATA, temp | bktr->card.audiomuxs[ idx ]);
/freebsd-11-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsautil.c551 bit8 temp[16]; local
604 temp[x] = ' ';
609 temp[x] = *(buffer+x);
612 buffer = temp;
654 bit32 *ltemp = (bit32 *)temp;
/freebsd-11-stable/sys/dev/usb/serial/
H A Dumct.c290 struct usb_xfer *temp = sc->sc_xfer[UMCT_INTR_DT_RD]; local
293 sc->sc_xfer[UMCT_BULK_DT_RD] = temp;
356 uint8_t temp[4]; local
366 USETDW(temp, value);
369 &req, temp, 0, 1000);
/freebsd-11-stable/usr.sbin/pmcannotate/
H A Dpmcannotate.c95 static int fqueue_getall(const char *bin, char *temp, int asmf);
423 fqueue_getall(const char *bin, char *temp, int asmf) argument
429 if (mkstemp(temp) == -1)
445 (void *)end, bin, temp);
450 (void *)end, bin, temp);
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dentry.c302 char *username = cmd; /* temp buffer */
663 char temp[MAX_TEMPSTR], *pc; local
666 /* collect alphanumerics into our fixed-size temp array
668 pc = temp;
691 ("get_num, compare(%s,%s)\n", names[i], temp))
692 if (!strcasecmp(names[i], temp)) {
704 *numptr = atoi(temp);
/freebsd-11-stable/crypto/heimdal/lib/ntlm/
H A Dntlm.c1589 uint32_t temp; local
1614 CHECK(krb5_ret_uint32(sp, &temp), 0);
1615 CHECK(temp, 0x00000101);
1616 CHECK(krb5_ret_uint32(sp, &temp), 0);
1617 CHECK(temp, 0);
1619 CHECK(krb5_ret_uint32(sp, &temp), 0);
1620 t = temp;
1621 CHECK(krb5_ret_uint32(sp, &temp), 0);
1622 t |= ((uint64_t)temp)<< 32;
1634 CHECK(krb5_ret_uint32(sp, &temp),
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_import.c974 nvlist_t *temp = NULL; local
980 sizeof (labels[l].vp_nvlist), &temp, 0) != 0)
983 if (nvlist_lookup_uint64(temp, ZPOOL_CONFIG_POOL_STATE,
985 nvlist_free(temp);
986 temp = NULL;
991 (nvlist_lookup_uint64(temp, ZPOOL_CONFIG_POOL_TXG,
993 nvlist_free(temp);
994 temp = NULL;
997 if (temp)
998 *config = temp;
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_ethtool.c176 u64 temp; local
183 temp = (new_bw_value != NULL) ?
186 if (!temp) {
188 } else if (temp > upper_limit_gbps) {
190 } else if (temp <= upper_limit_mbps) {
191 max_bw_value[i] = howmany(temp, MLX5E_100MB);
194 max_bw_value[i] = howmany(temp, MLX5E_1GB);
315 uint8_t temp[MLX5E_MAX_PRIORITY]; local
323 err = SYSCTL_IN(req, temp, MLX5E_MAX_PRIORITY);
328 if (temp[
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Ddiv.cpp116 diversion *temp = curdiv; local
118 delete temp;
273 node *temp = nd; local
275 if (temp->interpret(mac))
276 delete temp;
279 temp->freeze_space();
281 mac->append(temp);

Completed in 362 milliseconds

<<11121314151617181920>>