HomeSort by: relevance | last modified time | path
    Searched defs:offset (Results 1 - 25 of 959) 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);
  /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;
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) {
  /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...]
  /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];
  /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...]
  /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);
  /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);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
cl006b.h 11 __u32 offset; member in struct:nv03_channel_dma_v0
cl506e.h 13 __u64 offset; member in struct:nv50_channel_dma_v0
cl826e.h 13 __u64 offset; member in struct:g82_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
  /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;
  /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));
  /src/lib/libutil/
getlabelsector.c 65 int offset, mib[2]; local in function:getlabeloffset
70 varlen = sizeof(offset);
71 if (sysctl(mib, 2, &offset, &varlen, NULL, (size_t)0) < 0)
74 return ((off_t)offset);
  /src/sys/arch/acorn32/eb7500atx/
if_cs.c 94 * This only effects the value programmed into the CS8920 memory offset
212 bus_size_t offset; local in function:cs_rbus_read_1
222 offset = (a & ~1) << 1;
223 offset++;
226 return sc->sc_iot->bs_r_1(0, (sc)->sc_ioh, offset);
  /src/sys/arch/i386/stand/lib/
biosdisk.h 31 daddr_t offset; member in struct:biosdisk_partition
  /src/sys/arch/luna68k/dev/
psgpam_enc.h 38 auint_t offset; /* dynamic offset */ member in struct:psgpam_codecvar
  /src/sys/arch/sparc/include/
elf_support.h 34 const unsigned int BAA = 0x30800000U; /* ba,a (offset / 4) */
40 unsigned long offset = value - (unsigned long)where; local in function:sparc_write_branch
44 if (offset + 0x800000 <= 0x7ffffc) {
46 where[0] = BAA | ((offset >> 2) & 0x3fffff);
  /src/sys/arch/x68k/include/
sram.h 44 int offset; /* IO offset */ member in struct:sram_io
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/sw/
nv50.h 17 u64 offset; member in struct:nv50_sw_chan::__anon06a9b8480108
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
gk104.h 37 u8 offset; member in struct:gk104_clkgate_engine_info
  /src/tests/lib/libc/stdlib/
t_getenv.c 129 size_t i, offset; local in function:ATF_TC_BODY
133 offset = lrand48();
136 (i * 7 + offset) % numvars);
143 offset = lrand48();
146 (i * 11 + offset) % numvars);
  /src/usr.bin/unvis/
unvis.c 110 int offset = 0, c, ret; local in function:process
115 offset++;
125 warnx("%s: offset: %d: can't decode", filename, offset);

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>