HomeSort by relevance Sort by last modified time
    Searched refs:__offset (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
sendfile.h 34 extern ssize_t sendfile (int __out_fd, int __in_fd, off_t *__offset,
39 (int __out_fd, int __in_fd, __off64_t *__offset,
46 extern ssize_t sendfile64 (int __out_fd, int __in_fd, __off64_t *__offset,
uio.h 67 __off_t __offset) __wur;
79 __off_t __offset) __wur;
83 int __count, __off64_t __offset),
86 int __count, __off64_t __offset),
105 __off64_t __offset) __wur;
117 __off64_t __offset) __wur;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
sendfile.h 34 extern ssize_t sendfile (int __out_fd, int __in_fd, off_t *__offset,
39 (int __out_fd, int __in_fd, __off64_t *__offset,
46 extern ssize_t sendfile64 (int __out_fd, int __in_fd, __off64_t *__offset,
uio.h 67 __off_t __offset) __wur;
79 __off_t __offset) __wur;
83 int __count, __off64_t __offset),
86 int __count, __off64_t __offset),
105 __off64_t __offset) __wur;
117 __off64_t __offset) __wur;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
sendfile.h 34 extern ssize_t sendfile (int __out_fd, int __in_fd, off_t *__offset,
39 (int __out_fd, int __in_fd, __off64_t *__offset,
46 extern ssize_t sendfile64 (int __out_fd, int __in_fd, __off64_t *__offset,
uio.h 67 __off_t __offset) __wur;
79 __off_t __offset) __wur;
83 int __count, __off64_t __offset),
86 int __count, __off64_t __offset),
105 __off64_t __offset) __wur;
117 __off64_t __offset) __wur;
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 22 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
27 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
31 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
33 off_t lseek(int __fd, off_t __offset, int __whence);
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 20 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
23 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
27 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
29 off_t lseek(int __fd, off_t __offset, int __whence);
  /external/flatbuffers/tests/FlatBuffers.Test/
TestTable.cs 34 var off = t.__offset(slot);
45 var off = t.__offset(slot);
56 var off = t.__offset(slot);
67 var off = t.__offset(slot);
78 var off = t.__offset(slot);
89 var off = t.__offset(slot);
100 var off = t.__offset(slot);
111 var off = t.__offset(slot);
122 var off = t.__offset(slot);
133 var off = t.__offset(slot)
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Monster.java 22 public Vec3 pos(Vec3 obj) { int o = __offset(4); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; }
23 public short mana() { int o = __offset(6); return o != 0 ? bb.getShort(o + bb_pos) : 150; }
24 public boolean mutateMana(short mana) { int o = __offset(6); if (o != 0) { bb.putShort(o + bb_pos, mana); return true; } else { return false; } }
25 public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 100; }
26 public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, hp); return true; } else { return false; } }
27 public String name() { int o = __offset(10); return o != 0 ? __string(o + bb_pos) : null; }
29 public int inventory(int j) { int o = __offset(14); return o != 0 ? bb.get(__vector(o) + j * 1) & 0xFF : 0; }
30 public int inventoryLength() { int o = __offset(14); return o != 0 ? __vector_len(o) : 0; }
32 public boolean mutateInventory(int j, int inventory) { int o = __offset(14); if (o != 0) { bb.put(__vector(o) + j * 1, (byte)inventory); return true; } else { return false; } }
33 public byte color() { int o = __offset(16); return o != 0 ? bb.get(o + bb_pos) : 8;
    [all...]
Monster.cs 20 public Vec3? Pos { get { int o = __p.__offset(4); return o != 0 ? (Vec3?)(new Vec3()).__assign(o + __p.bb_pos, __p.bb) : null; } }
21 public short Mana { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) : (short)150; } }
22 public bool MutateMana(short mana) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutShort(o + __p.bb_pos, mana); return true; } else { return false; } }
23 public short Hp { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) : (short)100; } }
24 public bool MutateHp(short hp) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.bb_pos, hp); return true; } else { return false; } }
25 public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
27 public byte Inventory(int j) { int o = __p.__offset(14); return o != 0 ? __p.bb.Get(__p.__vector(o) + j * 1) : (byte)0; }
28 public int InventoryLength { get { int o = __p.__offset(14); return o != 0 ? __p.__vector_len(o) : 0; } }
30 public bool MutateInventory(int j, byte inventory) { int o = __p.__offset(14); if (o != 0) { __p.bb.Put(__p.__vector(o) + j * 1, inventory); return true; } else { return false; } }
31 public Color Color { get { int o = __p.__offset(16); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p.bb_pos) : Color.Blue; }
    [all...]
Stat.java 17 public String id() { int o = __offset(4); return o != 0 ? __string(o + bb_pos) : null; }
19 public long val() { int o = __offset(6); return o != 0 ? bb.getLong(o + bb_pos) : 0L; }
20 public boolean mutateVal(long val) { int o = __offset(6); if (o != 0) { bb.putLong(o + bb_pos, val); return true; } else { return false; } }
21 public int count() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) & 0xFFFF : 0; }
22 public boolean mutateCount(int count) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, (short)count); return true; } else { return false; } }
Monster.php 54 $o = $this->__offset(4);
63 $o = $this->__offset(6);
72 $o = $this->__offset(8);
78 $o = $this->__offset(10);
88 $o = $this->__offset(14);
97 $o = $this->__offset(14);
114 $o = $this->__offset(16);
123 $o = $this->__offset(18);
132 $o = $this->__offset(20);
141 $o = $this->__offset(22)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
fcntl.h 164 extern int posix_fadvise (int __fd, __off_t __offset, __off_t __len,
168 extern int __REDIRECT_NTH (posix_fadvise, (int __fd, __off64_t __offset,
176 extern int posix_fadvise64 (int __fd, __off64_t __offset, __off64_t __len,
186 extern int posix_fallocate (int __fd, __off_t __offset, __off_t __len);
189 extern int __REDIRECT (posix_fallocate, (int __fd, __off64_t __offset,
197 extern int posix_fallocate64 (int __fd, __off64_t __offset, __off64_t __len);
  /external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
MetadataItem.java 51 int o = __offset(4);
56 int o = __offset(6);
61 int o = __offset(8);
66 int o = __offset(10);
71 int o = __offset(12);
76 int o = __offset(14);
81 int o = __offset(16);
86 int o = __offset(16);
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.java 18 public NamespaceA.NamespaceB.TableInNestedNS fooTable(NamespaceA.NamespaceB.TableInNestedNS obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
19 public byte fooEnum() { int o = __offset(6); return o != 0 ? bb.get(o + bb_pos) : 0; }
20 public boolean mutateFooEnum(byte foo_enum) { int o = __offset(6); if (o != 0) { bb.put(o + bb_pos, foo_enum); return true; } else { return false; } }
22 public NamespaceA.NamespaceB.StructInNestedNS fooStruct(NamespaceA.NamespaceB.StructInNestedNS obj) { int o = __offset(8); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; }
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_cmdbuf.h 49 int __offset = (offset); \
50 if (0 && __offset) { \
52 __FILE__, __func__, __LINE__, __offset); \
54 radeon_cs_write_dword(b_l_rmesa->cmdbuf.cs, __offset); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
unistd.h 50 __off_t __offset, size_t __bufsize) __wur;
52 __off64_t __offset, size_t __bufsize) __wur;
55 __off_t __offset), pread) __wur;
58 __off64_t __offset), pread64) __wur;
61 __off_t __offset, size_t __bufsize), __pread_chk)
66 __off64_t __offset, size_t __bufsize),
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset)
78 return __pread_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf));
81 return __pread_chk_warn (__fd, __buf, __nbytes, __offset,
84 return __pread_alias (__fd, __buf, __nbytes, __offset);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
unistd.h 50 __off_t __offset, size_t __bufsize) __wur;
52 __off64_t __offset, size_t __bufsize) __wur;
55 __off_t __offset), pread) __wur;
58 __off64_t __offset), pread64) __wur;
61 __off_t __offset, size_t __bufsize), __pread_chk)
66 __off64_t __offset, size_t __bufsize),
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset)
78 return __pread_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf));
81 return __pread_chk_warn (__fd, __buf, __nbytes, __offset,
84 return __pread_alias (__fd, __buf, __nbytes, __offset);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
unistd.h 50 __off_t __offset, size_t __bufsize) __wur;
52 __off64_t __offset, size_t __bufsize) __wur;
55 __off_t __offset), pread) __wur;
58 __off64_t __offset), pread64) __wur;
61 __off_t __offset, size_t __bufsize), __pread_chk)
66 __off64_t __offset, size_t __bufsize),
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset)
78 return __pread_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf));
81 return __pread_chk_warn (__fd, __buf, __nbytes, __offset,
84 return __pread_alias (__fd, __buf, __nbytes, __offset);
    [all...]
  /external/elfutils/libelf/
gelf.h 172 extern Elf_Scn *gelf_offscn (Elf *__elf, GElf_Off __offset);
281 extern GElf_Verneed *gelf_getverneed (Elf_Data *__data, int __offset,
285 extern int gelf_update_verneed (Elf_Data *__data, int __offset,
289 extern GElf_Vernaux *gelf_getvernaux (Elf_Data *__data, int __offset,
293 extern int gelf_update_vernaux (Elf_Data *__data, int __offset,
298 extern GElf_Verdef *gelf_getverdef (Elf_Data *__data, int __offset,
302 extern int gelf_update_verdef (Elf_Data *__data, int __offset,
307 extern GElf_Verdaux *gelf_getverdaux (Elf_Data *__data, int __offset,
311 extern int gelf_update_verdaux (Elf_Data *__data, int __offset,
326 extern size_t gelf_getnote (Elf_Data *__data, size_t __offset,
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_bitset.c 38 const size_t __offset = __shift % __BITS_PER_WORD; local
40 if (__offset == 0)
45 const size_t __sub_offset = __BITS_PER_WORD - __offset;
47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
49 _M_w[__wshift] = _M_w[0] << __offset;
60 const size_t __offset = __shift % __BITS_PER_WORD; local
63 if (__offset == 0)
68 const size_t __sub_offset = __BITS_PER_WORD - __offset;
70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
72 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_bitset.c 38 const size_t __offset = __shift % __BITS_PER_WORD; local
40 if (__offset == 0)
45 const size_t __sub_offset = __BITS_PER_WORD - __offset;
47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
49 _M_w[__wshift] = _M_w[0] << __offset;
60 const size_t __offset = __shift % __BITS_PER_WORD; local
63 if (__offset == 0)
68 const size_t __sub_offset = __BITS_PER_WORD - __offset;
70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
72 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_bitset.c 38 const size_t __offset = __shift % __BITS_PER_WORD; local
40 if (__offset == 0)
45 const size_t __sub_offset = __BITS_PER_WORD - __offset;
47 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
49 _M_w[__wshift] = _M_w[0] << __offset;
60 const size_t __offset = __shift % __BITS_PER_WORD; local
63 if (__offset == 0)
68 const size_t __sub_offset = __BITS_PER_WORD - __offset;
70 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
72 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
fcntl.h 211 extern int posix_fadvise (int __fd, __off_t __offset, __off_t __len,
215 extern int __REDIRECT_NTH (posix_fadvise, (int __fd, __off64_t __offset,
223 extern int posix_fadvise64 (int __fd, __off64_t __offset, __off64_t __len,
233 extern int posix_fallocate (int __fd, __off_t __offset, __off_t __len);
236 extern int __REDIRECT (posix_fallocate, (int __fd, __off64_t __offset,
244 extern int posix_fallocate64 (int __fd, __off64_t __offset, __off64_t __len);

Completed in 826 milliseconds

1 2 3 4 5 6 7 8