/third_party/typescript/tests/baselines/reference/ |
D | genericClassWithObjectTypeArgsAndConstraints.symbols | 91 class G2<T extends C> { 92 >G2 : Symbol(G2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 28, 27)) 97 >foo2 : Symbol(G2.foo2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 30, 27)) 115 var g2: G2<D>; 117 >G2 : Symbol(G2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 28, 27)) 122 >g2.foo2 : Symbol(G2.foo2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 30, 27)) 124 >foo2 : Symbol(G2.foo2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 30, 27)) 130 >g2.foo2 : Symbol(G2.foo2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 30, 27)) 132 >foo2 : Symbol(G2.foo2, Decl(genericClassWithObjectTypeArgsAndConstraints.ts, 30, 27)) 190 interface G2<T extends C> { [all …]
|
D | genericClassWithObjectTypeArgsAndConstraints.js | 32 class G2<T extends C> { class 38 var g2: G2<D>; 54 interface G2<T extends C> { 58 var g2: G2<D>; 97 var G2 = /** @class */ (function () { class 98 function G2() { class in anonymousFunctionf510aa770400.G2 100 G2.prototype.foo2 = function (t, t2) { 104 return G2;
|
D | genericClassWithObjectTypeArgsAndConstraints.types | 83 class G2<T extends C> { 84 >G2 : G2<T> 98 var g2: G2<D>; 99 >g2 : G2<D> 105 >g2 : G2<D> 114 >g2 : G2<D> 166 interface G2<T extends C> { 173 var g2: G2<D>; 174 >g2 : G2<D> 180 >g2 : G2<D> [all …]
|
D | typeGuardsWithInstanceOfByConstructorSignature.symbols | 374 new (): G2; // low priority 375 >G2 : Symbol(G2, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 150, 1)) 383 interface G2 { 384 >G2 : Symbol(G2, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 150, 1)) 387 >foo2 : Symbol(G2.foo2, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 151, 14)) 393 var obj13: G1 | G2; 396 >G2 : Symbol(G2, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 150, 1))
|
D | typeGuardsWithInstanceOfByConstructorSignature.js | 148 new (): G2; // low priority 153 interface G2 { 158 var obj13: G1 | G2;
|
D | typeGuardsWithInstanceOfByConstructorSignature.types | 377 new (): G2; // low priority 383 interface G2 { 390 var obj13: G1 | G2; 391 >obj13 : G1 | G2 395 >obj13 : G1 | G2
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/ |
D | genericClassWithObjectTypeArgsAndConstraints.ts | 31 class G2<T extends C> { class 37 var g2: G2<D>; 53 interface G2<T extends C> { interface 57 var g2: G2<D>;
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv_sse41.c | 53 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, &B2); in YuvToRgbRow_SSE41() [all …]
|
D | yuv_sse2.c | 53 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, &B2); in YuvToRgbRow_SSE2() [all …]
|
D | common_sse41.h | 42 __m128i G0, G1, G2, G3, G4, G5; in VP8PlanarTo24b_SSE41() local 84 const __m128i RG2 = _mm_or_si128(R2, G2); in VP8PlanarTo24b_SSE41()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv_sse41.c | 53 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, &B2); in YuvToRgbRow_SSE41() [all …]
|
D | yuv_sse2.c | 53 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, &B2); in YuvToRgbRow_SSE2() [all …]
|
/third_party/node/doc/guides/ |
D | maintaining-root-certs.md | 76 < Parsing: Certplus Root CA G2 78 < Parsing: OpenTrust Root CA G2 89 > Parsing: UCA Global G2 Root 110 - UCA Global G2 Root 118 - Certplus Root CA G2 120 - OpenTrust Root CA G2
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64A57FPLoadBalancing.cpp | 454 llvm::sort(GV, [](const Chain *G1, const Chain *G2) { in colorChainSet() argument 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/ffmpeg/libavutil/ppc/ |
D | util_altivec.h | 87 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/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardsWithInstanceOfByConstructorSignature.ts | 147 new (): G2; // low priority 152 interface G2 { interface 157 var obj13: G1 | G2;
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2s-round.h | 52 #define G2(row1,row2,row3,row4,buf) \ macro 82 G2(row1,row2,row3,row4,buf2); \ 87 G2(row1,row2,row3,row4,buf4); \
|
D | blake2b-round.h | 66 #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/libswscale/x86/ |
D | yuv_2_rgb.asm | 198 paddsw m2, m6 ; G0 G2 G4 G6 ... 204 packuswb m2, m7 ; G0 G2 G4 G6 ... G1 G3 G5 G7 ... 208 punpcklbw m3, m2 ; R0 G0 R2 G2 R4 G4 R6 G6 R8 G8 ... 213 punpcklwd m3 ,m6 ; R0 G0 B0 R1 R2 G2 B2 R3 219 pand m6, [mask_1101] ; R0 G0 B0 R1 -- -- R2 G2 236 movd [imageq], m3 ; R0 G0 R2 G2 240 movd [imageq + 6], m3 ; R2 G2 B2 R3 283 punpcklbw m2, m7 ; G0 G1 G2 G3 ... G7
|
D | input.asm | 155 pshufb m0, shuf_rgb1 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 } 161 movd m2, [srcq+6] ; (byte) { B2, G2, R2, B3 } 164 punpckldq m0, m2 ; (byte) { B0, G0, R0, B1, B2, G2, R2, B3 } 173 punpcklbw m0, m7 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 } 179 pmaddwd m0, coeff1 ; (dword) { B0*BY + G0*GY, B1*BY, B2*BY + G2*GY, B3*BY } 248 pshufb m0, shuf_rgb1 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 } 252 movd m4, [srcq+6] ; (byte) { B2, G2, R2, B3 } 255 punpckldq m0, m4 ; (byte) { B0, G0, R0, B1, B2, G2, R2, B3 } 260 punpcklbw m0, m7 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 } 263 pmaddwd m2, m0, coeffV1 ; (dword) { B0*BV + G0*GV, B1*BV, B2*BV + G2*GV, B3*BV } [all …]
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_subsample.txt | 184 < R0,G0> < B1,G1> < R2,G2> < B3, G3> 193 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 197 < G0,R0> <G1,B1 > <G2,R2 > < G3,B3 > 206 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 251 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 256 <R0,G0><B0 G1> <R2,G2><B2, G3> 261 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 267 <G0,R0><G1 B0> <G2,R2><G3, B2>
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_subsample.txt | 184 < R0,G0> < B1,G1> < R2,G2> < B3, G3> 193 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 197 < G0,R0> <G1,B1 > <G2,R2 > < G3,B3 > 206 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 251 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 256 <R0,G0><B0 G1> <R2,G2><B2, G3> 261 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 267 <G0,R0><G1 B0> <G2,R2><G3, B2>
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OML/ |
D | OML_resample.txt | 180 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 191 < R0,G0,B1,A0 > < R0,G1,B1,A1 > < R2,G2,B3,A2 > < R2,G3,B3,A3 > 233 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 245 < R0,G0,B1,A0 > < R0,G1,B1,A1 > < R2,G2,B3,A2 > < R2,G3,B3,A3 > 291 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 300 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 343 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 352 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3>
|
/third_party/openGLES/extensions/OML/ |
D | OML_resample.txt | 180 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 191 < R0,G0,B1,A0 > < R0,G1,B1,A1 > < R2,G2,B3,A2 > < R2,G3,B3,A3 > 233 < R0,G0,B1 > < R0,G1,B1 > < R2,G2,B3 > < R2,G3,B3 > 245 < R0,G0,B1,A0 > < R0,G1,B1,A1 > < R2,G2,B3,A2 > < R2,G3,B3,A3 > 291 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 300 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 343 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3> 352 <R0,G0,B0,A0> <R1,G1,B1,A1> <R2,G2,B2,A2> <R3,G3,B3,A3>
|
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
D | simple_tracer.c | 81 #define G2 u_regs[1] in decode_regs() 96 decode(G2); in decode_regs()
|