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

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/indent/
lsym_offsetof.c 5 * that starts an expression for computing the offset of a member in a struct.
9 size_t offset = offsetof(struct s, member); variable
21 size_t offset = offsetof (struct s, member); variable
  /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
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
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
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/external/bsd/ntp/dist/scripts/stats/
loop.S 2 loop <- scan(file1, list(day=0, sec=0, offset=0, freq=0, tc=0))
3 loop$offset <- loop$offset * 1e6
7 plot(loop$sec, loop$offset, type="l", xlab=paste("MJD", loop$day, "Time (s)"), ylab="PLL Offset (us)", ylim=c(-400, 400))
  /src/external/gpl3/binutils/dist/include/
collectorAPI.h 53 unsigned int offset; member in struct:__anon8079
  /src/external/gpl3/binutils.old/dist/include/
collectorAPI.h 53 unsigned int offset; member in struct:__anon9543
  /src/external/gpl3/gcc.old/dist/gcc/config/frv/
frv-protos.h 165 (a SYMBOL_REF or LABEL_REF), RELOC is the type of relocation and OFFSET
170 HOST_WIDE_INT offset; member in struct:frv_unspec
  /src/external/gpl3/gcc/dist/gcc/config/frv/
frv-protos.h 165 (a SYMBOL_REF or LABEL_REF), RELOC is the type of relocation and OFFSET
170 HOST_WIDE_INT offset; member in struct:frv_unspec
  /src/external/gpl3/gcc/dist/include/
collectorAPI.h 53 unsigned int offset; member in struct:__anon1456
  /src/external/gpl3/gdb/dist/include/
collectorAPI.h 53 unsigned int offset; member in struct:__anon3586
  /src/external/gpl3/gdb.old/dist/include/
collectorAPI.h 53 unsigned int offset; member in struct:__anon6327
  /src/external/ibm-public/postfix/dist/src/global/
recdump.c 44 long offset; local
49 while (offset = vstream_ftell(VSTREAM_IN),
53 rec_type_name(type), offset,
  /src/lib/libc/compat/stdlib/
compat_unsetenv.c 75 ssize_t offset; local
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
    [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
42 for (i=0,offset=2*off; i<2; i++,offset++) {
43 data[i] = eepromAddr[offset];
  /src/external/gpl2/dtc/dist/tests/
path_offset_aliases.c 22 int offset, offset_a; local
24 offset = fdt_path_offset(fdt, full_path);
27 if (offset != offset_a)
29 full_path, offset, alias_path, offset_a);
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
kwset.h 27 size_t offset[1]; /* Offset of each submatch. */ member in struct:kwsmatch
  /src/external/gpl2/grep/dist/src/
kwset.h 28 size_t offset[1]; /* Offset of each submatch. */ member in struct:kwsmatch
  /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
    [all...]
  /src/sys/ddb/
db_print.c 53 db_expr_t value, offset; local
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
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
  /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
60 /* some ports dont use the offset */
61 offset = offset;

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>