Home
last modified time | relevance | path

Searched full:__p (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/external/fdlibm/
Dfdlibm.h39 #ifndef __P
42 #define __P(p) p macro
44 #define __P(p) ()
102 extern double ieee_acos __P((double));
103 extern double ieee_asin __P((double));
104 extern double ieee_atan __P((double));
105 extern double ieee_atan2 __P((double, double));
106 extern double ieee_cos __P((double));
107 extern double ieee_sin __P((double));
108 extern double ieee_tan __P((double));
[all …]
/external/cronet/third_party/libc++/src/include/__filesystem/
Doperations.h57 _LIBCPP_EXPORTED_FROM_ABI path __weakly_canonical(path const& __p, error_code* __ec = nullptr);
65 inline _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p) { return __absolute(__p); } in absolute() argument
66 …line _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p, error_code& __ec) { return __absolute(__… in absolute() argument
67 …ine _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p) { return __canonical(_… in canonical() argument
68 …ine _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p, error_code& __ec) { return __canonical(_… in canonical() argument
79 …LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p) { return __create_directories(__p); } in create_directories() argument
80 …DE_FROM_ABI bool create_directories(const path& __p, error_code& __ec) { return __create_directori… in create_directories() argument
83 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p) { return __create_directory(__p in create_directory() argument
84 …E_FROM_ABI bool create_directory(const path& __p, error_code& __ec) noexcept { return __create_dir… in create_directory() argument
85 …HIDE_FROM_ABI bool create_directory(const path& __p, const path& __attrs) { return __create_direct… in create_directory() argument
[all …]
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
20 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
23 …public sbyte JustI8 { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetSbyte(o + __p.bb_po…
24 …public sbyte? MaybeI8 { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetSbyte(o + __p.bb_…
25 …public sbyte DefaultI8 { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetSbyte(o + __p.bb…
26 …public byte JustU8 { get { int o = __p.__offset(10); return o != 0 ? __p.bb.Get(o + __p.bb_pos) : …
27 …public byte? MaybeU8 { get { int o = __p.__offset(12); return o != 0 ? __p.bb.Get(o + __p.bb_pos) …
28 …public byte DefaultU8 { get { int o = __p.__offset(14); return o != 0 ? __p.bb.Get(o + __p.bb_pos)…
29 …public short JustI16 { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetShort(o + __p.bb_…
[all …]
/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
22 …public sbyte I8 { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetSbyte(o + __p.bb_pos) :…
23 …public bool MutateI8(sbyte i8) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + __p.bb… in MutateI8()
24 …public byte U8 { get { int o = __p.__offset(6); return o != 0 ? __p.bb.Get(o + __p.bb_pos) : (byte…
25 …public bool MutateU8(byte u8) { int o = __p.__offset(6); if (o != 0) { __p.bb.Put(o + __p.bb_pos, … in MutateU8()
26 …public short I16 { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) …
27 …public bool MutateI16(short i16) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.… in MutateI16()
28 …public ushort U16 { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetUshort(o + __p.bb_po…
[all …]
DMonster.cs15 private Table __p; field
16 public ByteBuffer ByteBuffer { get { return __p.bb; } }
21 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
24 … Pos { get { int o = __p.__offset(4); return o != 0 ? (MyGame.Example.Vec3?)(new MyGame.Example.Ve…
25 …public short Mana { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos)…
26 …public bool MutateMana(short mana) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutShort(o + __… in MutateMana()
27 …public short Hp { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) :…
28 …public bool MutateHp(short hp) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.bb… in MutateHp()
29 …public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) …
31 public Span<byte> GetNameBytes() { return __p.__vector_as_span<byte>(10, 1); } in GetNameBytes()
[all …]
DVec3.cs14 private Struct __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
16 public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } in __init()
19 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
20 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } in MutateX()
21 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } }
22 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } in MutateY()
23 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } }
24 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } in MutateZ()
25 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } }
[all …]
DArrayStruct.cs14 private Struct __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
16 public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } in __init()
19 public float A { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
20 public void MutateA(float a) { __p.bb.PutFloat(__p.bb_pos + 0, a); } in MutateA()
21 public int B(int j) { return __p.bb.GetInt(__p.bb_pos + 4 + j * 4); } in B()
22 public void MutateB(int j, int b) { __p.bb.PutInt(__p.bb_pos + 4 + j * 4, b); } in MutateB()
23 public sbyte C { get { return __p.bb.GetSbyte(__p.bb_pos + 64); } }
24 public void MutateC(sbyte c) { __p.bb.PutSbyte(__p.bb_pos + 64, c); } in MutateC()
25 …D(int j) { return (new MyGame.Example.NestedStruct()).__assign(__p.bb_pos + 72 + j * 32, __p.bb); } in D()
[all …]
DStat.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
22 …public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n…
24 public Span<byte> GetIdBytes() { return __p.__vector_as_span<byte>(4, 1); } in GetIdBytes()
26 public ArraySegment<byte>? GetIdBytes() { return __p.__vector_as_arraysegment(4); } in GetIdBytes()
28 public byte[] GetIdArray() { return __p.__vector_as_array<byte>(4); } in GetIdArray()
29 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
30 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal()
31 …public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_p…
[all …]
DNestedStruct.cs14 private Struct __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
16 public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } in __init()
19 public int A(int j) { return __p.bb.GetInt(__p.bb_pos + 0 + j * 4); } in A()
20 public void MutateA(int j, int a) { __p.bb.PutInt(__p.bb_pos + 0 + j * 4, a); } in MutateA()
21 …public MyGame.Example.TestEnum B { get { return (MyGame.Example.TestEnum)__p.bb.GetSbyte(__p.bb_po…
22 public void MutateB(MyGame.Example.TestEnum b) { __p.bb.PutSbyte(__p.bb_pos + 8, (sbyte)b); } in MutateB()
23 …public MyGame.Example.TestEnum C(int j) { return (MyGame.Example.TestEnum)__p.bb.GetSbyte(__p.bb_p… in C()
24 …public void MutateC(int j, MyGame.Example.TestEnum c) { __p.bb.PutSbyte(__p.bb_pos + 9 + j * 1, (s… in MutateC()
25 public long D(int j) { return __p.bb.GetLong(__p.bb_pos + 16 + j * 8); } in D()
[all …]
/external/ipsec-tools/src/libipsec/
Dlibpfkey.h48 extern void pfkey_sadump __P((struct sadb_msg *));
49 extern void pfkey_sadump_withports __P((struct sadb_msg *));
50 extern void pfkey_spdump __P((struct sadb_msg *));
51 extern void pfkey_spdump_withports __P((struct sadb_msg *));
103 int ipsec_check_keylen __P((u_int, u_int, u_int));
104 int ipsec_check_keylen2 __P((u_int, u_int, u_int));
105 int ipsec_get_keylen __P((u_int, u_int, struct sadb_alg *));
106 char *ipsec_dump_policy_withports __P((void *, const char *));
107 void ipsec_hexdump __P((const void *, int));
108 const char *ipsec_strerror __P((void));
[all …]
/external/flatbuffers/tests/MyGame/
DMonsterExtra.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
20 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
23 …public double D0 { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetDouble(o + __p.bb_pos)…
24 …public bool MutateD0(double d0) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutDouble(o + __p.… in MutateD0()
25 …public double D1 { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetDouble(o + __p.bb_pos)…
26 …public bool MutateD1(double d1) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutDouble(o + __p.… in MutateD1()
27 …public double D2 { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetDouble(o + __p.bb_pos)…
28 …public bool MutateD2(double d2) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutDouble(o + __p.… in MutateD2()
29 …public double D3 { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetDouble(o + __p.bb_pos…
[all …]
/external/cronet/third_party/libc++/src/include/__utility/
Dpair.h104 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
107 pair& operator=(pair const& __p) {
108 first = __p.first;
109 second = __p.second;
121 pair& operator=(pair<_U1, _U2> const& __p) {
122 first = __p.first;
123 second = __p.second;
229 explicit(!_CheckArgs::template __is_implicit<_U1&, _U2&>()) pair(pair<_U1, _U2>& __p)
232 : first(__p.first), second(__p.second) {}
237 explicit pair(pair<_U1, _U2> const& __p)
[all …]
/external/cronet/third_party/libc++/src/include/__functional/
Dmem_fun_ref.h31 _LIBCPP_INLINE_VISIBILITY explicit mem_fun_t(_Sp (_Tp::*__p)()) in mem_fun_t() argument
32 : __p_(__p) {} in mem_fun_t()
33 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p) const in operator()
34 {return (__p->*__p_)();} in operator()
43 _LIBCPP_INLINE_VISIBILITY explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap)) in mem_fun1_t()
44 : __p_(__p) {} in mem_fun1_t()
45 _LIBCPP_INLINE_VISIBILITY _Sp operator()(_Tp* __p, _Ap __x) const in operator()
46 {return (__p->*__p_)(__x);} in operator()
67 _LIBCPP_INLINE_VISIBILITY explicit mem_fun_ref_t(_Sp (_Tp::*__p)()) in mem_fun_ref_t() argument
68 : __p_(__p) {} in mem_fun_ref_t()
[all …]
/external/flatbuffers/tests/KeywordTest/
DKeywordsInTable.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
22 …ublic KeywordTest.ABC Is { get { int o = __p.__offset(4); return o != 0 ? (KeywordTest.ABC)__p.bb.…
23 …blic bool MutateIs(KeywordTest.ABC @is) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutInt(o +…
24 …rdTest.@public Private { get { int o = __p.__offset(6); return o != 0 ? (KeywordTest.@public)__p.b…
25 …tePrivate(KeywordTest.@public @private) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutInt(o +…
26 …public int Type { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (…
27 …public bool MutateType(int type) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutInt(o + __p.bb… in MutateType()
28 …public bool Default { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos…
[all …]
/external/libcxx/include/
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 …]
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 …]
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 …]
Dforward_list238 static __iter_node_pointer __as_iter_node(__iter_node_pointer __p) {
239 return __p;
242 static __iter_node_pointer __as_iter_node(__non_iter_node_pointer __p) {
243 return static_cast<__iter_node_pointer>(static_cast<__void_pointer>(__p));
310 explicit __forward_list_iterator(__begin_node_pointer __p) _NOEXCEPT
311 : __ptr_(__traits::__as_iter_node(__p)) {}
314 explicit __forward_list_iterator(__node_pointer __p) _NOEXCEPT
315 : __ptr_(__traits::__as_iter_node(__p)) {}
391 explicit __forward_list_const_iterator(__begin_node_pointer __p) _NOEXCEPT
392 : __ptr_(__traits::__as_iter_node(__p)) {}
[all …]
/external/cronet/third_party/libc++/src/include/__memory/
Dauto_ptr.h37 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) _NOEXCEPT : __ptr_(__p) {} in __ptr_() argument
38 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument
39 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT in auto_ptr() argument
40 : __ptr_(__p.release()) {} in auto_ptr()
41 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) _NOEXCEPT
42 {reset(__p.release()); return *this;}
43 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) _NOEXCEPT
44 {reset(__p.release()); return *this;}
45 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT
46 {reset(__p.__ptr_); return *this;}
[all …]
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.cs14 private Table __p; field
15 public ByteBuffer ByteBuffer { get { return __p.bb; } }
19 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
22__p.__offset(4); return o != 0 ? (NamespaceA.NamespaceB.TableInNestedNS?)(new NamespaceA.Namespace…
23 …edNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.EnumInNestedN…
24 …eA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o … in MutateFooEnum()
25 …S FooUnionType { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.NamespaceB.UnionInNest…
26 …le : struct, IFlatbufferObject { int o = __p.__offset(10); return o != 0 ? (TTable?)__p.__union<TT…
28__p.__offset(12); return o != 0 ? (NamespaceA.NamespaceB.StructInNestedNS?)(new NamespaceA.Namesp…
/external/flatbuffers/tests/union_vector/
DMovie.cs11 private Table __p; field
12 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } in __init()
20 … Character MainCharacterType { get { int o = __p.__offset(4); return o != 0 ? (Character)__p.bb.Ge…
21 …ble : struct, IFlatbufferObject { int o = __p.__offset(6); return o != 0 ? (TTable?)__p.__union<TT…
22 …public string MainCharacterAsString() { int o = __p.__offset(6); return o != 0 ? __p.__string(o + in MainCharacterAsString()
29 …blic Character CharactersType(int j) { int o = __p.__offset(8); return o != 0 ? (Character)__p.bb.… in CharactersType()
30 …public int CharactersTypeLength { get { int o = __p.__offset(8); return o != 0 ? __p.__vector_len(…
32 public Span<Character> GetCharactersTypeBytes() { return __p.__vector_as_span<Character>(8, 1); } in GetCharactersTypeBytes()
34 public ArraySegment<byte>? GetCharactersTypeBytes() { return __p.__vector_as_arraysegment(8); } in GetCharactersTypeBytes()
[all …]
/external/cronet/third_party/libc++/src/include/__random/
Dnegative_binomial_distribution.h45 explicit param_type(result_type __k = 1, double __p = 0.5)
46 : __k_(__k), __p_(__p) {} in __k_()
70 explicit negative_binomial_distribution(result_type __k, double __p = 0.5)
71 : __p_(__k, __p) {} in __p_() argument
75 double __p = 0.5)
76 : __p_(__k, __p) {}
79 explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {} in negative_binomial_distribution() argument
89 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p);
100 void param(const param_type& __p) {__p_ = __p;} in param() argument
124 double __p = __pr.p(); in operator() local
[all …]
Dbernoulli_distribution.h39 explicit param_type(double __p = 0.5) : __p_(__p) {} in __p_() argument
61 explicit bernoulli_distribution(double __p) : __p_(param_type(__p)) {} in bernoulli_distribution() argument
64 explicit bernoulli_distribution(double __p = 0.5) : __p_(param_type(__p)) {}
67 explicit bernoulli_distribution(const param_type& __p) : __p_(__p) {} in bernoulli_distribution() argument
76 …e<class _URNG> _LIBCPP_INLINE_VISIBILITY result_type operator()(_URNG& __g, const param_type& __p);
85 void param(const param_type& __p) {__p_ = __p;} in param() argument
105 bernoulli_distribution::operator()(_URNG& __g, const param_type& __p) in operator()
109 return __gen(__g) < __p.p(); in operator()
134 double __p; variable
135 __is >> __p;
[all …]
/external/e2fsprogs/e2fsck/
Dmtrace.h33 #undef __P
34 #define __P(args) args macro
38 #undef __P
39 #define __P(args) ()
61 extern __ptr_t malloc __P ((size_t __size));
64 extern __ptr_t realloc __P ((__ptr_t __ptr, size_t __size));
66 extern __ptr_t calloc __P ((size_t __nmemb, size_t __size));
68 extern void free __P ((__ptr_t __ptr));
71 extern __ptr_t memalign __P ((size_t __alignment, size_t __size));
74 extern __ptr_t valloc __P ((size_t __size));
[all …]

12345678910>>...14