/third_party/ffmpeg/libavcodec/ |
D | ylc.c | 285 int TL[4] = { 128, 128, 128, 128 }; in decode_frame() local 413 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame() 414 dst[x + 2] = L[0] = dst[x + 2] + L[0] + dst[x + 2 - p->linesize[0]] - TL[0]; in decode_frame() 415 TL[0] = dst[x + 2 - p->linesize[0]]; in decode_frame() 416 L[1] = dst[x + 1] + L[1] + dst[x + 1 - p->linesize[0]] - TL[1]; in decode_frame() 418 TL[1] = dst[x + 1 - p->linesize[0]]; in decode_frame() 419 L[2] = dst[x + 3] + L[2] + dst[x + 3 - p->linesize[0]] - TL[2]; in decode_frame() 421 TL[2] = dst[x + 3 - p->linesize[0]]; in decode_frame() 423 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame() 424 dst[x + 2] = L[0] = dst[x + 2] + L[0] + dst[x + 2 - p->linesize[0]] - TL[0]; in decode_frame() [all …]
|
D | lagarith.c | 268 int L, TL; in lag_pred_line() local 280 TL = l->avctx->pix_fmt == AV_PIX_FMT_YUV420P ? buf[-stride] : L; in lag_pred_line() 283 TL = buf[width - (2 * stride) - 1]; in lag_pred_line() 287 width, &L, &TL); in lag_pred_line() 295 int L, TL; in lag_pred_line_yuy2() local 311 TL = buf[HEAD - stride - 1]; in lag_pred_line_yuy2() 317 … L = mid_pred(L & 0xFF, buf[i - stride], (L + buf[i - stride] - TL) & 0xFF) + buf[i]; in lag_pred_line_yuy2() 318 TL = buf[i - stride]; in lag_pred_line_yuy2() 322 TL = buf[width - (2 * stride) - 1]; in lag_pred_line_yuy2() 324 l->llviddsp.add_median_pred(buf, buf - stride, buf, width, &L, &TL); in lag_pred_line_yuy2()
|
/third_party/typescript/tests/baselines/reference/ |
D | nearbyIdenticalGenericLambdasAssignable.types | 43 type TL = <T>() => { v: T }; 44 >TL : <T>() => { v: T; } 59 declare function accL(x: TL): void; 60 >accL : (x: TL) => void 61 >x : TL 102 >accL : (x: TL) => void 105 >accL : (x: TL) => void 108 >accL : (x: TL) => void
|
D | nearbyIdenticalGenericLambdasAssignable.symbols | 40 type TL = <T>() => { v: T }; 41 >TL : Symbol(TL, Decl(nearbyIdenticalGenericLambdasAssignable.ts, 11, 20)) 61 declare function accL(x: TL): void; 64 >TL : Symbol(TL, Decl(nearbyIdenticalGenericLambdasAssignable.ts, 11, 20))
|
D | nearbyIdenticalGenericLambdasAssignable.js | 14 type TL = <T>() => { v: T }; 19 declare function accL(x: TL): void;
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_image.cpp | 300 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | DependenceAnalysis.cpp | 1540 APInt TL(APInt::getSignedMinValue(Bits)); in exactSIVtest() local 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 = maxAPInt(TL, ceilingOfQuotient(-Y, TMUL)); in exactSIVtest() 1565 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1575 TL = maxAPInt(TL, ceilingOfQuotient(UM - Y, TMUL)); in exactSIVtest() 1576 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1579 if (TL.sgt(TU)) { in exactSIVtest() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | lossless_sse2.c | 281 Average2_m128i(&L, &TL, &avgLTL); \ 290 TL = _mm_srli_si128(TL, 4); \ 300 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); local 323 const __m128i TL_lo = _mm_unpacklo_epi32(TL, T); \ 336 TL = _mm_srli_si128(TL, 4); \ 348 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorAdd11_SSE2() local 355 const __m128i TL_lo = _mm_unpacklo_epi32(TL, T); in PredictorAdd11_SSE2() 357 const __m128i TL_hi = _mm_unpackhi_epi32(TL, T); in PredictorAdd11_SSE2() 404 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorAdd12_SSE2() local 405 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorAdd12_SSE2() [all …]
|
D | lossless_neon.c | 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]); in PredictorAdd12_NEON() local 436 vreinterpretq_s16_u16(vsubl_u8(vget_low_u8(T), vget_low_u8(TL))); in PredictorAdd12_NEON() 438 vreinterpretq_s16_u16(vsubl_u8(vget_high_u8(T), vget_high_u8(TL))); in PredictorAdd12_NEON() 452 const uint8x16_t cmp = vcgtq_u8(TL, avg); \ 453 const uint8x16_t TL_1 = vaddq_u8(TL, cmp); \ [all …]
|
D | lossless_enc_sse2.c | 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, &pb); // pb = sum |L-TL| in PredictorSub11_SSE2() 583 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub12_SSE2() local 584 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub12_SSE2() 585 const __m128i TL_hi = _mm_unpackhi_epi8(TL, zero); in PredictorSub12_SSE2() 609 const __m128i TL = _mm_loadl_epi64((const __m128i*)&upper[i - 1]); in PredictorSub13_SSE2() local 612 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub13_SSE2()
|
/third_party/typescript/tests/cases/compiler/ |
D | nearbyIdenticalGenericLambdasAssignable.ts | 13 type TL = <T>() => { v: T }; alias 18 declare function accL(x: TL): void;
|
/third_party/skia/third_party/externals/icu/patches/ |
D | locale_google.patch | 17 TRY{"TL"} 38 TRY{"TL"} 1531 TL{"ምስራቅ ቲሞር"} 1589 TL{"تيمور الشرقية"} 1666 TL{"পূৱ টিমোৰ"} 1723 TL{"Timor Este"} 1886 TL{"Усходні Тымор"} 1943 TL{"Източен Тимор"} 2004 TL{"পূর্ব তিমুর"} 2062 TL{"Timor ar Reter"} [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 127 const TargetLoweringBase &TL; member in __anon3c76bb940111::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(); in runOnFunction() local 871 if (!TL) in runOnFunction() 889 return SafeStack(F, *TL, *DL, SE).run(); in runOnFunction()
|
D | ExpandMemCmp.cpp | 801 const TargetLowering* TL = in runOnFunction() local 812 auto PA = runImpl(F, TLI, TTI, TL, PSI, BFI); in runOnFunction() 827 const TargetLowering* TL, 831 const TargetTransformInfo *TTI, const TargetLowering* TL, 838 const TargetTransformInfo *TTI, const TargetLowering* TL, in runOnBlock() argument 848 expandMemCmp(CI, TTI, TL, &DL, PSI, BFI)) { in runOnBlock() 858 const TargetLowering* TL, ProfileSummaryInfo *PSI, in runImpl() argument 863 if (runOnBlock(*BBIt, TLI, TTI, TL, DL, PSI, BFI)) { in runImpl()
|
/third_party/icu/icu4c/source/data/region/ |
D | fr_CA.txt | 36 TL{"Timor-Leste"} 45 TL{"Timor oriental"}
|
D | nn.txt | 45 TL{"Aust-Timor"} 60 TL{"Aust-Timor"}
|
D | ff_Adlm.txt | 270 TL{" "} 317 TL{" "}
|
D | ce.txt | 264 TL{"Малхбален Тимор"} 308 TL{"Тимор-Лесте"}
|
D | fa.txt | 266 TL{"تیمور-لسته"} 316 TL{"تیمور شرقی"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | fr_CA.txt | 36 TL{"Timor-Leste"} 45 TL{"Timor oriental"}
|
D | nn.txt | 46 TL{"Aust-Timor"} 56 TL{"Aust-Timor"}
|
D | as.txt | 266 TL{"টিমোৰ-লেচটে"} 311 TL{"পূৱ টিমোৰ"}
|
D | be.txt | 266 TL{"Тымор-Лешці"} 310 TL{"Усходні Тымор"}
|
/third_party/skia/tests/ |
D | SkDSLRuntimeEffectTest.cpp | 60 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/ |
D | SamplePatch.cpp | 80 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()
|