Home
last modified time | relevance | path

Searched refs:__p (Results 1 – 25 of 119) sorted by relevance

12345

/external/flatbuffers/tests/MyGame/Example/
DMonster.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
22 …public Vec3? Pos { get { int o = __p.__offset(4); return o != 0 ? (Vec3?)(new Vec3()).__assign(o +…
23 …public short Mana { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos)…
24 …public bool MutateMana(short mana) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutShort(o + __… in MutateMana()
25 …public short Hp { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) :…
26 …public bool MutateHp(short hp) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.bb… in MutateHp()
27 …public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) …
29 public Span<byte> GetNameBytes() { return __p.__vector_as_span(10); } in GetNameBytes()
[all …]
DTypeAliases.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public sbyte I8 { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetSbyte(o + __p.bb_pos) :…
21 …public bool MutateI8(sbyte i8) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + __p.bb… in MutateI8()
22 …public byte U8 { get { int o = __p.__offset(6); return o != 0 ? __p.bb.Get(o + __p.bb_pos) : (byte…
23 …public bool MutateU8(byte u8) { int o = __p.__offset(6); if (o != 0) { __p.bb.Put(o + __p.bb_pos, … in MutateU8()
24 …public short I16 { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) …
25 …public bool MutateI16(short i16) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.… in MutateI16()
26 …public ushort U16 { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetUshort(o + __p.bb_po…
[all …]
DVec3.cs13 private Struct __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
19 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } in MutateX()
20 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } }
21 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } in MutateY()
22 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } }
23 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } in MutateZ()
24 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } }
[all …]
DStat.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n…
22 public Span<byte> GetIdBytes() { return __p.__vector_as_span(4); } in GetIdBytes()
24 public ArraySegment<byte>? GetIdBytes() { return __p.__vector_as_arraysegment(4); } in GetIdBytes()
26 public byte[] GetIdArray() { return __p.__vector_as_array<byte>(4); } in GetIdArray()
27 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
28 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal()
29 …public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_p…
[all …]
DAbility.cs13 private Struct __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public uint Id { get { return __p.bb.GetUint(__p.bb_pos + 0); } }
19 public void MutateId(uint id) { __p.bb.PutUint(__p.bb_pos + 0, id); } in MutateId()
20 public uint Distance { get { return __p.bb.GetUint(__p.bb_pos + 4); } }
21 public void MutateDistance(uint distance) { __p.bb.PutUint(__p.bb_pos + 4, distance); } in MutateDistance()
DTest.cs13 private Struct __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public short A { get { return __p.bb.GetShort(__p.bb_pos + 0); } }
19 public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); } in MutateA()
20 public sbyte B { get { return __p.bb.GetSbyte(__p.bb_pos + 2); } }
21 public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); } in MutateB()
DTestSimpleTableWithEnum.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public Color Color { get { int o = __p.__offset(4); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p
21 …public bool MutateColor(Color color) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + in MutateColor()
DReferrable.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public ulong Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetUlong(o + __p.bb_pos) :…
21 …public bool MutateId(ulong id) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutUlong(o + __p.bb… in MutateId()
/external/flatbuffers/tests/MyGame/
DMonsterExtra.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public float TestfNan { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetFloat(o + __p.bb_…
21 …c bool MutateTestfNan(float testf_nan) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutFloat(o … in MutateTestfNan()
22 …public float TestfPinf { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetFloat(o + __p.bb…
23 …bool MutateTestfPinf(float testf_pinf) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutFloat(o … in MutateTestfPinf()
24 …public float TestfNinf { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetFloat(o + __p.bb…
25 …bool MutateTestfNinf(float testf_ninf) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutFloat(o … in MutateTestfNinf()
26 …public double TestdNan { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetDouble(o + __p.…
[all …]
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20__p.__offset(4); return o != 0 ? (NamespaceA.NamespaceB.TableInNestedNS?)(new NamespaceA.Namespace…
21 …edNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.EnumInNestedN…
22 …eA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o … in MutateFooEnum()
23 …= __p.__offset(8); return o != 0 ? (NamespaceA.NamespaceB.StructInNestedNS?)(new NamespaceA.Namesp…
DSecondTableInA.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …et { int o = __p.__offset(4); return o != 0 ? (NamespaceC.TableInC?)(new NamespaceC.TableInC()).__…
/external/flatbuffers/tests/union_vector/
DMovie.cs10 private Table __p; field
11 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 … Character MainCharacterType { get { int o = __p.__offset(4); return o != 0 ? (Character)__p.bb.Ge…
19 …() where TTable : struct, IFlatbufferObject { int o = __p.__offset(6); return o != 0 ? (TTable?)__…
20 …blic Character CharactersType(int j) { int o = __p.__offset(8); return o != 0 ? (Character)__p.bb.… in CharactersType()
21 …public int CharactersTypeLength { get { int o = __p.__offset(8); return o != 0 ? __p.__vector_len(…
23 public Span<byte> GetCharactersTypeBytes() { return __p.__vector_as_span(8); } in GetCharactersTypeBytes()
25 public ArraySegment<byte>? GetCharactersTypeBytes() { return __p.__vector_as_arraysegment(8); } in GetCharactersTypeBytes()
27 public Character[] GetCharactersTypeArray() { return __p.__vector_as_array<Character>(8); } in GetCharactersTypeArray()
[all …]
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.cs13 private Struct __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA()
20 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } }
21 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
DTableInNestedNS.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …public int Foo { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (i…
21 …public bool MutateFoo(int foo) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutInt(o + __p.bb_p… in MutateFoo()
/external/clang/lib/Headers/
Dadxintrin.h37 unsigned int *__p) in _addcarryx_u32() argument
39 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p); in _addcarryx_u32()
45 unsigned long long __y, unsigned long long *__p) in _addcarryx_u64() argument
47 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p); in _addcarryx_u64()
54 unsigned int *__p) in _addcarry_u32() argument
56 return __builtin_ia32_addcarry_u32(__cf, __x, __y, __p); in _addcarry_u32()
62 unsigned long long __y, unsigned long long *__p) in _addcarry_u64() argument
64 return __builtin_ia32_addcarry_u64(__cf, __x, __y, __p); in _addcarry_u64()
70 unsigned int *__p) in _subborrow_u32() argument
72 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p); in _subborrow_u32()
[all …]
Dfxsrintrin.h34 _fxsave(void *__p) { in _fxsave() argument
35 return __builtin_ia32_fxsave(__p); in _fxsave()
39 _fxsave64(void *__p) { in _fxsave64() argument
40 return __builtin_ia32_fxsave64(__p); in _fxsave64()
44 _fxrstor(void *__p) { in _fxrstor() argument
45 return __builtin_ia32_fxrstor(__p); in _fxrstor()
49 _fxrstor64(void *__p) { in _fxrstor64() argument
50 return __builtin_ia32_fxrstor64(__p); in _fxrstor64()
Dxsaveintrin.h35 _xsave(void *__p, unsigned long long __m) { in _xsave() argument
36 return __builtin_ia32_xsave(__p, __m); in _xsave()
40 _xrstor(void *__p, unsigned long long __m) { in _xrstor() argument
41 return __builtin_ia32_xrstor(__p, __m); in _xrstor()
46 _xsave64(void *__p, unsigned long long __m) { in _xsave64() argument
47 return __builtin_ia32_xsave64(__p, __m); in _xsave64()
51 _xrstor64(void *__p, unsigned long long __m) { in _xrstor64() argument
52 return __builtin_ia32_xrstor64(__p, __m); in _xrstor64()
Dxsavesintrin.h35 _xsaves(void *__p, unsigned long long __m) { in _xsaves() argument
36 __builtin_ia32_xsaves(__p, __m); in _xsaves()
40 _xrstors(void *__p, unsigned long long __m) { in _xrstors() argument
41 __builtin_ia32_xrstors(__p, __m); in _xrstors()
46 _xrstors64(void *__p, unsigned long long __m) { in _xrstors64() argument
47 __builtin_ia32_xrstors64(__p, __m); in _xrstors64()
51 _xsaves64(void *__p, unsigned long long __m) { in _xsaves64() argument
52 __builtin_ia32_xsaves64(__p, __m); in _xsaves64()
/external/flatbuffers/tests/namespace_test/NamespaceC/
DTableInC.cs13 private Table __p; field
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 …nt o = __p.__offset(4); return o != 0 ? (NamespaceA.TableInFirstNS?)(new NamespaceA.TableInFirstNS…
21 …nt o = __p.__offset(6); return o != 0 ? (NamespaceA.SecondTableInA?)(new NamespaceA.SecondTableInA…
/external/libcxx/include/
Dsstream264 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
270 __binp = __rhs.eback() - __p;
271 __ninp = __rhs.gptr() - __p;
272 __einp = __rhs.egptr() - __p;
279 __bout = __rhs.pbase() - __p;
280 __nout = __rhs.pptr() - __p;
281 __eout = __rhs.epptr() - __p;
283 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
285 __p = const_cast<char_type*>(__str_.data());
287 this->setg(__p + __binp, __p + __ninp, __p + __einp);
[all …]
Dfilesystem520 void permissions(perms __p) noexcept { __prms_ = __p; }
762 _LIBCPP_INLINE_VISIBILITY path(const path& __p) : __pn_(__p.__pn_) {}
763 _LIBCPP_INLINE_VISIBILITY path(path&& __p) noexcept
764 : __pn_(_VSTD::move(__p.__pn_)) {}
793 path& operator=(const path& __p) {
794 __pn_ = __p.__pn_;
799 path& operator=(path&& __p) noexcept {
800 __pn_ = _VSTD::move(__p.__pn_);
845 path& operator/=(const path& __p) {
846 if (__p.is_absolute()) {
[all …]
Dlist230 __link_pointer __unsafe_link_pointer_cast(__link_pointer __p) {
231 return __p;
235 __link_pointer __unsafe_link_pointer_cast(__non_link_pointer __p) {
236 return static_cast<__link_pointer>(static_cast<_VoidPtr>(__p));
296 explicit __list_iterator(__link_pointer __p, const void* __c) _NOEXCEPT
297 : __ptr_(__p)
303 explicit __list_iterator(__link_pointer __p) _NOEXCEPT : __ptr_(__p) {}
329 __list_iterator(const __list_iterator& __p)
330 : __ptr_(__p.__ptr_)
332 __get_db()->__iterator_copy(this, &__p);
[all …]
Dcharconv171 static _LIBCPP_INLINE_VISIBILITY char* __convert(_Tp __v, char* __p)
173 return __u64toa(__v, __p);
193 static _LIBCPP_INLINE_VISIBILITY char* __convert(_Tp __v, char* __p)
195 return __u32toa(__v, __p);
249 __read(char const* __p, char const* __ep, type& __a, type& __b)
256 if (!('0' <= *__p && *__p <= '9'))
258 __cprod[--__i] = *__p++ - '0';
259 } while (__p != __ep && __i != 0);
264 --__p;
265 return __p;
[all …]
/external/clang/test/CodeGen/
Dadc-builtins.c8 unsigned int __y, unsigned int *__p) { in test_addcarry_u32() argument
11 return _addcarry_u32(__cf, __x, __y, __p); in test_addcarry_u32()
16 unsigned long long *__p) { in test_addcarry_u64() argument
19 return _addcarry_u64(__cf, __x, __y, __p); in test_addcarry_u64()
23 unsigned int __y, unsigned int *__p) { in test_subborrow_u32() argument
26 return _subborrow_u32(__cf, __x, __y, __p); in test_subborrow_u32()
31 unsigned long long *__p) { in test_subborrow_u64() argument
34 return _subborrow_u64(__cf, __x, __y, __p); in test_subborrow_u64()
/external/tcpdump/
Dcpack.h49 #define cpack_int8(__s, __p) cpack_uint8((__s), (uint8_t*)(__p)) argument
50 #define cpack_int16(__s, __p) cpack_uint16((__s), (uint16_t*)(__p)) argument
51 #define cpack_int32(__s, __p) cpack_uint32((__s), (uint32_t*)(__p)) argument
52 #define cpack_int64(__s, __p) cpack_uint64((__s), (uint64_t*)(__p)) argument

12345