Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 3277) sorted by relevance

12345678910>>...132

/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/
Dworld_bank_data.csv2 Afghanistan,AFG,"Population, total",SP.POP.TOTL,20779957,21606992,22600774,23680871,24726689,256542…
4 Albania,ALB,"Population, total",SP.POP.TOTL,3089027,3060173,3051010,3039616,3026939,3011487,2992547…
6 Algeria,DZA,"Population, total",SP.POP.TOTL,31042238,31451513,31855110,32264159,32692153,33149720,3…
8 American Samoa,ASM,"Population, total",SP.POP.TOTL,57816,58496,59077,59495,59684,59557,59109,58367,…
10 Andorra,AND,"Population, total",SP.POP.TOTL,65390,67344,70048,73180,76250,78871,80995,82682,83860,8…
12 Angola,AGO,"Population, total",SP.POP.TOTL,16395477,16945753,17519418,18121477,18758138,19433604,20…
14 Antigua and Barbuda,ATG,"Population, total",SP.POP.TOTL,76007,77212,78298,79311,80347,81462,82715,8…
16 Argentina,ARG,"Population, total",SP.POP.TOTL,36870796,37275644,37681743,38087866,38491970,38892924…
18 Armenia,ARM,"Population, total",SP.POP.TOTL,3069597,3050686,3033976,3017938,3000715,2981262,2958301…
20 Aruba,ABW,"Population, total",SP.POP.TOTL,90866,92892,94992,97016,98744,100028,100830,101226,101362…
[all …]
/external/pdfium/core/fxcrt/
Dfx_memory_malloc.cpp27 FX_SAFE_SIZE_T total = member_size; in Alloc() local
28 total *= num_members; in Alloc()
29 if (!total.IsValid() || total.ValueOrDie() >= kMallocSizeLimit) in Alloc()
31 return malloc(total.ValueOrDie()); in Alloc()
35 FX_SAFE_SIZE_T total = member_size; in Calloc() local
36 total *= num_members; in Calloc()
37 if (!total.IsValid() || total.ValueOrDie() >= kMallocSizeLimit) in Calloc()
43 FX_SAFE_SIZE_T total = num_members; in Realloc() local
44 total *= member_size; in Realloc()
45 if (!total.IsValid() || total.ValueOrDie() >= kMallocSizeLimit) in Realloc()
[all …]
Dfx_memory_pa.cpp55 FX_SAFE_SIZE_T total = member_size; in Alloc() local
56 total *= num_members; in Alloc()
57 if (!total.IsValid()) in Alloc()
61 partition_alloc::AllocFlags::kReturnNull, total.ValueOrDie(), in Alloc()
66 FX_SAFE_SIZE_T total = member_size; in Calloc() local
67 total *= num_members; in Calloc()
68 if (!total.IsValid()) in Calloc()
74 total.ValueOrDie(), "GeneralPartition"); in Calloc()
89 FX_SAFE_SIZE_T total = member_size; in StringAlloc() local
90 total *= num_members; in StringAlloc()
[all …]
/external/cronet/base/
Dcallback_list_unittest.cc30 int total() const { return total_; } in total() function in base::__anon7a7b07f50111::Listener
53 int total() const { return total_; } in total() function in base::__anon7a7b07f50111::Remover
78 int total() const { return total_; } in total() function in base::__anon7a7b07f50111::Adder
190 EXPECT_EQ(1, a.total()); in TEST()
191 EXPECT_EQ(1, b.total()); in TEST()
192 EXPECT_EQ(1, c.total()); in TEST()
201 EXPECT_EQ(2, a.total()); in TEST()
202 EXPECT_EQ(1, b.total()); in TEST()
203 EXPECT_EQ(3, c.total()); in TEST()
221 EXPECT_EQ(1, a.total()); in TEST()
[all …]
Dobserver_list_unittest.cc61 explicit AdderT(int scaler) : total(0), scaler_(scaler) {} in AdderT()
64 void Observe(int x) override { total += x * scaler_; } in Observe()
65 int GetValue() const override { return total; } in GetValue()
67 int total; member in base::__anon659fe1300111::AdderT
317 EXPECT_EQ(20, a.total); in TYPED_TEST()
318 EXPECT_EQ(-20, b.total); in TYPED_TEST()
319 EXPECT_EQ(0, c.total); in TYPED_TEST()
320 EXPECT_EQ(-10, d.total); in TYPED_TEST()
321 EXPECT_EQ(0, e.total); in TYPED_TEST()
444 EXPECT_EQ(20, a.total); in TYPED_TEST()
[all …]
/external/compiler-rt/test/asan/TestCases/
Dcoverage-caller-callee-total-count.cc27 uintptr_t total = __sanitizer_get_total_unique_caller_callee_pairs(); in main() local
29 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
31 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
33 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
37 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
39 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
41 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
/external/tensorflow/tensorflow/core/util/
Dwork_sharder.cc32 void Shard(int max_parallelism, thread::ThreadPool* workers, int64_t total, in Shard() argument
34 CHECK_GE(total, 0); in Shard()
35 if (total == 0) { in Shard()
41 work(0, total); in Shard()
45 workers->ParallelFor(total, cost_per_unit, work); in Shard()
49 total, cost_per_unit, work, in Shard()
57 void Sharder::Do(int64_t total, int64_t cost_per_unit, const Work& work, in Do() argument
69 total * cost_per_unit / kMinCostPerShard)); in Do()
77 const int64_t block_size = (total + num_shards - 1) / num_shards; in Do()
79 if (block_size >= total) { in Do()
[all …]
/external/tensorflow/tensorflow/core/platform/
Dthreadpool.cc122 const int64_t total, const int64_t block_size) { in NumShardsUsedByFixedBlockSizeScheduling() argument
123 if (block_size <= 0 || total <= 1 || total <= block_size || in NumShardsUsedByFixedBlockSizeScheduling()
127 return (total + block_size - 1) / block_size; in NumShardsUsedByFixedBlockSizeScheduling()
131 const int64_t block_size, const int64_t total) { in NumShardsUsedByTransformRangeConcurrently() argument
132 return NumShardsUsedByFixedBlockSizeScheduling(total, block_size); in NumShardsUsedByTransformRangeConcurrently()
135 void ThreadPool::ParallelFor(int64_t total, in ParallelFor() argument
141 ParallelFor(total, *scheduling_params.cost_per_unit(), fn); in ParallelFor()
148 total, *scheduling_params.block_size(), fn); in ParallelFor()
156 const int64_t block_size, const int64_t total, in TransformRangeConcurrently() argument
158 ParallelFor(total, in TransformRangeConcurrently()
[all …]
/external/tensorflow/tensorflow/core/profiler/g3doc/
Dadvise.md43 top 1 operation type: SoftmaxCrossEntropyWithLogits, cpu: 1.37sec, accelerator: 0us, total: 1.37sec…
44 top 2 operation type: MatMul, cpu: 427.39ms, accelerator: 280.76ms, total: 708.14ms (13.83%)
45 top 3 operation type: ConcatV2, cpu: 357.83ms, accelerator: 31.80ms, total: 389.63ms (7.61%)
46 …n_model.py:360:build_graph:self._add_seq2seq(), cpu: 3.16sec, accelerator: 214.84ms, total: 3.37sec
47 …n_model.py:293:_add_seq2seq:decoder_outputs, ..., cpu: 2.46sec, accelerator: 3.25ms, total: 2.47sec
48 …py:181:sampled_sequence_...:average_across_ti..., cpu: 2.46sec, accelerator: 3.24ms, total: 2.47sec
49 …py:147:sequence_loss_by_...:crossent = loss_f..., cpu: 2.46sec, accelerator: 3.06ms, total: 2.46sec
50 …odel.py:289:sampled_loss_func:num_classes=vsize), cpu: 2.46sec, accelerator: 3.06ms, total: 2.46sec
51 …ion_model.py:282:sampled_loss_func:labels = tf.resha..., cpu: 164us, accelerator: 0us, total: 164us
52 …ib.py:148:sequence_loss_by_...:log_perp_list.app..., cpu: 1.33ms, accelerator: 120us, total: 1.45ms
[all …]
/external/harfbuzz_ng/test/api/
Dtest-ot-layout.c37 unsigned int total = 0; in test_ot_layout_table_get_script_tags() local
43 total = hb_ot_layout_table_get_script_tags (face, HB_OT_TAG_GSUB, offset, &count, tags); in test_ot_layout_table_get_script_tags()
44 g_assert_cmpuint (3, ==, total); in test_ot_layout_table_get_script_tags()
58 total = hb_ot_layout_table_get_script_tags (face, HB_OT_TAG_GPOS, offset, &count, tags); in test_ot_layout_table_get_script_tags()
59 g_assert_cmpuint (1, ==, total); in test_ot_layout_table_get_script_tags()
99 unsigned int total = 0; in test_ot_layout_table_get_feature_tags() local
105 total = hb_ot_layout_table_get_feature_tags (face, HB_OT_TAG_GSUB, offset, &count, tags); in test_ot_layout_table_get_feature_tags()
106 g_assert_cmpuint (14, ==, total); in test_ot_layout_table_get_feature_tags()
120 total = hb_ot_layout_table_get_feature_tags (face, HB_OT_TAG_GPOS, offset, &count, tags); in test_ot_layout_table_get_feature_tags()
121 g_assert_cmpuint (3, ==, total); in test_ot_layout_table_get_feature_tags()
[all …]
/external/libchrome/base/
Dobserver_list_unittest.cc45 explicit Adder(int scaler) : total(0), scaler_(scaler) {} in Adder()
48 void Observe(int x) override { total += x * scaler_; } in Observe()
49 int GetValue() const override { return total; } in GetValue()
51 int total; member in base::__anonbf9cb41a0111::Adder
309 EXPECT_EQ(20, a.total); in TEST()
310 EXPECT_EQ(-20, b.total); in TEST()
311 EXPECT_EQ(0, c.total); in TEST()
312 EXPECT_EQ(-10, d.total); in TEST()
313 EXPECT_EQ(0, e.total); in TEST()
404 EXPECT_EQ(20, a.total); in TEST()
[all …]
Dcallback_list_unittest.cc25 int total() const { return total_; } in total() function in base::__anond477dadf0111::Listener
45 int total() const { return total_; } in total() function in base::__anond477dadf0111::Remover
71 int total() const { return total_; } in total() function in base::__anond477dadf0111::Adder
180 EXPECT_EQ(1, a.total()); in TEST()
181 EXPECT_EQ(1, b.total()); in TEST()
190 EXPECT_EQ(2, a.total()); in TEST()
191 EXPECT_EQ(1, b.total()); in TEST()
192 EXPECT_EQ(1, c.total()); in TEST()
215 EXPECT_EQ(10, a.total()); in TEST()
216 EXPECT_EQ(-10, b.total()); in TEST()
[all …]
/external/squashfs-tools/squashfs-tools/
Dread_file.c59 int total = 0; in read_file() local
64 if(total + (MAX_LINE + 1) > size) { in read_file()
70 err = fgets(line + total, MAX_LINE + 1, fd); in read_file()
74 len = strlen(line + total); in read_file()
75 total += len; in read_file()
77 if(len == MAX_LINE && line[total - 1] != '\n') { in read_file()
89 if(len && line[total - 1] == '\n') { in read_file()
90 line[-- total] = '\0'; in read_file()
100 if(len == 0 || line[total - 1] != '\\' || (len >= 2 && in read_file()
101 strcmp(line + total - 2, "\\\\") == 0)) in read_file()
[all …]
/external/linux-kselftest/tools/testing/selftests/bpf/map_tests/
Dhtab_map_batch_ops.c78 __u32 batch, count, total, total_success; in __test_map_lookup_and_delete_batch() local
144 total = 0; in __test_map_lookup_and_delete_batch()
152 total ? &batch : NULL, in __test_map_lookup_and_delete_batch()
153 &batch, keys + total, in __test_map_lookup_and_delete_batch()
155 total * value_size, in __test_map_lookup_and_delete_batch()
170 total += count; in __test_map_lookup_and_delete_batch()
178 CHECK(total != max_entries, "lookup with steps", in __test_map_lookup_and_delete_batch()
179 "total = %u, max_entries = %u\n", total, max_entries); in __test_map_lookup_and_delete_batch()
182 total = 0; in __test_map_lookup_and_delete_batch()
184 while (total < max_entries) { in __test_map_lookup_and_delete_batch()
[all …]
Dlpm_trie_map_batch_ops.c70 __u32 step, count, total, total_success; in test_lpm_trie_map_batch_ops() local
98 total = 0; in test_lpm_trie_map_batch_ops()
105 total ? &batch : NULL, &batch, in test_lpm_trie_map_batch_ops()
106 keys + total, values + total, &count, &opts); in test_lpm_trie_map_batch_ops()
111 total += count; in test_lpm_trie_map_batch_ops()
116 CHECK(total != max_entries, "lookup with steps", in test_lpm_trie_map_batch_ops()
117 "total = %u, max_entries = %u\n", total, max_entries); in test_lpm_trie_map_batch_ops()
121 total = 0; in test_lpm_trie_map_batch_ops()
123 while (total < max_entries) { in test_lpm_trie_map_batch_ops()
124 if (max_entries - total < step) in test_lpm_trie_map_batch_ops()
[all …]
/external/perfetto/test/trace_processor/diff_tests/profiling/
Dsimpleperf_event.out11 total: 17.000000
13 total: 17.000000
15 total: 17.000000
26 total: 4.000000
32 total: 2.000000
38 total: 5.000000
40 total: 11.000000
49 total: 2.000000
51 total: 2.000000
53 total: 13.000000
/external/autotest/server/cros/res_resource_monitor/
Dtop_test_data.txt2 Tasks: 368 total, 1 running, 367 sleeping, 0 stopped, 0 zombie
4 KiB Mem : 24508128 total, 23433516 free, 499784 used, 574828 buff/cache
5 KiB Swap: 1023996 total, 1023996 free, 0 used. 23565096 avail Mem
19 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
21 KiB Mem : 24508128 total, 23433372 free, 502088 used, 572668 buff/cache
22 KiB Swap: 1023996 total, 1023996 free, 0 used. 23562220 avail Mem
32 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
34 KiB Mem: 24508128 total,23433372 free,502088 used,572668 buff/cache
35 KiB Swap: 1023996 total , 1023996 free 0 used. 23562220 avail Mem
38 Tasks: 363 total, 1 running, 362 sleeping, 0 stopped, 0 zombie
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DNanoTimeGranularityTester.java36 long total = 0L; in testNanoTimeGranularity() local
47 total += second - first; in testNanoTimeGranularity()
48 total += third - second; in testNanoTimeGranularity()
49 total += fourth - third; in testNanoTimeGranularity()
50 total += fifth - fourth; in testNanoTimeGranularity()
51 total += sixth - fifth; in testNanoTimeGranularity()
52 total += seventh - sixth; in testNanoTimeGranularity()
53 total += eighth - seventh; in testNanoTimeGranularity()
54 total += ninth - eighth; in testNanoTimeGranularity()
56 return ShortDuration.of(LongMath.divide(total, TRIALS * 8, CEILING), NANOSECONDS); in testNanoTimeGranularity()
/external/tensorflow/tensorflow/core/lib/core/
Dthreadpool_test.cc66 void RunWithFixedBlockSize(int64_t block_size, int64_t total, in RunWithFixedBlockSize() argument
71 std::vector<std::atomic<bool>> work(total); in RunWithFixedBlockSize()
72 for (int i = 0; i < total; i++) { in RunWithFixedBlockSize()
76 total, in RunWithFixedBlockSize()
83 EXPECT_LE(end, total); in RunWithFixedBlockSize()
91 EXPECT_EQ(num_done_work, total); in RunWithFixedBlockSize()
92 for (int i = 0; i < total; i++) { in RunWithFixedBlockSize()
95 const int64_t num_workers = (total + block_size - 1) / block_size; in RunWithFixedBlockSize()
111 const int64_t total = block_size + diff; in TEST() local
112 RunWithFixedBlockSize(block_size, total, &threads); in TEST()
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/jsonrpc2/
Dstream.go104 var total, length int64
108 total += int64(len(line))
110 return nil, total, fmt.Errorf("failed reading header line %q", err)
119 return nil, total, fmt.Errorf("invalid header line %q", line)
125 return nil, total, fmt.Errorf("failed parsing Content-Length: %v", value)
128 return nil, total, fmt.Errorf("invalid Content-Length: %v", length)
135 return nil, total, fmt.Errorf("missing Content-Length header")
139 return nil, total, err
141 total += length
142 return data, total, nil
[all …]
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
Dstream.go104 var total, length int64
108 total += int64(len(line))
110 return nil, total, fmt.Errorf("failed reading header line %q", err)
119 return nil, total, fmt.Errorf("invalid header line %q", line)
125 return nil, total, fmt.Errorf("failed parsing Content-Length: %v", value)
128 return nil, total, fmt.Errorf("invalid Content-Length: %v", length)
135 return nil, total, fmt.Errorf("missing Content-Length header")
139 return nil, total, err
141 total += length
142 return data, total, nil
[all …]
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
Dstream.go104 var total, length int64
108 total += int64(len(line))
110 return nil, total, fmt.Errorf("failed reading header line %q", err)
119 return nil, total, fmt.Errorf("invalid header line %q", line)
125 return nil, total, fmt.Errorf("failed parsing Content-Length: %v", value)
128 return nil, total, fmt.Errorf("invalid Content-Length: %v", length)
135 return nil, total, fmt.Errorf("missing Content-Length header")
139 return nil, total, err
141 total += length
142 return data, total, nil
[all …]
/external/ltp/testcases/kernel/security/dirtypipe/
Ddirtypipe.c71 unsigned int pipe_size, total, n, len; in prepare_pipe() local
81 for (total = pipe_size; total > 0;) { in prepare_pipe()
82 n = total > sizeof(buffer) ? sizeof(buffer) : total; in prepare_pipe()
84 total -= len; in prepare_pipe()
91 for (total = pipe_size; total > 0;) { in prepare_pipe()
92 n = total > sizeof(buffer) ? sizeof(buffer) : total; in prepare_pipe()
94 total -= len; in prepare_pipe()
/external/oauth/core/src/main/java/net/oauth/client/
DExcerptInputStream.java22 int total = 0; in ExcerptInputStream() local
24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT)); in ExcerptInputStream()
25 if (total == LIMIT) { in ExcerptInputStream()
27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length); in ExcerptInputStream()
29 byte[] tmp = new byte[total]; in ExcerptInputStream()
30 System.arraycopy(excerpt, 0, tmp, 0, total); in ExcerptInputStream()
/external/skia/src/shaders/
DSkShader.cpp42 SkMatrix total = fPendingLocalMatrix; in apply() local
44 total = SkMatrix::Concat(fCTM, total); in apply()
46 if (!total.invert(&total)) { in apply()
49 total = SkMatrix::Concat(postInv, total); in apply()
54 rec.fPipeline->append_matrix(rec.fAlloc, total); in apply()
67 SkMatrix total = fPendingLocalMatrix; in apply() local
69 total = SkMatrix::Concat(fCTM, total); in apply()
71 if (!total.invert(&total)) { in apply()
74 total = SkMatrix::Concat(postInv, total); in apply()
76 *local = SkShaderBase::ApplyMatrix(p, total, *local, uniforms); in apply()
[all …]

12345678910>>...132