Home
last modified time | relevance | path

Searched refs:ff1 (Results 1 – 25 of 41) sorted by relevance

12

/third_party/glslang/Test/baseResults/
Dhlsl.struct.frag.out12 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
23 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
43 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
49 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
55 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
61 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
66 0:40 ff1: direct index for structure ( temp bool)
67 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
70 0:? 's.ff1' ( flat in bool Face)
73 …mponent vector of float c, temp 2-component vector of float d, temp bool ff1, temp bool ff2, t…
[all …]
Dhlsl.float4.frag.out16 …orm block{ uniform 4-component vector of float AmbientColor, uniform bool ff1, layout( offset=20)…
20 …orm block{ uniform 4-component vector of float AmbientColor, uniform bool ff1, layout( offset=20)…
38 …orm block{ uniform 4-component vector of float AmbientColor, uniform bool ff1, layout( offset=20)…
42 …orm block{ uniform 4-component vector of float AmbientColor, uniform bool ff1, layout( offset=20)…
59 MemberName 15($Global) 1 "ff1"
/third_party/typescript/tests/baselines/reference/
DtupleTypes.js24 var ff1 = ff("hello", ["foo", x => x.length]);
25 var ff1: number; variable
75 var ff1 = ff("hello", ["foo", function (x) { return x.length; }]);
76 var ff1; variable
DtupleTypes.symbols76 var ff1 = ff("hello", ["foo", x => x.length]);
77 >ff1 : Symbol(ff1, Decl(tupleTypes.ts, 22, 3), Decl(tupleTypes.ts, 23, 3))
84 var ff1: number;
85 >ff1 : Symbol(ff1, Decl(tupleTypes.ts, 22, 3), Decl(tupleTypes.ts, 23, 3))
DgenericRestParameters1.js157 declare var ff1: (... args: any[]) => void;
163 ff1 = ff2;
164 ff1 = ff3;
165 ff1 = ff4; // Error
274 ff1 = ff2;
275 ff1 = ff3;
276 ff1 = ff4; // Error
352 declare var ff1: (...args: any[]) => void;
DtupleTypes.types94 var ff1 = ff("hello", ["foo", x => x.length]);
95 >ff1 : number
107 var ff1: number;
108 >ff1 : number
DgenericRestParameters1.symbols616 declare var ff1: (... args: any[]) => void;
617 >ff1 : Symbol(ff1, Decl(genericRestParameters1.ts, 155, 11))
631 ff1 = ff2;
632 >ff1 : Symbol(ff1, Decl(genericRestParameters1.ts, 155, 11))
635 ff1 = ff3;
636 >ff1 : Symbol(ff1, Decl(genericRestParameters1.ts, 155, 11))
639 ff1 = ff4; // Error
640 >ff1 : Symbol(ff1, Decl(genericRestParameters1.ts, 155, 11))
DgenericRestParameters1.errors.txt167 declare var ff1: (... args: any[]) => void;
173 ff1 = ff2;
174 ff1 = ff3;
175 ff1 = ff4; // Error
DgenericRestParameters1.types769 declare var ff1: (... args: any[]) => void;
770 >ff1 : (...args: any[]) => void
784 ff1 = ff2;
785 >ff1 = ff2 : () => void
786 >ff1 : (...args: any[]) => void
789 ff1 = ff3;
790 >ff1 = ff3 : () => void
791 >ff1 : (...args: any[]) => void
794 ff1 = ff4; // Error
795 >ff1 = ff4 : (a: never) => void
[all …]
DconstAssertions.js71 function ff1(x: 'foo' | 'bar', y: 1 | 2) { function
168 function ff1(x, y) {
301 declare function ff1(x: 'foo' | 'bar', y: 1 | 2): "foo-1" | "foo-2" | "bar-1" | "bar-2";
DtemplateLiteralTypesPatterns.js186 function ff1(x: `${string}-${string}`) { function
335 function ff1(x) {
DtupleTypes.errors.txt67 var ff1 = ff("hello", ["foo", x => x.length]);
68 var ff1: number;
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters1.ts159 declare var ff1: (... args: any[]) => void; variable
165 ff1 = ff2;
166 ff1 = ff3;
167 ff1 = ff4; // Error
/third_party/boost/libs/flyweight/test/
Dtest_multictor.cpp182 flyweight<initctor> ff1 INIT_LIST2(1,2); in test_multictor()
183 BOOST_TEST(ff1.get().res==3); in test_multictor()
185 ff1={1u,2u,3u}; in test_multictor()
186 BOOST_TEST(ff1.get().res==12); in test_multictor()
/third_party/ffmpeg/libavcodec/
Dlsp.c136 int ff1 = f1[i] + f1[i-1]; // (3.22) in ff_acelp_lsp2lpc() local
139 ff1 += 1 << 10; // for rounding in ff_acelp_lsp2lpc()
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.c1242 int64_t ff1 = f1[i + 1] + f1[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/typescript/tests/cases/compiler/
DtupleTypes.ts23 var ff1 = ff("hello", ["foo", x => x.length]);
24 var ff1: number;
/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
108 const uint16_t *f1 = (const uint16_t *)ff1; in maskedmin16()
116 static void maskedmax16(const uint8_t *ssrc, uint8_t *ddst, const uint8_t *ff1, const uint8_t *ff2,… in maskedmax16() argument
119 const uint16_t *f1 = (const uint16_t *)ff1; in maskedmax16()
/third_party/glslang/Test/
Dhlsl.float4.frag3 bool ff1 : SV_IsFrontFace;
Dhlsl.struct.frag24 bool ff1 : SV_IsFrontFace;
/third_party/python/Modules/_blake2/impl/
Dblake2s.c276 __m128i ff0, ff1; in blake2s_compress() local
305 row2 = ff1 = LOADU( &S->h[4] ); in blake2s_compress()
319 STOREU( &S->h[4], _mm_xor_si128( ff1, _mm_xor_si128( row2, row4 ) ) ); in blake2s_compress()
/third_party/typescript/tests/dets/cases/
DfunctionWithDecorators.ets32 function ff1 (x: string): number {
/third_party/typescript/tests/cases/conformance/expressions/typeAssertions/
DconstAssertions.ts74 function ff1(x: 'foo' | 'bar', y: 1 | 2) { function
/third_party/typescript/tests/cases/conformance/types/literal/
DtemplateLiteralTypesPatterns.ts186 function ff1(x: `${string}-${string}`) { function
/third_party/ltp/testscripts/
Dltp-aiodio.sh254 dd if=$file1 of=$TMP/aiodio/ff1 bs=2048 conv=block,sync
311 rm -f $TMP/aiodio/ff1

12