Searched refs:temp (Results 351 - 375 of 744) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/kern/
H A Dkern_shutdown.c918 char *temp; local
926 temp = virtual;
928 temp = di->blockbuf;
929 memset(temp + length, 0, di->blocksize - length);
930 memcpy(temp, virtual, length);
932 ret = dump_write(di, temp, physical, offset, *size);
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_sha1.c79 temp = ROT32(A,5) + f##n(B,C,D) + E + W[i] + CONST##n; \
80 E = D; D = C; C = ROT32(B,30); B = A; A = temp
110 apr_uint32_t temp, A, B, C, D, E, W[80]; local
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcorelow.c279 char *temp; local
295 temp = concat (current_directory, "/", filename, NULL);
297 filename = temp;
/freebsd-11-stable/contrib/dialog/
H A Drangebox.c67 char temp[80]; local
68 sprintf(temp, "%d", value);
69 return (int) strlen(temp);
H A Dbuttons.c149 const char *temp = (label + first); local
150 check = string_to_char(&temp);
196 const char *temp = (label + first); local
197 check = string_to_char(&temp);
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_gem_tiling.c460 char temp[64]; local
470 memcpy(temp, &vaddr[i], 64);
472 memcpy(&vaddr[i + 64], temp, 64);
H A Dintel_dvo.c139 u32 temp = I915_READ(dvo_reg); local
142 I915_WRITE(dvo_reg, temp & ~DVO_ENABLE);
151 u32 temp = I915_READ(dvo_reg); local
153 I915_WRITE(dvo_reg, temp | DVO_ENABLE);
H A Di915_dma.c1163 u32 temp; local
1169 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
1170 enabled = !!(temp & DEVEN_MCHBAR_EN);
1172 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1173 enabled = temp & 1;
1188 temp | DEVEN_MCHBAR_EN);
1190 pci_read_config_dword(dev_priv->bridge_dev, mchbar_reg, &temp);
1191 pci_write_config_dword(dev_priv->bridge_dev, mchbar_reg, temp | 1);
1200 u32 temp; local
1204 pci_read_config_dword(dev_priv->bridge_dev, DEVEN_REG, &temp);
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Datom.c103 uint32_t temp = 0xCDCDCDCD; local
111 temp = ctx->card->ioreg_read(ctx->card, CU16(base + 1));
117 ctx->card->ioreg_write(ctx->card, CU16(base + 1), temp);
121 temp &=
127 temp |=
133 temp &=
136 temp |=
143 temp &=
146 temp |=
153 temp
[all...]
/freebsd-11-stable/sys/security/audit/
H A Daudit_worker.c142 long temp; local
207 temp = mnt_stat->f_blocks / (100 / audit_qctrl.aq_minfree);
208 if (mnt_stat->f_bfree < temp) {
/freebsd-11-stable/tools/tools/bus_autoconf/
H A Dbus_usb.c50 struct usb_device_id temp; member in struct:usb_blob
351 usb_import_entry(&pub->temp, section,
376 id[x++] = pub->temp;
/freebsd-11-stable/sys/vm/
H A Dmemguard.c392 char *temp; local
408 temp = ptr;
410 temp[i] = 'M';
/freebsd-11-stable/sys/security/mac_portacl/
H A Dmac_portacl.c305 char *temp;
320 temp = strdup(sbuf_data(sb), M_PORTACL);
322 return (temp);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dsplay-tree.c80 splay_tree_node temp; local
100 temp = active;
101 active = (splay_tree_node)(temp->key);
102 (*sp->deallocate) ((char*) temp, sp->allocate_data);
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dcygwin.asm47 pushl %ecx /* save temp */
65 movl (%eax),%ecx /* recover saved temp */
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Dref.cpp706 string temp;
711 temp += join_authors_exactly_two;
713 temp += join_authors_last_two;
715 temp += join_authors_default;
718 temp += ptr[j];
720 f = temp;
783 string temp; local
784 capitalize(str.contents(), str.contents() + str.length(), temp);
785 str.move(temp);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dsplay-tree.c80 splay_tree_node temp; local
100 temp = active;
101 active = (splay_tree_node)(temp->key);
102 (*sp->deallocate) ((char*) temp, sp->allocate_data);
/freebsd-11-stable/sbin/dump/
H A Ddump.h61 char *temp; /* name of the file for doing rewrite of dumpdates */ variable
/freebsd-11-stable/sys/mips/rmi/
H A Dxlr_pci.c220 uint32_t temp = 0; local
225 temp = bswap32(*p);
232 temp = ~0x0;
235 return (temp);
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_radar.c321 u_int32_t val, temp; local
324 temp = MS(val, AR_PHY_RADAR_0_FIRPWR);
325 temp |= ~(AR_PHY_RADAR_0_FIRPWR >> AR_PHY_RADAR_0_FIRPWR_S);
326 pe->pe_firpwr = temp;
/freebsd-11-stable/sbin/nvmecontrol/
H A Dlogpage.c280 struct intel_log_temp_stats *temp = buf; local
286 print_temp(temp->current);
287 printf("Overtemp Last Flags %#jx\n", (uintmax_t)temp->overtemp_flag_last);
288 printf("Overtemp Lifetime Flags %#jx\n", (uintmax_t)temp->overtemp_flag_life);
290 print_temp(temp->max_temp);
292 print_temp(temp->min_temp);
294 print_temp(temp->max_oper_temp);
296 print_temp(temp->min_oper_temp);
297 printf("Estimated Temperature Offset: %ju C/K\n", (uintmax_t)temp->est_offset);
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_addrs.c179 struct tp_entry *temp; local
184 temp = bridge_addrs_find_pos(headp, te->sysindex);
186 if (temp == NULL)
189 TAILQ_INSERT_AFTER(headp, temp, te, tp_e);
/freebsd-11-stable/sys/dev/mlx5/mlx5_fpga/
H A Dsdk.h366 struct mlx5_fpga_temperature *temp);
/freebsd-11-stable/usr.bin/m4/
H A Dgnum4.c553 char temp[2]; local
608 temp[0] = strtoul(argv[pos++], NULL, 10);
609 temp[1] = 0;
610 thisarg = temp;
/freebsd-11-stable/sys/dev/qlxge/
H A Dqls_dump.c660 uint32_t temp, xaui_reg, i; local
667 ret = qls_rd_ofunc_serdes_reg(ha, xaui_reg, &temp);
669 temp = 0;
671 if ((temp & Q81_XAUI_POWERED_UP) == Q81_XAUI_POWERED_UP)
674 ret = qls_rd_serdes_reg(ha, xaui_reg, &temp);
676 temp = 0;
678 if ((temp & Q81_XAUI_POWERED_UP) == Q81_XAUI_POWERED_UP)
681 ret = qls_rd_serdes_reg(ha, 0x1E06, &temp);
683 temp = 0;
685 if ((temp
[all...]

Completed in 438 milliseconds

<<11121314151617181920>>