HomeSort by: relevance | last modified time | path
    Searched defs:offset (Results 1 - 25 of 1918) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/stdio/
fseek.c 50 * Seek the given file to the given offset.
51 * Zero extend the offset if SEEK_SET to allow access to 4GB files
56 off_t offset; local in function:fseek
61 offset = (unsigned long)l_offset;
64 offset = l_offset;
65 return fseeko(fp, offset, whence);
fseek.c 50 * Seek the given file to the given offset.
51 * Zero extend the offset if SEEK_SET to allow access to 4GB files
56 off_t offset; local in function:fseek
61 offset = (unsigned long)l_offset;
64 offset = l_offset;
65 return fseeko(fp, offset, whence);
  /src/lib/libc/stdlib/
putenv.c 67 ssize_t offset; local in function:putenv
69 offset = __getenvslot(str, l_name, true);
70 if (offset != -1) {
71 if (environ[offset] != NULL)
72 __freeenvvar(environ[offset]);
73 environ[offset] = str;
putenv.c 67 ssize_t offset; local in function:putenv
69 offset = __getenvslot(str, l_name, true);
70 if (offset != -1) {
71 if (environ[offset] != NULL)
72 __freeenvvar(environ[offset]);
73 environ[offset] = str;
setenv.c 64 ssize_t offset; local in function:__weak_alias
80 offset = __getenvslot(name, l_name, true);
81 if (offset == -1)
88 envvar = environ[offset];
107 if (environ[offset] != NULL)
108 __freeenvvar(environ[offset]);
110 environ[offset] = envvar;
setenv.c 64 ssize_t offset; local in function:__weak_alias
80 offset = __getenvslot(name, l_name, true);
81 if (offset == -1)
88 envvar = environ[offset];
107 if (environ[offset] != NULL)
108 __freeenvvar(environ[offset]);
110 environ[offset] = envvar;
  /src/lib/libc/compat/stdlib/
compat_unsetenv.c 75 ssize_t offset; local in function:__weak_alias
77 while ((offset = __getenvslot(name, l_name, false)) != -1) {
79 for (p = &environ[offset]; ; ++p) {
compat_unsetenv.c 75 ssize_t offset; local in function:__weak_alias
77 while ((offset = __getenvslot(name, l_name, false)) != -1) {
79 for (p = &environ[offset]; ; ++p) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_vpstate.c 40 return nvbios_rd32(b, bit_P.offset + 0x38);
52 h->offset = nvbios_vpstate_offset(b);
53 if (!h->offset)
56 h->version = nvbios_rd08(b, h->offset);
59 h->hlen = nvbios_rd08(b, h->offset + 0x1);
60 h->elen = nvbios_rd08(b, h->offset + 0x2);
61 h->slen = nvbios_rd08(b, h->offset + 0x3);
62 h->scount = nvbios_rd08(b, h->offset + 0x4);
63 h->ecount = nvbios_rd08(b, h->offset + 0x5);
65 h->base_id = nvbios_rd08(b, h->offset + 0x0f)
84 u32 offset; local in function:nvbios_vpstate_entry
    [all...]
nouveau_nvkm_subdev_bios_vpstate.c 40 return nvbios_rd32(b, bit_P.offset + 0x38);
52 h->offset = nvbios_vpstate_offset(b);
53 if (!h->offset)
56 h->version = nvbios_rd08(b, h->offset);
59 h->hlen = nvbios_rd08(b, h->offset + 0x1);
60 h->elen = nvbios_rd08(b, h->offset + 0x2);
61 h->slen = nvbios_rd08(b, h->offset + 0x3);
62 h->scount = nvbios_rd08(b, h->offset + 0x4);
63 h->ecount = nvbios_rd08(b, h->offset + 0x5);
65 h->base_id = nvbios_rd08(b, h->offset + 0x0f)
84 u32 offset; local in function:nvbios_vpstate_entry
    [all...]
  /src/sys/external/isc/atheros_hal/dist/ar5312/
ar5312_eeprom.c 32 * Read 16 bits of data from offset into *data
37 int i,offset; local in function:ar5312EepromRead
42 for (i=0,offset=2*off; i<2; i++,offset++) {
43 data[i] = eepromAddr[offset];
ar5312_eeprom.c 32 * Read 16 bits of data from offset into *data
37 int i,offset; local in function:ar5312EepromRead
42 for (i=0,offset=2*off; i<2; i++,offset++) {
43 data[i] = eepromAddr[offset];
  /src/sys/arch/m68k/fpe/
fpu_fmovecr.c 75 fpu_const(struct fpn *fp, uint32_t offset)
84 if (offset == 0) {
86 } else if (0xb <= offset && offset <= 0xe) {
87 r = &constrom[offset - 0xb + 1];
88 } else if (0x30 <= offset && offset <= 0x3f) {
89 r = &constrom[offset - 0x30 + 6];
91 /* return 0.0 for anything else (incl. valid offset 0xf) */
103 int dstreg, offset; local in function:fpu_emul_fmovecr
    [all...]
fpu_fmovecr.c 75 fpu_const(struct fpn *fp, uint32_t offset)
84 if (offset == 0) {
86 } else if (0xb <= offset && offset <= 0xe) {
87 r = &constrom[offset - 0xb + 1];
88 } else if (0x30 <= offset && offset <= 0x3f) {
89 r = &constrom[offset - 0x30 + 6];
91 /* return 0.0 for anything else (incl. valid offset 0xf) */
103 int dstreg, offset; local in function:fpu_emul_fmovecr
    [all...]
  /src/sys/ddb/
db_print.c 53 db_expr_t value, offset; local in function:db_show_regs
61 db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset);
63 (unsigned int) offset <= db_maxoff && offset != value) {
65 if (offset != 0) {
68 db_format_radix(tbuf, 24, offset, true);
db_print.c 53 db_expr_t value, offset; local in function:db_show_regs
61 db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset);
63 (unsigned int) offset <= db_maxoff && offset != value) {
65 if (offset != 0) {
68 db_format_radix(tbuf, 24, offset, true);
  /src/sys/dev/pci/
cyber.c 92 int offset; local in function:write_siig20x_usrreg
96 offset = SIIG20x_USR0;
99 offset = SIIG20x_USR1;
105 newreg = curreg = pci_conf_read(pc, tag, offset);
113 pci_conf_write(pc, tag, offset, newreg);
cyber.c 92 int offset; local in function:write_siig20x_usrreg
96 offset = SIIG20x_USR0;
99 offset = SIIG20x_USR1;
105 newreg = curreg = pci_conf_read(pc, tag, offset);
113 pci_conf_write(pc, tag, offset, newreg);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
cl006b.h 11 __u32 offset; member in struct:nv03_channel_dma_v0
cl006b.h 11 __u32 offset; member in struct:nv03_channel_dma_v0
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
bit.h 10 u16 offset; member in struct:bit_entry
bit.h 10 u16 offset; member in struct:bit_entry
  /src/sys/lib/libsa/
loadfile_ecoff.c 56 paddr_t offset = marks[MARK_START]; local in function:loadfile_coff
60 /* some ports dont use the offset */
61 offset = offset;
loadfile_ecoff.c 56 paddr_t offset = marks[MARK_START]; local in function:loadfile_coff
60 /* some ports dont use the offset */
61 offset = offset;
  /src/lib/libc/locale/
nl_langinfo.c 181 size_t offset; local in function:nl_langinfo_l
189 offset = langinfo_offset[item];
191 memcpy(&s, (char *)loc->part_impl[category] + offset, sizeof(s));

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>