Searched defs:data (Results 1 - 25 of 1781) sorted by path

1234567891011>>

/illumos-gate/usr/src/boot/include/isofs/cd9660/
H A Diso.h48 char data[ISODCL(16,2048)]; member in struct:iso_volume_descriptor
/illumos-gate/usr/src/boot/include/net/
H A Dif.h83 uint16_t ifi_datalen; /* length of this data struct */
267 struct if_data ifm_data;/* statistics and other data about if */
292 struct if_data ifm_data;/* statistics and other data about if */
333 struct if_data ifam_data;/* statistics and other data about if or
454 * Structure used to retrieve aux status data from interfaces.
514 * Structure used to request i2c data
523 uint8_t data[8]; /* read buffer */ member in struct:ifi2creq
/illumos-gate/usr/src/boot/lib/libstand/
H A Darp.c84 } data; member in struct:__anon43
91 } data; member in struct:__anon45
110 bzero((char*)&wbuf.data, sizeof(wbuf.data));
111 ah = &wbuf.data.arp;
126 arpsend, &wbuf.data, sizeof(wbuf.data),
127 arprecv, &rbuf.data, sizeof(rbuf.data));
134 ah = &rbuf.data
[all...]
H A Dnfs.c86 u_char data[NFSREAD_SIZE]; member in struct:nfs_read_repl
379 * Read data from a file.
432 bcopy(repl->data, addr, x);
505 /* Allocate file system specific data structure */
538 /* allocate file system specific data structure */
1008 * Read data from a file.
1025 u_char data[NFSREAD_SIZE]; member in struct:repl
1074 bcopy(repl->data, addr, x);
1150 /* Allocate file system specific data structure */
1182 /* allocate file system specific data structur
[all...]
H A Drarp.c73 } data; member in struct:__anon90
80 } data; member in struct:__anon92
96 bzero((char*)&wbuf.data, sizeof(wbuf.data));
97 ap = &wbuf.data.arp;
107 rarpsend, &wbuf.data, sizeof(wbuf.data),
108 rarprecv, &rbuf.data, sizeof(rbuf.data)) < 0)
114 ap = &rbuf.data
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dzopen.c15 xgzread(void *cookie, char *data, int size) argument
17 return gzread(cookie, data, size);
21 xgzwrite(void *cookie, const char *data, int size) argument
23 return gzwrite(cookie, (void*)data, size);
/illumos-gate/usr/src/boot/sys/amd64/include/
H A Dcpufunc.h207 u_char data; local
209 __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port));
210 return (data);
216 u_int data; local
218 __asm __volatile("inl %w1, %0" : "=a" (data) : "Nd" (port));
219 return (data);
258 u_short data; local
260 __asm __volatile("inw %w1, %0" : "=a" (data) : "Nd" (port));
261 return (data);
265 outb(u_int port, u_char data) argument
271 outl(u_int port, u_int data) argument
301 outw(u_int port, u_short data) argument
412 load_cr0(u_long data) argument
421 u_long data; local
430 u_long data; local
437 load_cr3(u_long data) argument
446 u_long data; local
453 load_cr4(u_long data) argument
461 u_long data; local
668 uint64_t data; local
682 uint64_t data; local
696 uint64_t data; local
710 uint64_t data; local
724 uint64_t data; local
738 uint64_t data; local
752 uint64_t data; local
766 uint64_t data; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Demac.c199 * void TFTP_ACK_Data(char *data, unsigned short block_num, unsigned short len)
204 TFTP_ACK_Data(unsigned char *data, unsigned short block_num, unsigned short len) argument
210 memcpy(dlAddress, data, len);
326 TFTP_ACK_Data(tftpHdr->data,
H A Demac.h104 unsigned char data[512]; member in struct:__anon120
/illumos-gate/usr/src/boot/sys/boot/common/
H A Disapnp.c49 /* PnP read data port */
93 isapnp_get_serial(u_int8_t *data) argument
97 bzero(data, _PNP_ID_LEN);
113 data[i / 8] = (data[i / 8] >> 1) | (bit ? 0x80 : 0);
116 valid = valid && (data[8] == sum);
139 printf("PnP device failed to report resource data\n");
153 * We scan the resource data for compatible device IDs and
254 pnp_freeinfo(pi); /* error getting data, ignore */
H A Dpnp.c169 pnp_eisaformat(u_int8_t *data) argument
174 idbuf[0] = '@' + ((data[0] & 0x7c) >> 2);
175 idbuf[1] = '@' + (((data[0] & 0x3) << 3) + ((data[1] & 0xe0) >> 5));
176 idbuf[2] = '@' + (data[1] & 0x1f);
177 idbuf[3] = hextoascii[(data[2] >> 4)];
178 idbuf[4] = hextoascii[(data[2] & 0xf)];
179 idbuf[5] = hextoascii[(data[3] >> 4)];
180 idbuf[6] = hextoascii[(data[3] & 0xf)];
H A Dreloc_elf.c46 * Apply a single intra-module relocation to the data. `relbase' is the
49 * the start of the data, and `len' is the number of bytes.
53 int reltype, Elf_Addr relbase, Elf_Addr dataaddr, void *data, size_t len)
67 bcopy(&w, (u_char *)data + (relbase +
90 where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
99 where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
109 if ((char *)where < (char *)data || (char *)where >= (char *)data + len)
147 where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
156 where = (Elf_Addr *)((char *)data
52 reloc(struct elf_file *ef, symaddr_fn *symaddr, const void *reldata, int reltype, Elf_Addr relbase, Elf_Addr dataaddr, void *data, size_t len) argument
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dmain.c655 UINT8 *data; /* value is in bytes */ local
682 if ((data = malloc(datasz)) == NULL)
684 status = RS->GetVariable(var, &varguid, &attr, &datasz, data);
704 free(data);
828 { EFI_DATA_HUB_PROTOCOL_GUID, "data hub" },
/illumos-gate/usr/src/boot/sys/boot/fdt/
H A Dfdt_loader_cmd.c519 * Convert memreserve data to memreserve property
951 fdt_isprint(const void *data, int len, int *count) argument
960 d = (const char *)data;
983 fdt_data_str(const void *data, int len, int count, char **buf) argument
1027 d = (const char *)data + i;
1047 fdt_data_cell(const void *data, int len, char **buf) argument
1085 c = (const uint32_t *)((const uint8_t *)data + i);
1101 fdt_data_bytes(const void *data, int len, char **buf) argument
1134 for (i = 0, d = data; i < len; i++) {
1149 fdt_data_fmt(const void *data, in argument
1174 const void *data; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/libfirewire/
H A Dfwohci.c76 fwphy_wrdata( struct fwohci_softc *sc, uint32_t addr, uint32_t data) argument
81 data &= 0xff;
83 fun = (PHYDEV_WRCMD | (addr << PHYDEV_REGADDR) | (data << PHYDEV_WRDATA));
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dbiosdisk.c90 void *bd_bcache; /* buffer cache data */
109 static int bd_ioctl(struct open_file *f, u_long cmd, void *data);
365 bd_ioctl(struct open_file *f, u_long cmd, void *data) argument
372 *(u_int *)data = BD(dev).bd_sectorsize;
375 *(off_t *)data = BD(dev).bd_sectors * BD(dev).bd_sectorsize;
H A Dlibi386.h44 void *data; member in struct:i386_devdesc::__anon281::__anon282
51 void *data; member in struct:i386_devdesc::__anon281::__anon283
55 void *data; member in struct:i386_devdesc::__anon281::__anon284
H A Dlinux.c98 unsigned long data, text; local
194 data = setup_sects << 9;
195 text = sb.st_size - data - 512;
207 (linux_big ? "bzImage" : "zImage"), data, text);
211 n = data + 512 - sizeof (lh);
/illumos-gate/usr/src/boot/sys/boot/sparc64/loader/
H A Dmain.c98 static int dtlb_enter_sun4u(u_int, u_long data, vm_offset_t);
101 static int itlb_enter_sun4u(u_int, u_long data, vm_offset_t);
374 u_long data, pstate; local
384 data = ldxa(slot, ASI_DTLB_DATA_ACCESS_REG);
386 return (data);
392 u_long data, pstate; local
402 data = ldxa(slot, ASI_ITLB_DATA_ACCESS_REG);
404 return (data);
458 dtlb_enter_sun4u(u_int index, u_long data, vm_offset_t virt) argument
461 return (OF_call_method("SUNW,dtlb-load", mmu, 3, 0, index, data,
466 itlb_enter_sun4u(u_int index, u_long data, vm_offset_t virt) argument
480 u_long data, pstate, tag; local
511 data); local
524 u_long data; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dcopy.c40 * MD primitives supporting placement of module data
59 * appropriate for loading the given object described by type and data. On each
69 uboot_loadaddr(u_int type, void *data, uint64_t addr) argument
94 * since u-boot likes to pass args and data there. Assume that
H A Ddisk.c79 static int stor_ioctl(struct open_file *f, u_long cmd, void *data);
264 stor_ioctl(struct open_file *f, u_long cmd, void *data) argument
271 *(u_int *)data = SI(dev).bsize;
274 *(off_t *)data = SI(dev).bsize * SI(dev).blocks;
/illumos-gate/usr/src/boot/sys/boot/userboot/test/
H A Dtest.c258 test_diskioctl(void *arg, int unit, u_long cmd, void *data) argument
266 *(u_int *)data = 512;
270 *(off_t *)data = sb.st_size;
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Duserboot_disk.c58 static int userdisk_ioctl(struct open_file *f, u_long cmd, void *data);
190 userdisk_ioctl(struct open_file *f, u_long cmd, void *data) argument
195 return (CALLBACK(diskioctl, dev->d_unit, cmd, data));
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfssubr.c74 typedef void zio_checksum_t(const void *data, uint64_t size,
253 zio_checksum_verify(const blkptr_t *bp, void *data) argument
277 eck = (zio_eck_t *)((char *)data + size) - 1;
294 ci->ci_func[byteswap](data, size, NULL, &actual_cksum);
302 ci->ci_func[0](data, size, NULL, &actual_cksum);
364 void *rc_data; /* I/O data */
375 uint64_t rm_missingdata; /* Count of missing data devices */
377 uint64_t rm_firstdatacol; /* First data column/parity count */
671 * the contents of the data and parity disks. This can be expressed with
672 * vectors for the original data (
1170 vdev_raidz_map_alloc(void *data, off_t offset, size_t size, uint64_t unit_shift, uint64_t dcols, uint64_t nparity) argument
1316 raidz_checksum_verify(const blkptr_t *bp, void *data, uint64_t size) argument
1368 vdev_raidz_combrec(raidz_map_t *rm, const blkptr_t *bp, void *data, off_t offset, uint64_t bytes, int total_errors, int data_errors) argument
1511 vdev_raidz_read(vdev_t *vd, const blkptr_t *bp, void *data, off_t offset, size_t bytes) argument
[all...]
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dcpufunc.h212 u_char data; local
214 __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port));
215 return (data);
221 u_int data; local
223 __asm __volatile("inl %w1, %0" : "=a" (data) : "Nd" (port));
224 return (data);
263 u_short data; local
265 __asm __volatile("inw %w1, %0" : "=a" (data) : "Nd" (port));
266 return (data);
270 outb(u_int port, u_char data) argument
276 outl(u_int port, u_int data) argument
306 outw(u_int port, u_short data) argument
390 load_cr0(u_int data) argument
399 u_int data; local
408 u_int data; local
415 load_cr3(u_int data) argument
424 u_int data; local
431 load_cr4(u_int data) argument
439 u_int data; local
574 u_int data; local
588 u_int data; local
602 u_int data; local
616 u_int data; local
630 u_int data; local
644 u_int data; local
658 u_int data; local
672 u_int data; local
691 write_cyrix_reg(u_char reg, u_char data) argument
[all...]

Completed in 141 milliseconds

1234567891011>>