Home
last modified time | relevance | path

Searched full:total (Results 1 – 25 of 5644) sorted by relevance

12345678910>>...226

/third_party/boost/libs/multiprecision/performance/
Dsf_performance-msvc-10.log9 Total allocations for mpfr_float_50 = 2684348
11 Total allocations for mpf_float_50 = 2601366
13 Total allocations for cpp_float_50 = 0
15 Total allocations for mpfr_class (50 digits) = 3946031
17 Total allocations for mpreal (50 digits) = 13223017
19 Total allocations for mpfr_float_50 = 3671485
21 Total allocations for mpf_float_100 = 3593669
23 Total allocations for cpp_float_100 = 0
25 Total allocations for mpfr_class (100 digits) = 5447348
27 Total allocations for mpreal (100 digits) = 16671065
[all …]
Dsf_performance.log8 Total allocations for double = 14
10 Total allocations for real_concept = 0
12 Total allocations for arithmetic_backend<double> = 0
14 Total allocations for arithmetic_backend<double> - no expression templates = 0
16 Total allocations for double = 0
18 Total allocations for real_concept = 0
20 Total allocations for arithmetic_backend<double> = 0
22 Total allocations for arithmetic_backend<double> - no expression templates = 0
25 Total allocations for mpfr_float_50 = 813605
27 Total allocations for mpfr_float_50 = 3255602
[all …]
Ddelaunay_test.log6 Total execution time = 4.87739
12 Total execution time = 42.5469
18 Total execution time = 9.24092
24 Total execution time = 66.3086
30 Total execution time = 10.3215
36 Total execution time = 12.848
42 Total execution time = 12.7641
48 Total execution time = 76.4744
54 Total execution time = 17.5545
60 Total execution time = 17.5139
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DconfusablesWholeScript.txt26 # Total code points: 7
38 # Total code points: 7
52 # Total code points: 9
64 # Total code points: 7
76 # Total code points: 7
88 # Total code points: 7
100 # Total code points: 7
116 # Total code points: 11
128 # Total code points: 7
140 # Total code points: 7
[all …]
/third_party/icu/icu4c/source/data/unidata/
DconfusablesWholeScript.txt26 # Total code points: 7
38 # Total code points: 7
52 # Total code points: 9
64 # Total code points: 7
76 # Total code points: 7
88 # Total code points: 7
100 # Total code points: 7
116 # Total code points: 11
128 # Total code points: 7
140 # Total code points: 7
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/unidata/
DconfusablesWholeScript.txt26 # Total code points: 7
38 # Total code points: 7
52 # Total code points: 9
64 # Total code points: 7
76 # Total code points: 7
88 # Total code points: 7
100 # Total code points: 7
116 # Total code points: 11
128 # Total code points: 7
140 # Total code points: 7
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/
DconfusablesWholeScript.txt26 # Total code points: 7
38 # Total code points: 7
52 # Total code points: 9
64 # Total code points: 7
76 # Total code points: 7
88 # Total code points: 7
100 # Total code points: 7
116 # Total code points: 11
128 # Total code points: 7
140 # Total code points: 7
[all …]
/third_party/skia/third_party/externals/icu/source/data/unidata/
DconfusablesWholeScript.txt26 # Total code points: 7
38 # Total code points: 7
52 # Total code points: 9
64 # Total code points: 7
76 # Total code points: 7
88 # Total code points: 7
100 # Total code points: 7
116 # Total code points: 11
128 # Total code points: 7
140 # Total code points: 7
[all …]
/third_party/typescript/tests/baselines/reference/
DfunctionWithSameNameAsField.symbols5 public total: number;
6 >total : Symbol(TestProgressBar.total, Decl(functionWithSameNameAsField.ts, 0, 23))
8 public total(total: number) {
9 >total : Symbol(TestProgressBar.total, Decl(functionWithSameNameAsField.ts, 1, 25))
10 >total : Symbol(total, Decl(functionWithSameNameAsField.ts, 2, 17))
12 this.total = total;
13 >this.total : Symbol(TestProgressBar.total, Decl(functionWithSameNameAsField.ts, 0, 23))
15 >total : Symbol(TestProgressBar.total, Decl(functionWithSameNameAsField.ts, 0, 23))
16 >total : Symbol(total, Decl(functionWithSameNameAsField.ts, 2, 17))
DfunctionWithSameNameAsField.types5 public total: number;
6 >total : number
8 public total(total: number) {
9 >total : (total: number) => this
10 >total : number
12 this.total = total;
13 >this.total = total : number
14 >this.total : number
16 >total : number
17 >total : number
DfunctionWithSameNameAsField.js3 public total: number;
4 public total(total: number) { method in TestProgressBar
5 this.total = total;
15 TestProgressBar.prototype.total = function (total) { method in TestProgressBar
16 this.total = total;
DfunctionWithSameNameAsField.errors.txt1 …ts/cases/compiler/functionWithSameNameAsField.ts(2,12): error TS2300: Duplicate identifier 'total'.
2 …ts/cases/compiler/functionWithSameNameAsField.ts(3,12): error TS2300: Duplicate identifier 'total'.
7 public total: number;
9 !!! error TS2300: Duplicate identifier 'total'.
10 public total(total: number) {
12 !!! error TS2300: Duplicate identifier 'total'.
13 this.total = total;
/third_party/boost/libs/coroutine2/performance/segmented/
Dperformance_switch.cpp54 duration_type total = clock_type::now() - start; in measure_time_void() local
55 total -= overhead_clock(); // overhead of measurement in measure_time_void()
56 total /= jobs; // loops in measure_time_void()
57 total /= 2; // 2x jump_fcontext in measure_time_void()
59 return total; in measure_time_void()
71 duration_type total = clock_type::now() - start; in measure_time_int() local
72 total -= overhead_clock(); // overhead of measurement in measure_time_int()
73 total /= jobs; // loops in measure_time_int()
74 total /= 2; // 2x jump_fcontext in measure_time_int()
76 return total; in measure_time_int()
[all …]
/third_party/boost/libs/coroutine/performance/symmetric/
Dperformance_switch.cpp55 duration_type total = clock_type::now() - start; in measure_time_void() local
56 total -= overhead_clock(); // overhead of measurement in measure_time_void()
57 total /= jobs; // loops in measure_time_void()
58 total /= 2; // 2x jump_fcontext in measure_time_void()
60 return total; in measure_time_void()
72 duration_type total = clock_type::now() - start; in measure_time_int() local
73 total -= overhead_clock(); // overhead of measurement in measure_time_int()
74 total /= jobs; // loops in measure_time_int()
75 total /= 2; // 2x jump_fcontext in measure_time_int()
77 return total; in measure_time_int()
[all …]
/third_party/boost/libs/coroutine/performance/asymmetric/
Dperformance_switch.cpp55 duration_type total = clock_type::now() - start; in measure_time_void() local
56 total -= overhead_clock(); // overhead of measurement in measure_time_void()
57 total /= jobs; // loops in measure_time_void()
58 total /= 2; // 2x jump_fcontext in measure_time_void()
60 return total; in measure_time_void()
72 duration_type total = clock_type::now() - start; in measure_time_int() local
73 total -= overhead_clock(); // overhead of measurement in measure_time_int()
74 total /= jobs; // loops in measure_time_int()
75 total /= 2; // 2x jump_fcontext in measure_time_int()
77 return total; in measure_time_int()
[all …]
/third_party/libsnd/src/
Dpcm.c668 sf_count_t total = 0 ; in pcm_read_sc2s() local
676 sc2s_array (ubuf.scbuf, readcount, ptr + total) ; in pcm_read_sc2s()
677 total += readcount ; in pcm_read_sc2s()
683 return total ; in pcm_read_sc2s()
690 sf_count_t total = 0 ; in pcm_read_uc2s() local
698 uc2s_array (ubuf.ucbuf, readcount, ptr + total) ; in pcm_read_uc2s()
699 total += readcount ; in pcm_read_uc2s()
705 return total ; in pcm_read_uc2s()
710 { int total ; in pcm_read_bes2s() local
712 total = psf_fread (ptr, sizeof (short), len, psf) ; in pcm_read_bes2s()
[all …]
Dfloat32.c516 sf_count_t total = 0 ; in host_read_f2s() local
532 convert (ubuf.fbuf, readcount, ptr + total, scale) ; in host_read_f2s()
533 total += readcount ; in host_read_f2s()
539 return total ; in host_read_f2s()
547 sf_count_t total = 0 ; in host_read_f2i() local
562 convert (ubuf.fbuf, readcount, ptr + total, scale) ; in host_read_f2i()
563 total += readcount ; in host_read_f2i()
569 return total ; in host_read_f2i()
576 sf_count_t total = 0 ; in host_read_f() local
588 endswap_int_copy ((int*) (ptr + total), ubuf.ibuf, readcount) ; in host_read_f()
[all …]
Ddouble64.c565 sf_count_t total = 0 ; in host_read_d2s() local
580 convert (ubuf.dbuf, readcount, ptr + total, scale) ; in host_read_d2s()
581 total += readcount ; in host_read_d2s()
587 return total ; in host_read_d2s()
595 sf_count_t total = 0 ; in host_read_d2i() local
610 convert (ubuf.dbuf, readcount, ptr + total, scale) ; in host_read_d2i()
611 total += readcount ; in host_read_d2i()
617 return total ; in host_read_d2i()
624 sf_count_t total = 0 ; in host_read_d2f() local
636 d2f_array (ubuf.dbuf, readcount, ptr + total) ; in host_read_d2f()
[all …]
Dxi.c221 int total, bufferlen, len ; in dpcm_seek() local
251 { total = offset ; in dpcm_seek()
253 while (total > 0) in dpcm_seek()
254 { len = (total > bufferlen) ? bufferlen : total ; in dpcm_seek()
255 total -= dpcm_read_dles2s (psf, ubuf.sbuf, len) ; in dpcm_seek()
259 { total = offset ; in dpcm_seek()
261 while (total > 0) in dpcm_seek()
262 { len = (total > bufferlen) ? bufferlen : total ; in dpcm_seek()
263 total -= dpcm_read_dsc2s (psf, ubuf.sbuf, len) ; in dpcm_seek()
515 sf_count_t total = 0 ; in dpcm_read_dsc2s() local
[all …]
Dvox_adpcm.c154 sf_count_t total = 0 ; in vox_read_s() local
165 total += count ; in vox_read_s()
171 return total ; in vox_read_s()
180 sf_count_t total = 0 ; in vox_read_i() local
192 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in vox_read_i()
193 total += count ; in vox_read_i()
199 return total ; in vox_read_i()
208 sf_count_t total = 0 ; in vox_read_f() local
223 ptr [total + k] = normfact * (float) (sptr [k]) ; in vox_read_f()
224 total += count ; in vox_read_f()
[all …]
Dgsm610.c242 { int count, total = 0, indx = 0 ; in gsm610_read_block() local
247 return total ; in gsm610_read_block()
259 total = indx ; in gsm610_read_block()
262 return total ; in gsm610_read_block()
269 sf_count_t total = 0 ; in gsm610_read_s() local
280 total += count ; in gsm610_read_s()
287 return total ; in gsm610_read_s()
296 sf_count_t total = 0 ; in gsm610_read_i() local
308 ptr [total + k] = arith_shift_left (sptr [k], 16) ; in gsm610_read_i()
310 total += count ; in gsm610_read_i()
[all …]
/third_party/python/Tools/scripts/
Ddutree.py7 total, d = None, {}
18 total, d = store(size, comps, total, d)
20 display(total, d)
25 def store(size, comps, total, d): argument
32 return total, d
34 def display(total, d): argument
35 show(total, d, '')
37 def show(total, d, prefix): argument
45 ## if sum < total:
46 ## list.append((total - sum, os.curdir))
/third_party/pcre2/pcre2/maint/Unicode.tables/
DScriptExtensions.txt46 # Total code points: 1
60 # Total code points: 18
68 # Total code points: 4
78 # Total code points: 4
102 # Total code points: 238
110 # Total code points: 13
118 # Total code points: 1
126 # Total code points: 1
135 # Total code points: 28
143 # Total code points: 1
[all …]
/third_party/skia/third_party/externals/harfbuzz/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 …]
/third_party/ffmpeg/libavcodec/
Dopus_rc.c68 uint32_t total) in opus_rc_dec_update() argument
70 rc->value -= scale * (total - high); in opus_rc_dec_update()
72 : rc->range - scale * (total - high); in opus_rc_dec_update()
92 unsigned int k, scale, total, symbol, low, high; in ff_opus_rc_dec_cdf() local
94 total = *cdf++; in ff_opus_rc_dec_cdf()
96 scale = rc->range / total; in ff_opus_rc_dec_cdf()
98 symbol = total - FFMIN(symbol, total); in ff_opus_rc_dec_cdf()
104 opus_rc_dec_update(rc, scale, low, high, total); in ff_opus_rc_dec_cdf()
184 uint32_t bits, k, scale, total; in ff_opus_rc_dec_uint() local
187 total = (bits > 8) ? ((size - 1) >> (bits - 8)) + 1 : size; in ff_opus_rc_dec_uint()
[all …]

12345678910>>...226