/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.cs | 12 private Table __p; field 13 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 Vec3? Pos { get { int o = __p.__offset(4); return o != 0 ? (Vec3?)(new Vec3()).__assign(o +… 21 …public short Mana { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos)… 22 …public bool MutateMana(short mana) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutShort(o + __… in MutateMana() 23 …public short Hp { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) :… 24 …public bool MutateHp(short hp) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.bb… in MutateHp() 25 …public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) … 26 public ArraySegment<byte>? GetNameBytes() { return __p.__vector_as_arraysegment(10); } in GetNameBytes() [all …]
|
D | Vec3.cs | 11 private Struct __p; field 12 public ByteBuffer ByteBuffer { get { return __p.bb; } } 13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init() 16 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } } 17 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } in MutateX() 18 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } } 19 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } in MutateY() 20 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } } 21 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } in MutateZ() 22 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } } [all …]
|
D | Stat.cs | 11 private Table __p; field 12 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 string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n… 19 public ArraySegment<byte>? GetIdBytes() { return __p.__vector_as_arraysegment(4); } in GetIdBytes() 20 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : … 21 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal() 22 …public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_p… 23 …public bool MutateCount(ushort count) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutUshort(o … in MutateCount()
|
D | Test.cs | 11 private Struct __p; field 12 public ByteBuffer ByteBuffer { get { return __p.bb; } } 13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init() 16 public short A { get { return __p.bb.GetShort(__p.bb_pos + 0); } } 17 public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); } in MutateA() 18 public sbyte B { get { return __p.bb.GetSbyte(__p.bb_pos + 2); } } 19 public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); } in MutateB()
|
D | TestSimpleTableWithEnum.cs | 11 private Table __p; field 12 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 Color Color { get { int o = __p.__offset(4); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p… 19 …public bool MutateColor(Color color) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + … in MutateColor()
|
/external/flatbuffers/tests/namespace_test/NamespaceA/ |
D | TableInFirstNS.cs | 11 private Table __p; field 12 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 …__p.__offset(4); return o != 0 ? (NamespaceA.NamespaceB.TableInNestedNS?)(new NamespaceA.Namespace… 19 …edNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.EnumInNestedN… 20 …eA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o … in MutateFooEnum() 21 …= __p.__offset(8); return o != 0 ? (NamespaceA.NamespaceB.StructInNestedNS?)(new NamespaceA.Namesp…
|
D | SecondTableInA.cs | 11 private Table __p; field 12 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 …et { int o = __p.__offset(4); return o != 0 ? (NamespaceC.TableInC?)(new NamespaceC.TableInC()).__…
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | StructInNestedNS.cs | 11 private Struct __p; field 12 public ByteBuffer ByteBuffer { get { return __p.bb; } } 13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init() 16 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } } 17 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA() 18 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } } 19 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
|
D | TableInNestedNS.cs | 11 private Table __p; field 12 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 Foo { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (i… 19 …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/ |
D | adxintrin.h | 37 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 …]
|
D | fxsrintrin.h | 34 _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()
|
D | xsavesintrin.h | 35 _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()
|
D | xsaveintrin.h | 35 _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()
|
D | rdseedintrin.h | 35 _rdseed16_step(unsigned short *__p) in _rdseed16_step() argument 37 return __builtin_ia32_rdseed16_step(__p); in _rdseed16_step() 41 _rdseed32_step(unsigned int *__p) in _rdseed32_step() argument 43 return __builtin_ia32_rdseed32_step(__p); in _rdseed32_step() 48 _rdseed64_step(unsigned long long *__p) in _rdseed64_step() argument 50 return __builtin_ia32_rdseed64_step(__p); in _rdseed64_step()
|
D | xmmintrin.h | 1577 _mm_loadh_pi(__m128 __a, const __m64 *__p) in _mm_loadh_pi() argument 1583 __mm_loadh_pi_v2f32 __b = ((struct __mm_loadh_pi_struct*)__p)->__u; in _mm_loadh_pi() 1604 _mm_loadl_pi(__m128 __a, const __m64 *__p) in _mm_loadl_pi() argument 1610 __mm_loadl_pi_v2f32 __b = ((struct __mm_loadl_pi_struct*)__p)->__u; in _mm_loadl_pi() 1631 _mm_load_ss(const float *__p) in _mm_load_ss() argument 1636 float __u = ((struct __mm_load_ss_struct*)__p)->__u; in _mm_load_ss() 1653 _mm_load1_ps(const float *__p) in _mm_load1_ps() argument 1658 float __u = ((struct __mm_load1_ps_struct*)__p)->__u; in _mm_load1_ps() 1676 _mm_load_ps(const float *__p) in _mm_load_ps() argument 1678 return *(__m128*)__p; in _mm_load_ps() [all …]
|
/external/flatbuffers/tests/namespace_test/NamespaceC/ |
D | TableInC.cs | 11 private Table __p; field 12 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 …nt o = __p.__offset(4); return o != 0 ? (NamespaceA.TableInFirstNS?)(new NamespaceA.TableInFirstNS… 19 …nt o = __p.__offset(6); return o != 0 ? (NamespaceA.SecondTableInA?)(new NamespaceA.SecondTableInA…
|
/external/clang/test/CodeGen/ |
D | adc-builtins.c | 8 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/libcxx/include/experimental/ |
D | filesystem | 445 void permissions(perms __p) _NOEXCEPT { 446 __prms_ = __p; 681 _LIBCPP_INLINE_VISIBILITY path(const path& __p) : __pn_(__p.__pn_) {} 682 _LIBCPP_INLINE_VISIBILITY path(path&& __p) _NOEXCEPT : __pn_(_VSTD::move(__p.__pn_)) {} 714 path& operator=(const path& __p) { 715 __pn_ = __p.__pn_; 720 path& operator=(path&& __p) _NOEXCEPT { 721 __pn_ = _VSTD::move(__p.__pn_); 775 path& operator/=(const path& __p) { 776 _LIBCPP_ASSERT(!__p.has_root_name(), [all …]
|
D | memory_resource | 109 void deallocate(void * __p, size_t __bytes, size_t __align = __max_align) 110 { do_deallocate(__p, __bytes, __align); } 195 void deallocate(_ValueType * __p, size_t __n) _NOEXCEPT { 198 __res_->deallocate(__p, __n * sizeof(_ValueType), alignof(_ValueType)); 203 void construct(_Tp* __p, _Ts &&... __args) 206 __p, resource(), _VSTD::forward<_Ts>(__args)... 212 void construct(pair<_T1, _T2>* __p, piecewise_construct_t, 215 ::new ((void*)__p) pair<_T1, _T2>(piecewise_construct 235 void construct(pair<_T1, _T2>* __p) { 236 construct(__p, piecewise_construct, tuple<>(), tuple<>()); [all …]
|
/external/syslinux/com32/include/ |
D | com32.h | 141 static inline uint16_t SEG(const volatile void *__p) in SEG() argument 143 if (__unlikely((uintptr_t)__p > 0xfffff)) in SEG() 144 __bad_SEG(__p); in SEG() 146 return (uint16_t) (((uintptr_t) __p) >> 4); in SEG() 149 static inline uint16_t SEG(const volatile void *__p) in SEG() argument 151 return (uint16_t) (((uintptr_t) __p) >> 4); in SEG() 155 static inline uint16_t OFFS(const volatile void *__p) in OFFS() argument 158 return (uint16_t) (uintptr_t) __p & 0x000F; in OFFS() 161 static inline uint16_t OFFS_WRT(const volatile void *__p, uint16_t __seg) in OFFS_WRT() argument 163 return (uint16_t) ((uintptr_t) __p - ((uintptr_t) __seg << 4)); in OFFS_WRT() [all …]
|
/external/tcpdump/ |
D | cpack.h | 49 #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
|
/external/libcxx/include/ |
D | sstream | 264 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 …]
|
D | list | 217 __link_pointer __unsafe_link_pointer_cast(__link_pointer __p) { 218 return __p; 222 __link_pointer __unsafe_link_pointer_cast(__non_link_pointer __p) { 223 return static_cast<__link_pointer>(static_cast<_VoidPtr>(__p)); 283 explicit __list_iterator(__link_pointer __p, const void* __c) _NOEXCEPT 284 : __ptr_(__p) 290 explicit __list_iterator(__link_pointer __p) _NOEXCEPT : __ptr_(__p) {} 316 __list_iterator(const __list_iterator& __p) 317 : __ptr_(__p.__ptr_) 319 __get_db()->__iterator_copy(this, &__p); [all …]
|
D | forward_list | 226 static __iter_node_pointer __as_iter_node(__iter_node_pointer __p) { 227 return __p; 230 static __iter_node_pointer __as_iter_node(__non_iter_node_pointer __p) { 231 return static_cast<__iter_node_pointer>(static_cast<__void_pointer>(__p)); 298 explicit __forward_list_iterator(__begin_node_pointer __p) _NOEXCEPT 299 : __ptr_(__traits::__as_iter_node(__p)) {} 302 explicit __forward_list_iterator(__node_pointer __p) _NOEXCEPT 303 : __ptr_(__traits::__as_iter_node(__p)) {} 379 explicit __forward_list_const_iterator(__begin_node_pointer __p) _NOEXCEPT 380 : __ptr_(__traits::__as_iter_node(__p)) {} [all …]
|
D | utility | 339 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} 342 pair& operator=(pair const& __p) { 343 first = __p.first; 344 second = __p.second; 443 explicit pair(pair<_U1, _U2> const& __p) 444 : first(__p.first), second(__p.second) {} 450 pair(pair<_U1, _U2> const& __p) 451 : first(__p.first), second(__p.second) {} 457 explicit pair(pair<_U1, _U2>&&__p) 458 : first(_VSTD::forward<_U1>(__p.first)), second(_VSTD::forward<_U2>(__p.second)) {} [all …]
|