Home
last modified time | relevance | path

Searched full:p (Results 1 – 25 of 10009) sorted by relevance

12345678910>>...401

/third_party/skia/third_party/externals/angle2/src/libGL/
Dproc_table_wgl_autogen.cpp21 #define P(FUNC) reinterpret_cast<PROC>(FUNC) macro
26 {"glAccum", P(GL_Accum)},
27 {"glActiveShaderProgram", P(GL_ActiveShaderProgram)},
28 {"glActiveTexture", P(GL_ActiveTexture)},
29 {"glAlphaFunc", P(GL_AlphaFunc)},
30 {"glAreTexturesResident", P(GL_AreTexturesResident)},
31 {"glArrayElement", P(GL_ArrayElement)},
32 {"glAttachShader", P(GL_AttachShader)},
33 {"glBegin", P(GL_Begin)},
34 {"glBeginConditionalRender", P(GL_BeginConditionalRender)},
[all …]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dproc_table_egl_autogen.cpp25 #define P(FUNC) reinterpret_cast<__eglMustCastToProperFunctionPointerType>(FUNC) macro
30 {"ANGLEGetDisplayPlatform", P(ANGLEGetDisplayPlatform)},
31 {"ANGLEResetDisplayPlatform", P(ANGLEResetDisplayPlatform)},
32 {"eglBindAPI", P(EGL_BindAPI)},
33 {"eglBindTexImage", P(EGL_BindTexImage)},
34 {"eglChooseConfig", P(EGL_ChooseConfig)},
35 {"eglClientWaitSync", P(EGL_ClientWaitSync)},
36 {"eglClientWaitSyncKHR", P(EGL_ClientWaitSyncKHR)},
37 {"eglCopyBuffers", P(EGL_CopyBuffers)},
38 {"eglCreateContext", P(EGL_CreateContext)},
[all …]
/third_party/nghttp2/fuzz/corpus/h2spec/
D1e27187b10c02fe7e151818ddd0722f69830ac04975ddb5a9d83cdc406cbb6785 …������A��\ �p�d���������A��\ �p�d���������A��\ �p�d���������A��\ �p�d���…
6 ���A��\ �p�d���������A��\ �p�d���������A��\ �p�d���������A��\ �p�d���������…
/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_qlog.c43 static uint8_t *write_string_impl(uint8_t *p, const uint8_t *data, in write_string_impl() argument
45 *p++ = '"'; in write_string_impl()
47 p = ngtcp2_cpymem(p, data, datalen); in write_string_impl()
49 *p++ = '"'; in write_string_impl()
50 return p; in write_string_impl()
58 static uint8_t *write_hex(uint8_t *p, const uint8_t *data, size_t datalen) { in write_hex() argument
60 *p++ = '"'; in write_hex()
62 *p++ = (uint8_t)NGTCP2_LOWER_XDIGITS[*b >> 4]; in write_hex()
63 *p++ = (uint8_t)NGTCP2_LOWER_XDIGITS[*b & 0xf]; in write_hex()
65 *p++ = '"'; in write_hex()
[all …]
/third_party/python/Parser/
Dparser.c504 static mod_ty file_rule(Parser *p);
505 static mod_ty interactive_rule(Parser *p);
506 static mod_ty eval_rule(Parser *p);
507 static mod_ty func_type_rule(Parser *p);
508 static expr_ty fstring_rule(Parser *p);
509 static asdl_expr_seq* type_expressions_rule(Parser *p);
510 static asdl_stmt_seq* statements_rule(Parser *p);
511 static asdl_stmt_seq* statement_rule(Parser *p);
512 static asdl_stmt_seq* statement_newline_rule(Parser *p);
513 static asdl_stmt_seq* simple_stmts_rule(Parser *p);
[all …]
/third_party/typescript/tests/baselines/reference/
DthisTypeAccessibility.types5 private p: number = 123;
6 >p : number
31 extension1(p: number): void;
32 >extension1 : (p: number) => void
33 >p : number
35 extension2(p: number): void;
36 >extension2 : (p: number) => void
37 >p : number
39 extension3(p: number): void;
40 >extension3 : (p: number) => void
[all …]
/third_party/FreeBSD/lib/msun/ld128/
Ds_logl.c50 * log(1 + d) = p(d)
52 * where p(d) = d - 0.5*d*d + ... is a special minimax polynomial of
56 * sometimes (if |k| is not large) the first term in p(d) must be evaluated
58 * rest of p(d). In the worst case when k = 0 and log(X_i) is 0, the final
59 * error is controlled mainly by the error in the second term in p(d). The
70 * degree of p(d)) small by using a large number of intervals. Using
72 * factor of 2 for a given number of intervals. p(d) is special only
97 * |log(1 + d)/d - p(d)| < 2**-122.7
101 P3 = 3.33333333333333333333333333333233795e-1L, /* 0x15555555555555555555555554d42.0p-114L */
102 P4 = -2.49999999999999999999999999941139296e-1L, /* -0x1ffffffffffffffffffffffdab14e.0p-115L */
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_vec4.inl37 template <typename T, precision P, bool Aligned>
40 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b)
42 return tvec4<T, P>(a.x + b.x, a.y + b.y, a.z + b.z, a.w + b.w);
46 template <typename T, precision P, bool Aligned>
49 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b)
51 return tvec4<T, P>(a.x - b.x, a.y - b.y, a.z - b.z, a.w - b.w);
55 template <typename T, precision P, bool Aligned>
58 GLM_FUNC_QUALIFIER static tvec4<T, P> call(tvec4<T, P> const & a, tvec4<T, P> const & b)
60 return tvec4<T, P>(a.x * b.x, a.y * b.y, a.z * b.z, a.w * b.w);
64 template <typename T, precision P, bool Aligned>
[all …]
Dtype_vec2.hpp18 template <typename T, precision P = defaultp>
24 typedef tvec2<T, P> type;
25 typedef tvec2<bool, P> bool_type;
50 _GLM_SWIZZLE2_2_MEMBERS(T, P, glm::tvec2, x, y)
51 _GLM_SWIZZLE2_2_MEMBERS(T, P, glm::tvec2, r, g)
52 _GLM_SWIZZLE2_2_MEMBERS(T, P, glm::tvec2, s, t)
53 _GLM_SWIZZLE2_3_MEMBERS(T, P, glm::tvec3, x, y)
54 _GLM_SWIZZLE2_3_MEMBERS(T, P, glm::tvec3, r, g)
55 _GLM_SWIZZLE2_3_MEMBERS(T, P, glm::tvec3, s, t)
56 _GLM_SWIZZLE2_4_MEMBERS(T, P, glm::tvec4, x, y)
[all …]
Dtype_vec2.inl7 template <typename T, precision P>
8 const tvec2<T, P> tvec2<T, P>::ZERO(static_cast<T>(0), static_cast<T>(0));
10 template <typename T, precision P>
11 const tvec2<T, P> tvec2<T, P>::X(static_cast<T>(1), static_cast<T>(0));
13 template <typename T, precision P>
14 const tvec2<T, P> tvec2<T, P>::Y(static_cast<T>(0), static_cast<T>(1));
16 template <typename T, precision P>
17 const tvec2<T, P> tvec2<T, P>::XY(static_cast<T>(1), static_cast<T>(1));
22 template <typename T, precision P>
23 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec2<T, P>::tvec2()
[all …]
Dtype_vec1.inl9 template <typename T, precision P>
10 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1()
18 template <typename T, precision P>
19 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, P> const & v)
24 template <typename T, precision P>
26 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(tvec1<T, Q> const & v)
32 template <typename T, precision P>
33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(ctor)
36 template <typename T, precision P>
37 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec1<T, P>::tvec1(T scalar)
[all …]
Dtype_vec3.hpp18 template <typename T, precision P = defaultp>
24 typedef tvec3<T, P> type;
25 typedef tvec3<bool, P> bool_type;
47 struct{ T s, t, p; }; member
50 _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, x, y, z)
51 _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, r, g, b)
52 _GLM_SWIZZLE3_2_MEMBERS(T, P, glm::tvec2, s, t, p)
53 _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, x, y, z)
54 _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, r, g, b)
55 _GLM_SWIZZLE3_3_MEMBERS(T, P, glm::tvec3, s, t, p)
[all …]
/third_party/skia/third_party/externals/tint/test/expressions/swizzle/read/vec3/
Di32.wgsl.expected.hlsl10 static S P = (S)0;
13 int3 v = P.v;
14 int x = P.v.x;
15 int y = P.v.y;
16 int z = P.v.z;
17 int2 xx = P.v.xx;
18 int2 xy = P.v.xy;
19 int2 xz = P.v.xz;
20 int2 yx = P.v.yx;
21 int2 yy = P.v.yy;
[all …]
Du32.wgsl5 var<private> P : S;
8 var v = P.v;
10 var x = P.v.x;
11 var y = P.v.y;
12 var z = P.v.z;
14 var xx = P.v.xx;
15 var xy = P.v.xy;
16 var xz = P.v.xz;
17 var yx = P.v.yx;
18 var yy = P.v.yy;
[all …]
Di32.wgsl5 var<private> P : S;
8 var v = P.v;
10 var x = P.v.x;
11 var y = P.v.y;
12 var z = P.v.z;
14 var xx = P.v.xx;
15 var xy = P.v.xy;
16 var xz = P.v.xz;
17 var yx = P.v.yx;
18 var yy = P.v.yy;
[all …]
Di32.wgsl.expected.wgsl5 var<private> P : S;
8 var v = P.v;
9 var x = P.v.x;
10 var y = P.v.y;
11 var z = P.v.z;
12 var xx = P.v.xx;
13 var xy = P.v.xy;
14 var xz = P.v.xz;
15 var yx = P.v.yx;
16 var yy = P.v.yy;
[all …]
Df32.wgsl.expected.hlsl10 static S P = (S)0;
13 float3 v = P.v;
14 float x = P.v.x;
15 float y = P.v.y;
16 float z = P.v.z;
17 float2 xx = P.v.xx;
18 float2 xy = P.v.xy;
19 float2 xz = P.v.xz;
20 float2 yx = P.v.yx;
21 float2 yy = P.v.yy;
[all …]
Du32.wgsl.expected.hlsl10 static S P = (S)0;
13 uint3 v = P.v;
14 uint x = P.v.x;
15 uint y = P.v.y;
16 uint z = P.v.z;
17 uint2 xx = P.v.xx;
18 uint2 xy = P.v.xy;
19 uint2 xz = P.v.xz;
20 uint2 yx = P.v.yx;
21 uint2 yy = P.v.yy;
[all …]
Df32.wgsl5 var<private> P : S;
8 var v = P.v;
10 var x = P.v.x;
11 var y = P.v.y;
12 var z = P.v.z;
14 var xx = P.v.xx;
15 var xy = P.v.xy;
16 var xz = P.v.xz;
17 var yx = P.v.yx;
18 var yy = P.v.yy;
[all …]
Df32.wgsl.expected.wgsl5 var<private> P : S;
8 var v = P.v;
9 var x = P.v.x;
10 var y = P.v.y;
11 var z = P.v.z;
12 var xx = P.v.xx;
13 var xy = P.v.xy;
14 var xz = P.v.xz;
15 var yx = P.v.yx;
16 var yy = P.v.yy;
[all …]
Du32.wgsl.expected.wgsl5 var<private> P : S;
8 var v = P.v;
9 var x = P.v.x;
10 var y = P.v.y;
11 var z = P.v.z;
12 var xx = P.v.xx;
13 var xy = P.v.xy;
14 var xz = P.v.xz;
15 var yx = P.v.yx;
16 var yy = P.v.yy;
[all …]
/third_party/pcre2/pcre2/testdata/
Dtestinput266 /^\p{sc=Latin}/utf
9 /^\p{Script=Latn}/utf
13 /^\p{Latin}/utf
16 /^\p{scx=Latn}/utf
20 /^\p{Latin}/utf
23 /^\p{sc=Latin}/utf
27 /^\p{Latin}/utf
31 /^\p{sc=Greek}/utf
34 /^\p{Script=Grek}/utf
38 /^\p{Greek}/utf
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/
Drepeat.h1 #define R0(P, S) P(S) argument
2 #define R1(P, S) R0(P,S##0) R0(P,S##1) argument
3 #define R2(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) argument
4 #define R3(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) R0(P,S##4) R0(P,S##5) R0(P,S##… argument
5 #define R4(P, S) R3(P,S##0) R3(P,S##1) argument
6 #define R5(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) argument
7 #define R6(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) R3(P,S##4) R3(P,S##5) R3(P,S##… argument
8 #define R7(P, S) R6(P,S##0) R6(P,S##1) argument
9 #define R8(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) argument
10 #define R9(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) R6(P,S##4) R6(P,S##5) R6(P,S##… argument
[all …]
/third_party/python/Lib/test/
Dtest_pathlib.py187 p = self.cls('a')
188 self.flavour = p._flavour
193 P = self.cls
194 p = P('a')
195 self.assertIsInstance(p, P)
196 P('a', 'b', 'c')
197 P('/a', 'b', 'c')
198 P('a/b/c')
199 P('/a/b/c')
200 P(FakePath("a/b/c"))
[all …]
/third_party/icu/icu4j/perf-tests/data/udhr/
Dudhr_jpn.html11 <p>
12 © 1996 – 2007 The Office of the High Commissioner for Human Rights</p>
13 <p>
15 project, <a href="http://www.unicode.org/udhr">http://www.unicode.org/udhr</a>.</p>
19 <p>(1948.12.10 第3回国連総会採択)</p>
23 <p>人類社会のすべての構成員の固有の尊厳と平等で譲ることのできない権利とを承認することは、世界における自由、正義及び平和の基礎であるので、</p>
24 <p>人権の無視及び軽侮が、人類の良心を踏みにじった野蛮行為をもたらし、言論及び信仰の自由が受けられ、恐怖及び欠乏のない世界の到来が、一般の人々の最高の願望として宣言されたので、</p>
25 <p>人間が専制と圧迫とに対する最後の手段として反逆に訴えることがないようにするためには、法の支配によって人権を保護することが肝要であるので、</p>
26 …<p>諸国間の友好関係の発展を促進することが肝要であるので、国際連合の諸国民は、国連憲章において、基本的人権、人間の尊厳及び価値並びに男女の同権についての信念を再確認し、かつ、一層大きな自由のうち…
27 <p>加盟国は、国際連合と協力して、人権及び基本的自由の普遍的な尊重及び遵守の促進を達成することを誓約したので、</p>
[all …]

12345678910>>...401