/third_party/mesa3d/src/intel/tools/tests/gen7.5/ |
H A D | math.asm | 3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H }; 6 math sqrt(8) g9<1>F g8<8,8,1>F null<8,8,1>F { align1 1Q }; 40 math.sat sqrt(8) g8<1>F g1<0>F null<4>F { align16 1Q }; 41 math.sat exp(8) g8<1>F g1<0>F null<4>F { align16 1Q };
|
/third_party/mesa3d/src/intel/tools/tests/gen6/ |
H A D | math.asm | 13 math exp(8) g19<1>F g8<8,8,1>F null<8,8,1>F { align1 2Q }; 18 math.sat pow(8) g2<1>F g8<8,8,1>F g14<8,8,1>F { align1 2Q }; 22 math.sat exp(8) g3<1>F g8<8,8,1>F null<8,8,1>F { align1 2Q };
|
/third_party/typescript/tests/baselines/reference/ |
H A D | literalTypes2.js | 150 declare function g8<T>(x: T, f: (p: T) => T): T; 163 const x10 = g8(1, x => x); // Type number 164 const x11 = g8(1, x => x + 1); // Type number 337 var x10 = g8(1, function (x) { return x; }); // Type number
338 var x11 = g8(1, function (x) { return x + 1; }); // Type number
|
H A D | templateStringBinaryOperationsInvalid.js | 71 var g8 = `${ 3 * 4 }5` * 6; 174 var g8 = "".concat(3 * 4, "5") * 6;
variable
|
H A D | restTuplesFromContextualTypes.js | 73 let g8 = pipe((x: number, y: string) => 42, x => "" + x); 316 var g8 = pipe(function (x, y) { return 42; }, function (x) { return "" + x; });
variable 361 declare let g8: (x: number, y: string) => string;
|
/third_party/skia/src/core/ |
H A D | SkCompressedDataUtils.cpp | 80 int g8 = SkTPin(col.fG + delta, 0, 255); in add_delta_and_clamp() local 83 return SkPackARGB32(0xFF, r8, g8, b8); in add_delta_and_clamp() 163 uint8_t g8 = SkG16ToG32((rgb565 >> 5) & 0x3F); in from565() local 166 return SkPackARGB32(0xFF, r8, g8, b8); in from565() 175 uint8_t g8 = SkScalarRoundToInt(t * SkGetPackedG32(col0) + (1.0f - t) * SkGetPackedG32(col1)); in lerp() local 177 return SkPackARGB32(0xFF, r8, g8, b8); in lerp()
|
/third_party/skia/src/gpu/ |
H A D | GrDataUtils.cpp | 55 // Evaluate one of the entries in 'kModifierTables' to see how close it can get (r8,g8,b8) to 58 int r8, int g8, int b8, in test_table_entry() 64 g8 = SkTPin<int>(g8 + kETC1ModifierTables[table][offset], 0, 255); in test_table_entry() 67 return SkTAbs(rOrig - r8) + SkTAbs(gOrig - g8) + SkTAbs(bOrig - b8); in test_table_entry() 84 int g8 = extend_5To8bits(g5); in create_etc1_block() local 95 int score = test_table_entry(rOrig, gOrig, bOrig, r8, g8, b8, in create_etc1_block() 57 test_table_entry(int rOrig, int gOrig, int bOrig, int r8, int g8, int b8, int table, int offset) test_table_entry() argument
|
/third_party/mesa3d/src/intel/tools/tests/gen8/ |
H A D | math.asm | 3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H };
|
/third_party/mesa3d/src/intel/tools/tests/gen9/ |
H A D | math.asm | 3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H };
|
/third_party/mesa3d/src/intel/tools/tests/gen7/ |
H A D | math.asm | 5 math sqrt(8) g9<1>F g8<8,8,1>F null<8,8,1>F { align1 1Q };
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | SixteenBppTextureTest.cpp | 388 GLubyte g8 = static_cast<GLubyte>((rgba & 0x0F00) >> 8); in TEST_P() local 392 GLColor actualColor(r8 << 4, g8 << 4, b8 << 4, a8 << 4); in TEST_P()
|
/third_party/ffmpeg/libswscale/x86/ |
H A D | yuv_2_rgb.asm | 253 pshufb m3, [rgb24_shuf1] ; r0 g0 r6 g6 r12 g12 r2 g2 r8 g8 r14 g14 r4 g4 r10 g10 268 pand m6, m4, m3 ; --- --- r6 g6 --- --- --- --- r8 g8 --- --- --- --- r10 g10 272 por m1, m6 ; g5 b5 r6 g6 b6 r7 g7 b7 r8 g8 b8 r9 g9 b9 r10 g10
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_paletteuse.c | 421 const uint8_t g8 = src[x] >> 8 & 0xff; in set_frame() local 424 const uint8_t g = av_clip_uint8(g8 + d); in set_frame()
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | curve25519.c | 1065 int32_t g8 = g[8]; in fe_mul() local 1074 int32_t g8_19 = 19 * g8; in fe_mul() 1089 int64_t f0g8 = f0 * (int64_t) g8; in fe_mul() 1099 int64_t f1g8 = f1 * (int64_t) g8; in fe_mul()
|
/third_party/openssl/crypto/ec/ |
H A D | curve25519.c | 1065 int32_t g8 = g[8]; in fe_mul() local 1074 int32_t g8_19 = 19 * g8; in fe_mul() 1089 int64_t f0g8 = f0 * (int64_t) g8; in fe_mul() 1099 int64_t f1g8 = f1 * (int64_t) g8; in fe_mul()
|
/third_party/openssl/ohos_lite/crypto/ec/ |
H A D | curve25519.c | 1055 int32_t g8 = g[8]; in fe_mul() local 1064 int32_t g8_19 = 19 * g8; in fe_mul() 1079 int64_t f0g8 = f0 * (int64_t) g8; in fe_mul() 1089 int64_t f1g8 = f1 * (int64_t) g8; in fe_mul()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
H A D | vktMemoryPipelineBarrierTests.cpp | 3128 const deUint8 g8 = rng.getUint8(); 3132 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3352 const deUint8 g8 = rng.getUint8(); 3356 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3846 const deUint8 g8 = rng.getUint8(); 3850 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3863 const deUint8 g8 = rng.getUint8(); 3867 source.getAccess().setPixel(UVec4(r8, g8, b8, a8), x, y);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryPipelineBarrierTests.cpp | 3128 const deUint8 g8 = rng.getUint8(); 3132 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3352 const deUint8 g8 = rng.getUint8(); 3356 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3846 const deUint8 g8 = rng.getUint8(); 3850 refAccess.setPixel(UVec4(r8, g8, b8, a8), x, y); 3863 const deUint8 g8 = rng.getUint8(); 3867 source.getAccess().setPixel(UVec4(r8, g8, b8, a8), x, y);
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCompressedTexture.cpp | 1264 const deUint32 g8 = extend6To8(g6); in bgr16torgba32() local 1267 return (r8 | (g8 <<8) | (b8 << 16) | (a8 << 24)); in bgr16torgba32()
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
H A D | loadimage.cpp | 391 uint8_t g8 = source[x * 3 + 1]; in LoadRGB8ToBGR565() local 394 auto g6 = static_cast<uint16_t>(g8 >> 2); in LoadRGB8ToBGR565()
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | vp9_idct_msa.c | 1306 v8i16 g0, g1, g2, g3, g4, g5, g6, g7, g8, g9, g10, g11, g12, g13, g14, g15; in vp9_iadst16_1d_columns_addblk_msa() local 1333 VP9_MADD_BF(r11, r4, r3, r12, k0, k1, k2, k3, g8, g9, g10, g11); in vp9_iadst16_1d_columns_addblk_msa() 1334 BUTTERFLY_4(g0, g2, g10, g8, h8, h9, v2, v0); in vp9_iadst16_1d_columns_addblk_msa()
|