Home
last modified time | relevance | path

Searched defs:a6 (Results 1 – 25 of 147) sorted by relevance

123456

/third_party/ffmpeg/libavfilter/
Dvf_removegrain.c68 static int mode01(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode01()
83 static int mode02(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode02()
92 static int mode03(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode03()
101 static int mode04(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode04()
110 static int mode05(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode05()
133 static int mode06(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode06()
165 static int mode07(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode07()
197 static int mode08(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode08()
229 static int mode09(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode09()
251 static int mode10(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) in mode10()
[all …]
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/
DnullishCoalescingOperator3.ts8 declare const a6: false | undefined | null constant
11 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' constant
/third_party/typescript/tests/baselines/reference/
DtupleLengthCheck.js11 const a6 = rest[3] constant
21 var a6 = rest[3]; variable
DtrailingCommasES3.js12 var a6 = [, , ]; variable
24 var a6 = [, ,]; variable
DtrailingCommasES5.js12 var a6 = [, , ]; variable
24 var a6 = [, ,]; variable
DinvalidTaggedTemplateEscapeSequences(target=esnext).js17 const a6 = tag`${ 100 }\u000` // \\u000 constant
42 const a6 = tag `${100}\u000`; // \\u000 constant
DinvalidTaggedTemplateEscapeSequences(target=es5).js17 const a6 = tag`${ 100 }\u000` // \\u000 constant
50 var a6 = tag(__makeTemplateObject(["", void 0], ["", "\\u000"]), 100); // \\u000 variable
DunionTypeInference.js13 const a6 = f1(true, false); // boolean constant
87 const a6 = f1(true, false); // boolean constant
DinvalidTaggedTemplateEscapeSequences(target=es2015).js17 const a6 = tag`${ 100 }\u000` // \\u000 constant
46 const a6 = tag(__makeTemplateObject(["", void 0], ["", "\\u000"]), 100); // \\u000 constant
DcheckSuperCallBeforeThisAccess.js13 let a6 = () => super.x; function
97 let a6 = () => super.x; function
DparserRegularExpressionDivideAmbiguity6.js2 function c255lsqr8h(a7, a6, a5, a4, a3, a2, a1, a0) { argument
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dtransform_args.h78 #define ABSL_INTERNAL_TRANSFORM_ARGS7(m, a0, a1, a2, a3, a4, a5, a6) \ argument
81 #define ABSL_INTERNAL_TRANSFORM_ARGS8(m, a0, a1, a2, a3, a4, a5, a6, a7) \ argument
84 #define ABSL_INTERNAL_TRANSFORM_ARGS9(m, a0, a1, a2, a3, a4, a5, a6, a7, a8) \ argument
87 #define ABSL_INTERNAL_TRANSFORM_ARGS10(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
91 #define ABSL_INTERNAL_TRANSFORM_ARGS11(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
95 #define ABSL_INTERNAL_TRANSFORM_ARGS12(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
100 #define ABSL_INTERNAL_TRANSFORM_ARGS13(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
105 #define ABSL_INTERNAL_TRANSFORM_ARGS14(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
110 #define ABSL_INTERNAL_TRANSFORM_ARGS15(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
115 #define ABSL_INTERNAL_TRANSFORM_ARGS16(m, a0, a1, a2, a3, a4, a5, a6, a7, a8, \ argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dsubstitute.h311 const substitute_internal::Arg& a6) { in SubstituteAndAppend()
324 const substitute_internal::Arg& a6, const substitute_internal::Arg& a7) { in SubstituteAndAppend()
337 const substitute_internal::Arg& a6, const substitute_internal::Arg& a7, in SubstituteAndAppend()
351 const substitute_internal::Arg& a6, const substitute_internal::Arg& a7, in SubstituteAndAppend()
559 const substitute_internal::Arg& a5, const substitute_internal::Arg& a6) { in Substitute()
569 const substitute_internal::Arg& a5, const substitute_internal::Arg& a6, in Substitute()
580 const substitute_internal::Arg& a5, const substitute_internal::Arg& a6, in Substitute()
591 const substitute_internal::Arg& a5, const substitute_internal::Arg& a6, in Substitute()
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/
DcallSignatureAssignabilityInInheritance4.ts15 a6: <T extends Base>(x: (arg: T) => Derived) => T; method
43a6: <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with object … method
DconstructSignatureAssignabilityInInheritance4.ts15 a6: new <T extends Base>(x: (arg: T) => Derived) => T; property
51a6: new <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with obj… property
DcallSignatureAssignabilityInInheritance5.ts16 a6: (x: (arg: Base) => Derived) => Base; property
39a6: <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with object … method
DconstructSignatureAssignabilityInInheritance5.ts16 a6: new (x: (arg: Base) => Derived) => Base; property
39a6: new <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with obj… property
DconstructSignatureAssignabilityInInheritance2.ts15 a6: new (x: (arg: Base) => Derived) => Base; property
56a6: new <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with obj… property
DcallSignatureAssignabilityInInheritance2.ts15 a6: (x: (arg: Base) => Derived) => Base; property
56a6: <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with object … method
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/
DsubtypingWithConstructSignatures5.ts16 a6: new (x: (arg: Base) => Derived) => Base; property
39a6: new <T extends Base, U extends Derived>(x: (arg: T) => U) => T; // ok, same as a5 but with obj… property
/third_party/ffmpeg/libavcodec/mips/
Dwmv2dsp_mmi.c40 int a0, a1, a2, a3, a4, a5, a6, a7; in wmv2_idct_row_mmi() local
70 int a0, a1, a2, a3, a4, a5, a6, a7; in wmv2_idct_col_mmi() local
/third_party/typescript/tests/cases/compiler/
DbadArraySyntax.ts10 var a6: Z[][] = new Z [ ] [ ]; variable
DnestedBlockScopedBindings2.ts72 function a6() { function
/third_party/typescript/tests/cases/conformance/es6/destructuring/
DdestructuringParameterDeclaration6.ts11 function a6(...public) { } function
/third_party/musl/src/network/
Dlookup_ipliteral.c15 struct in6_addr a6; in __lookup_ipliteral() local

123456