/third_party/ltp/runtest/ |
D | ltp-aiodio.part1 | 3 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/ |
D | hlsl.struct.frag.out | 12 …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 …]
|
D | hlsl.float4.frag.out | 16 …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/ |
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}`;
|
D | constAssertions.symbols | 228 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))
|
D | constAssertions.types | 395 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 …]
|
D | constAssertions.errors.txt | 89 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');
|
D | genericRestParameters1.js | 159 declare var ff2: () => void; 163 ff1 = ff2; 274 ff1 = ff2; 353 declare var ff2: () => void;
|
D | genericRestParameters1.symbols | 620 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))
|
D | genericRestParameters1.errors.txt | 169 declare var ff2: () => void; 173 ff1 = ff2;
|
D | genericRestParameters1.types | 773 declare var ff2: () => void; 774 >ff2 : () => void 784 ff1 = ff2; 785 >ff1 = ff2 : () => void 787 >ff2 : () => void
|
D | keyofAndIndexedAccess.js | 641 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;
|
D | keyofAndIndexedAccess.symbols | 2270 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))
|
D | keyofAndIndexedAccess.types | 2131 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/ |
D | constAssertions.ts | 78 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/ |
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()
|
D | g723_1.c | 1243 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/ |
D | vf_maskedminmax.c | 105 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/ |
D | hlsl.float4.frag | 4 float ff2 : packoffset(c1.y);
|
D | hlsl.struct.frag | 25 bool ff2 : packoffset(c0.y);
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters1.ts | 161 declare var ff2: () => void; variable 165 ff1 = ff2;
|
/third_party/boost/libs/flyweight/test/ |
D | test_multictor.cpp | 188 flyweight<initctor> ff2 INIT_LIST1(1u); in test_multictor() 189 BOOST_TEST(ff2.get().res==2); in test_multictor()
|
/third_party/ltp/testscripts/ |
D | ltp-aiodio.sh | 255 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/ |
D | keyofAndIndexedAccess.ts | 643 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/ |
D | es2gears-a320.log | 5689 11844938: 0000: 0000057d 00002ff2 5717 !+ 00002ff2 CP_SCRATCH_REG5: 12274
|