/third_party/ffmpeg/libavfilter/ |
H A D | vf_xbr.c | 92 #define FILT2(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \ 126 #define FILT3(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \ 168 #define FILT4(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, \ 266 const uint32_t G0 = sa3[pprev2]; in xbr_filter() local 284 FILT2(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, 0, 1, nl, nl+1); in xbr_filter() 285 FILT2(PE, PC, PF, PB, PI, PA, PH, PD, PG, I4, A1, I5, H5, A0, D0, B1, C1, F4, C4, G5, G0, nl, 0, nl+1, 1); in xbr_filter() 286 FILT2(PE, PA, PB, PD, PC, PG, PF, PH, PI, C1, G0, C4, F4, G5, H5, D0, A0, B1, A1, I4, I5, nl+1, nl, 1, 0); in xbr_filter() 287 FILT2(PE, PG, PD, PH, PA, PI, PB, PF, PC, A0, I5, A1, B1, I4, F4, H5, G5, D0, G0, C1, C4, 1, nl+1, 0, nl); in xbr_filter() 293 FILT3(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, 0, 1, 2, nl, nl+1, nl+2, nl1, nl1+1, nl1+2); in xbr_filter() 294 FILT3(PE, PC, PF, PB, PI, PA, PH, PD, PG, I4, A1, I5, H5, A0, D0, B1, C1, F4, C4, G5, G0, nl in xbr_filter() [all...] |
H A D | af_anequalizer.c | 299 double G, double Gb, double G0) in butterworth_bp_filter() 307 if (G == 0 && G0 == 0) { in butterworth_bp_filter() 317 G0 = ff_exp10(G0/20); in butterworth_bp_filter() 319 epsilon = sqrt((G * G - Gb * Gb) / (Gb * Gb - G0 * G0)); in butterworth_bp_filter() 321 g0 = pow(G0, 1.0 / N); in butterworth_bp_filter() 368 double G, double Gb, double G0) in chebyshev1_bp_filter() 376 if (G == 0 && G0 == 0) { in chebyshev1_bp_filter() 386 G0 in chebyshev1_bp_filter() 297 butterworth_bp_filter(EqualizatorFilter *f, int N, double w0, double wb, double G, double Gb, double G0) butterworth_bp_filter() argument 366 chebyshev1_bp_filter(EqualizatorFilter *f, int N, double w0, double wb, double G, double Gb, double G0) chebyshev1_bp_filter() argument 439 chebyshev2_bp_filter(EqualizatorFilter *f, int N, double w0, double wb, double G, double Gb, double G0) chebyshev2_bp_filter() argument [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | yuv_sse41.c | 51 const __m128i G0 = _mm_mulhi_epu16(*U0, k6419); 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 138 YUV444ToRGB_SSE41(y + 0, u + 0, v + 0, &R0, &G0, &B0); 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 160 YUV444ToRGB_SSE41(y + 0, u + 0, v + 0, &R0, &G0, &B0); 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 188 YUV420ToRGB_SSE41(y + 0, u + 0, v + 0, &R0, &G0, in YuvToRgbRow_SSE41() 222 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; YuvToBgrRow_SSE41() local [all...] |
H A D | yuv_sse2.c | 51 const __m128i G0 = _mm_mulhi_epu16(*U0, k6419); 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 252 YUV444ToRGB_SSE2(y + 0, u + 0, v + 0, &R0, &G0, &B0); 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 274 YUV444ToRGB_SSE2(y + 0, u + 0, v + 0, &R0, &G0, &B0); 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 368 YUV420ToRGB_SSE2(y + 0, u + 0, v + 0, &R0, &G0, in YuvToRgbRow_SSE2() 402 __m128i R0, R1, R2, R3, G0, G1, G2, G3, B0, B1, B2, B3; YuvToBgrRow_SSE2() local [all...] |
H A D | common_sse41.h | 42 __m128i G0, G1, G2, G3, G4, G5; in VP8PlanarTo24b_SSE41() local 82 const __m128i RG0 = _mm_or_si128(R0, G0); in VP8PlanarTo24b_SSE41()
|
H A D | upsampling_neon.c | 147 const int16x8_t G0 = vqdmulhq_lane_s16(U0, coeff1, 2); \ 154 const int16x8_t G3 = vqaddq_s16(G0, G1); \
|
H A D | rescaler_sse2.c | 315 const __m128i G0 = _mm_or_si128(D0, F2); in RescalerExportRowShrink_SSE2() local 317 _mm_storeu_si128((__m128i*)(irow + x_out + 0), G0); in RescalerExportRowShrink_SSE2()
|
H A D | lossless_enc_sse2.c | 110 const __m128i G0 = _mm_sub_epi8(E0, F0); // 0 0 | x b' in CollectColorBlueTransforms_SSE2() local 112 const __m128i H0 = _mm_and_si128(G0, mask_b); // 0 0 | 0 b in CollectColorBlueTransforms_SSE2()
|
/third_party/ffmpeg/libswscale/ppc/ |
H A D | yuv2rgb_altivec.c | 315 vector signed short R0, G0, B0; \ 398 G0 = vec_add(Y0, uvx0); \ 405 G = vec_packclp(G0, G1); \ 411 G0 = vec_add(Y2, uvx0); \ 417 G = vec_packclp(G0, G1); \ 483 vector signed short R0, G0, B0, R1, G1, B1; in altivec_uyvy_rgb32() local 502 cvtyuvtoRGB(c, Y, U, V, &R0, &G0, &B0); 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 711 cvtyuvtoRGB(c, Y0, U0, V0, &R0, &G0, in yuv2packedX_altivec() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
H A D | DelaySlotFiller.cpp | 417 && OrMI->getOperand(1).getReg() != SP::G0 in combineRestoreOR() 418 && OrMI->getOperand(2).getReg() != SP::G0) in combineRestoreOR() 422 && OrMI->getOperand(1).getReg() != SP::G0 in combineRestoreOR() 470 RestoreMI->getOperand(1).setReg(SP::G0); in combineRestoreSETHIi() 489 && MBBI->getOperand(0).getReg() == SP::G0 in tryCombineRestoreWithPrevInst() 490 && MBBI->getOperand(1).getReg() == SP::G0 in tryCombineRestoreWithPrevInst() 491 && MBBI->getOperand(2).getReg() == SP::G0); in tryCombineRestoreWithPrevInst()
|
H A D | SparcFrameLowering.cpp | 230 BuildMI(MBB, MBBI, dl, TII.get(SP::RESTORErr), SP::G0).addReg(SP::G0) in emitEpilogue() 231 .addReg(SP::G0); in emitEpilogue()
|
H A D | SparcInstrInfo.cpp | 322 BuildMI(MBB, I, DL, get(SP::ORrr), DestReg).addReg(SP::G0) in copyPhysReg() 362 .addReg(SP::G0) in copyPhysReg() 384 MIB.addReg(SP::G0); in copyPhysReg()
|
H A D | SparcISelDAGToDAG.cpp | 140 R2 = CurDAG->getRegister(SP::G0, TLI->getPointerTy(CurDAG->getDataLayout())); in SelectADDRrr() 357 TopPart = CurDAG->getRegister(SP::G0, MVT::i32); in Select()
|
H A D | SparcRegisterInfo.cpp | 73 Reserved.set(SP::G0); in getReservedRegs()
|
H A D | SparcAsmPrinter.cpp | 394 MI->getOperand(opNum+1).getReg() == SP::G0) in printMemOperand()
|
H A D | SparcISelLowering.cpp | 1028 .Case("g0", SP::G0).Case("g1", SP::G1).Case("g2", SP::G2).Case("g3", SP::G3) in getRegisterByName() 3364 SDValue Hi = DAG.getCopyFromReg(Lo, dl, SP::G0, MVT::i32); in ReplaceNodeResults()
|
/third_party/ffmpeg/libswscale/x86/ |
H A D | yuv_2_rgb.asm | 201 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 286 punpcklbw m2, m7 ; G0 G1 G2 G3 ... G7
|
H A D | input.asm | 174 pshufb m0, shuf_rgb1 ; (word) { B0, G0, R0, B1, B2, G2, R2, B3 } 178 movd m0, [srcq+0] ; (byte) { B0, G0, R0, B1 } 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 } 267 movd m0, [srcq+0] ; (byte) { B0, G0, R0, B1 } 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*G [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/MCTargetDesc/ |
H A D | SparcInstPrinter.cpp | 67 case SP::G0: // jmp $addr | ret | retl in printSparcAliasInstr() 153 if (MO.isReg() && MO.getReg() == SP::G0) in printMemOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/AsmParser/ |
H A D | SparcAsmParser.cpp | 129 Sparc::G0, Sparc::G1, Sparc::G2, Sparc::G3, 410 if (Reg >= Sparc::G0 && Reg <= Sparc::G7) in MorphToIntPairReg() 411 regIdx = Reg - Sparc::G0; in MorphToIntPairReg() 486 Op->Mem.OffsetReg = Sparc::G0; // always 0 in CreateMEMr() 537 MCOperand PrevReg = MCOperand::createReg(Sparc::G0); in expandSET()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 1410 APInt G0 = AM.abs(); in findGCD() local 1412 APInt Q = G0; // these need to be initialized in findGCD() 1413 APInt R = G0; in findGCD() 1414 APInt::sdivrem(G0, G1, Q, R); in findGCD() 1418 G0 = G1; G1 = R; in findGCD() 1419 APInt::sdivrem(G0, G1, Q, R); in findGCD()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/Disassembler/ |
H A D | SparcDisassembler.cpp | 61 SP::G0, SP::G1, SP::G2, SP::G3,
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp8dsp_loopfilter.asm | 82 movd m%4, [%9+%11] ; G0-3
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | SamplerCore.cpp | 2063 const float G0 = (studioSwing * -16 * Yy - 128 * Gu - 128 * Gv) / 255; in sampleTexel() local 2095 const UShort4 g0 = UShort4(iround(G0 * 0x4000)); in sampleTexel()
|