HomeSort by: relevance | last modified time | path
    Searched refs:offset (Results 1 - 25 of 7314) 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/external/ibm-public/postfix/dist/src/global/
deliver_completed.c 11 /* void deliver_completed(stream, offset)
13 /* long offset;
16 /* an open queue file. A -1 offset means ignore the request -
49 void deliver_completed(VSTREAM *stream, long offset)
53 if (offset == -1)
56 if (offset <= 0)
57 msg_panic("%s: bad offset %ld", myname, offset);
59 if (rec_put_type(stream, REC_TYPE_DONE, offset) < 0
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
types.h 23 #include "gdbsupport/offset-type.h"
26 /* Offset relative to the start of its containing CU (compilation
30 /* Offset relative to the start of its .debug_info or .debug_types
35 sect_offset_str (sect_offset offset)
37 return hex_string (to_underlying (offset));
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
types.h 23 #include "gdbsupport/offset-type.h"
26 /* Offset relative to the start of its containing CU (compilation
30 /* Offset relative to the start of its .debug_info or .debug_types
35 sect_offset_str (sect_offset offset)
37 return hex_string (to_underlying (offset));
  /src/external/gpl3/gdb/dist/gdb/
riscv-ravenscar-thread.c 44 int offset; local
46 offset = 0;
48 offset = 1;
50 offset = 2;
52 offset = 3;
55 offset = regnum - (RISCV_ZERO_REGNUM + 19) + 4;
58 offset = regnum - RISCV_FIRST_FP_REGNUM + 14; /* FS0..FS11 */
60 offset = -1;
62 if (offset != -1)
63 offset *= reg_size
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
riscv-ravenscar-thread.c 44 int offset; local
46 offset = 0;
48 offset = 1;
50 offset = 2;
52 offset = 3;
55 offset = regnum - (RISCV_ZERO_REGNUM + 19) + 4;
58 offset = regnum - RISCV_FIRST_FP_REGNUM + 14; /* FS0..FS11 */
60 offset = -1;
62 if (offset != -1)
63 offset *= reg_size
    [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/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;
  /src/external/gpl2/xcvs/dist/lib/
fseeko.c 38 fseeko (FILE *stream, off_t offset, int whence)
40 while (offset != (long) offset)
42 long pos = (offset < 0) ? LONG_MIN : LONG_MAX;
46 offset -= pos;
49 return fseek (stream, (long) offset, whence);
  /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/external/bsd/jemalloc/dist/include/jemalloc/internal/
ph.h 75 phn_link_get(void *phn, size_t offset) {
76 return (phn_link_t *)(((uintptr_t)phn) + offset);
80 phn_link_init(void *phn, size_t offset) {
81 phn_link_get(phn, offset)->prev = NULL;
82 phn_link_get(phn, offset)->next = NULL;
83 phn_link_get(phn, offset)->lchild = NULL;
88 phn_lchild_get(void *phn, size_t offset) {
89 return phn_link_get(phn, offset)->lchild;
93 phn_lchild_set(void *phn, void *lchild, size_t offset) {
94 phn_link_get(phn, offset)->lchild = lchild
412 offset); local
418 offset); local
431 phn_next_get(phn, offset), offset); local
436 phn_prev_get(phn, offset), offset); local
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
ph.h 75 phn_link_get(void *phn, size_t offset) {
76 return (phn_link_t *)(((uintptr_t)phn) + offset);
80 phn_link_init(void *phn, size_t offset) {
81 phn_link_get(phn, offset)->prev = NULL;
82 phn_link_get(phn, offset)->next = NULL;
83 phn_link_get(phn, offset)->lchild = NULL;
88 phn_lchild_get(void *phn, size_t offset) {
89 return phn_link_get(phn, offset)->lchild;
93 phn_lchild_set(void *phn, void *lchild, size_t offset) {
94 phn_link_get(phn, offset)->lchild = lchild
412 offset); local
418 offset); local
431 phn_next_get(phn, offset), offset); local
436 phn_prev_get(phn, offset), offset); local
    [all...]
  /src/sys/external/bsd/drm2/include/drm/
drm_iomap_netbsd.h 77 DRM_READ8(struct drm_local_map *map, bus_size_t offset)
81 map->lm_data.bus_space.bsh, offset);
83 return *(volatile uint8_t *)((vaddr_t)map->handle + offset);
87 DRM_READ16(struct drm_local_map *map, bus_size_t offset)
91 map->lm_data.bus_space.bsh, offset);
93 return *(volatile uint16_t *)((vaddr_t)map->handle + offset);
97 DRM_READ32(struct drm_local_map *map, bus_size_t offset)
101 map->lm_data.bus_space.bsh, offset);
103 return *(volatile uint32_t *)((vaddr_t)map->handle + offset);
107 DRM_READ64(struct drm_local_map *map, bus_size_t offset)
    [all...]
  /src/external/bsd/elftoolchain/dist/libelf/
elf_rand.c 41 elf_rand(Elf *ar, off_t offset)
47 (offset & 1) || offset < SARMAG ||
48 offset >= ar->e_rawsize) {
53 offset_of_member = offset + (off_t) sizeof(struct ar_hdr);
61 arh = (struct ar_hdr *) (ar->e_rawfile + offset);
69 ar->e_u.e_ar.e_next = offset;
71 return (offset);
  /src/sys/dev/pci/
radeonfb_bios.c 138 uint16_t offset; member in struct:rb_table
153 RAGE_REGS1_OFFSET, /* offset */
161 RAGE_REGS2_OFFSET, /* offset */
169 DYN_CLOCK_OFFSET, /* offset */
177 PLL_INIT_OFFSET, /* offset */
185 MEM_CONFIG_OFFSET, /* offset */
193 0, /* offset */
201 0, /* offset */
209 0, /* offset */
217 0, /* offset */
259 uint16_t offset; local
279 uint16_t offset; local
362 uint16_t offset; local
447 uint16_t offset; local
517 uint16_t offset; local
575 uint16_t temp, offset; local
    [all...]
  /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/sys/external/gpl2/dts/dist/include/dt-bindings/gpio/
tegra241-gpio.h 34 #define TEGRA241_MAIN_GPIO(port, offset) \
35 ((TEGRA241_MAIN_GPIO_PORT_##port * 8) + (offset))
41 #define TEGRA241_AON_GPIO(port, offset) \
42 ((TEGRA241_AON_GPIO_PORT_##port * 8) + (offset))
  /src/external/bsd/libarchive/dist/libarchive/
archive_entry_sparse.c 53 la_int64_t offset, la_int64_t length)
57 if (offset < 0 || length < 0)
60 if (offset > INT64_MAX - length ||
61 offset + length > archive_entry_size(entry))
65 if (sp->offset + sp->length > offset)
68 if (sp->offset + sp->length == offset) {
69 if (sp->offset + sp->length + length < 0)
83 sp->offset = offset
    [all...]
  /src/lib/libc/sys/
posix_fadvise.c 34 int __posix_fadvise50(int fd, int pad, off_t offset, off_t size, int hint);
37 posix_fadvise(int fd, off_t offset, off_t size, int hint)
39 return __posix_fadvise50(fd, 0, offset, size, hint);
  /src/sys/arch/evbarm/lubbock/
lubbock_var.h 86 #define obio_read(offset) ioreg_read(LUBBOCK_OBIO_VBASE+(offset))
87 #define obio_write(offset,value) \
88 ioreg_write(LUBBOCK_OBIO_VBASE+(offset), (value))
91 #define obio16_read(offset) ioreg16_read(LUBBOCK_OBIO_VBASE+(offset))
92 #define obio16_write(offset,value) \
93 ioreg16_write(LUBBOCK_OBIO_VBASE+(offset), (value))
95 #define obio8_read(offset) ioreg8_read(LUBBOCK_OBIO_VBASE+(offset))
    [all...]
  /src/sys/arch/hpcmips/hpcmips/
bus_space_through.c 57 bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
59 return bus_space_subregion(t->bs_base, bsh, offset, size, nbshp);
96 bs_through_bs_mmap(bus_space_tag_t t, bus_addr_t addr, off_t offset,
99 return bus_space_mmap(t->bs_base, addr, offset, prot, flags);
108 bus_size_t offset, bus_size_t len, int flags)
110 bus_space_barrier(t->bs_base, bsh, offset, len, flags);
119 bus_size_t offset, size_t size, void *ptr)
121 return bus_space_peek(t->bs_base, bsh, offset, size, ptr);
126 bus_size_t offset, size_t size, u_int32_t val)
128 return bus_space_poke(t->bs_base, bsh, offset, size, val)
    [all...]
  /src/sys/arch/sh3/sh3/
sh3_bus_space.c 41 * bus_space_handle_t bsh, bus_size_t offset);
44 * described by tag/handle/offset.
49 bus_size_t offset)
52 return *(volatile uint8_t *)(bsh + offset);
57 bus_size_t offset)
60 return bswap16(*(volatile uint16_t *)(bsh + offset));
65 bus_size_t offset)
68 return bswap32(*(volatile uint32_t *)(bsh + offset));
73 bus_size_t offset)
76 return *(volatile uint16_t *)(bsh + offset);
    [all...]
  /src/sys/external/bsd/libfdt/dist/
fdt.c 116 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len)
118 unsigned absoffset = offset + fdt_off_dt_struct(fdt);
120 if ((absoffset < offset)
126 if (((offset + len) < offset)
127 || ((offset + len) > fdt_size_dt_struct(fdt)))
130 return fdt_offset_ptr_(fdt, offset);
137 int offset = startoffset; local
141 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
145 offset += FDT_TAGSIZE
    [all...]
  /src/sys/lib/libsa/
lseek.c 67 lseek(int fd, off_t offset, int where)
69 olseek(int fd, off_t offset, int where)
84 * On RAW devices, update internal offset.
88 f->f_offset = offset;
91 f->f_offset += offset;
102 return FS_SEEK(f->f_ops)(f, offset, where);
  /src/external/gpl3/gdb/dist/gdb/regformats/
regdef.h 28 offset (_offset),
34 offset (_offset),
46 /* The offset (in bits) of the value of this register in the buffer. */
47 int offset; member in struct:gdb::reg
55 && offset == other.offset

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>