HomeSort by relevance Sort by last modified time
    Searched refs:count (Results 201 - 225 of 16414) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
weak_ptr.pass.cpp 23 static int count; member in struct:B
25 B() {++count;}
26 B(const B&) {++count;}
27 virtual ~B() {--count;}
30 int B::count = 0; member in class:B
35 static int count; member in struct:A
37 A() {++count;}
38 A(const A&) {++count;}
39 ~A() {--count;}
42 int A::count = 0 member in class:A
46 static int count; member in struct:C
53 int C::count = 0; member in class:C
    [all...]
weak_ptr_Y.pass.cpp 23 static int count; member in struct:B
25 B() {++count;}
26 B(const B&) {++count;}
27 virtual ~B() {--count;}
30 int B::count = 0; member in class:B
35 static int count; member in struct:A
37 A() {++count;}
38 A(const A&) {++count;}
39 ~A() {--count;}
42 int A::count = 0 member in class:A
46 static int count; member in struct:C
53 int C::count = 0; member in class:C
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
auto_ptr_Y.pass.cpp 22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count = 0 member in class:A
    [all...]
unique_ptr_Y.pass.cpp 22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count = 0 member in class:A
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
weak_ptr.pass.cpp 23 static int count; member in struct:B
25 B() {++count;}
26 B(const B&) {++count;}
27 virtual ~B() {--count;}
30 int B::count = 0; member in class:B
35 static int count; member in struct:A
37 A() {++count;}
38 A(const A&) {++count;}
39 ~A() {--count;}
42 int A::count = 0 member in class:A
46 static int count; member in struct:C
53 int C::count = 0; member in class:C
    [all...]
weak_ptr_Y.pass.cpp 23 static int count; member in struct:B
25 B() {++count;}
26 B(const B&) {++count;}
27 virtual ~B() {--count;}
30 int B::count = 0; member in class:B
35 static int count; member in struct:A
37 A() {++count;}
38 A(const A&) {++count;}
39 ~A() {--count;}
42 int A::count = 0 member in class:A
46 static int count; member in struct:C
53 int C::count = 0; member in class:C
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkUtils_opts_SSE2.h 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
14 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
15 void sk_memcpy32_SSE2(uint32_t *dst, const uint32_t *src, int count);
  /external/eigen/doc/snippets/
MatrixBase_cwiseEqual.cpp 6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are equal: " << count << endl;
MatrixBase_cwiseNotEqual.cpp 6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are not equal: " << count << endl;
  /external/libcxxabi/test/
catch_class_04.cpp 22 static int count; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
26 ~B() {count--;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
38 ~C1() {count--;}
41 int C1::count = 0 member in class:C1
46 static int count; member in struct:C2
53 int C2::count = 0; member in class:C2
58 static int count; member in struct:A
65 int A::count = 0; member in class:A
    [all...]
  /external/lldb/test/python_api/process/io/
main.c 6 int count = 1; local
8 fprintf(stderr, "input line=>%d\n", count++);
9 if (count > 3)
  /external/llvm/test/CodeGen/SystemZ/Large/
spill-01.py 9 # count == (4096 - 168) / 8 + 6 + 1 == 498
21 count = 500 variable
27 for i in range(count):
35 for i in range(count):
  /external/skia/src/opts/
SkUtils_opts_SSE2.h 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
14 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
15 void sk_memcpy32_SSE2(uint32_t *dst, const uint32_t *src, int count);
  /ndk/sources/cxx-stl/gabi++/tests/
catch_class_04.cpp 22 static int count; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
26 ~B() {count--;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
38 ~C1() {count--;}
41 int C1::count = 0 member in class:C1
46 static int count; member in struct:C2
53 int C2::count = 0; member in class:C2
58 static int count; member in struct:A
65 int A::count = 0; member in class:A
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_class_04.cpp 22 static int count; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
26 ~B() {count--;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
38 ~C1() {count--;}
41 int C1::count = 0 member in class:C1
46 static int count; member in struct:C2
53 int C2::count = 0; member in class:C2
58 static int count; member in struct:A
65 int A::count = 0; member in class:A
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/repetition/
enum_params.hpp 24 # define BOOST_PP_ENUM_PARAMS(count, param) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_PARAMS_M, param)
26 # define BOOST_PP_ENUM_PARAMS(count, param) BOOST_PP_ENUM_PARAMS_I(count, param)
27 # define BOOST_PP_ENUM_PARAMS_I(count, param) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_PARAMS_M, param)
35 # define BOOST_PP_ENUM_PARAMS_Z(z, count, param) BOOST_PP_REPEAT_ ## z(count, BOOST_PP_ENUM_PARAMS_M, param)
37 # define BOOST_PP_ENUM_PARAMS_Z(z, count, param) BOOST_PP_ENUM_PARAMS_Z_I(z, count, param
    [all...]
enum_trailing_params.hpp 21 # define BOOST_PP_ENUM_TRAILING_PARAMS(count, param) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_TRAILING_PARAMS_M, param)
23 # define BOOST_PP_ENUM_TRAILING_PARAMS(count, param) BOOST_PP_ENUM_TRAILING_PARAMS_I(count, param)
24 # define BOOST_PP_ENUM_TRAILING_PARAMS_I(count, param) BOOST_PP_REPEAT(count, BOOST_PP_ENUM_TRAILING_PARAMS_M, param)
32 # define BOOST_PP_ENUM_TRAILING_PARAMS_Z(z, count, param) BOOST_PP_REPEAT_ ## z(count, BOOST_PP_ENUM_TRAILING_PARAMS_M, param)
34 # define BOOST_PP_ENUM_TRAILING_PARAMS_Z(z, count, param) BOOST_PP_ENUM_TRAILING_PARAMS_Z_I(z, count, param
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
shared_ptr_Y_rv.pass.cpp 22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count = 0 member in class:A
45 static int count; member in struct:C
52 int C::count = 0; member in class:C
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
shared_ptr_Y_rv.pass.cpp 22 static int count; member in struct:B
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0; member in class:B
34 static int count; member in struct:A
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count = 0 member in class:A
45 static int count; member in struct:C
52 int C::count = 0; member in class:C
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 41 int count = 0; local
45 count++;
48 return count + 1;
62 int count = 0; local
72 count++;
75 return count;
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
reset.pass.cpp 21 static int count; member in struct:A
23 A() {++count;}
24 A(const A&) {++count;}
25 ~A() {--count;}
28 int A::count = 0; member in class:A
40 assert(A::count == 0);
  /external/proguard/src/proguard/classfile/visitor/
MemberCounter.java 32 private int count; field in class:MemberCounter
40 return count;
49 count++;
56 count++;
63 count++;
70 count++;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
reset.pass.cpp 21 static int count; member in struct:A
23 A() {++count;}
24 A(const A&) {++count;}
25 ~A() {--count;}
28 int A::count = 0; member in class:A
40 assert(A::count == 0);
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.c 35 int count; local
42 count = fprintf(fp, "%ld", data);
44 return count;
57 int count; local
64 count = fread(data, 1, num_bytes, fp);
66 return count;
79 int count; local
81 count = read(fd, str, sizeof(str));
82 if (!count)
83 return count;
106 int count; local
132 int count; local
152 int count; local
172 int count; local
192 int count; local
212 int count; local
232 int count; local
253 int count; local
274 int count = 0; local
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.c 29 int count; local
36 count = fprintf(fp, "%ld", data);
38 return count;
51 int count; local
58 count = fread(data, 1, num_bytes, fp);
60 return count;
73 int count; local
75 count = read(fd, str, sizeof(str));
76 if (!count)
77 return count;
100 int count; local
126 int count; local
146 int count; local
166 int count; local
186 int count; local
206 int count; local
226 int count; local
247 int count; local
268 int count = 0; local
    [all...]

Completed in 1330 milliseconds

1 2 3 4 5 6 7 891011>>