Home
last modified time | relevance | path

Searched refs:tc4 (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DvariadicTuples1.js36 const tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number] constant
424 var tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number] variable
643 declare const tc4: [...string[], number, number, number];
DvariadicTuples1.symbols108 const tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number]
109 >tc4 : Symbol(tc4, Decl(variadicTuples1.ts, 34, 5))
DvariadicTuples1.types110 const tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number]
111 >tc4 : [...string[], number, number, number]
DvariadicTuples1.errors.txt84 const tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number]
/third_party/ffmpeg/libavcodec/mips/
Dhevc_lpf_sao_msa.c41 int32_t tc4, p_is_pcm4, q_is_pcm4, tc254, tmp; in hevc_loopfilter_luma_hor_msa() local
100 tc4 = tc[1]; in hevc_loopfilter_luma_hor_msa()
101 tc254 = ((tc4 * 5 + 1) >> 1); in hevc_loopfilter_luma_hor_msa()
104 cmp1 = (v2i64) __msa_fill_h(tc4); in hevc_loopfilter_luma_hor_msa()
465 int32_t tc4, p_is_pcm4, q_is_pcm4, tc254, tmp; in hevc_loopfilter_luma_ver_msa() local
523 tc4 = tc[1]; in hevc_loopfilter_luma_ver_msa()
524 tc254 = ((tc4 * 5 + 1) >> 1); in hevc_loopfilter_luma_ver_msa()
526 cmp1 = (v2i64) __msa_fill_h(tc4 << 1); in hevc_loopfilter_luma_ver_msa()
/third_party/typescript/tests/cases/conformance/types/tuple/
DvariadicTuples1.ts38 const tc4 = concat(sa, [1, 2, 3]); // Ideally would be [...string[], number, number, number] constant