/aosp12/art/test/704-multiply-accumulate/ |
H A D | Android.bp | 3 // Build rules for ART run-test `704-multiply-accumulate`. 16 name: "art-run-test-704-multiply-accumulate", 21 ":art-run-test-704-multiply-accumulate-expected-stdout", 22 ":art-run-test-704-multiply-accumulate-expected-stderr", 28 name: "art-run-test-704-multiply-accumulate-expected-stdout", 29 out: ["art-run-test-704-multiply-accumulate-expected-stdout.txt"], 36 name: "art-run-test-704-multiply-accumulate-expected-stderr", 37 out: ["art-run-test-704-multiply-accumulate-expected-stderr.txt"],
|
H A D | info.txt | 1 Tests for multiply accumulate operations.
|
/aosp12/art/test/550-checker-multiply-accumulate/ |
H A D | Android.bp | 3 // Build rules for ART run-test `550-checker-multiply-accumulate`. 16 name: "art-run-test-550-checker-multiply-accumulate", 21 ":art-run-test-550-checker-multiply-accumulate-expected-stdout", 22 ":art-run-test-550-checker-multiply-accumulate-expected-stderr", 31 name: "art-run-test-550-checker-multiply-accumulate-expected-stdout", 32 out: ["art-run-test-550-checker-multiply-accumulate-expected-stdout.txt"], 39 name: "art-run-test-550-checker-multiply-accumulate-expected-stderr", 40 out: ["art-run-test-550-checker-multiply-accumulate-expected-stderr.txt"],
|
/aosp12/system/media/audio_utils/include/audio_utils/ |
H A D | ChannelMix.h | 189 bool process(const float *src, float *dst, size_t frameCount, bool accumulate) const { in process() argument 190 return accumulate ? processSwitch<true>(src, dst, frameCount) in process() 206 bool process(const float *src, float *dst, size_t frameCount, bool accumulate, in process() argument 208 return setInputChannelMask(inputChannelMask) && process(src, dst, frameCount, accumulate); in process() 275 bool matrixProcess(const float *src, float *dst, size_t frameCount, bool accumulate) const { in matrixProcess() argument 284 if (accumulate) { in matrixProcess()
|
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/datausage/ |
H A D | AppDataUsagePreferenceController.java | 120 return accumulate(collapseKey, knownItems, entry, category, items); in aggregateDataUsage() 126 return accumulate(collapseKey, knownItems, entry, category, items); in aggregateDataUsage() 133 return accumulate(collapseKey, knownItems, entry, category, items); in aggregateDataUsage() 139 long usersLargest = accumulate(managedKey, knownItems, entry, AppItem.CATEGORY_USER, in aggregateDataUsage() 143 long appLargest = accumulate(collapseKey, knownItems, entry, category, items); in aggregateDataUsage() 159 return accumulate(collapseKey, knownItems, entry, category, items); in aggregateDataUsage() 218 private static long accumulate(int collapseKey, SparseArray<AppItem> knownItems, in accumulate() method in AppDataUsagePreferenceController
|
/aosp12/system/media/audio_utils/tests/ |
H A D | channelmix_tests.cpp | 139 void testBalance(audio_channel_mask_t channelMask, bool accumulate) { in testBalance() argument 175 ChannelMix(channelMask).process(input.data(), output.data(), frames, accumulate); in testBalance() 178 if (accumulate) { in testBalance()
|
/aosp12/art/tools/dexanalyze/ |
H A D | dexanalyze_experiments.cc | 174 size_t total = std::accumulate(data.begin(), data.end(), 0u); in ProcessDexFiles() 481 const uint64_t fields_idx_total = std::accumulate( in Dump() 493 const uint64_t fields_total = std::accumulate(stats.inout_, stats.inout_ + 16u, 0u); in Dump() 512 std::accumulate(stats.inout_, stats.inout_ + 16u, stats.inout_other_); in Dump() 610 const uint64_t total = std::accumulate(arg_counts_, arg_counts_ + kMaxArgCount, 0u); in Dump() 616 const uint64_t low_arg_total = std::accumulate(arg_counts_, arg_counts_ + 2, 0u); in Dump()
|
/aosp12/system/core/storaged/ |
H A D | storaged_info.cpp | 172 daily_avg_bw = accumulate(recent_perf.begin(), recent_perf.end(), 0) / recent_perf.size(); in update_perf_history() 189 uint32_t week_avg_bw = accumulate(daily_perf.begin(), in update_perf_history() 235 return accumulate(recent_perf.begin(), recent_perf.end(), recent_perf.size() / 2) / in get_recent_perf()
|
/aosp12/art/test/716-jli-jit-samples/ |
H A D | info.txt | 1 Test MethodHandle and VarHandle invokes do not accumulate JIT samples
|
/aosp12/frameworks/native/libs/vr/libpdx_uds/ |
H A D | client_channel_tests.cpp | 65 return std::accumulate(data.begin(), data.end(), int64_t{0}); in OnSum() 142 int64_t expected = std::accumulate(data.begin(), data.end(), int64_t{0}); in TEST_F()
|
/aosp12/frameworks/native/libs/cputimeinstate/ |
H A D | testtimeinstate.cpp | 106 std::accumulate(timeInState[i].begin(), timeInState[i].end(), (uint64_t)0); in TestUidTimesConsistent() 107 uint64_t concurrentSum = std::accumulate(concurrentTime.policy[i].begin(), in TestUidTimesConsistent() 115 uint64_t activeSum = std::accumulate(concurrentTime.active.begin(), concurrentTime.active.end(), in TestUidTimesConsistent() 159 sumBefore += std::accumulate(before[i].begin(), before[i].end(), (uint64_t)0); in TestCheckUpdate() 160 sumAfter += std::accumulate(after[i].begin(), after[i].end(), (uint64_t)0); in TestCheckUpdate()
|
/aosp12/frameworks/native/libs/gui/ |
H A D | FrameTimestamps.cpp | 541 std::accumulate(fences.begin(), fences.end(), size_t(0), in getFlattenedSize() 549 return std::accumulate(fences.begin(), fences.end(), size_t(0), in getFdCount() 653 std::accumulate(mDeltas.begin(), mDeltas.end(), size_t(0), in getFlattenedSize() 660 return std::accumulate(mDeltas.begin(), mDeltas.end(), size_t(0), in getFdCount()
|
/aosp12/hardware/interfaces/neuralnetworks/1.2/vts/functional/ |
H A D | Utils.cpp | 79 return std::accumulate(operand.dimensions.begin(), operand.dimensions.end(), dataSize, in sizeOfData()
|
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | DisplayIdentification.cpp | 162 ALOGW_IF(std::accumulate(edid.begin(), edid.begin() + kEdidBlockSize, in parseEdid() 286 ALOGW_IF(std::accumulate(block.begin(), block.end(), static_cast<uint8_t>(0)), in parseEdid()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | WifiScoreCard.java | 1207 mRecentStats.accumulate(CNT_CONNECTION_DURATION_SEC, currSessionDurationSec); in handleDisconnectionAfterConnection() 1882 target.accumulate(CNT_CONNECTION_ATTEMPT, source.getNumConnectionAttempt()); in mergeConnectionStats() 1885 target.accumulate(CNT_CONNECTION_FAILURE, source.getNumConnectionFailure()); in mergeConnectionStats() 1888 target.accumulate(CNT_CONNECTION_DURATION_SEC, source.getConnectionDurationSec()); in mergeConnectionStats() 1891 target.accumulate(CNT_DISCONNECTION_NONLOCAL, source.getNumDisconnectionNonlocal()); in mergeConnectionStats() 1894 target.accumulate(CNT_DISCONNECTION, source.getNumDisconnection()); in mergeConnectionStats() 1897 target.accumulate(CNT_SHORT_CONNECTION_NONLOCAL, in mergeConnectionStats() 1901 target.accumulate(CNT_ASSOCIATION_REJECTION, source.getNumAssociationRejection()); in mergeConnectionStats() 1904 target.accumulate(CNT_ASSOCIATION_TIMEOUT, source.getNumAssociationTimeout()); in mergeConnectionStats() 1910 target.accumulate(CNT_DISCONNECTION_NONLOCAL_CONNECTING, in mergeConnectionStats() [all …]
|
/aosp12/frameworks/native/services/surfaceflinger/Scheduler/ |
H A D | SchedulerUtils.h | 46 V sum = std::accumulate(v.begin(), v.end(), static_cast<V>(0)); in calculate_mean()
|
/aosp12/frameworks/av/media/libeffects/downmix/ |
H A D | EffectDownmix.cpp | 344 const bool accumulate = in Downmix_Process() local 352 if (accumulate) { in Downmix_Process() 373 pSrc, pDst, numFrames, accumulate, downmixInputChannelMask)) { in Downmix_Process()
|
/aosp12/hardware/interfaces/neuralnetworks/1.3/vts/functional/ |
H A D | Utils.cpp | 83 return std::accumulate(operand.dimensions.begin(), operand.dimensions.end(), dataSize, in sizeOfData()
|
/aosp12/frameworks/av/media/tests/benchmark/src/native/common/ |
H A D | Stats.cpp | 48 int32_t size = std::accumulate(mFrameSizes.begin(), mFrameSizes.end(), 0); in dumpStatistics()
|
/aosp12/packages/apps/Settings/src/com/android/settings/datausage/ |
H A D | DataUsageList.java | 381 largest = accumulate(managedKey, knownItems, bucket, in bindStats() 407 largest = accumulate(collapseKey, knownItems, bucket, category, items, largest); in bindStats() 482 private static long accumulate(int collapseKey, final SparseArray<AppItem> knownItems, in accumulate() method in DataUsageList
|
/aosp12/frameworks/base/apex/jobscheduler/service/java/com/android/server/ |
H A D | AnyMotionDetector.java | 302 mRunningStats.accumulate(accelDatum); 471 public void accumulate(Vector3 v) { in accumulate() method in AnyMotionDetector.RunningSignalStats
|
/aosp12/art/cmdline/detail/ |
H A D | cmdline_parse_argument_detail.h | 267 std::accumulate(tokenized_names_.begin(), tokenized_names_.end(), ~(0u), in CompleteArgument() 272 std::accumulate(tokenized_names_.begin(), tokenized_names_.end(), 0u, in CompleteArgument()
|
/aosp12/hardware/interfaces/audio/common/all-versions/test/utility/src/ |
H A D | ValidateXml.cpp | 162 << std::accumulate(begin(errors), end(errors), "occurred during xml validation:\n"s) in validateXmlMultipleLocations()
|
/aosp12/packages/modules/NetworkStack/src/com/android/networkstack/netlink/ |
H A D | TcpSocketTracker.java | 248 stat.accumulate( in pollSocketsInfo() 513 void accumulate(@Nullable final TcpStat stat) { in accumulate() method in TcpSocketTracker.TcpStat
|
/aosp12/system/update_engine/payload_consumer/ |
H A D | snapshot_extent_writer_unittest.cc | 75 return std::accumulate( in GetCowSize()
|