/external/deqp/modules/gles2/functional/ |
es2fShaderIndexingTests.cpp | 110 void evalArrayCoordsVec3 (ShaderEvalContext& c) { c.color.xyz() = 1.875f * c.coords.swizzle(0,1,2); } 126 void evalArrayUniformVec3 (ShaderEvalContext& c) { c.color.xyz() = 1.875f * c.constCoords.swizzle(0,1,2); } 634 void evalSubscriptVec2 (ShaderEvalContext& c) { c.color.xyz() = Vec3(c.coords.x() + 0.5f*c.coords.y()); } 635 void evalSubscriptVec3 (ShaderEvalContext& c) { c.color.xyz() = Vec3(c.coords.x() + 0.5f*c.coords.y() + 0.25f*c.coords.z()); } 636 void evalSubscriptVec4 (ShaderEvalContext& c) { c.color.xyz() = Vec3(c.coords.x() + 0.5f*c.coords.y() + 0.25f*c.coords.z() + 0.125f*c.coords.w()); } 792 static const char* s_swizzles[5] = { "", "x", "xy", "xyz", "xyzw" }; 821 void evalSubscriptMat3 (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2) + 0.5f*c.coords.swizzle(1,2,3) + 0.25f*c.coords.swizzle(2,3,0); } [all...] |
es2fShaderOperatorTests.cpp | 334 static const char* s_outSwizzles[] = { "x", "yz", "xyz", "xyzw" }; 622 void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1)); } \ 628 void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1), c.in[1].swizzle(1, 2, 0)); } \ 634 void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1), c.in[1].swizzle(1, 2, 0), c.in[2].swizzle(3, 1, 2)); } \ 655 void eval_##FUNC_NAME##_bvec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(greaterThan(c.in[0].swizzle(2, 0, 1), Vec3(0.0f))).asFloat(); } \ 661 void eval_##FUNC_NAME##_bvec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(greaterThan(c.in[0].swizzle(2, 0, 1), Vec3(0.0f)), greaterThan(c.in[1].swizzle(1, 2, 0), Vec3(0.0f)), greaterThan(c.in[2].swizzle(3, 1, 2), Vec3(0.0f))).asFloat(); } \ 667 void eval_##FUNC_NAME##_ivec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1).asInt()).asFloat(); } \ 673 void eval_##FUNC_NAME##_ivec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1).asInt(), c.in[1].swizzle(1, 2, 0).asInt()).asFloat(); } \ 679 void eval_##FUNC_NAME##_ivec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1).asInt(), c.in[1].swizzle(1, 2, 0).asInt(), c.in[2].swizzle(3, 1, 2).asInt()).asFloat(); } \ 684 void eval_##FUNC_NAME##_vec3 (ShaderEvalContext& c) { c.color.xyz() = FUNC_NAME(c.in[0].swizzle(2, 0, 1), c.in[1].x()); } [all...] |
es2fShaderLoopTests.cpp | 187 static void evalLoop0Iters (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); } 188 static void evalLoop1Iters (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(1,2,3); } 189 static void evalLoop2Iters (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(2,3,0); } 190 static void evalLoop3Iters (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(3,0,1); } [all...] |
/external/deqp/modules/gles3/functional/ |
es3fShaderOperatorTests.cpp | 555 static const char* s_outSwizzles[] = { "x", "yz", "xyz", "xyzw" }; [all...] |
es3fTextureUnitTests.cpp | 289 Vec3 trans00 = (transformation * Vec4(0.0f, 0.0f, 1.0f, 1.0f)).xyz(); 290 Vec3 trans01 = (transformation * Vec4(0.0f, 1.0f, 1.0f, 1.0f)).xyz(); 291 Vec3 trans10 = (transformation * Vec4(1.0f, 0.0f, 1.0f, 1.0f)).xyz(); 647 (m_transformations[unitNdx] * Vec4(texCoords[0].x(), texCoords[0].y(), 1.0f, 1.0f)).xyz(), 648 (m_transformations[unitNdx] * Vec4(texCoords[1].x(), texCoords[1].y(), 1.0f, 1.0f)).xyz(), 649 (m_transformations[unitNdx] * Vec4(texCoords[2].x(), texCoords[2].y(), 1.0f, 1.0f)).xyz(), 650 (m_transformations[unitNdx] * Vec4(texCoords[3].x(), texCoords[3].y(), 1.0f, 1.0f)).xyz(), [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/ |
RawConverter.java | 49 * Matrix to convert from CIE XYZ colorspace to sRGB, Bradford-adapted to D65. 58 * Matrix to convert from the ProPhoto RGB colorspace to CIE XYZ colorspace. 67 * Matrix to convert from CIE XYZ colorspace to ProPhoto RGB colorspace. 84 * The D50 whitepoint coordinates in CIE XYZ colorspace. 396 * CIE XYZ coordinates. 398 * @param X the CIE XYZ X coordinate. 399 * @param Y the CIE XYZ Y coordinate. 400 * @param Z the CIE XYZ Z coordinate. 521 "Cannot invert XYZ to Camera matrix, input matrices are invalid."); 551 Log.d(TAG, "XYZ neutral color guess: " + Arrays.toString(neutralGuess)) 776 float[] xyz = new float[3]; local [all...] |
/frameworks/rs/driver/runtime/ |
rs_sample.c | 368 result.xyz = getElementAt565(p, iPixel); 370 result.xyz = getElementAt3(p, iPixel); 374 result.xyz = getElementAt1(p, iPixel); 406 result.xyz = getElementAt565(p, stride, iPixel.x, iPixel.y); 408 result.xyz = getElementAt3(p, stride, iPixel.x, iPixel.y);
|
/external/clang/test/CodeGen/ |
ext-vector.c | 241 V.xyz = V.zyx;
|
/external/deqp/modules/glshared/ |
glsShaderRenderCase.hpp | 179 inline void evalCoordsPassthroughXYZ (ShaderEvalContext& c) { c.color.xyz() = c.coords.swizzle(0,1,2); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/ |
cdefs.h | 165 /* __asm__ ("xyz") is used throughout the headers to rename functions 200 # define __attribute__(xyz) /* Ignore */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/ |
cdefs.h | 165 /* __asm__ ("xyz") is used throughout the headers to rename functions 200 # define __attribute__(xyz) /* Ignore */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_string.py | 98 self.assertEqual(string.maketrans('abc', 'xyz'), transtable)
|
test_grammar.py | 332 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 411 xyz = x, y, z 414 del x, y, (z, xyz)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_string.py | 98 self.assertEqual(string.maketrans('abc', 'xyz'), transtable)
|
test_grammar.py | 332 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 411 xyz = x, y, z 414 del x, y, (z, xyz)
|
/external/chromium_org/base/strings/ |
string_piece_unittest.cc | 138 TypeParam xyz(TestFixture::as_string("xyz")); 143 BasicStringPiece<TypeParam> c(xyz); 200 TypeParam xyz(TestFixture::as_string("xyz")); 205 BasicStringPiece<TypeParam> c(xyz);
|
/external/chromium_org/v8/test/webkit/fast/regex/ |
parentheses.js | 87 var regexp21 = /([a-g](b|B)|xyz)/; 163 var regexp33 = RegExp('^(?:(?:(a)(xyz|[^>"\'\s]*)?)|(/?>)|.[^\w\s>]*)');
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 334 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 413 xyz = x, y, z 416 del x, y, (z, xyz)
|
py3_test_grammar.py | 374 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 383 xyz = x, y, z 386 del x, y, (z, xyz)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 334 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 413 xyz = x, y, z 416 del x, y, (z, xyz)
|
py3_test_grammar.py | 374 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4) 383 xyz = x, y, z 386 del x, y, (z, xyz)
|
/external/deqp/framework/referencerenderer/ |
rrFragmentOperations.cpp | [all...] |
/external/chromium_org/third_party/icu/source/ |
runConfigureICU | 33 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ...
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
operators.js | 307 shouldBeTrue("'abc' != 'xyz'"); 333 shouldBeTrue("nonSpeculativeNotEqual('abc', 'xyz')");
|
/external/icu/icu4c/source/ |
runConfigureICU | 33 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ...
|