Searched refs:ff2 (Results 1 - 10 of 10) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | constAssertions.js | 75 function ff2<T extends string, U extends string>(x: T, y: U) { 79 const ts1 = ff2('foo', 'bar'); 80 const ts2 = ff2('foo', !!true ? '0' : '1'); 81 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right'); 171 function ff2(x, y) {
function 174 const ts1 = ff2('foo', 'bar');
175 const ts2 = ff2('foo', !!true ? '0' : '1');
176 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right');
302 declare function ff2<T extends string, U extends string>(x: T, y: U): `${T}-${U}`;
|
H A D | genericRestParameters3.js | 77 declare let ff2: (x: string, ...rest: [string] | [number]) => void; 79 ff1 = ff2; 80 ff2 = ff1; 134 ff1 = ff2;
135 ff2 = ff1;
167 declare let ff2: (x: string, ...rest: [string] | [number]) => void;
|
H A D | unknownControlFlow.js | 279 function ff2<T>(t: T & {}, k: keyof T) { 292 ff2(null, 'foo'); // Error 692 function ff2(t, k) {
function 702 ff2(null, 'foo'); // Error
852 declare function ff2<T>(t: T & {}, k: keyof T): void;
|
H A D | genericRestParameters1.js | 159 declare var ff2: () => void; 163 ff1 = ff2; 278 ff1 = ff2;
357 declare var ff2: () => void;
|
H A D | templateLiteralTypes3.js | 138 function ff2<T extends string>(x: `foo-${T}`, y: `${T}-bar`, z: `baz-${T}`) { 253 function ff2(x, y, z) {
function 345 declare function ff2<T extends string>(x: `foo-${T}`, y: `${T}-bar`, z: `baz-${T}`): void;
|
H A D | keyofAndIndexedAccess.js | 641 function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number { 1086 function ff2(dd, k1, k2) {
function 1431 declare function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number;
|
/third_party/ffmpeg/libavcodec/ |
H A D | lsp.c | 137 int ff2 = f2[i] - f2[i-1]; // (3.22) in ff_acelp_lsp2lpc() local 140 lp[i] = (ff1 + ff2) >> 11; // divide by 2 and (3.22) -> (3.12) in ff_acelp_lsp2lpc() 141 lp[(lp_half_order << 1) + 1 - i] = (ff1 - ff2) >> 11; // divide by 2 and (3.22) -> (3.12) in ff_acelp_lsp2lpc()
|
H A D | g723_1.c | 1244 int64_t ff2 = f2[i + 1] - f2[i]; in lsp2lpc() local 1246 lpc[i] = av_clipl_int32(((ff1 + ff2) * 8) + (1 << 15)) >> 16; in lsp2lpc() 1247 lpc[LPC_ORDER - i - 1] = av_clipl_int32(((ff1 - ff2) * 8) + in lsp2lpc()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_maskedminmax.c | 92 const uint8_t *ff2, int w) \ 96 const type *f2 = (const type *)ff2; \
|
/third_party/ltp/testscripts/ |
H A D | ltp-aiodio.sh | 255 dd if=$file1 of=$TMP/aiodio/ff2 bs=1024 conv=block,sync 312 rm -f $TMP/aiodio/ff2
|
Completed in 11 milliseconds