/third_party/typescript/tests/baselines/reference/ |
D | nearbyIdenticalGenericLambdasAssignable.types | 43 type TL = <T>() => { v: T }; 44 >TL : TL 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/ffmpeg/libavcodec/ |
D | ylc.c | 287 int TL[4] = { 128, 128, 128, 128 }; in decode_frame() local 426 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame() 427 dst[x + 2] = L[0] = dst[x + 2] + L[0] + dst[x + 2 - p->linesize[0]] - TL[0]; in decode_frame() 428 TL[0] = dst[x + 2 - p->linesize[0]]; in decode_frame() 429 L[1] = dst[x + 1] + L[1] + dst[x + 1 - p->linesize[0]] - TL[1]; in decode_frame() 431 TL[1] = dst[x + 1 - p->linesize[0]]; in decode_frame() 432 L[2] = dst[x + 3] + L[2] + dst[x + 3 - p->linesize[0]] - TL[2]; in decode_frame() 434 TL[2] = dst[x + 3 - p->linesize[0]]; in decode_frame() 436 dst[x ] = dst[x ] + L[0] + dst[x + 0 - p->linesize[0]] - TL[0]; in decode_frame() 437 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/flutter/skia/third_party/externals/icu/source/data/region/ |
D | es_US.txt | 25 TL{"Timor-Leste"} 34 TL{"TL"}
|
D | fr_CA.txt | 34 TL{"Timor-Leste"} 43 TL{"Timor oriental"}
|
/third_party/boost/boost/test/tools/ |
D | interface.hpp | 174 #define BOOST_CHECK_THROW_IMPL(S, E, TL, Ppassed, Mpassed, Pcaught, Mcaught)\ argument 177 BOOST_TEST_TOOL_DIRECT_IMPL( Ppassed, TL, Mpassed ); \ 179 BOOST_TEST_TOOL_DIRECT_IMPL( Pcaught, TL, Mcaught ); \ 185 #define BOOST_CHECK_THROW_IMPL(S, E, TL, Ppassed, Mpassed, Pcaught, Mcaught)\ argument 190 BOOST_TEST_TOOL_DIRECT_IMPL( Ppassed, TL, Mpassed ); \ 192 BOOST_TEST_TOOL_DIRECT_IMPL( Pcaught, TL, Mcaught ); \ 198 #define BOOST_CHECK_THROW_IMPL(S, E, TL, Ppassed, Mpassed, Pcaught, Mcaught)\ argument 202 BOOST_TEST_TOOL_DIRECT_IMPL( Ppassed, TL, Mpassed ); \ 204 BOOST_TEST_TOOL_DIRECT_IMPL( Pcaught, TL, Mcaught ); \
|
/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/boost/boost/test/tools/old/ |
D | interface.hpp | 63 #define BOOST_TEST_TOOL_IMPL( frwd_type, P, assertion_descr, TL, CT, ARGS ) \ argument 72 ::boost::test_tools::tt_detail::TL, \ 100 #define BOOST_CHECK_THROW_IMPL( S, E, P, postfix, TL ) \ argument 106 TL, CHECK_MSG, _ ); \ 111 TL, CHECK_MSG, _ ); \ 133 #define BOOST_CHECK_NO_THROW_IMPL( S, TL ) \ argument 138 TL, CHECK_MSG, _ ); \ 141 TL, CHECK_MSG, _ ); \
|
/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/icu/icu4c/source/data/region/ |
D | es_US.txt | 33 TL{"TL"}
|
D | fr_CA.txt | 34 TL{"Timor-Leste"} 44 TL{"Timor oriental"}
|
/third_party/boost/boost/test/ |
D | unit_test_suite.hpp | 230 #define BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, F ) \ argument 253 BOOST_AUTO_TC_INVOKER( test_name ),TL >( \ 265 #define BOOST_AUTO_TEST_CASE_TEMPLATE( test_name, type_name, TL ) \ argument 266 BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, \
|
/third_party/flutter/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 | 534 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub10_SSE2() local 539 Average2_m128i(&L, &TL, &avgLTL); in PredictorSub10_SSE2() 569 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub11_SSE2() local 572 GetSumAbsDiff32_SSE2(&T, &TL, &pa); // pa = sum |T-TL| in PredictorSub11_SSE2() 573 GetSumAbsDiff32_SSE2(&L, &TL, &pb); // pb = sum |L-TL| in PredictorSub11_SSE2() 601 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub12_SSE2() local 602 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub12_SSE2() 603 const __m128i TL_hi = _mm_unpackhi_epi8(TL, zero); in PredictorSub12_SSE2() 627 const __m128i TL = _mm_loadl_epi64((const __m128i*)&upper[i - 1]); in PredictorSub13_SSE2() local 630 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub13_SSE2()
|
/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 …]
|
/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/flutter/skia/third_party/externals/icu/patches/ |
D | locale_google.patch | 17 TRY{"TL"} 38 TRY{"TL"} 328 TL{"ምስራቅ ቲሞር"} 392 TL{"تيمور الشرقية"} 475 TL{"পূৱ টিমোৰ"} 539 TL{"Timor Este"} 603 TL{"Doğu Timor"} 719 TL{"Усходні Тымор"} 846 TL{"পূর্ব তিমুর"} 910 TL{"Timor ar Reter"} [all …]
|
/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/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"}
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 127 const TargetLoweringBase &TL; member in __anon11ffc0780111::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()
|