Home
last modified time | relevance | path

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

12345678910>>...271

/external/libxml2/
Dxmlwriter.c522 int count; in xmlTextWriterStartDocument() local
562 count = xmlOutputBufferWriteString(writer->out, "<?xml version="); in xmlTextWriterStartDocument()
563 if (count < 0) in xmlTextWriterStartDocument()
565 sum += count; in xmlTextWriterStartDocument()
566 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar); in xmlTextWriterStartDocument()
567 if (count < 0) in xmlTextWriterStartDocument()
569 sum += count; in xmlTextWriterStartDocument()
571 count = xmlOutputBufferWriteString(writer->out, version); in xmlTextWriterStartDocument()
573 count = xmlOutputBufferWriteString(writer->out, "1.0"); in xmlTextWriterStartDocument()
574 if (count < 0) in xmlTextWriterStartDocument()
[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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDigitList_Android.java80 public int count = 0; field in DigitList_Android
96 for (int i=0; i<count; ++i) if (digits[i] != '0') return false; in isZero()
117 ensureCapacity(count+1, count); in append()
118 digits[count++] = (byte) digit; in append()
131 if (count == 0) return 0.0; in getDouble()
132 StringBuilder temp = new StringBuilder(count); in getDouble()
134 for (int i = 0; i < count; ++i) temp.append((char)(digits[i])); in getDouble()
149 if (count == 0) return 0; in getLong()
156 StringBuilder temp = new StringBuilder(count); in getLong()
159 temp.append((i < count) ? (char)(digits[i]) : '0'); in getLong()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDigitList_Android.java82 public int count = 0; field in DigitList_Android
98 for (int i=0; i<count; ++i) if (digits[i] != '0') return false; in isZero()
119 ensureCapacity(count+1, count); in append()
120 digits[count++] = (byte) digit; in append()
133 if (count == 0) return 0.0; in getDouble()
134 StringBuilder temp = new StringBuilder(count); in getDouble()
136 for (int i = 0; i < count; ++i) temp.append((char)(digits[i])); in getDouble()
151 if (count == 0) return 0; in getLong()
158 StringBuilder temp = new StringBuilder(count); in getLong()
161 temp.append((i < count) ? (char)(digits[i]) : '0'); in getLong()
[all …]
/external/e2fsprogs/tests/f_expand/
Dexpect.1.gz
/external/skia/src/opts/
DSkSwizzler_opts.h21 static void RGBA_to_rgbA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_rgbA_portable() argument
23 for (int i = 0; i < count; i++) { in RGBA_to_rgbA_portable()
38 static void RGBA_to_bgrA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_bgrA_portable() argument
40 for (int i = 0; i < count; i++) { in RGBA_to_bgrA_portable()
55 static void RGBA_to_BGRA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_BGRA_portable() argument
57 for (int i = 0; i < count; i++) { in RGBA_to_BGRA_portable()
69 static void RGB_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_RGB1_portable() argument
71 for (int i = 0; i < count; i++) { in RGB_to_RGB1_portable()
83 static void RGB_to_BGR1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_BGR1_portable() argument
85 for (int i = 0; i < count; i++) { in RGB_to_BGR1_portable()
[all …]
/external/skqp/src/opts/
DSkSwizzler_opts.h21 static void RGBA_to_rgbA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_rgbA_portable() argument
23 for (int i = 0; i < count; i++) { in RGBA_to_rgbA_portable()
38 static void RGBA_to_bgrA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_bgrA_portable() argument
40 for (int i = 0; i < count; i++) { in RGBA_to_bgrA_portable()
55 static void RGBA_to_BGRA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_BGRA_portable() argument
57 for (int i = 0; i < count; i++) { in RGBA_to_BGRA_portable()
69 static void RGB_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_RGB1_portable() argument
71 for (int i = 0; i < count; i++) { in RGB_to_RGB1_portable()
83 static void RGB_to_BGR1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_BGR1_portable() argument
85 for (int i = 0; i < count; i++) { in RGB_to_BGR1_portable()
[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/
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/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()
200 int32_t count = 0; in TestSymbols() local
201 const UnicodeString *eras = en.getEras(count); in TestSymbols()
202 if(count == 0) { in TestSymbols()
223 fr.setEras(eras, count); in TestSymbols()
224 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols()
228 const UnicodeString *months = en.getMonths(count); in TestSymbols()
229 fr.setMonths(months, count); in TestSymbols()
230 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols()
[all …]
/external/adhd/cras/src/server/
Dcras_mix_ops.c41 size_t count) in cras_mix_add_clip_s16_le() argument
46 for (i = 0; i < count; i++) { in cras_mix_add_clip_s16_le()
60 size_t count, in scale_add_clip_s16_le() argument
67 return cras_mix_add_clip_s16_le(dst, src, count); in scale_add_clip_s16_le()
69 for (i = 0; i < count; i++) { in scale_add_clip_s16_le()
83 size_t count, in copy_scaled_s16_le() argument
89 memcpy(dst, src, count * sizeof(*src)); in copy_scaled_s16_le()
93 for (i = 0; i < count; i++) in copy_scaled_s16_le()
97 static void cras_scale_buffer_inc_s16_le(uint8_t *buffer, unsigned int count, in cras_scale_buffer_inc_s16_le() argument
107 memset(out, 0, count * sizeof(*out)); in cras_scale_buffer_inc_s16_le()
[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 …]
Dweak_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&) {++count;} in A()
39 ~A() {--count;} in ~A()
42 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/libcxx/test/std/containers/associative/map/map.ops/
Dcount.pass.cpp43 R r = m.count(5); in main()
45 r = m.count(6); in main()
47 r = m.count(7); in main()
49 r = m.count(8); in main()
51 r = m.count(9); in main()
53 r = m.count(10); in main()
55 r = m.count(11); in main()
57 r = m.count(12); in main()
59 r = m.count(4); in main()
81 R r = m.count(5); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
Dinvoke_rvalue.pass.cpp24 int count = 0; variable
30 count += i; in f_void_1()
37 count += i; in operator ()()
40 void mem1() {++count;} in mem1()
41 void mem2() const {count += 2;} in mem2()
48 int save_count = count; in test_void_1()
52 assert(count == save_count + 2); in test_void_1()
53 save_count = count; in test_void_1()
57 assert(count == save_count + 2); in test_void_1()
58 save_count = count; in test_void_1()
[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 …]
Dauto_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&) {++count;} in A()
39 ~A() {--count;} in ~A()
42 int A::count = 0; member in A
[all …]
Dshared_ptr_Y_rv.pass.cpp24 static int count; member
26 B() {++count;} in B()
27 B(const B&) {++count;} in B()
28 virtual ~B() {--count;} in ~B()
31 int B::count = 0; member in B
36 static int count; member
38 A() {++count;} in A()
39 A(const A&) {++count;} in A()
40 ~A() {--count;} in ~A()
43 int A::count = 0; member in A
[all …]
/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_dmatmp2.h119 GLuint count, in TAG()
122 if (start < count) { in TAG()
125 EMIT_PRIM( ctx, GL_POINTS, HW_POINTS, start, count ); in TAG()
131 GLuint count, in TAG()
136 count -= (count-start) & 1; in TAG()
138 if (start+1 >= count) in TAG()
146 EMIT_PRIM( ctx, GL_LINES, HW_LINES, start, count ); in TAG()
155 GLuint count, in TAG()
161 if (start+1 >= count) in TAG()
168 if (PREFER_DISCRETE_ELT_PRIM( count-start, HW_LINES )) in TAG()
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Dshared_ptr_Y_rv.pass.cpp26 static int count; member
28 B() {++count;} in B()
29 B(const B&) {++count;} in B()
30 virtual ~B() {--count;} in ~B()
33 int B::count = 0; member in B
38 static int count; member
40 A() {++count;} in A()
41 A(const A&) {++count;} in A()
42 ~A() {--count;} in ~A()
45 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 …]

12345678910>>...271