Home
last modified time | relevance | path

Searched refs:ff2 (Results 1 – 25 of 27) sorted by relevance

12

/third_party/ltp/runtest/
Dltp-aiodio.part13 AD001 time aiocp -b 1k -n 1 -f DIRECT $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
4 AD002 time aiocp -b 1k -n 1 -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
5 AD003 time aiocp -b 1k -n 1 -f DIRECT -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
6 AD004 time aiocp -b 1k -n 2 -f DIRECT $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
7 AD005 time aiocp -b 1k -n 2 -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
8 AD006 time aiocp -b 1k -n 2 -f DIRECT -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
9 AD007 time aiocp -b 1k -n 4 -f DIRECT $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
10 AD008 time aiocp -b 1k -n 4 -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
11 AD009 time aiocp -b 1k -n 4 -f DIRECT -f SYNC $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
12 AD010 time aiocp -b 1k -n 8 -f DIRECT $TMPDIR/aiodio.$$/junkfile $TMPDIR/aiodio.$$/ff2
[all …]
/third_party/glslang/Test/baseResults/
Dhlsl.struct.frag.out12 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
23 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
43 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
49 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
55 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
61 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
67 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
72 0:40 ff2: direct index for structure ( temp bool)
73 …f float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, temp bool ff3, t…
76 0:? 's.ff2' (layout( location=5) flat in bool)
[all …]
Dhlsl.float4.frag.out16 …of float AmbientColor, uniform bool ff1, layout( offset=20) uniform float ff2, layout( binding=0 …
20 …of float AmbientColor, uniform bool ff1, layout( offset=20) uniform float ff2, layout( binding=0 …
38 …of float AmbientColor, uniform bool ff1, layout( offset=20) uniform float ff2, layout( binding=0 …
42 …of float AmbientColor, uniform bool ff1, layout( offset=20) uniform float ff2, layout( binding=0 …
60 MemberName 15($Global) 2 "ff2"
/third_party/typescript/tests/baselines/reference/
DconstAssertions.js75 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}`;
DconstAssertions.symbols228 function ff2<T extends string, U extends string>(x: T, y: U) {
229 >ff2 : Symbol(ff2, Decl(constAssertions.ts, 71, 1))
242 const ts1 = ff2('foo', 'bar');
244 >ff2 : Symbol(ff2, Decl(constAssertions.ts, 71, 1))
246 const ts2 = ff2('foo', !!true ? '0' : '1');
248 >ff2 : Symbol(ff2, Decl(constAssertions.ts, 71, 1))
250 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right');
252 >ff2 : Symbol(ff2, Decl(constAssertions.ts, 71, 1))
DconstAssertions.types395 function ff2<T extends string, U extends string>(x: T, y: U) {
396 >ff2 : <T extends string, U extends string>(x: T, y: U) => `${T}-${U}`
407 const ts1 = ff2('foo', 'bar');
409 >ff2('foo', 'bar') : "foo-bar"
410 >ff2 : <T extends string, U extends string>(x: T, y: U) => `${T}-${U}`
414 const ts2 = ff2('foo', !!true ? '0' : '1');
416 >ff2('foo', !!true ? '0' : '1') : "foo-1" | "foo-0"
417 >ff2 : <T extends string, U extends string>(x: T, y: U) => `${T}-${U}`
426 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right');
428 >ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right') : "top-left" | "top-right" | "bottom-lef…
[all …]
DconstAssertions.errors.txt89 function ff2<T extends string, U extends string>(x: T, y: U) {
93 const ts1 = ff2('foo', 'bar');
94 const ts2 = ff2('foo', !!true ? '0' : '1');
95 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right');
DgenericRestParameters1.js159 declare var ff2: () => void;
163 ff1 = ff2;
274 ff1 = ff2;
353 declare var ff2: () => void;
DgenericRestParameters1.symbols620 declare var ff2: () => void;
621 >ff2 : Symbol(ff2, Decl(genericRestParameters1.ts, 157, 11))
631 ff1 = ff2;
633 >ff2 : Symbol(ff2, Decl(genericRestParameters1.ts, 157, 11))
DgenericRestParameters1.errors.txt169 declare var ff2: () => void;
173 ff1 = ff2;
DgenericRestParameters1.types773 declare var ff2: () => void;
774 >ff2 : () => void
784 ff1 = ff2;
785 >ff1 = ff2 : () => void
787 >ff2 : () => void
DkeyofAndIndexedAccess.js641 function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number {
1084 function ff2(dd, k1, k2) { function
1429 declare function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number;
DkeyofAndIndexedAccess.symbols2270 function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number {
2271 >ff2 : Symbol(ff2, Decl(keyofAndIndexedAccess.ts, 637, 1))
DkeyofAndIndexedAccess.types2131 function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number {
2132 >ff2 : <V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T) => number
/third_party/typescript/tests/cases/conformance/expressions/typeAssertions/
DconstAssertions.ts78 function ff2<T extends string, U extends string>(x: T, y: U) { function
82 const ts1 = ff2('foo', 'bar');
83 const ts2 = ff2('foo', !!true ? '0' : '1');
84 const ts3 = ff2(!!true ? 'top' : 'bottom', !!true ? 'left' : 'right');
/third_party/ffmpeg/libavcodec/
Dlsp.c137 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()
Dg723_1.c1243 int64_t ff2 = f2[i + 1] - f2[i]; in lsp2lpc() local
1245 lpc[i] = av_clipl_int32(((ff1 + ff2) * 8) + (1 << 15)) >> 16; in lsp2lpc()
1246 lpc[LPC_ORDER - i - 1] = av_clipl_int32(((ff1 - ff2) * 8) + in lsp2lpc()
/third_party/ffmpeg/libavfilter/
Dvf_maskedminmax.c105 static void maskedmin16(const uint8_t *ssrc, uint8_t *ddst, const uint8_t *ff1, const uint8_t *ff2,… in maskedmin16() argument
109 const uint16_t *f2 = (const uint16_t *)ff2; in maskedmin16()
116 static void maskedmax16(const uint8_t *ssrc, uint8_t *ddst, const uint8_t *ff1, const uint8_t *ff2,… in maskedmax16() argument
120 const uint16_t *f2 = (const uint16_t *)ff2; in maskedmax16()
/third_party/glslang/Test/
Dhlsl.float4.frag4 float ff2 : packoffset(c1.y);
Dhlsl.struct.frag25 bool ff2 : packoffset(c0.y);
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters1.ts161 declare var ff2: () => void; variable
165 ff1 = ff2;
/third_party/boost/libs/flyweight/test/
Dtest_multictor.cpp188 flyweight<initctor> ff2 INIT_LIST1(1u); in test_multictor()
189 BOOST_TEST(ff2.get().res==2); in test_multictor()
/third_party/ltp/testscripts/
Dltp-aiodio.sh255 dd if=$file1 of=$TMP/aiodio/ff2 bs=1024 conv=block,sync
312 rm -f $TMP/aiodio/ff2
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofAndIndexedAccess.ts643 function ff2<V extends string, T extends string>(dd: DictDict<V, T>, k1: V, k2: T): number { method in Component2
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/
Des2gears-a320.log5689 11844938: 0000: 0000057d 00002ff2
5717 !+ 00002ff2 CP_SCRATCH_REG5: 12274

12