/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcRegisterInfo.cpp | 58 Reserved.set(SP::G1); in getReservedRegs() 132 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1) in replaceFI() 137 BuildMI(*MI.getParent(), II, dl, TII.get(SP::ADDrr), SP::G1).addReg(SP::G1) in replaceFI() 140 MI.getOperand(FIOperandNum).ChangeToRegister(SP::G1, false); in replaceFI() 150 BuildMI(*MI.getParent(), II, dl, TII.get(SP::SETHIi), SP::G1) in replaceFI() 152 BuildMI(*MI.getParent(), II, dl, TII.get(SP::XORri), SP::G1) in replaceFI() 153 .addReg(SP::G1).addImm(LOX10(Offset)); in replaceFI() 155 BuildMI(*MI.getParent(), II, dl, TII.get(SP::ADDrr), SP::G1).addReg(SP::G1) in replaceFI() 158 MI.getOperand(FIOperandNum).ChangeToRegister(SP::G1, false); in replaceFI()
|
D | SparcFrameLowering.cpp | 64 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1) in emitSPAdjustment() 66 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1) in emitSPAdjustment() 67 .addReg(SP::G1).addImm(LO10(NumBytes)); in emitSPAdjustment() 69 .addReg(SP::O6).addReg(SP::G1); in emitSPAdjustment() 77 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1) in emitSPAdjustment() 79 BuildMI(MBB, MBBI, dl, TII.get(SP::XORri), SP::G1) in emitSPAdjustment() 80 .addReg(SP::G1).addImm(LOX10(NumBytes)); in emitSPAdjustment() 82 .addReg(SP::O6).addReg(SP::G1); in emitSPAdjustment() 184 regUnbiased = SP::G1; in emitPrologue()
|
/third_party/typescript/tests/baselines/reference/ |
D | typeGuardsWithInstanceOfByConstructorSignature.types | 374 prototype: G1; // high priority 375 >prototype : G1 379 interface G1 { 390 var obj13: G1 | G2; 391 >obj13 : G1 | G2 393 if (obj13 instanceof G) { // narrowed to G1. G1 is return type of prototype property. 395 >obj13 : G1 | G2 400 >obj13 : G1 405 >obj13 : G1 419 >obj14 : G1 [all …]
|
D | typeGuardsWithInstanceOfByConstructorSignature.symbols | 370 prototype: G1; // high priority 372 >G1 : Symbol(G1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 147, 1)) 377 interface G1 { 378 >G1 : Symbol(G1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 147, 1)) 381 >foo1 : Symbol(G1.foo1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 148, 14)) 393 var obj13: G1 | G2; 395 >G1 : Symbol(G1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 147, 1)) 398 if (obj13 instanceof G) { // narrowed to G1. G1 is return type of prototype property. 403 >obj13.foo1 : Symbol(G1.foo1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 148, 14)) 405 >foo1 : Symbol(G1.foo1, Decl(typeGuardsWithInstanceOfByConstructorSignature.ts, 148, 14)) [all …]
|
D | typeGuardsWithInstanceOfByConstructorSignature.errors.txt | 22 …anceOfByConstructorSignature.ts(160,11): error TS2339: Property 'foo2' does not exist on type 'G1'. 23 …anceOfByConstructorSignature.ts(166,11): error TS2339: Property 'foo2' does not exist on type 'G1'. 211 prototype: G1; // high priority 214 interface G1 { 222 var obj13: G1 | G2; 223 if (obj13 instanceof G) { // narrowed to G1. G1 is return type of prototype property. 227 !!! error TS2339: Property 'foo2' does not exist on type 'G1'. 235 !!! error TS2339: Property 'foo2' does not exist on type 'G1'.
|
D | typeGuardsWithInstanceOfByConstructorSignature.js | 147 prototype: G1; // high priority 150 interface G1 { 158 var obj13: G1 | G2;
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv_sse41.c | 52 const __m128i G1 = _mm_mulhi_epu16(*V0, k13320); in ConvertYUV444ToRGB_SSE41() local 54 const __m128i G3 = _mm_add_epi16(G0, G1); in ConvertYUV444ToRGB_SSE41() 135 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE41() local 139 YUV444ToRGB_SSE41(y + 8, u + 8, v + 8, &R1, &G1, &B1); in VP8YuvToRgb32_SSE41() 146 rgb2 = _mm_packus_epi16(G0, G1); in VP8YuvToRgb32_SSE41() 157 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE41() local 161 YUV444ToRGB_SSE41(y + 8, u + 8, v + 8, &R1, &G1, &B1); in VP8YuvToBgr32_SSE41() 168 bgr2 = _mm_packus_epi16(G0, G1); in VP8YuvToBgr32_SSE41() 185 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE41() local 189 YUV420ToRGB_SSE41(y + 8, u + 4, v + 4, &R1, &G1, &B1); in YuvToRgbRow_SSE41() [all …]
|
D | yuv_sse2.c | 52 const __m128i G1 = _mm_mulhi_epu16(*V0, k13320); in ConvertYUV444ToRGB_SSE2() local 54 const __m128i G3 = _mm_add_epi16(G0, G1); in ConvertYUV444ToRGB_SSE2() 249 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToRgb32_SSE2() local 253 YUV444ToRGB_SSE2(y + 8, u + 8, v + 8, &R1, &G1, &B1); in VP8YuvToRgb32_SSE2() 260 rgb2 = _mm_packus_epi16(G0, G1); in VP8YuvToRgb32_SSE2() 271 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in VP8YuvToBgr32_SSE2() local 275 YUV444ToRGB_SSE2(y + 8, u + 8, v + 8, &R1, &G1, &B1); in VP8YuvToBgr32_SSE2() 282 bgr2 = _mm_packus_epi16(G0, G1); in VP8YuvToBgr32_SSE2() 365 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; in YuvToRgbRow_SSE2() local 369 YUV420ToRGB_SSE2(y + 8, u + 4, v + 4, &R1, &G1, &B1); in YuvToRgbRow_SSE2() [all …]
|
D | common_sse41.h | 42 __m128i G0, G1, G2, G3, G4, G5; in VP8PlanarTo24b_SSE41() local 83 const __m128i RG1 = _mm_or_si128(R1, G1); in VP8PlanarTo24b_SSE41()
|
/third_party/ffmpeg/libswscale/ppc/ |
D | yuv2rgb_altivec.c | 316 vector signed short R1, G1, B1; \ 401 G1 = vec_add(Y1, uvx1); \ 405 G = vec_packclp(G0, G1); \ 414 G1 = vec_add(Y3, uvx1); \ 417 G = vec_packclp(G0, G1); \ 483 vector signed short R0, G0, B0, R1, G1, B1; in altivec_uyvy_rgb32() local 513 cvtyuvtoRGB(c, Y, U, V, &R1, &G1, &B1); in altivec_uyvy_rgb32() 516 G = vec_packclp(G0, G1); in altivec_uyvy_rgb32() 648 vector signed short R0, G0, B0, R1, G1, B1; in yuv2packedX_altivec() local 712 cvtyuvtoRGB(c, Y1, U1, V1, &R1, &G1, &B1); in yuv2packedX_altivec() [all …]
|
/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/ltp/testcases/kernel/syscalls/ptrace/ |
D | simple_tracer.c | 80 #define G1 u_regs[0] in decode_regs() 95 decode(G1); in decode_regs() 110 decode_sysnum(pt->G1); in decode_regs()
|
/third_party/ffmpeg/libavutil/ppc/ |
D | util_altivec.h | 86 vec_s16 A1, B1, C1, D1, E1, F1, G1, H1; \ 95 G1 = vec_mergeh (d, h); \ 102 E2 = vec_mergeh (C1, G1); \ 103 F2 = vec_mergel (C1, G1); \
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2s-round.h | 44 #define G1(row1,row2,row3,row4,buf) \ macro 80 G1(row1,row2,row3,row4,buf1); \ 85 G1(row1,row2,row3,row4,buf3); \
|
D | blake2b-round.h | 47 #define G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1) \ macro 149 G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \ 154 G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardsWithInstanceOfByConstructorSignature.ts | 146 prototype: G1; // high priority 149 interface G1 { interface 157 var obj13: G1 | G2;
|
/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/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/openGLES/extensions/OES/ |
D | OES_compressed_ETC1_RGB8_texture.txt | 165 subblock 1 is derived from the codewords R1 (bit 63-60), G1 (bit 169 1110b, G1 = 3 = 0011b and B1 = 8 = 1000b, then the red component 177 base col subblock1 = extend_4to8bits(R1, G1, B1) 181 subblock 1 is derived from the five-bit codewords R1', G1' and 186 if G1' = 4 = 00100b and B1' = 3 = 00011b, the green and blue 190 of subblock 2 is obtained by modifying the 5-bit codewords R1' G1' 196 11000110b = 198. Likewise, if G1' = 4, dG2 = 2, B1' = 3 and dB2 = 201 base col subblock1 = extend_5to8bits(R1', G1', B1') 202 base col subblock2 = extend_5to8bits(R1'+dR2, G1'+dG2, B1'+dG2) 255 | R1 (4bits)| R2 (4bits)| G1 (4bits)| G2 (4bits)| [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_compressed_ETC1_RGB8_texture.txt | 155 subblock 1 is derived from the codewords R1 (bit 63-60), G1 (bit 159 1110b, G1 = 3 = 0011b and B1 = 8 = 1000b, then the red component 167 base col subblock1 = extend_4to8bits(R1, G1, B1) 171 subblock 1 is derived from the five-bit codewords R1', G1' and 176 if G1' = 4 = 00100b and B1' = 3 = 00011b, the green and blue 180 of subblock 2 is obtained by modifying the 5-bit codewords R1' G1' 186 11000110b = 198. Likewise, if G1' = 4, dG2 = 2, B1' = 3 and dB2 = 191 base col subblock1 = extend_5to8bits(R1', G1', B1') 192 base col subblock2 = extend_5to8bits(R1'+dR2, G1'+dG2, B1'+dG2) 245 | R1 (4bits)| R2 (4bits)| G1 (4bits)| G2 (4bits)| [all …]
|
/third_party/node/doc/contributing/maintaining/ |
D | maintaining-root-certs.md | 88 < Parsing: Certplus Root CA G1 90 < Parsing: OpenTrust Root CA G1 130 - Certplus Root CA G1 132 - OpenTrust Root CA G1
|
/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/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/ffmpeg/libswscale/x86/ |
D | input.asm | 173 pshufb m1, m0, shuf_rgb2 ; (word) { R0, B1, G1, R1, R2, B3, G3, R3 } 179 movd m1, [srcq+2] ; (byte) { R0, B1, G1, R1 } 183 punpckldq m1, m3 ; (byte) { R0, B1, G1, R1, R2, B3, G3, R3 } 191 punpcklbw m1, m7 ; (word) { R0, B1, G1, R1, R2, B3, G3, R3 } 197 pmaddwd m1, coeff2 ; (dword) { R0*RY, G1+GY + R1*RY, R2*RY, G3+GY + R3*RY } 264 pshufb m1, m0, shuf_rgb2 ; (word) { R0, B1, G1, R1, R2, B3, G3, R3 } 268 movd m1, [srcq+2] ; (byte) { R0, B1, G1, R1 } 272 punpckldq m1, m5 ; (byte) { R0, B1, G1, R1, R2, B3, G3, R3 } 276 punpcklbw m1, m7 ; (word) { R0, B1, G1, R1, R2, B3, G3, R3 } 279 pmaddwd m3, m1, coeffV2 ; (dword) { R0*BV, G1*GV + R1*BV, R2*BV, G3*GV + R3*BV } [all …]
|
D | yuv_2_rgb.asm | 198 paddsw m7, m2 ; G1 G3 G4 G7 ... 207 packuswb m2, m7 ; G0 G2 G4 G6 ... G1 G3 G5 G7 ... 214 punpckhbw m2, m_blue ; G1 B1 G3 B3 G5 B5 G7 B7 G9 B9 ... 228 pand m0, [mask_0010] ; -- -- -- -- G1 B1 -- -- 240 movd [imageq + 4], m2 ; G1 B1 286 punpcklbw m2, m7 ; G0 G1 G2 G3 ... G7
|