/test/mlts/benchmark/src/com/android/nn/benchmark/util/ |
D | SequenceUtils.java | 17 int[][] d = new int[m + 1][n + 1]; in calculateEditDistance() local 20 d[i][0] = i; in calculateEditDistance() 24 d[0][j] = j; in calculateEditDistance() 30 d[i][j] = Math.min( in calculateEditDistance() 31 Math.min(d[i - 1][j] + 1, d[i][j - 1] + 1), in calculateEditDistance() 32 d[i - 1][j - 1] + substitutionCost); in calculateEditDistance() 35 return d[m][n]; in calculateEditDistance()
|
/test/vts/tests/firmware_dtbo_test/src/com/android/tests/firmwaredtbo/ |
D | FirmwareDtboVerification.java | 79 CLog.d("mTemptFolder: %s", mTemptFolder); in oneTimeSetup() 106 CLog.d("DTBO path %s", dtboPaths); in testCheckDTBOPartition() 111 CLog.d("hostDtboImage is %s", hostDtboImage); in testCheckDTBOPartition() 147 CLog.d("dtboItems[%s] is %s", i, dtboItems[i]); in decompressDTEntries() 154 CLog.d("Checking %s", dt_entry_file.getAbsolutePath()); in decompressDTEntries() 160 CLog.d("compression_format= %s", compression_format); in decompressDTEntries() 170 CLog.d("Decompressing %s with ZLIB_COMPRESSION", in decompressDTEntries() 178 CLog.d("Decompressing %s with GZIP_COMPRESSION", in decompressDTEntries() 189 CLog.d("fdt_magic: 0x%s", Integer.toHexString(fdt_magic)); in decompressDTEntries() 214 CLog.d("bootconfig_cmd = %s", bootconfig_cmd); in testVerifyOverlay() [all …]
|
/test/mlts/benchmark/results/ |
D | Chart.bundle.min.js | 10 …d=i[o]={exports:{}};e[o][0].call(d.exports,function(t){var i=e[o][1][t];return a(i||t)},d,d.export… variable
|
D | generate_result.py | 305 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=True)) 306 for v, d in zip(val, diff)] 328 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=False)) 329 for v, d in zip(val, diff)] 350 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=False)) 351 for v, d in zip(val, diff)]
|
/test/vts/tests/fastboot_getvar/src/com/android/tests/ |
D | FastbootGetvarUserspaceTest.java | 119 CLog.d("cpuAbi: '%s'", cpuAbi); in testCpuAbiInfo() 127 CLog.d("os version: '%s'", osVersion); in testOsVersion() 140 CLog.d("dynamic_partition: '%s'", dynamic_partition); in testDynamicPartition() 149 CLog.d("treble_enabled: '%s'", treble_enabled); in testTrebleEnable() 158 CLog.d("first_api_level: '%s'", first_api_level); in testFirstApiLevel() 171 CLog.d("SPL: '%s'", SPL); in testSecurityPatchLevel() 185 CLog.d("system fingerprint: '%s'", systemFingerprint); in testSystemFingerprint() 194 CLog.d("vendor fingerprint: '%s'", vendorFingerprint); in testVendorFingerprint()
|
/test/vts/tests/firmware_test/src/com/android/tests/firmware/ |
D | FirmwareBootHeaderVerification.java | 149 CLog.d("Boot path %s", bootPaths); in testBootImageHeader() 154 CLog.d("Remote boot path %s", bootPaths); in testBootImageHeader() 155 CLog.d("Local boot path %s", localBootImg.getAbsolutePath()); in testBootImageHeader() 167 CLog.d("Recovery path %s", recoveryPaths); in testRecoveryImageHeader() 173 CLog.d("Remote boot path %s", recoveryPaths); in testRecoveryImageHeader() 174 CLog.d("Local boot path %s", localRecoveryImg.getAbsolutePath()); in testRecoveryImageHeader()
|
/test/mlts/benchmark/tools/ |
D | convert_binary_to_img.py | 23 def convert_file(filename: str, h: int, w: int, d: int): 35 arr = arr.reshape((h, w, d))
|
/test/catbox/target_preparers/src/com/android/catbox/targetpreparer/ |
D | ChromeMdPassengerLoadPreparer.java | 76 LogUtil.CLog.d("Skipping load on display %d", displayId); in setUp() 116 LogUtil.CLog.d( in createUser() 123 LogUtil.CLog.d( in createUser() 132 LogUtil.CLog.d( in installApks() 149 LogUtil.CLog.d(String.format("Launching Chrome for User %d with url %s", userId, mUrl)); in simulatePassengerLoad()
|
/test/cts-root/hostsidetests/packageinstaller/src/com/android/cts_root/packageinstaller/host/ |
D | SessionCleanUpHostTest.java | 60 Log.d(TAG, "stagedBefore=" + stagedBefore); 61 Log.d(TAG, "nonStagedBefore=" + nonStagedBefore); 67 Log.d(TAG, "stagedAfter=" + stagedAfter); 68 Log.d(TAG, "nonStagedAfter=" + nonStagedAfter);
|
/test/vts-testcase/hal/usb/gadget/V1_0/host/src/com/android/tests/usbgadget/ |
D | HalUsbGadgetV1_0HostTest.java | 85 for (InterfaceDescriptor d : descriptors) { in checkProtocol() 86 if (Byte.toUnsignedInt(d.bInterfaceClass) == usbClass in checkProtocol() 87 && Byte.toUnsignedInt(d.bInterfaceSubClass) == usbSubClass in checkProtocol() 88 && Byte.toUnsignedInt(d.bInterfaceProtocol) == usbProtocol) { in checkProtocol()
|
/test/mlts/benchmark/dogfood/src/com/android/nn/dogfood/ |
D | BenchmarkJobService.java | 64 Log.d(TAG, String.format("NN API Benchmarking job %d/%d started", getNumRuns(), NUM_RUNS)); in onStartJob() 73 Log.d(TAG, String.format("NN API Benchmarking job %d/%d stopped", getNumRuns(), NUM_RUNS)); in onStopJob() 110 Log.d(TAG, "NN API Benchmarking job finished"); in onBenchmarkFinish() 115 Log.d( in onStatusUpdate()
|
/test/vts-testcase/hal/usb/gadget/V1_2/host/src/com/android/usb/gadget/vts/ |
D | VtsHalUsbGadgetV1_2HostTest.java | 99 for (InterfaceDescriptor d : descriptors) { in checkProtocol() 100 if (Byte.toUnsignedInt(d.bInterfaceClass) == usbClass in checkProtocol() 101 && Byte.toUnsignedInt(d.bInterfaceSubClass) == usbSubClass in checkProtocol() 102 && Byte.toUnsignedInt(d.bInterfaceProtocol) == usbProtocol) { in checkProtocol()
|
/test/app_compat/csuite/test_scripts/src/main/java/com/android/webview/tests/ |
D | WebviewAppLaunchTest.java | 101 CLog.d("Installing " + apkPath); in setUp() 177 CLog.d("Launching package: %s.", mPackageName); in launchPackageAndCheckForCrash() 188 CLog.d("Waiting %s milliseconds for the app to launch fully.", mAppLaunchTimeoutMs); in launchPackageAndCheckForCrash() 191 CLog.d("Completed launching package: %s", mPackageName); in launchPackageAndCheckForCrash()
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/ |
D | CrashTestCoordinator.java | 93 Log.d(TAG, String.format("Service '%s' connected with binder %s", name, service)); in onServiceConnected() 107 Log.d(TAG, String.format("Test '%s' succeeded", mTestName)); in onServiceConnected() 128 Log.d(TAG, "Test progress message: " + description); in onServiceConnected() 147 Log.d(TAG, "Service disconnected"); in onServiceDisconnected()
|
D | CrashTestService.java | 90 Log.d(TAG, "Service is bound"); in onBind() 115 Log.d(TAG, String.format("Test '%s' completed with result: %s", testClassName, in onBind()
|
/test/vts-testcase/kernel/encryption/ |
D | adiantum.cpp | 104 #define CHACHA_QUARTERROUND(a, b, c, d) \ argument 107 d = rol32(d ^ a, 16); \ 108 c += d; \ 111 d = rol32(d ^ a, 8); \ 112 c += d; \
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/ |
D | PerformanceDegradationTest.java | 154 Log.d(TAG, String.format("%s: Calculating baseline", mTestName)); in testDegradationForModels() 162 Log.d(TAG, String.format("%s: Baseline mean time is %f seconds", mTestName, in testDegradationForModels() 165 Log.d(TAG, String.format("%s: Sleeping for %d millis", mTestName, in testDegradationForModels() 169 Log.d(TAG, String.format("%s: Calculating performance with %d threads", mTestName, in testDegradationForModels() 204 Log.d(TAG, String.format("%s: Multithreaded mean time is %f seconds", in testDegradationForModels()
|
/test/mlts/benchmark/src/com/android/nn/crashtest/app/ |
D | CrashTestStatus.java | 54 Log.d(TAG, in handleCompletionNotification() 71 Log.d(TAG, "Ignored, another completion notification was sent before"); in handleCompletionNotification()
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | Processor.java | 316 Log.d(TAG, "Processor starting"); in run() 336 Log.d(TAG, "Processor completed work"); in run() 378 Log.d(TAG, String.format( in benchmarkAllModels() 427 Log.d(TAG, String.format("Terminating, timeout is %d ms", timeoutMs)); in exitWithTimeout() 443 Log.d(TAG, "Done, cleaning up"); in exitWithTimeout()
|
/test/vts-testcase/hal/usb/gadget/aidl/host/src/com/android/usb/gadget/vts/ |
D | VtsHalUsbGadgetV2_0HostTest.java | 100 for (InterfaceDescriptor d : descriptors) { in checkProtocol() 101 if (Byte.toUnsignedInt(d.bInterfaceClass) == usbClass in checkProtocol() 102 && Byte.toUnsignedInt(d.bInterfaceSubClass) == usbSubClass in checkProtocol() 103 && Byte.toUnsignedInt(d.bInterfaceProtocol) == usbProtocol) { in checkProtocol()
|
/test/mlts/models/assets/mobilenet_quantized/ |
D | cup_v2_1.0_224.output | 1 …KiJPD-+1SD??EL4(N@9?X)d+5>*=-:9FI;B@A>D3BD?A<BL�B2D10T@YY5C/<L6IF\]R__U3QI>!G'AA5ACR0@a=F>.<C`=<L…
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CompactProtoReporter.java | 79 CLog.d("Compacting protos to reduce disk size"); in invocationEnded() 81 CLog.d("Done compacting protos"); in invocationEnded()
|
D | PreviousSessionFileCopier.java | 100 CLog.d("Copying %s to new session.", oldChild.getName()); in copyRetryFiles() 134 CLog.d("Results Directory: %s", resultDir.getAbsolutePath()); in getResultDirectory()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/ |
D | SettingsPreparer.java | 117 CLog.d("Changing value for %s from %s to %s", in run() 126 CLog.d("Setting %s to value %s", mSettingName, mSetValue); in run()
|
D | InteractiveResultCollector.java | 93 CLog.d("Start clean up path: %s", devicePath); in setUp() 128 CLog.d( in tearDown()
|