/external/v8/test/cctest/compiler/ |
D | test-run-jsops.cc | 12 FunctionTester T("(function(a,b) { return a + b; })"); in TEST() local 14 T.CheckCall(3, 1, 2); in TEST() 15 T.CheckCall(-11, -2, -9); in TEST() 16 T.CheckCall(-11, -1.5, -9.5); in TEST() 17 T.CheckCall(T.Val("AB"), T.Val("A"), T.Val("B")); in TEST() 18 T.CheckCall(T.Val("A11"), T.Val("A"), T.Val(11)); in TEST() 19 T.CheckCall(T.Val("12B"), T.Val(12), T.Val("B")); in TEST() 20 T.CheckCall(T.Val("38"), T.Val("3"), T.Val("8")); in TEST() 21 T.CheckCall(T.Val("31"), T.Val("3"), T.NewObject("([1])")); in TEST() 22 T.CheckCall(T.Val("3[object Object]"), T.Val("3"), T.NewObject("({})")); in TEST() [all …]
|
D | test-run-jsbranches.cc | 12 FunctionTester T("(function(a) { return a ? 23 : 42; })"); in TEST() local 14 T.CheckCall(T.Val(23), T.true_value(), T.undefined()); in TEST() 15 T.CheckCall(T.Val(42), T.false_value(), T.undefined()); in TEST() 16 T.CheckCall(T.Val(42), T.undefined(), T.undefined()); in TEST() 17 T.CheckCall(T.Val(42), T.Val(0.0), T.undefined()); in TEST() 18 T.CheckCall(T.Val(23), T.Val(999), T.undefined()); in TEST() 19 T.CheckCall(T.Val(23), T.Val("x"), T.undefined()); in TEST() 24 FunctionTester T("(function(a,b) { return a && b; })"); in TEST() local 26 T.CheckCall(T.true_value(), T.true_value(), T.true_value()); in TEST() 27 T.CheckCall(T.false_value(), T.false_value(), T.true_value()); in TEST() [all …]
|
D | test-run-intrinsics.cc | 15 FunctionTester T("(function(a,b) { return %_Call(b, a, 1, 2, 3); })", flags); in TEST() local 18 T.CheckCall(T.Val(129), T.NewObject("({d:123})"), T.NewObject("f")); in TEST() 19 T.CheckCall(T.Val("6x"), T.NewObject("({d:'x'})"), T.NewObject("f")); in TEST() 24 FunctionTester T("(function(a) { return %_ClassOf(a); })", flags); in TEST() local 26 T.CheckCall(T.Val("Function"), T.NewObject("(function() {})")); in TEST() 27 T.CheckCall(T.Val("Array"), T.NewObject("([1])")); in TEST() 28 T.CheckCall(T.Val("Object"), T.NewObject("({})")); in TEST() 29 T.CheckCall(T.Val("RegExp"), T.NewObject("(/x/)")); in TEST() 30 T.CheckCall(T.null(), T.undefined()); in TEST() 31 T.CheckCall(T.null(), T.null()); in TEST() [all …]
|
D | test-run-jscalls.cc | 12 FunctionTester T("(function(foo,a) { return foo(a); })"); in TEST() local 13 Handle<JSFunction> foo = T.NewFunction("(function(a) { return a; })"); in TEST() 15 T.CheckCall(T.Val(3), foo, T.Val(3)); in TEST() 16 T.CheckCall(T.Val(3.1), foo, T.Val(3.1)); in TEST() 17 T.CheckCall(foo, foo, foo); in TEST() 18 T.CheckCall(T.Val("Abba"), foo, T.Val("Abba")); in TEST() 23 FunctionTester T("(function(foo,a) { return foo(a); })"); in TEST() local 24 Handle<JSFunction> foo = T.NewFunction("(function(a) { return a; })"); in TEST() 25 T.Compile(foo); in TEST() 27 T.CheckCall(T.Val(3), foo, T.Val(3)); in TEST() [all …]
|
/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
D | svga_dump.c | 45 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT1\n"); in dump_SVGA3dVertexDecl() 48 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT2\n"); in dump_SVGA3dVertexDecl() 51 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT3\n"); in dump_SVGA3dVertexDecl() 54 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT4\n"); in dump_SVGA3dVertexDecl() 57 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_D3DCOLOR\n"); in dump_SVGA3dVertexDecl() 60 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_UBYTE4\n"); in dump_SVGA3dVertexDecl() 63 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_SHORT2\n"); in dump_SVGA3dVertexDecl() 66 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_SHORT4\n"); in dump_SVGA3dVertexDecl() 69 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_UBYTE4N\n"); in dump_SVGA3dVertexDecl() 72 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_SHORT2N\n"); in dump_SVGA3dVertexDecl() [all …]
|
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/dist/ |
D | gl-matrix-min.js | 28 …t,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==t… argument 29 …t[0]=r[0]*a+r[3]*e+r[6],t[1]=r[1]*a+r[4]*e+r[7],t},e.transformMat4=function(t,n,r){var a=n[0],e=n[…
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 54 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 55 #define GTEST_0_TUPLE_(T) tuple<> argument 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 54 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 55 #define GTEST_0_TUPLE_(T) tuple<> argument 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 54 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 55 #define GTEST_0_TUPLE_(T) tuple<> argument 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 56 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 57 #define GTEST_0_TUPLE_(T) tuple<> argument 58 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 60 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 62 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 64 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 66 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 68 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 70 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 72 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 56 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 57 #define GTEST_0_TUPLE_(T) tuple<> argument 58 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 60 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 62 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 64 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 66 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 68 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 70 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 72 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-tuple.h | 56 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 57 #define GTEST_0_TUPLE_(T) tuple<> argument 58 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ argument 60 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ argument 62 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ argument 64 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ argument 66 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ argument 68 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ argument 70 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument 72 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ argument [all …]
|
/external/v8/test/cctest/ |
D | test-types.cc | 34 static bool IsStruct(Type* t, int tag) { in IsStruct() 35 return !IsBitset(t) && reinterpret_cast<intptr_t>(AsStruct(t)[0]) == tag; in IsStruct() 37 static bool IsBitset(Type* t) { return reinterpret_cast<uintptr_t>(t) & 1; } in IsBitset() 39 static bool IsUnion(Type* t) { return t->IsUnionForTesting(); } in IsUnion() 41 static Struct* AsStruct(Type* t) { in AsStruct() 42 return reinterpret_cast<Struct*>(t); in AsStruct() 44 static bitset AsBitset(Type* t) { in AsBitset() 45 return static_cast<bitset>(reinterpret_cast<uintptr_t>(t) ^ 1u); in AsBitset() 47 static Struct* AsUnion(Type* t) { in AsUnion() 48 return AsStruct(t); in AsUnion() [all …]
|
/external/clang/test/Modules/ |
D | exponential-paths.cpp | 3 // RUN: rm -rf %t 4 // RUN: mkdir %t 9 // RUN: echo 'module a0 { header "a0.h" export * }' > %t/module.modulemap 10 // RUN: echo 'module b0 { header "b0.h" export * }' >> %t/module.modulemap 11 // RUN: echo 'module a1 { header "a1.h" export * }' >> %t/module.modulemap 12 // RUN: echo 'module b1 { header "b1.h" export * }' >> %t/module.modulemap 13 // RUN: echo 'module a2 { header "a2.h" export * }' >> %t/module.modulemap 14 // RUN: echo 'module b2 { header "b2.h" export * }' >> %t/module.modulemap 15 // RUN: echo 'module a3 { header "a3.h" export * }' >> %t/module.modulemap 16 // RUN: echo 'module b3 { header "b3.h" export * }' >> %t/module.modulemap [all …]
|
/external/libcxx/test/std/re/re.traits/ |
D | isctype.pass.cpp | 22 std::regex_traits<char> t; in main() local 25 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main() 26 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main() 27 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main() 28 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main() 29 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main() 30 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main() 31 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main() 34 assert(!t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main() 35 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | transform_mips.c | 39 ".set push \n\t" in WebRtcIsacfix_Time2SpecMIPS() 40 ".set noreorder \n\t" in WebRtcIsacfix_Time2SpecMIPS() 41 "addiu %[inre1], %[inre1Q9], 0 \n\t" in WebRtcIsacfix_Time2SpecMIPS() 42 "addiu %[inre2], %[inre2Q9], 0 \n\t" in WebRtcIsacfix_Time2SpecMIPS() 43 "addiu %[tmpre], %[tmpreQ16], 0 \n\t" in WebRtcIsacfix_Time2SpecMIPS() 44 "addiu %[tmpim], %[tmpimQ16], 0 \n\t" in WebRtcIsacfix_Time2SpecMIPS() 45 "addiu %[factor], $zero, 16921 \n\t" in WebRtcIsacfix_Time2SpecMIPS() 46 "mul %[max], $zero, $zero \n\t" in WebRtcIsacfix_Time2SpecMIPS() 49 "1: \n\t" in WebRtcIsacfix_Time2SpecMIPS() 51 "lwl %[r0], 0(%[inre1]) \n\t" in WebRtcIsacfix_Time2SpecMIPS() [all …]
|
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/ |
D | meta.unary.prop.pass.cpp | 41 typedef const int T; in type_properties_test() typedef 42 static_assert(ex::is_const_v<T>, ""); in type_properties_test() 43 static_assert(std::is_same<decltype(ex::is_const_v<T>), const bool>::value, ""); in type_properties_test() 44 static_assert(ex::is_const_v<T> == std::is_const<T>::value, ""); in type_properties_test() 47 typedef int T; in type_properties_test() typedef 48 static_assert(!ex::is_const_v<T>, ""); in type_properties_test() 49 static_assert(ex::is_const_v<T> == std::is_const<T>::value, ""); in type_properties_test() 52 typedef volatile int T; in type_properties_test() typedef 53 static_assert(ex::is_volatile_v<T>, ""); in type_properties_test() 54 static_assert(std::is_same<decltype(ex::is_volatile_v<T>), const bool>::value, ""); in type_properties_test() [all …]
|
/external/skia/src/sfnt/ |
D | SkPreprocessorSeq.h | 567 #define SK_SEQ_FOREACH_0(op,lop,d,x,t) argument 568 #define SK_SEQ_FOREACH_1(op,lop,d,x,t) lop(d,x) argument 569 #define SK_SEQ_FOREACH_2(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_1(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 570 #define SK_SEQ_FOREACH_3(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_2(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 571 #define SK_SEQ_FOREACH_4(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_3(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 572 #define SK_SEQ_FOREACH_5(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_4(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 573 #define SK_SEQ_FOREACH_6(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_5(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 574 #define SK_SEQ_FOREACH_7(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_6(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 575 #define SK_SEQ_FOREACH_8(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_7(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument 576 #define SK_SEQ_FOREACH_9(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_8(op, lop, d, SK_SEQ_HEAD(t), SK_SEQ_… argument [all …]
|
/external/skia/tests/ |
D | GrGLSLPrettyPrintTest.cpp | 21 ";for(;;;){and more stufff;mixed garbage\n\n\t\t\t\t\n/*using this" 23 const SkString input3(" dangerous\ndo so at your own\n risk*/;\n\n\t\t\t\n" 32 " 1\t#this is not a realshader\n" 36 " 5\t{\n" 37 " 6\t\t{\n" 38 " 7\t\t\tsome stuff;\n" 39 " 8\t\t}\n" 40 " 9\t\tfake block;\n" 41 " 10\t\t//comments\n" 42 " 11\t\treturn i;\n" [all …]
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathQuat.h | 42 // template class Quat<T> 70 template <class T> 75 T r; // real part 76 Vec3<T> v; // imaginary vector 88 Quat (T s, T i, T j, T k); 90 Quat (T s, Vec3<T> d); 92 static Quat<T> identity (); 111 const Quat<T> & operator = (const Quat<T> &q); 112 const Quat<T> & operator *= (const Quat<T> &q); 113 const Quat<T> & operator *= (T t); [all …]
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | type_vec1.inl | 32 template <typename T, precision P> 33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR length_t tvec1<T, P>::length() const 41 template <typename T, precision P> 42 GLM_FUNC_QUALIFIER T & tvec1<T, P>::operator[](length_t i) 48 template <typename T, precision P> 49 GLM_FUNC_QUALIFIER T const & tvec1<T, P>::operator[](length_t i) const 58 template <typename T, precision P> 59 GLM_FUNC_QUALIFIER tvec1<T, P>::tvec1() : 60 x(static_cast<T>(0)) 63 template <typename T, precision P> [all …]
|
D | type_vec3.inl | 32 template <typename T, precision P> 33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR length_t tvec3<T, P>::length() const 41 template <typename T, precision P> 42 GLM_FUNC_QUALIFIER T & tvec3<T, P>::operator[](length_t i) 48 template <typename T, precision P> 49 GLM_FUNC_QUALIFIER T const & tvec3<T, P>::operator[](length_t i) const 58 template <typename T, precision P> 59 GLM_FUNC_QUALIFIER tvec3<T, P>::tvec3() : 65 template <typename T, precision P> 66 GLM_FUNC_QUALIFIER tvec3<T, P>::tvec3(tvec3<T, P> const & v) : argument [all …]
|
D | type_vec2.inl | 32 template <typename T, precision P> 33 GLM_FUNC_QUALIFIER GLM_CONSTEXPR length_t tvec2<T, P>::length() const 41 template <typename T, precision P> 42 GLM_FUNC_QUALIFIER T & tvec2<T, P>::operator[](length_t i) 48 template <typename T, precision P> 49 GLM_FUNC_QUALIFIER T const & tvec2<T, P>::operator[](length_t i) const 58 template <typename T, precision P> 59 GLM_FUNC_QUALIFIER tvec2<T, P>::tvec2() : 64 template <typename T, precision P> 65 GLM_FUNC_QUALIFIER tvec2<T, P>::tvec2(tvec2<T, P> const & v) : argument [all …]
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | intrapred8_dspr2.c | 19 "lb %[tmp1], (%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 20 "lb %[tmp2], 1(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 21 "lb %[tmp3], 2(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 22 "lb %[tmp4], 3(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 23 "lb %[tmp5], 4(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 24 "lb %[tmp6], 5(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 25 "lb %[tmp7], 6(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 26 "lb %[tmp8], 7(%[left]) \n\t" in vpx_h_predictor_8x8_dspr2() 28 "replv.qb %[tmp1], %[tmp1] \n\t" in vpx_h_predictor_8x8_dspr2() 29 "replv.qb %[tmp2], %[tmp2] \n\t" in vpx_h_predictor_8x8_dspr2() [all …]
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | noise.inl | 42 template <typename T, precision P> 43 GLM_FUNC_QUALIFIER detail::tvec4<T, P> grad4(T const & j, detail::tvec4<T, P> const & ip) argument 45 …detail::tvec3<T, P> pXYZ = floor(fract(detail::tvec3<T, P>(j) * detail::tvec3<T, P>(ip)) * T(7)) *… 46 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), detail::tvec3<T, P>(1)); 47 …detail::tvec4<T, P> s = detail::tvec4<T, P>(lessThan(detail::tvec4<T, P>(pXYZ, pW), detail::tvec4<… 48 pXYZ = pXYZ + (detail::tvec3<T, P>(s) * T(2) - T(1)) * s.w; 49 return detail::tvec4<T, P>(pXYZ, pW); 54 template <typename T, precision P> 55 GLM_FUNC_QUALIFIER T perlin(detail::tvec2<T, P> const & Position) argument 57 …detail::tvec4<T, P> Pi = glm::floor(detail::tvec4<T, P>(Position.x, Position.y, Position.x, Positi… [all …]
|