| /src/sys/dev/ir/ | 
| cirio.h | 38 	unsigned int raw;  member in struct:cir_params 
 | 
| /src/sys/dev/dec/ | 
| vsxxxvar.h | 36 		u_int8_t raw[4];  member in union:vsxxx_softc::__anon8e5fa074010a 
 | 
| /src/sys/arch/evbppc/wii/ | 
| pic_pi.c | 73 	uint32_t raw, pend;  local in function:pi_get_irq 76 	raw = RD4(PI_INTSR);
 77 	pend = raw & pic_irqmask;
 
 | 
| /src/sys/external/isc/libsodium/dist/ | 
| README.markdown | 5  
 | 
| /src/usr.sbin/tpctl/ | 
| tp.c | 98 	struct wsmouse_calibcoords raw;  local in function:tp_setrawmode 100 	memset(&raw, 0, sizeof(raw));
 101 	raw.samplelen = WSMOUSE_CALIBCOORDS_RESET;
 103 	return ioctl(tp->fd, WSMOUSEIO_SCALIBCOORDS, &raw);
 
 | 
| main.c | 386 	struct termios tm, raw;  local in function:check_esc 390 	raw = tm;
 391 	cfmakeraw(&raw);
 392 	if (tcsetattr(fd, TCSANOW, &raw) < 0)
 
 | 
| /src/common/dist/zlib/examples/ | 
| fitblk.c | 8                      Use fixed-size, stack-allocated raw buffers 76     unsigned char raw[RAWLEN];  local in function:partcompress
 80         def->avail_in = fread(raw, 1, RAWLEN, in);
 83         def->next_in = raw;
 99     unsigned char raw[RAWLEN];  local in function:recompress
 105         inf->next_out = raw;
 114         def->next_in = raw;
 
 | 
| /src/sbin/svhlabel/ | 
| svhlabel.c | 82 	 * correctly, albeit they seem to set the raw partition ok! 295 	int	raw;			/* update on-disk label as well */  local in function:main
 300 	raw = 0;
 312 			raw = 1;
 349 				    raw ? "and on-disk " : "");
 350 raw = 0; /* XXX */
 351 			setlabel(sd, raw);
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/amd/display/include/ | 
| i2caux_interface.h | 78 	uint32_t raw;  member in union:aux_config 
 | 
| /src/usr.bin/rump_dhcpclient/ | 
| main.c | 133 	uint8_t *raw;  local in function:get_network 139 	raw = xmalloc(udp_dhcp_len);
 151 		    raw, udp_dhcp_len)) < 1)
 154 		if (valid_udp_packet(raw, n, NULL) == -1) {
 159 		n = get_udp_data(&data, raw);
 182 	*rawp = raw;
 190 	uint8_t *raw;  local in function:get_offer
 193 	get_network(ifp, &raw, &dhcp);
 209 	free(raw);
 216 	uint8_t *raw;  local in function:get_ack
 [all...]
 | 
| /src/sys/arch/evbppc/wii/dev/ | 
| hollywood.c | 167 	uint32_t raw, pend;  local in function:hollywood_get_irq 170 	raw = RD4(HW_PPCIRQFLAGS);
 171 	pend = raw & pic_irqmask;
 
 | 
| /src/sbin/apmlabel/ | 
| apmlabel.c | 77 	 * correctly, albeit they seem to set the raw partition ok! 301 	int	raw;			/* update on-disk label as well */  local in function:main
 306 	raw = 0;
 318 			raw = 1;
 351 				    raw ? "and on-disk " : "");
 352 			setlabel(sd, raw);
 
 | 
| /src/sbin/fsck/ | 
| fsutil.c | 188 	const char *newname, *raw, *cooked;  local in function:blockcheck 215 		raw = getdiskrawname(buf, sizeof(buf), newname);
 216 		if (raw == NULL) {
 217 			perr("Can't convert to raw `%s'", newname);
 220 		if (stat(raw, &stchar) < 0) {
 221 			perr("Can't stat `%s'", raw);
 225 			return raw;
 227 			perr("%s is not a character device\n", raw);
 
 | 
| /src/sbin/mbrlabel/ | 
| mbrlabel.c | 77 	 * correctly, albeit they seem to set the raw partition ok! 289 	int	raw;			/* update on-disk label as well */  local in function:main
 296 	raw = 0;
 309 			raw = 1;
 356 				    raw ? "and on-disk " : "");
 357 			setlabel(sd, raw);
 
 | 
| /src/sys/arch/sun3/sun3x/ | 
| iommu.h | 119 		uint32_t	raw;	/* For unstructured access to the above */  member in union:iommu_pde_struct::__anonec0cf4ed010a 129 #define	IOMMU_PA_PDE(pde)	((pde).addr.raw & IOMMU_PDE_PA)
 130 #define	IOMMU_VALID_DT(pde)	((pde).addr.raw & IOMMU_PDE_DT)	/* X1 */
 
 | 
| /src/sys/dev/ic/ | 
| mfiio.h | 55 		uint8_t raw[128];	  member in union:mfi_ioc_packet::__anon28e08aee020a 86 		uint8_t raw[128];	  member in union:mfi_ioc_packet32::__anon28e08aee030a
 
 | 
| ld_aac.c | 145 		struct aac_raw_io *raw;  local in function:ld_aac_dobio 149 		raw = (struct aac_raw_io *)&fib->data[0];
 151 		raw->BlockNumber = htole64(blkno);
 152 		raw->ByteCount = htole32(datasize);
 153 		raw->ContainerId = htole16(sc->sc_hwunit);
 154 		raw->BpTotal = 0;
 155 		raw->BpComplete = 0;
 157 		sgt = &raw->SgMapRaw;
 158 		raw->Flags = (dowrite ? 0 : 1);
 
 | 
| /src/lib/libcurses/ | 
| tty.c | 153 	 * to 8 bits, no parity in raw(), but this is considered to be an 156 	 * calls that switch to/from "raw" mode.
 169  * raw --
 170  *	Put the terminal into raw mode
 173 raw(void)  function in typeref:typename:int
 175 	__CTRACE(__CTRACE_MISC, "raw()\n");
 
 | 
| /src/games/warp/ | 
| term.h | 205 #define raw() ((bizarre=1),_tty.c_lflag &=~ISIG,_tty.c_cc[VMIN] = 1,tcsetattr(_tty_ch,TCSAFLUSH,&_tty))  macro 219 #define raw()	 ((bizarre=1),_tty.sg_flags|=RAW, stty(_tty_ch,&_tty))  macro
 220 #define noraw()	 ((bizarre=1),_tty.sg_flags&=~RAW,stty(_tty_ch,&_tty))
 
 | 
| /src/sys/arch/acorn32/mainbus/ | 
| fdreg.h | 125 		u_char raw[1];	/* to have continuous indexed access */  member in union:ne7_fd_formb::__anon8ef4552b010a 
 | 
| /src/sys/arch/hpcmips/vr/ | 
| vrc4172pwm.c | 316 	int raw;  local in function:vrc4172pwm_set_brightness 327 	raw = vrc4172pwm_brightness2rawduty(sc);
 328 	vrc4172pwm_write(sc, VRC2_PWM_LCDDUTY, raw);
 329 	DPRINTF(("vrc4172pwm_set_brightness: val=%d raw=0x%x\n", val, raw));
 367  * brightness to raw duty
 
 | 
| /src/sys/arch/sparc/dev/ | 
| fdvar.h | 115 		u_char raw[1];	/* to have continuous indexed access */  member in union:ne7_fd_formb::__anon6af11807010a 
 | 
| /src/sys/arch/sparc64/dev/ | 
| fdcvar.h | 115 		u_char raw[1];	/* to have continuous indexed access */  member in union:ne7_fd_formb::__anond39b76f4010a 
 | 
| /src/sys/arch/sun3/dev/ | 
| fdvar.h | 109 		u_char raw[1];	/* to have continuous indexed access */  member in union:ne7_fd_formb::__anon56b3a297010a 
 | 
| /src/sys/arch/x68k/dev/ | 
| fdreg.h | 98 		uint8_t raw[1];	/* to have continuous indexed access */  member in union:ne7_fd_formb::__anon4220ea74010a 
 |