Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 11233) sorted by relevance

12345678910>>...450

/external/cronet/third_party/libxml/src/
Dxmlwriter.c523 int count; in xmlTextWriterStartDocument() local
563 count = xmlOutputBufferWriteString(writer->out, "<?xml version="); in xmlTextWriterStartDocument()
564 if (count < 0) in xmlTextWriterStartDocument()
566 sum += count; in xmlTextWriterStartDocument()
567 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar); in xmlTextWriterStartDocument()
568 if (count < 0) in xmlTextWriterStartDocument()
570 sum += count; in xmlTextWriterStartDocument()
572 count = xmlOutputBufferWriteString(writer->out, version); in xmlTextWriterStartDocument()
574 count = xmlOutputBufferWriteString(writer->out, "1.0"); in xmlTextWriterStartDocument()
575 if (count < 0) in xmlTextWriterStartDocument()
[all …]
/external/libxml2/
Dxmlwriter.c523 int count; in xmlTextWriterStartDocument() local
563 count = xmlOutputBufferWriteString(writer->out, "<?xml version="); in xmlTextWriterStartDocument()
564 if (count < 0) in xmlTextWriterStartDocument()
566 sum += count; in xmlTextWriterStartDocument()
567 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar); in xmlTextWriterStartDocument()
568 if (count < 0) in xmlTextWriterStartDocument()
570 sum += count; in xmlTextWriterStartDocument()
572 count = xmlOutputBufferWriteString(writer->out, version); in xmlTextWriterStartDocument()
574 count = xmlOutputBufferWriteString(writer->out, "1.0"); in xmlTextWriterStartDocument()
575 if (count < 0) in xmlTextWriterStartDocument()
[all …]
/external/cronet/buildtools/third_party/libc++abi/trunk/test/
Dcatch_class_04.pass.cpp28 static int count; member
30 explicit B(int id) : id_(id) {count++;} in B()
31 B(const B& a) : id_(a.id_) {count++;} in B()
32 ~B() {count--;} in ~B()
35 int B::count = 0; member in B
40 static int count; member
42 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
43 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
44 ~C1() {count--;} in ~C1()
47 int C1::count = 0; member in C1
[all …]
Dcatch_class_03.pass.cpp28 static int count; member
30 explicit B(int id) : id_(id) {count++;} in B()
31 B(const B& a) : id_(a.id_) {count++;} in B()
32 ~B() {count--;} in ~B()
35 int B::count = 0; member in B
40 static int count; member
42 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
43 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
44 ~C1() {count--;} in ~C1()
47 int C1::count = 0; member in C1
[all …]
/external/libcxxabi/test/
Dcatch_class_04.pass.cpp31 static int count; member
33 explicit B(int id) : id_(id) {count++;} in B()
34 B(const B& a) : id_(a.id_) {count++;} in B()
35 ~B() {count--;} in ~B()
38 int B::count = 0; member in B
43 static int count; member
45 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
47 ~C1() {count--;} in ~C1()
50 int C1::count = 0; member in C1
[all …]
Dcatch_class_03.pass.cpp31 static int count; member
33 explicit B(int id) : id_(id) {count++;} in B()
34 B(const B& a) : id_(a.id_) {count++;} in B()
35 ~B() {count--;} in ~B()
38 int B::count = 0; member in B
43 static int count; member
45 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
47 ~C1() {count--;} in ~C1()
50 int C1::count = 0; member in C1
[all …]
/external/igt-gpu-tools/tests/i915/
Dgem_fence_upload.c53 int n, loop, count; in performance() local
62 for (count = 2; count < 4*num_fences; count *= 2) { in performance()
64 uint32_t handle[count]; in performance()
65 void *ptr[count]; in performance()
67 for (n = 0; n < count; n++) { in performance()
74 for (n = 0; n < count; n++) in performance()
79 linear[count != 2] = count * loop / elapsed(&start, &end); in performance()
80 igt_info("Upload rate for %d linear surfaces: %7.3fMiB/s\n", count, linear[count != 2]); in performance()
82 for (n = 0; n < count; n++) in performance()
87 for (n = 0; n < count; n++) in performance()
[all …]
/external/harfbuzz_ng/test/api/
Dtest-ot-layout.c38 unsigned int count = STATIC_ARRAY_SIZE; in test_ot_layout_table_get_script_tags() local
41 while (count == STATIC_ARRAY_SIZE) in test_ot_layout_table_get_script_tags()
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()
45 offset += count; in test_ot_layout_table_get_script_tags()
46 if (count) in test_ot_layout_table_get_script_tags()
48 g_assert_cmpuint (3, ==, count); in test_ot_layout_table_get_script_tags()
54 count = STATIC_ARRAY_SIZE; in test_ot_layout_table_get_script_tags()
56 while (count == STATIC_ARRAY_SIZE) 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()
60 offset += count; in test_ot_layout_table_get_script_tags()
[all …]
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n_pred.pass.cpp38 static unsigned count; member
41 {++count; return x == y;} in operator ()()
44 unsigned count_equal::count = 0; member in count_equal
53 count_equal::count = 0; in test()
55 assert(count_equal::count <= sa); in test()
56 count_equal::count = 0; in test()
58 assert(count_equal::count <= sa); in test()
59 count_equal::count = 0; in test()
61 assert(count_equal::count <= sa); in test()
62 count_equal::count = 0; in test()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
Dweak_ptr.pass.cpp25 static int count; member
27 B() {++count;} in B()
28 B(const B&) {++count;} in B()
29 virtual ~B() {--count;} in ~B()
32 int B::count = 0; member in B
37 static int count; member
39 A() {++count;} in A()
40 A(const A&) {++count;} in A()
41 ~A() {--count;} in ~A()
44 int A::count = 0; member in A
[all …]
Dshared_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
Dweak_ptr.pass.cpp25 static int count; member
27 B() {++count;} in B()
28 B(const B&) {++count;} in B()
29 virtual ~B() {--count;} in ~B()
32 int B::count = 0; member in B
37 static int count; member
39 A() {++count;} in A()
40 A(const A& other) : B(other) {++count;} in A()
41 ~A() {--count;} in ~A()
44 int A::count = 0; member in A
[all …]
Dshared_ptr_Y.pass.cpp23 static int count; member
25 B() {++count;} in B()
26 B(const B&) {++count;} in B()
27 virtual ~B() {--count;} in ~B()
30 int B::count = 0; member in B
35 static int count; member
37 A() {++count;} in A()
38 A(const A& other) : B(other) {++count;} in A()
39 ~A() {--count;} in ~A()
42 int A::count = 0; member in A
[all …]
/external/strace/tests-mx32/
Dmove_pages.c44 const unsigned long count, in print_page_array() argument
47 if (!count) { in print_page_array()
51 if (count <= offset) { in print_page_array()
57 for (i = 0; i < count; ++i) { in print_page_array()
60 if (i + offset < count) { in print_page_array()
80 const unsigned long count, in print_node_array() argument
83 if (!count) { in print_node_array()
87 if (count <= offset) { in print_node_array()
93 for (i = 0; i < count; ++i) { in print_node_array()
96 if (i + offset < count) { in print_node_array()
[all …]
/external/strace/tests-m32/
Dmove_pages.c44 const unsigned long count, in print_page_array() argument
47 if (!count) { in print_page_array()
51 if (count <= offset) { in print_page_array()
57 for (i = 0; i < count; ++i) { in print_page_array()
60 if (i + offset < count) { in print_page_array()
80 const unsigned long count, in print_node_array() argument
83 if (!count) { in print_node_array()
87 if (count <= offset) { in print_node_array()
93 for (i = 0; i < count; ++i) { in print_node_array()
96 if (i + offset < count) { in print_node_array()
[all …]
/external/strace/tests/
Dmove_pages.c44 const unsigned long count, in print_page_array() argument
47 if (!count) { in print_page_array()
51 if (count <= offset) { in print_page_array()
57 for (i = 0; i < count; ++i) { in print_page_array()
60 if (i + offset < count) { in print_page_array()
80 const unsigned long count, in print_node_array() argument
83 if (!count) { in print_node_array()
87 if (count <= offset) { in print_node_array()
93 for (i = 0; i < count; ++i) { in print_node_array()
96 if (i + offset < count) { in print_node_array()
[all …]
/external/cronet/base/win/
Dpe_image_unittest.cc28 int* count = reinterpret_cast<int*>(cookie); in ImportsCallback() local
29 (*count)++; in ImportsCallback()
39 int* count = reinterpret_cast<int*>(cookie); in SectionsCallback() local
40 (*count)++; in SectionsCallback()
49 int* count = reinterpret_cast<int*>(cookie); in RelocsCallback() local
50 (*count)++; in RelocsCallback()
60 int* count = reinterpret_cast<int*>(cookie); in ImportChunksCallback() local
61 (*count)++; in ImportChunksCallback()
72 int* count = reinterpret_cast<int*>(cookie); in DelayImportChunksCallback() local
73 (*count)++; in DelayImportChunksCallback()
[all …]
/external/cronet/third_party/boringssl/src/crypto/kyber/
Dkyber_tests.txt7 count = 0
14 count = 1
21 count = 2
28 count = 3
35 count = 4
42 count = 5
49 count = 6
56 count = 7
63 count = 8
70 count = 9
[all …]
/external/cronet/third_party/icu/source/test/intltest/
Dtsdtfmsy.cpp132 UBool IntlTestDateFormatSymbols::UnicodeStringsArePrefixes(int32_t count, int32_t prefixLen, const … in UnicodeStringsArePrefixes() argument
135 for (i = 0; i < count; i++) { in UnicodeStringsArePrefixes()
201 int32_t count = 0; in TestSymbols() local
202 const UnicodeString *eras = en.getEras(count); in TestSymbols()
203 if(count == 0) { in TestSymbols()
224 fr.setEras(eras, count); in TestSymbols()
225 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols()
229 const UnicodeString *months = en.getMonths(count); in TestSymbols()
230 fr.setMonths(months, count); in TestSymbols()
231 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols()
[all …]
/external/icu/icu4c/source/test/intltest/
Dtsdtfmsy.cpp132 UBool IntlTestDateFormatSymbols::UnicodeStringsArePrefixes(int32_t count, int32_t prefixLen, const … in UnicodeStringsArePrefixes() argument
135 for (i = 0; i < count; i++) { in UnicodeStringsArePrefixes()
201 int32_t count = 0; in TestSymbols() local
202 const UnicodeString *eras = en.getEras(count); in TestSymbols()
203 if(count == 0) { in TestSymbols()
224 fr.setEras(eras, count); in TestSymbols()
225 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols()
229 const UnicodeString *months = en.getMonths(count); in TestSymbols()
230 fr.setMonths(months, count); in TestSymbols()
231 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols()
[all …]
/external/boringssl/src/crypto/kyber/
Dkyber_tests.txt7 count = 0
14 count = 1
21 count = 2
28 count = 3
35 count = 4
42 count = 5
49 count = 6
56 count = 7
63 count = 8
70 count = 9
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
Dunique_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Dshared_ptr_Y.pass.cpp22 static int count; member
24 B() {++count;} in B()
25 B(const B&) {++count;} in B()
26 virtual ~B() {--count;} in ~B()
29 int B::count = 0; member in B
34 static int count; member
36 A() {++count;} in A()
37 A(const A&) {++count;} in A()
38 ~A() {--count;} in ~A()
41 int A::count = 0; member in A
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n_pred.pass.cpp37 static unsigned count; member
40 {++count; return x == y;} in operator ()()
43 unsigned count_equal::count = 0; member in count_equal
52 count_equal::count = 0; in test()
54 assert(count_equal::count <= sa); in test()
55 count_equal::count = 0; in test()
57 assert(count_equal::count <= sa); in test()
58 count_equal::count = 0; in test()
60 assert(count_equal::count <= sa); in test()
61 count_equal::count = 0; in test()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/associative/map/map.ops/
Dcount.pass.cpp42 R r = m.count(5); in main()
44 r = m.count(6); in main()
46 r = m.count(7); in main()
48 r = m.count(8); in main()
50 r = m.count(9); in main()
52 r = m.count(10); in main()
54 r = m.count(11); in main()
56 r = m.count(12); in main()
58 r = m.count(4); in main()
80 R r = m.count(5); in main()
[all …]

12345678910>>...450