Home
last modified time | relevance | path

Searched refs:TL (Results 1 - 25 of 35) sorted by relevance

12

/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_image.cpp300 dng_rect newArea = srcArea + (dstArea.TL () - in GetRepeat()
301 srcArea.TL ()); in GetRepeat()
320 temp.fArea = dst1 + (srcArea.TL () - in GetRepeat()
321 dstArea.TL () + in GetRepeat()
344 temp.fArea = dst2 + (srcArea.TL () - in GetRepeat()
345 dstArea.TL () + in GetRepeat()
368 temp.fArea = dst3 + (srcArea.TL () - in GetRepeat()
369 dstArea.TL () + in GetRepeat()
392 temp.fArea = dst4 + (srcArea.TL () - in GetRepeat()
393 dstArea.TL () in GetRepeat()
[all...]
H A Ddng_rect.h163 dng_point TL () const in TL() function in dng_rect
298 dng_point_real64 TL () const in TL() function in dng_rect_real64
H A Ddng_linearization_info.cpp456 dng_rect dstTile = srcTile - fActiveArea.TL (); in Process()
1039 return fDstImage.RepeatingTile () + fActiveArea.TL (); in RepeatingTile2()
H A Ddng_utils.cpp343 rect.TL ()); in MaxSquaredDistancePointToRect()
/third_party/ffmpeg/libavcodec/
H A Dylc.c284 int TL[4] = { 128, 128, 128, 128 }; in decode_frame() local
410 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame()
411 dst[x + 2] = L[0] = dst[x + 2] + L[0] + dst[x + 2 - p->linesize[0]] - TL[0]; in decode_frame()
412 TL[0] = dst[x + 2 - p->linesize[0]]; in decode_frame()
413 L[1] = dst[x + 1] + L[1] + dst[x + 1 - p->linesize[0]] - TL[1]; in decode_frame()
415 TL[1] = dst[x + 1 - p->linesize[0]]; in decode_frame()
416 L[2] = dst[x + 3] + L[2] + dst[x + 3 - p->linesize[0]] - TL[2]; in decode_frame()
418 TL[2] = dst[x + 3 - p->linesize[0]]; in decode_frame()
420 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame()
421 dst[x + 2] = L[0] = dst[x + 2] + L[0] + dst[x + 2 - p->linesize[0]] - TL[ in decode_frame()
[all...]
H A Dlagarith.c269 int L, TL; in lag_pred_line() local
281 TL = l->avctx->pix_fmt == AV_PIX_FMT_YUV420P ? buf[-stride] : L; in lag_pred_line()
284 TL = buf[width - (2 * stride) - 1]; in lag_pred_line()
288 width, &L, &TL); in lag_pred_line()
296 int L, TL; in lag_pred_line_yuy2() local
312 TL = buf[HEAD - stride - 1]; in lag_pred_line_yuy2()
318 L = mid_pred(L & 0xFF, buf[i - stride], (L + buf[i - stride] - TL) & 0xFF) + buf[i]; in lag_pred_line_yuy2()
319 TL = buf[i - stride]; in lag_pred_line_yuy2()
323 TL = buf[width - (2 * stride) - 1]; in lag_pred_line_yuy2()
325 l->llviddsp.add_median_pred(buf, buf - stride, buf, width, &L, &TL); in lag_pred_line_yuy2()
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_neon.c298 // Predictor6: average(left, TL)
346 // Predictor8: average TL T.
352 // Predictor10: average of (average of (L,TL), average of (T, TR)).
354 const uint8x16_t avgLTL = vhaddq_u8(L, TL); \
367 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); in PredictorAdd10_NEON() local
383 const uint8x16_t pLTL = vabdq_u8(L, TL); /* |L - TL| */ \
398 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); in PredictorAdd11_NEON() local
399 const uint8x16_t pTTL = vabdq_u8(T, TL); // |T - TL| in PredictorAdd11_NEON()
433 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); PredictorAdd12_NEON() local
473 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); PredictorAdd13_NEON() local
[all...]
H A Dlossless_sse2.c272 // Predictor8: average TL T.
278 // Predictor10: average of (average of (L,TL), average of (T, TR)).
281 Average2_m128i(&L, &TL, &avgLTL); \
290 TL = _mm_srli_si128(TL, 4); \
300 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorAdd10_SSE2() local
323 const __m128i TL_lo = _mm_unpacklo_epi32(TL, T); \
324 const __m128i pb = _mm_sad_epu8(L_lo, TL_lo); /* pb = sum |L-TL|*/ \
336 TL = _mm_srli_si128(TL,
348 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); PredictorAdd11_SSE2() local
404 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); PredictorAdd12_SSE2() local
[all...]
H A Dlossless_enc_sse2.c462 GENERATE_PREDICTOR_1(4, upper[i - 1]) // Predictor4: TL
503 GENERATE_PREDICTOR_2(6, in[i - 1], upper[i - 1]) // Predictor6: avg(L, TL)
505 GENERATE_PREDICTOR_2(8, upper[i - 1], upper[i]) // Predictor8: avg(TL, T)
509 // Predictor10: avg(avg(L,TL), avg(T, TR)).
516 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub10_SSE2() local
521 Average2_m128i(&L, &TL, &avgLTL); in PredictorSub10_SSE2()
551 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub11_SSE2() local
554 GetSumAbsDiff32_SSE2(&T, &TL, &pa); // pa = sum |T-TL| in PredictorSub11_SSE2()
555 GetSumAbsDiff32_SSE2(&L, &TL, in PredictorSub11_SSE2()
583 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); PredictorSub12_SSE2() local
609 const __m128i TL = _mm_loadl_epi64((const __m128i*)&upper[i - 1]); PredictorSub13_SSE2() local
[all...]
H A Ddec_msa.c693 const v8i16 TL = (v8i16)__msa_fill_h(ptemp[0 * BPS]); in TM4() local
701 d = T - TL; in TM4()
798 const v8i16 TL = (v8i16)__msa_fill_h(dst[-1 - BPS]); in TM16() local
802 SUB2(d1, TL, d2, TL, d1, d2); in TM16()
900 const v8i16 TL = (v8i16)__msa_fill_h(dst[-1 - BPS]); in TM8uv() local
901 const v8i16 d = T - TL; in TM8uv()
H A Denc_msa.c416 const v8i16 TL = (v8i16)__msa_fill_h(top[-1]); in TM4() local
423 const v8i16 d = T - TL; in TM4()
490 const v8i16 TL = (v8i16)__msa_fill_h(left[-1]); in TrueMotion16x16() local
493 SUB2(d1, TL, d2, TL, d1, d2); in TrueMotion16x16()
614 const v8i16 TL = (v8i16)__msa_fill_h(left[-1]); in TrueMotion8x8() local
618 const v8i16 d = T - TL; in TrueMotion8x8()
H A Ddec_neon.c1304 const uint8x8_t TL = vld1_dup_u8(dst - BPS - 1); // top-left pixel 'A[-1]' in TrueMotion_NEON() local
1306 const int16x8_t d = vreinterpretq_s16_u16(vsubl_u8(T, TL)); // A[c] - A[-1] in TrueMotion_NEON()
1575 const uint8x8_t TL = vld1_dup_u8(dst - BPS - 1); // top-left pixel 'A[-1]' in TM16_NEON() local
1578 const int16x8_t d_lo = vreinterpretq_s16_u16(vsubl_u8(vget_low_u8(T), TL)); in TM16_NEON()
1579 const int16x8_t d_hi = vreinterpretq_s16_u16(vsubl_u8(vget_high_u8(T), TL)); in TM16_NEON()
/third_party/typescript/tests/baselines/reference/
H A DnearbyIdenticalGenericLambdasAssignable.js14 type TL = <T>() => { v: T };
19 declare function accL(x: TL): void;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1540 APInt TL(APInt::getSignedMinValue(Bits)); in exactSIVtest()
1545 TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL)); in exactSIVtest()
1546 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1556 TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL)); in exactSIVtest()
1557 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1564 TL in exactSIVtest()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSafeStack.cpp127 const TargetLoweringBase &TL; member in __anon24101::SafeStack
207 SafeStack(Function &F, const TargetLoweringBase &TL, const DataLayout &DL, in SafeStack() argument
209 : F(F), TL(TL), DL(DL), SE(SE), in SafeStack()
371 Value *StackGuardVar = TL.getIRStackGuard(IRB); in getStackGuard()
783 UnsafeStackPtr = TL.getSafeStackPointerLocation(IRB); in run()
870 auto *TL = TM->getSubtargetImpl(F)->getTargetLowering(); variable
871 if (!TL)
889 return SafeStack(F, *TL, *DL, SE).run();
H A DExpandMemCmp.cpp801 const TargetLowering* TL = variable
812 auto PA = runImpl(F, TLI, TTI, TL, PSI, BFI);
827 const TargetLowering* TL,
831 const TargetTransformInfo *TTI, const TargetLowering* TL,
838 const TargetTransformInfo *TTI, const TargetLowering* TL, in runOnBlock()
848 expandMemCmp(CI, TTI, TL, &DL, PSI, BFI)) { in runOnBlock()
858 const TargetLowering* TL, ProfileSummaryInfo *PSI, in runImpl()
863 if (runOnBlock(*BBIt, TLI, TTI, TL, DL, PSI, BFI)) { in runImpl()
836 runOnBlock( BasicBlock &BB, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, const TargetLowering* TL, const DataLayout& DL, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) runOnBlock() argument
856 runImpl( Function &F, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, const TargetLowering* TL, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) runImpl() argument
H A DCallingConvLower.cpp250 const TargetLowering *TL = MF.getSubtarget().getTargetLowering();
251 const TargetRegisterClass *RC = TL->getRegClassFor(RegVT);
/third_party/skia/tests/
H A DSkDSLRuntimeEffectTest.cpp60 void test(GrColor TL, GrColor TR, GrColor BL, GrColor BR, in test() argument
87 GrColor expected[4] = {TL, TR, BL, BR}; in test()
94 TL, TR, BL, BR, actual[0], actual[1], actual[2], in test()
/third_party/skia/samplecode/
H A DSamplePatch.cpp80 const int TL = 0; in eval_sheet() local
93 SkScalar x0 = UV * edge[TL].fX + uV * edge[TR].fX + Uv * edge[BL].fX + uv * edge[BR].fX; in eval_sheet()
94 SkScalar y0 = UV * edge[TL].fY + uV * edge[TR].fY + Uv * edge[BL].fY + uv * edge[BR].fY; in eval_sheet()
96 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet()
98 SkScalar y = (1 - v) * edge[TL+iu].fY + u * edge[TR+iv].fY + in eval_sheet()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp33 : MF(MF), MRI(MF.getRegInfo()), TL(*MF.getSubtarget().getTargetLowering()), in GISelKnownBits()
122 TL.computeKnownBitsForTargetInstr(*this, R, Known, DemandedElts, MRI, in computeKnownBitsImpl()
272 if (TL.getBooleanContents(DstTy.isVector(), in computeKnownBitsImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelKnownBits.h32 const TargetLowering &TL; member in llvm::GISelKnownBits
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp211 const TargetLowering &TL = *STI.getTargetLowering(); in SelectInlineAsmMemoryOperand() local
274 CurDAG->getCopyFromReg(CopyToReg, dl, VReg, TL.getPointerTy(DL)); in SelectInlineAsmMemoryOperand()
301 CurDAG->getCopyFromReg(CopyToReg, dl, VReg, TL.getPointerTy(DL)); in SelectInlineAsmMemoryOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp163 const TargetLowering *TL) { in GetEHSpillList()
168 TL->getExceptionPointerRegister(PersonalityFn))); in GetEHSpillList()
171 TL->getExceptionSelectorRegister(PersonalityFn))); in GetEHSpillList()
160 GetEHSpillList(SmallVectorImpl<StackSlotInfo> &SpillList, MachineFrameInfo &MFI, XCoreFunctionInfo *XFI, const Constant *PersonalityFn, const TargetLowering *TL) GetEHSpillList() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp106 const TargetLowering *TL; member
528 if (Offset >= 0 && TL->isLegalAddImmediate(Offset)) { in UpdateBaseRegUses()
718 if (!TL->isLegalAddImmediate(Offset)) in CreateLoadStoreMulti()
2009 TL = STI->getTargetLowering();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp115 SP::TL, SP::PIL, SP::CWP, SP::CANSAVE, SP::CANRESTORE, SP::CLEANWIN,

Completed in 38 milliseconds

12