Home
last modified time | relevance | path

Searched defs:f2 (Results 1 – 25 of 851) sorted by relevance

12345678910>>...35

/third_party/openh264/codec/common/inc/
Dasmdefs_mmi.h66 #define MMI_XSawp_BH(f0, f2, f4, f6, f8, f10) \ argument
73 #define MMI_XSawp_HW(f0, f2, f4, f6, f8, f10) \ argument
80 #define MMI_XSawp_WD(f0, f2, f4, f6, f8, f10) \ argument
87 #define MMI_XSawp_DQ(f0, f2, f4, f6, f8, f10) \ argument
92 #define WELS_AbsH(f0, f2, f4, f6, f8, f10) \ argument
99 #define MMI_SumSub(f0, f2, f4, f6, f8, f10) \ argument
107 #define MMI_LoadDiff8P(f0, f2, f4, f6, f8, r0, r1) \ argument
119 #define MMI_TransTwo4x4H(f0, f2, f4, f6, f8, f10, f12, f14, f16, f18) \ argument
127 #define MMI_TransTwo8x8B(f0, f2, f4, f6, f8, f10, f12, f14, f16, f18, f20, f22, f24, f26, f28, f30,… argument
165 #define MMI_XSwap_HW_SINGLE(f0, f2, f4) \ argument
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextualTypingWithGenericSignature.js4 var f2: { variable
8 f2 = (x, y) => { return x } function
12 var f2; variable
DcontextualTypingWithGenericAndNonGenericSignature.js4 var f2: { variable
9 f2 = (x, y) => { return x } function
21 var f2; variable
DgenericConstructInvocationWithNoTypeArg.js5 var f2: Foo<number> = new Foo(3); variable
9 var f2 = new Foo(3); variable
DcontextualSignatureInstatiationContravariance.js6 var f2: <T extends Animal>(x: T, y: T) => void; variable
15 var f2; variable
DcontextualSignatureInstatiationCovariance.js6 var f2: <T extends Giraffe>(x: T, y: T) => void; variable
15 var f2; variable
DlimitDeepInstantiations.js6 let f2: Foo<"false", {}>; variable
12 var f2; variable
DconstructorOverloads6.js20 var f2 = new Foo(0); variable
29 var f2 = new Foo(0); variable
DnonNullableReduction.js24 function test(f1, f2) { argument
31 function f2(x) { function
DparserErrorRecoveryIfStatement4.js6 f2() { method in Foo
20 Foo.prototype.f2 = function () { method in Foo
DclassStaticBlock3(target=es2022).js11 static f2 = 2; field in C
28 static f2 = 2; field in C
DclassStaticBlock3(target=esnext).js11 static f2 = 2; field in C
28 static f2 = 2; field in C
DalwaysStrictModule2.js12 export function f2() { function
28 function f2() { function
DrecursiveTypeParameterReferenceError1.js16 var f2: Foo2<number>; variable
33 var f2; variable
DvarAsID.js15 var f2 = new Foo2(); variable
35 var f2 = new Foo2(); variable
DgenericsWithDuplicateTypeParameters1.js21 function f2(a, b) { return null; } function
26 C.prototype.f2 = function (a, b) { return null; }; method in C
/third_party/openh264/codec/encoder/core/mips/
Ddct_mmi.c43 #define MMI_Load4x8p(r0, f0, f2, f4, f6, f8, f10, f12, f14, f16, f18) \ argument
51 #define MMI_SumSubDiv2(f0, f2, f4, f6, f8, f10, f12, f14, f16) \ argument
63 #define MMI_IDCT(f0, f2, f4, f6, f8, f10, f12, f14, f16, f18, f20, f22, f24, f26, f28) \ argument
69 #define MMI_StoreDiff8p_6(f0, f2, f4, f6, f8, f12, r0, r1, f14) \ argument
84 #define MMI_StoreDiff8p_5(f0, f2, f4, f6, f8, r0, r1, offset) \ argument
95 #define MMI_Load8DC(f0, f2, f4, f6, f8, f10, f12, f14, f16, r0, offset, f20) \ argument
114 #define MMI_StoreDiff4x8p(f0, f2, f4, f6, f8, f10, f12, r0, r1, r2, r3) \ argument
122 #define MMI_Load4Col(f0, f2, f4, f6, f8, r0, offset) \ argument
134 #define MMI_SumSubD(f0, f2, f4, f6, f8, f10) \ argument
142 #define WELS_DD1(f0, f2, f_val_31) \ argument
[all …]
/third_party/typescript/tests/cases/compiler/
DgenericsWithDuplicateTypeParameters1.ts2 function f2<X, X>(a: X, b: X): X { return null; } function
5 public f2<X, X>(a: X, b: X): X { return null; } method in C
10 f2<X, X>(a: X, b: X): X; method
DprivacyInterface.ts33 f2(a1: C2_private); method
60 f2(a1: C2_private); method
99 f2(a1: C2_private); method
126 f2(a1: C2_private); method
163 f2(a1: C6_private); method
190 f2(a1: C6_private); method
202 f2(): string; method
227 f2(): string; method
250 f2(): string; method
DcomplicatedPrivacy.ts8 export function f2(c2: C2) { function
25 export function f2(arg1: { x?: C1, y: number }) { function
46 function f2(f1: C1) { function
DstrictFunctionTypesErrors.ts6 declare let f2: (x: Object) => string; variable
143 static f2(x: Dog): Animal { throw "wat"; }; method in n1.Foo
146 declare let f2: (cb: typeof Foo.f2) => void; variable
154 declare let f2: (cb: BivariantHack<Dog, Animal>) => void; variable
/third_party/typescript/src/testRunner/unittests/services/
DdocumentRegistry.ts7 …const f2 = documentRegistry.acquireDocument("file1.ts", defaultCompilerOptions, ts.ScriptSnapshot.… constant
20 …const f2 = documentRegistry.acquireDocument("file1.ts", compilerOptions, ts.ScriptSnapshot.fromStr… constant
50 …const f2 = documentRegistry.acquireDocument("file1.ts", defaultCompilerOptions, ts.ScriptSnapshot.… constant
/third_party/openh264/codec/common/mips/
Dexpand_picture_mmi.c90 #define mov_line_16x4_mmi_aligned(r0, r1, f0, f2) \ argument
100 #define mov_line_16x4_mmi_unaligned(r0, r1, f0, f2) \ argument
122 #define mov_line_end16x4_mmi_aligned(r0, r1, f0, f2) \ argument
131 #define mov_line_end16x4_mmi_unaligned(r0, r1, f0, f2) \ argument
200 #define mov_line_32x4_mmi(r0, r1, f0, f2) \ argument
214 #define mov_line_end32x4_mmi(r0, r1, f0, f2) \ argument
/third_party/lzma/CPP/7zip/Crypto/
DMyAes.cpp174 #define SET_AES_FUNC_2(f2) \ argument
178 #define SET_AES_FUNC_23(f2, f3) \ argument
183 #define SET_AES_FUNC_23(f2, f3) \ argument
187 #define SET_AES_FUNC_23(f2, f3) argument
190 #define SET_AES_FUNCS(c, f0, f1, f2, f3) \ argument
/third_party/typescript/src/testRunner/unittests/
DmoduleResolution.ts1494 const f2 = { name: "/root/src/types/lib/index.d.ts" }; constant
1499 const f2 = { name: "/root/src/types/lib/typings/lib.d.ts" }; constant
1505 const f2 = { name: "/root/src/node_modules/lib/index.d.ts" }; constant
1510 const f2 = { name: "/root/src/node_modules/lib/typings/lib.d.ts" }; constant
1516 const f2 = { name: "/root/src/node_modules/@types/lib/index.d.ts" }; constant
1521 const f2 = { name: "/root/src/node_modules/@types/lib/typings/lib.d.ts" }; constant
1529 const f2 = { name: "/root/node_modules/lib.d.ts" }; constant
1534 const f2 = { name: "/root/node_modules/lib/index.d.ts" }; constant
1539 const f2 = { name: "/root/node_modules/lib/typings/lib.d.ts" }; constant
1545 const f2 = { name: "/root/node_modules/@types/lib/index.d.ts" }; constant
[all …]

12345678910>>...35