Home
last modified time | relevance | path

Searched defs:total (Results 1 – 25 of 2600) sorted by relevance

12345678910>>...104

/aosp_15_r20/packages/modules/RemoteKeyProvisioning/app/tests/unit/src/com/android/rkpdapp/unittest/
DStatsProcessorTest.java51 int total = 10; in testMinUnassignedBoundary() local
75 int total = 10; in testStatsNoProvisioning() local
90 int total = 10; in testStatsProvisioning1() local
103 int total = 10; in testStatsProvisioning2() local
117 int total = 15; in testStatsProvisioning3() local
130 int total = 10; in testExpiringProvisioningNeeded1() local
142 int total = 10; in testExpiringProvisioningNeeded2() local
154 int total = 10; in testExpiringProvisioningNeeded3() local
166 int total = 10; in testExpiringProvisioningNeeded4() local
178 int total = 10; in testExpiringProvisioningNeeded5() local
[all …]
/aosp_15_r20/external/mesa3d/src/util/
H A Dsoftfloat.c52 #define index_word(total, n) ((total) - 1 - (n)) argument
53 #define index_word_hi(total) 0 argument
54 #define index_word_lo(total) ((total) - 1) argument
55 #define index_multiword_hi(total, n) 0 argument
56 #define index_multiword_lo(total, n) ((total) - (n)) argument
57 #define index_multiword_hi_but(total, n) 0 argument
58 #define index_multiword_lo_but(total, n) (n) argument
61 #define index_word(total, n) (n) argument
62 #define index_word_hi(total) ((total) - 1) argument
63 #define index_word_lo(total) 0 argument
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/
H A Dthreadpool.cc122 const int64_t total, const int64_t block_size) { in NumShardsUsedByFixedBlockSizeScheduling()
131 const int64_t block_size, const int64_t total) { in NumShardsUsedByTransformRangeConcurrently()
135 void ThreadPool::ParallelFor(int64_t total, in ParallelFor()
156 const int64_t block_size, const int64_t total, in TransformRangeConcurrently()
167 const int64_t total, const int64_t block_size, in ParallelForFixedBlockSizeScheduling()
203 void ThreadPool::ParallelFor(int64_t total, int64_t cost_per_unit, in ParallelFor()
213 int64_t total, int64_t cost_per_unit, in ParallelForWithWorkerId() argument
232 int64_t total, const SchedulingParams& scheduling_params, in ParallelForWithWorkerId() argument
/aosp_15_r20/external/threetenbp/src/test/java/org/threeten/bp/
H A DPerformance.java171 long total = 0; in queryListDateTime() local
200 long total = 0; in deriveDateTime() local
238 long total = 0; in queryListLocalDate() local
287 long total = 0; in queryListTime() local
314 long total = 0; in deriveTime() local
354 long total = 0; in queryListZonedDateTime() local
406 long total = 0; in queryListInstant() local
453 long total = 0; in queryListDate() local
502 long total = 0; in queryListGCal() local
/aosp_15_r20/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DTable.java89 final List<? extends ITableItem> items, final ICoverageNode total, in render()
101 final List<? extends ITableItem> items, final ICoverageNode total) in header()
109 private void footer(final HTMLElement table, final ICoverageNode total, in footer()
165 final ICoverageNode total) throws IOException { in init()
176 void footer(final HTMLElement tr, final ICoverageNode total, in footer()
180 renderer.footer(tr.td(style), total, resources, base); in footer() local
/aosp_15_r20/external/OpenCL-CTS/test_conformance/atomics/
H A Dtest_atomics.cpp558 cl_int total = 0; in test_atomic_add_result_int() local
566 cl_long total = 0; in test_atomic_add_result_long() local
608 cl_int total = INT_TEST_VALUE; in test_atomic_sub_result_int() local
616 cl_long total = LONG_TEST_VALUE; in test_atomic_sub_result_long() local
900 cl_int total = 0x7fffffffL; in test_atomic_min_result_int() local
918 cl_long total = 0x7fffffffffffffffLL; in test_atomic_min_result_long() local
972 cl_int total = 0; in test_atomic_max_result_int() local
990 cl_long total = 0; in test_atomic_max_result_long() local
1162 cl_int total = INT_TEST_VALUE; in test_atomic_cmpxchg_result_int() local
1170 cl_long total = LONG_TEST_VALUE; in test_atomic_cmpxchg_result_long() local
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/
Dtest_backup.py69 def progress(status, remaining, total): argument
83 def progress(status, remaining, total): argument
96 def progress(status, remaining, total): argument
115 def progress(status, remaining, total): argument
136 def progress(status, remaining, total): argument
/aosp_15_r20/external/perfetto/protos/perfetto/metrics/android/
H A Dnetwork_metric.proto49 optional PacketStatistic total = 1; field
60 optional PacketStatistic total = 1; field
136 optional NetRxActionStatistic total = 1; field
147 optional NetTxActionStatistic total = 1; field
155 optional IpiActionStatistic total = 1; field
/aosp_15_r20/external/coreboot/payloads/libpayload/curses/PDCurses/x11/
H A Dsb.c58 int sb_set_horz(int total, int viewport, int cur) in sb_set_horz()
79 int sb_set_vert(int total, int viewport, int cur) in sb_set_vert()
100 int sb_get_horz(int *total, int *viewport, int *cur) in sb_get_horz()
123 int sb_get_vert(int *total, int *viewport, int *cur) in sb_get_vert()
/aosp_15_r20/libcore/ojluni/src/test/java/lang/StackWalker/
H A DStackWalkTest.java167 public void walk(int total, int markAt) { in walk()
192 public void call(int total, int current, int markAt) { in call()
204 public void call(int total, int current, int markAt) { in call()
217 public void call(int total, int current, int markAt) { in call()
230 public void call2(int total, int current, int markAt) { in call2()
H A DMultiThreadStackWalk.java106 public Env(long total, long markAt, AtomicBoolean debug) { in Env()
236 default void call(Env env, Call next, int total, int current, int markAt) { in call()
254 public void call(Env env, Call next, int total, int current, int markAt) { in call()
278 public void call(Env env, Call next, int total, int current, int markAt) { in call()
289 public static Env runTest(Test test, int total, int markAt) { in runTest()
/aosp_15_r20/frameworks/base/core/proto/android/os/
H A Dbatterystats.proto220 optional TimerProto total = 3; field
274 optional TimerProto total = 2; field
331 optional TimerProto total = 2; field
389 optional TimerProto total = 2; field
405 optional TimerProto total = 2; field
416 optional TimerProto total = 2; field
439 optional TimerProto total = 2; field
457 optional TimerProto total = 2; field
480 optional TimerProto total = 2; field
631 optional TimerProto total = 2; field
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/core/
H A Dthreadpool_test.cc66 void RunWithFixedBlockSize(int64_t block_size, int64_t total, in RunWithFixedBlockSize()
111 const int64_t total = block_size + diff; in TEST() local
118 int64_t total, in RunWithFixedBlockSizeTransformRangeConcurrently()
160 const int64_t total = block_size + diff; in TEST() local
205 void RunFixedBlockSizeShardingWithWorkerId(int64_t block_size, int64_t total, in RunFixedBlockSizeShardingWithWorkerId()
255 const int64_t total = block_size + diff; in TEST() local
421 int total = state.range(0); in BM_ParallelFor() local
/aosp_15_r20/external/pdfium/core/fxcrt/
H A Dfx_memory_malloc.cpp27 FX_SAFE_SIZE_T total = member_size; in Alloc() local
35 FX_SAFE_SIZE_T total = member_size; in Calloc() local
43 FX_SAFE_SIZE_T total = num_members; in Realloc() local
55 FX_SAFE_SIZE_T total = member_size; in StringAlloc() local
/aosp_15_r20/external/harfbuzz_ng/test/api/
H A Dtest-ot-layout.c37 unsigned int total = 0; in test_ot_layout_table_get_script_tags() local
99 unsigned int total = 0; in test_ot_layout_table_get_feature_tags() local
140 unsigned int total = 0; in test_ot_layout_script_get_language_tags() local
179 unsigned int total = 0; in test_ot_layout_language_get_feature_tags() local
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-subscriber/benches/
Dfmt.rs43 let mut total = Duration::from_secs(0); in bench_new_span() localVariable
110 let mut total = Duration::from_secs(0); in bench_event() localVariable
161 let mut total = Duration::from_secs(0); in bench_event() localVariable
211 let mut total = Duration::from_secs(0); in bench_event() localVariable
262 let mut total = Duration::from_secs(0); in bench_event() localVariable
/aosp_15_r20/libcore/ojluni/src/test/java/nio/channels/Channels/
H A DBasic2.java84 private volatile int total; field in Basic2.Reader
124 int total() { return total; } in total() method in Basic2.Reader
130 private final int total; field in Basic2.Writer
176 int total() { return total; } in total() method in Basic2.Writer
/aosp_15_r20/external/lzma/C/
H A DPpmd8Enc.c59 static void Ppmd8_RangeEnc_Encode(CPpmd8 *p, UInt32 start, UInt32 size, UInt32 total) in Ppmd8_RangeEnc_Encode()
75 #define RC_Encode(start, size, total) Ppmd8_RangeEnc_Encode(p, start, size, total); argument
76 #define RC_EncodeFinal(start, size, total) RC_Encode(start, size, total) RC_NORM_REMOTE(p) argument
291 UInt32 total = sum + escFreq; in Ppmd8_EncodeSymbol() local
/aosp_15_r20/external/cronet/third_party/protobuf/benchmarks/cpp/
H A Dcpp_benchmark.cc102 size_t total = 0; in BenchmarkCase() local
123 size_t total = 0; in BenchmarkCase() local
147 size_t total = 0; in BenchmarkCase() local
177 size_t total = 0; in BenchmarkCase() local
/aosp_15_r20/external/protobuf/benchmarks/cpp/
H A Dcpp_benchmark.cc102 size_t total = 0; in BenchmarkCase() local
123 size_t total = 0; in BenchmarkCase() local
147 size_t total = 0; in BenchmarkCase() local
177 size_t total = 0; in BenchmarkCase() local
/aosp_15_r20/external/python/cpython3/Tools/scripts/
Ddutree.py25 def store(size, comps, total, d): argument
34 def display(total, d): argument
37 def show(total, d, prefix): argument
/aosp_15_r20/external/python/cpython2/Tools/scripts/
Ddutree.py25 def store(size, comps, total, d): argument
34 def display(total, d): argument
37 def show(total, d, prefix): argument
/aosp_15_r20/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java85 long total = 0; in copy() local
120 long total = 0; in copyReaderToBuilder() local
148 long total = 0; in copyReaderToWriter() local
241 long total = 0; in exhaust() local
/aosp_15_r20/external/guava/android/guava/src/com/google/common/io/
H A DCharStreams.java85 long total = 0; in copy() local
120 long total = 0; in copyReaderToBuilder() local
148 long total = 0; in copyReaderToWriter() local
241 long total = 0; in exhaust() local
/aosp_15_r20/packages/modules/AppSearch/framework/java/external/android/app/appsearch/
DGenericDocument.java538 int total = 0; in flattenAccumulator() local
552 int total = 0; in flattenAccumulator() local
566 int total = 0; in flattenAccumulator() local
580 int total = 0; in flattenAccumulator() local
594 int total = 0; in flattenAccumulator() local
608 int total = 0; in flattenAccumulator() local

12345678910>>...104