Home
last modified time | relevance | path

Searched refs:performTest (Results 1 – 14 of 14) sorted by relevance

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/dexbacked/
DBaseDexReaderSleb128Test.java41 performTest(0x0, new byte[]{0x0, 0x11}, 1); in testSleb128()
42 performTest(0x1, new byte[]{0x1, 0x11}, 1); in testSleb128()
43 performTest(0x3f, new byte[]{0x3f, 0x11}, 1); in testSleb128()
44 performTest(0xffffffc0, new byte[]{0x40, 0x11}, 1); in testSleb128()
45 performTest(0xfffffff0, new byte[]{0x70, 0x11}, 1); in testSleb128()
46 performTest(0xffffffff, new byte[]{0x7f, 0x11}, 1); in testSleb128()
48 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2); in testSleb128()
49 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2); in testSleb128()
50 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2); in testSleb128()
51 performTest(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2); in testSleb128()
[all …]
DBaseDexReaderLeb128Test.java41 performTest(0x0, new byte[]{0x0, 0x11}, 1); in testUleb128()
42 performTest(0x1, new byte[]{0x1, 0x11}, 1); in testUleb128()
43 performTest(0x3f, new byte[]{0x3f, 0x11}, 1); in testUleb128()
44 performTest(0x40, new byte[]{0x40, 0x11}, 1); in testUleb128()
45 performTest(0x70, new byte[]{0x70, 0x11}, 1); in testUleb128()
46 performTest(0x7f, new byte[]{0x7f, 0x11}, 1); in testUleb128()
48 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2); in testUleb128()
49 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2); in testUleb128()
50 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2); in testUleb128()
51 performTest(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2); in testUleb128()
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexWriterUleb128Test.java54 performTest(0x0, new byte[]{0x0, 0x11}, 1); in testUleb128()
55 performTest(0x1, new byte[]{0x1, 0x11}, 1); in testUleb128()
56 performTest(0x3f, new byte[]{0x3f, 0x11}, 1); in testUleb128()
57 performTest(0x40, new byte[]{0x40, 0x11}, 1); in testUleb128()
58 performTest(0x70, new byte[]{0x70, 0x11}, 1); in testUleb128()
59 performTest(0x7f, new byte[]{0x7f, 0x11}, 1); in testUleb128()
61 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2); in testUleb128()
62 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2); in testUleb128()
63 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2); in testUleb128()
64 performTest(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2); in testUleb128()
[all …]
DDexWriterSleb128Test.java54 performTest(0x0, new byte[]{0x0, 0x11}, 1); in testSleb128()
55 performTest(0x1, new byte[]{0x1, 0x11}, 1); in testSleb128()
56 performTest(0x3f, new byte[]{0x3f, 0x11}, 1); in testSleb128()
57 performTest(0xffffffc0, new byte[]{0x40, 0x11}, 1); in testSleb128()
58 performTest(0xfffffff0, new byte[]{0x70, 0x11}, 1); in testSleb128()
59 performTest(0xffffffff, new byte[]{0x7f, 0x11}, 1); in testSleb128()
61 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2); in testSleb128()
62 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2); in testSleb128()
63 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2); in testSleb128()
64 performTest(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2); in testSleb128()
[all …]
/external/skia/bench/
DMatrix44Bench.cpp24 virtual void performTest() = 0;
35 this->performTest(); in onDraw()
55 virtual void performTest() { in performTest() function in EqualsMatrix44Bench
81 virtual void performTest() { in performTest() function in SetIdentityMatrix44Bench
100 virtual void performTest() { in performTest() function in PreScaleMatrix44Bench
137 virtual void performTest() { in performTest() function in InvertMatrix44Bench
169 virtual void performTest() { in performTest() function in InvertAffineMatrix44Bench
196 virtual void performTest() { in performTest() function in InvertScaleTranslateMatrix44Bench
218 virtual void performTest() { in performTest() function in InvertTranslateMatrix44Bench
237 virtual void performTest() { in performTest() function in PostScaleMatrix44Bench
[all …]
DInterpBench.cpp29 virtual void performTest(int16_t dst[], float x, float dx, int count) = 0;
41 this->performTest(fDst, fFx, fDx, kBuffer); in onDraw()
54 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() function in Fixed16D16Interp
73 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() function in Fixed32D32Interp
104 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() function in Fixed16D48Interp
124 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() function in FloatInterp
142 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() function in DoubleInterp
DScalarBench.cpp25 virtual void performTest() = 0;
36 this->performTest(); in onDraw()
61 virtual void performTest() { in performTest() function in FloatComparisonBench
80 virtual void performTest() { in performTest() function in ForcedIntComparisonBench
105 void performTest() override { in performTest() function in IsFiniteScalarBench
DMatrixBench.cpp25 virtual void performTest() = 0;
36 this->performTest(); in onDraw()
49 virtual void performTest() { in performTest() function in EqualsMatrixBench
75 virtual void performTest() { in performTest() function in ScaleMatrixBench
115 virtual void performTest() { in performTest() function in GetTypeMatrixBench
160 virtual void performTest() { in performTest() function in DecomposeMatrixBench
204 virtual void performTest() { in performTest() function in InvertMapRectMatrixBench
291 void performTest() override { in performTest() function in MapPointsMatrixBench
DMathBench.cpp38 virtual void performTest(float* SK_RESTRICT dst,
52 this->performTest(fDst, fSrc, kBuffer); in onDraw()
69 virtual void performTest(float* SK_RESTRICT dst, in performTest() function in MathBenchU32
86 virtual void performTest(float* SK_RESTRICT dst, in performTest() function in NoOpMathBench
101 virtual void performTest(float* SK_RESTRICT dst, in performTest() function in SkRSqrtMathBench
117 virtual void performTest(float* SK_RESTRICT dst, in performTest() function in SlowISqrtMathBench
142 virtual void performTest(float* SK_RESTRICT dst, in performTest() function in FastISqrtMathBench
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
DOnthrowDebuggerLaunchTest.java63 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught); in testDebuggerLaunch001()
83 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught); in testDebuggerLaunch002()
103 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught); in testDebuggerLaunch003()
122 performTest(DEBUGGER_NAME, isSuspend, isOnuncaught); in testDebuggerLaunch004()
143 void performTest(String debuggerName, String isSuspendDebuggee, String isOnuncaught) { in performTest() method in OnthrowDebuggerLaunchTest
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DGraggBulirschStoerIntegrator.java119 private boolean performTest; field in GraggBulirschStoerIntegrator
220 this.performTest = performStabilityCheck; in setStabilityCheck()
495 if (performTest && (j <= maxChecks) && (k < maxIter)) { in tryStep()
/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.m246 - (void)performTest { method
DGTMSenTestCase.h1063 - (void)performTest;
/external/google-tv-pairing-protocol/java/jar/
Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY ...