Home
last modified time | relevance | path

Searched refs:G2 (Results 1 - 25 of 28) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DgenericClassWithObjectTypeArgsAndConstraints.js32 class G2<T extends C> {
38 var g2: G2<D>;
54 interface G2<T extends C> {
58 var g2: G2<D>;
97 var G2 = /** @class */ (function () {
98 function G2() {
100 G2.prototype.foo2 = function (t, t2) {
104 return G2;
H A DtypeGuardsWithInstanceOfByConstructorSignature.js148 new (): G2; // low priority
153 interface G2 {
158 var obj13: G1 | G2;
H A DrenamingDestructuredPropertyInFunctionType.js16 type G2 = new ({ a: string }: O) => any; // Error
119 type G2 = new ({ a }: O) => any;
H A DtemplateLiteralTypes1.js98 S extends `#${infer R1}${infer R2}${infer G1}${infer G2}${infer B1}${infer B2}` ?
99 [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ?
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dyuv_sse41.c53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE41() local
55 const __m128i G4 = _mm_sub_epi16(G2, G3); in ConvertYUV444ToRGB_SSE41()
135 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE41() local
140 YUV444ToRGB_SSE41(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToRgb32_SSE41()
147 rgb3 = _mm_packus_epi16(G2, G3); in VP8YuvToRgb32_SSE41()
157 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE41() local
162 YUV444ToRGB_SSE41(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToBgr32_SSE41()
169 bgr3 = _mm_packus_epi16(G2, G3); in VP8YuvToBgr32_SSE41()
185 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE41() local
190 YUV420ToRGB_SSE41(y + 16, u + 8, v + 8, &R2, &G2, in YuvToRgbRow_SSE41()
222 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; YuvToBgrRow_SSE41() local
[all...]
H A Dyuv_sse2.c53 const __m128i G2 = _mm_add_epi16(Y1, k8708); in ConvertYUV444ToRGB_SSE2() local
55 const __m128i G4 = _mm_sub_epi16(G2, G3); in ConvertYUV444ToRGB_SSE2()
249 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE2() local
254 YUV444ToRGB_SSE2(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToRgb32_SSE2()
261 rgb3 = _mm_packus_epi16(G2, G3); in VP8YuvToRgb32_SSE2()
271 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE2() local
276 YUV444ToRGB_SSE2(y + 16, u + 16, v + 16, &R2, &G2, &B2); in VP8YuvToBgr32_SSE2()
283 bgr3 = _mm_packus_epi16(G2, G3); in VP8YuvToBgr32_SSE2()
365 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE2() local
370 YUV420ToRGB_SSE2(y + 16, u + 8, v + 8, &R2, &G2, in YuvToRgbRow_SSE2()
402 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; YuvToBgrRow_SSE2() local
[all...]
H A Dcommon_sse41.h42 __m128i G0, G1, G2, G3, G4, G5; in VP8PlanarTo24b_SSE41() local
84 const __m128i RG2 = _mm_or_si128(R2, G2); in VP8PlanarTo24b_SSE41()
H A Dupsampling_neon.c151 const int16x8_t G2 = vqaddq_s16(Y1, G_Rounder); \
156 const int16x8_t G4 = vqsubq_s16(G2, G3); \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp454 llvm::sort(GV, [](const Chain *G1, const Chain *G2) { in colorChainSet()
455 if (G1->size() != G2->size()) in colorChainSet()
456 return G1->size() > G2->size(); in colorChainSet()
457 if (G1->requiresFixup() != G2->requiresFixup()) in colorChainSet()
458 return G1->requiresFixup() > G2->requiresFixup(); in colorChainSet()
460 assert((G1 == G2 || (G1->startsBefore(G2) ^ G2->startsBefore(G1))) && in colorChainSet()
462 return G1->startsBefore(G2); in colorChainSet()
/third_party/python/Modules/_blake2/impl/
H A Dblake2s-round.h52 #define G2(row1,row2,row3,row4,buf) \ macro
82 G2(row1,row2,row3,row4,buf2); \
87 G2(row1,row2,row3,row4,buf4); \
H A Dblake2b-round.h66 #define G2(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1) \ macro
151 G2(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \
156 G2(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \
/third_party/ffmpeg/libavutil/ppc/
H A Dutil_altivec.h87 vec_s16 A2, B2, C2, D2, E2, F2, G2, H2; \
104 G2 = vec_mergeh (D1, H1); \
111 e = vec_mergeh (C2, G2); \
112 f = vec_mergel (C2, G2); \
/third_party/ffmpeg/libswscale/x86/
H A Dyuv_2_rgb.asm201 paddsw m2, m6 ; G0 G2 G4 G6 ...
207 packuswb m2, m7 ; G0 G2 G4 G6 ... G1 G3 G5 G7 ...
211 punpcklbw m3, m2 ; R0 G0 R2 G2 R4 G4 R6 G6 R8 G8 ...
216 punpcklwd m3 ,m6 ; R0 G0 B0 R1 R2 G2 B2 R3
222 pand m6, [mask_1101] ; R0 G0 B0 R1 -- -- R2 G2
239 movd [imageq], m3 ; R0 G0 R2 G2
243 movd [imageq + 6], m3 ; R2 G2 B2 R3
286 punpcklbw m2, m7 ; G0 G1 G2 G3 ... G7
H A Dinput.asm174 pshufb m0, shuf_rgb1 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 }
180 movd m2, [srcq+6] ; (byte) { B2, G2, R2, B3 }
182 punpckldq m0, m2 ; (byte) { B0, G0, R0, B1, B2, G2, R2, B3 }
190 punpcklbw m0, m7 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 }
196 pmaddwd m0, coeff1 ; (dword) { B0*BY + G0*GY, B1*BY, B2*BY + G2*GY, B3*BY }
265 pshufb m0, shuf_rgb1 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 }
269 movd m4, [srcq+6] ; (byte) { B2, G2, R2, B3 }
271 punpckldq m0, m4 ; (byte) { B0, G0, R0, B1, B2, G2, R2, B3 }
275 punpcklbw m0, m7 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 }
278 pmaddwd m2, m0, coeffV1 ; (dword) { B0*BV + G0*GV, B1*BV, B2*BV + G2*G
[all...]
/third_party/ltp/testcases/kernel/syscalls/ptrace/
H A Dsimple_tracer.c81 #define G2 u_regs[1] in decode_regs()
96 decode(G2); in decode_regs()
/third_party/openssl/test/
H A Dectest.c2615 EC_POINT *G2 = NULL, *Q1 = NULL, *Q2 = NULL; in custom_generator_test() local
2641 || !TEST_ptr(G2 = EC_POINT_new(group)) in custom_generator_test()
2653 /* new generator is G2 := 2G */ in custom_generator_test()
2654 || !TEST_true(EC_POINT_dbl(group, G2, EC_GROUP_get0_generator(group), in custom_generator_test()
2656 || !TEST_true(EC_GROUP_set_generator(group, G2, in custom_generator_test()
2661 /* Q2 := k/2 G2 */ in custom_generator_test()
2670 /* Q1 = kG = k/2 G2 = Q2 should hold */ in custom_generator_test()
2682 EC_POINT_free(G2); in custom_generator_test()
2700 EC_POINT *G2 = NULL, *Q1 = NULL, *Q2 = NULL; in custom_params_test() local
2751 || !TEST_ptr(G2 in custom_params_test()
[all...]
/third_party/backends/backend/
H A Dmustek_usb2.c1809 unsigned short R1, G1, B1, R, G, B, R2, G2, B2, QBET_RGB = 0, PointF, PointB; in QBetChange() local
1842 G2 = (unsigned short) (SANE_Byte) * (pbmpdata + (tLines + (i + 1) * 3 + 1)); in QBetChange()
1851 G2 = G = (unsigned short) (SANE_Byte) * (pbmpdata + (tLines + i * 3 + 1)); in QBetChange()
1865 G2 = (unsigned short) (SANE_Byte) * (pbmpdata + (tLines + (i + 1) * 3 + 1)); in QBetChange()
1874 G2 = G2 & 0x0003; in QBetChange()
1886 PointB = G2; in QBetChange()
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DETC_Decoder.cpp196 unsigned char G2 : 4; member
366 int g2 = extend_4to8bits(G2); in decodeIndividualBlock()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DETC_Decoder.cpp197 unsigned char G2 : 4; member
367 int g2 = extend_4to8bits(G2); in decodeIndividualBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.cpp62 Reserved.set(SP::G2); in getReservedRegs()
H A DSparcAsmPrinter.cpp278 const unsigned globalRegs[] = { SP::G2, SP::G3, SP::G6, SP::G7, 0 }; in EmitFunctionBodyStart()
/third_party/ffmpeg/libavcodec/
H A Dcfhd.c164 int R, G1, G2, B; in process_bayer() local
175 G2 = g - gd; in process_bayer()
180 G2 = av_clip_uintp2(G2 * factor, 16); in process_bayer()
185 g2[x] = G2; in process_bayer()
/third_party/python/Lib/test/
H A Dtest_typing.py970 class G2(Generic[Unpack[Ts]]): pass class
972 for A in G1, G2, Tuple, tuple:
1042 class G2(Generic[Unpack[Ts]]): pass class
1044 for A in G1, G2, Tuple, tuple:
1071 class G2(Generic[Unpack[Ts]]): pass class
7542 G2 = X[int, Concatenate[int, P_2]]
7543 self.assertEqual(G2.__args__, (int, Concatenate[int, P_2]))
7544 self.assertEqual(G2.__parameters__, (P_2,))
7589 G2 = X[[int], [str, bytes]]
7590 self.assertNotEqual(G1, G2)
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuCompressedTexture.cpp674 const deUint8 G2 = (deUint8)getBits(src, 40, 43); in decompressETC2Block() local
683 paintG[2] = extend4To8(G2); in decompressETC2Block()
701 const deUint8 G2 = (deUint8)getBits(src, 39, 42); in decompressETC2Block() local
714 baseG[1] = extend4To8(G2); in decompressETC2Block()
/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage_etc.cpp227 unsigned char G2 : 4; member
435 int g2 = extend_4to8bits(block.G2); in decodeIndividualBlock()
928 int g2 = extend_4to8bits(block.G2); in transcodeIndividualBlockToBC1()

Completed in 38 milliseconds

12