/third_party/openh264/codec/encoder/core/mips/ |
D | dct_mmi.c | 43 #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 148 #define MMI_SumSubDiv2D(f0, f2, f4, f6, f8, f10, f12, f14, f_val_1) \ argument [all …]
|
/third_party/openh264/codec/common/inc/ |
D | asmdefs_mmi.h | 66 #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 173 #define MMI_Trans4x4H_SINGLE(f0, f2, f4, f6, f8) \ argument [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | noImplicitAnyParametersInInterface.ts | 31 f8(x1, y1: number): any; method 32 f8(x2: string, y2): any; method 33 f8(x3, y3): any; method
|
D | unusedParametersWithUnderscore.ts | 25 var f8 = function (_) { }; variable
|
D | controlFlowArrayErrors.ts | 61 function f8() { function
|
D | reachabilityChecks5.ts | 82 function f8(x): number { function
|
D | reachabilityChecks6.ts | 82 function f8(x) { function
|
D | noImplicitAnyParametersInBareFunctions.ts | 25 function f8(x1, y1: number): any; function
|
D | tryCatchFinallyControlFlow.ts | 111 function f8() { function
|
D | controlFlowArrays.ts | 76 function f8() { function
|
/third_party/openh264/codec/common/mips/ |
D | satd_sad_mmi.c | 43 #define MMI_SumWHorizon1(f0, f2, f4, f6, f8, f10, r0) \ argument 357 #define MMI_Get4LW16Sad(f0, f2, f4, f6, f8, f10, f12, f14, r0) \ argument 391 #define MMI_HDMTwo4x4(f0, f2, f4, f6, f8, f10, f12, f14, f16, f18) \ argument 397 #define MMI_SumAbs4(f0, f2, f4, f6, f8, f10, f12, f14, f16, f18, f20, f22, f24, f26) \ argument 411 #define MMI_SumWHorizon(f0, f2, f4, f6, f8, f10) \ argument 419 #define MMI_LoadDiff8P_Offset_Stride0(f0, f2, f4, f6, f8, r0, r1) \ argument 433 #define MMI_LoadDiff8P_Offset_Stride1(f0, f2, f4, f6, f8, r0, r1) \ argument 447 #define MMI_LoadDiff8P_Offset8(f0, f2, f4, f6, f8, r0, r1) \ argument
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/ |
D | functionWithMultipleReturnStatements.ts | 58 function f8<T extends U, U extends V, V>(x: T, y: U) { function
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | literalTypes3.ts | 54 function f8(x: number | "foo" | "bar") { function
|
D | numericLiteralTypes3.ts | 91 function f8(x: 0 | 2 | 4) { function
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | controlFlowTruthiness.ts | 81 function f8<T>(x: T) { function
|
D | controlFlowOptionalChain2.ts | 99 function f8(x: X | N | null) { function
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowArrayErrors.js | 60 function f8() { function
|
D | controlFlowNoImplicitAny.js | 89 function f8() { function
|
D | callSignaturesWithAccessibilityModifiersOnParameters.js | 14 var f8 = <T>(private x: T, public y: T) => { } variable 52 var f8 = function (x, y) { }; function
|
D | callSignaturesWithDuplicateParameters.js | 14 var f8 = <T>(x: T, y: T) => { } variable 52 var f8 = function (x, y) { }; function
|
D | literalTypes3.js | 53 function f8(x: number | "foo" | "bar") { function
|
/third_party/typescript/tests/cases/conformance/functions/ |
D | parameterInitializersForwardReferencing1_es6.ts | 39 function f8(foo1: string, bar = foo1) { } function
|
D | parameterInitializersForwardReferencing1.ts | 37 function f8(foo1: string, bar = foo1) { } function
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript2018/forAwait/ |
D | parser.forAwait.es2018.ts | 35 async function f8() { function
|
/third_party/openh264/codec/processing/src/mips/ |
D | vaa_mmi.c | 58 #define WELS_SAD_SD_MAD_16x1_MMI(f0, f2, f4, f6, f8, f10, f12, f14, r0, r1, r2) \ argument 86 #define WELS_SAD_16x2_MMI(f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, r1, r2, r3) \ argument 152 #define WELS_SAD_BGD_SQDIFF_16x1_MMI(f0, f2, f4, f6, f8, f10, f12, f14, r0, r1, r2) \ argument
|