HomeSort by relevance Sort by last modified time
    Searched defs:count (Results 276 - 300 of 9532) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/
weak_ptr.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...]
weak_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...]
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.special/
eq.pass.cpp 29 static int count; member in struct:A
30 A() {++count;}
31 A(const A&) {++count;}
32 virtual ~A() {--count;}
35 int A::count = 0; member in class:A
40 static int count; member in struct:B
41 B() {++count;}
42 B(const B&) {++count;}
43 virtual ~B() {--count;}
46 int B::count = 0 member in class:B
    [all...]
rel.pass.cpp 37 static int count; member in struct:A
38 A() {++count;}
39 A(const A&) {++count;}
40 virtual ~A() {--count;}
43 int A::count = 0; member in class:A
48 static int count; member in struct:B
49 B() {++count;}
50 B(const B&) {++count;}
51 virtual ~B() {--count;}
54 int B::count = 0 member in class:B
    [all...]
  /external/libcxx/test/std/utilities/variant/variant.variant/variant.dtor/
dtor.pass.cpp 26 static int count; member in struct:NonTDtor
28 ~NonTDtor() { ++count; }
30 int NonTDtor::count = 0; member in class:NonTDtor
34 static int count; member in struct:NonTDtor1
36 ~NonTDtor1() { ++count; }
38 int NonTDtor1::count = 0; member in class:NonTDtor1
58 assert(NonTDtor::count == 0);
59 assert(NonTDtor1::count == 0);
61 assert(NonTDtor::count == 1);
62 assert(NonTDtor1::count == 0)
63 NonTDtor::count = 0; member in class:NonTDtor
    [all...]
  /external/libcxx/test/support/
DefaultOnly.h 22 static int count; member in class:DefaultOnly
24 DefaultOnly() : data_(-1) {++count;}
25 ~DefaultOnly() {data_ = 0; --count;}
33 int DefaultOnly::count = 0; member in class:DefaultOnly
  /external/libcxxabi/test/
catch_class_01.pass.cpp 18 static int count; member in struct:A
20 explicit A(int id) : id_(id) {count++;}
21 A(const A& a) : id_(a.id_) {count++;}
22 ~A() {count--;}
25 int A::count = 0; member in class:A
36 assert(A::count == 0);
41 assert(A::count != 0);
56 assert(A::count != 0);
59 assert(A::count == 0);
  /external/libdrm/tests/
random.c 82 unsigned long count = 0; local
88 ++count;
90 if (!++count) break;
93 seed, count, count);
  /external/libexif/libexif/canon/
exif-mnote-data-canon.h 38 unsigned int count; member in struct:_ExifMnoteDataCanon
  /external/libexif/libexif/
exif-content.h 43 unsigned int count; member in struct:_ExifContent
  /external/libexif/libexif/fuji/
exif-mnote-data-fuji.h 35 unsigned int count; member in struct:_ExifMnoteDataFuji
  /external/libjpeg-turbo/md5/
md5.h 38 unsigned int count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:MD5Context
  /external/libunwind/tests/
forker.c 39 long count; local
42 count = atol (argv[1]);
51 for (i = 0; i < count; ++i)
74 (unsigned long) (1e9 * secs / (double) count));
  /external/libvpx/libvpx/vpx_ports/
ppc_cpudetect.c 42 ssize_t count; local
58 while ((count = read(fd, buf, sizeof(buf))) > 0) {
59 for (i = 0; i < (count / sizeof(*buf)); i += 2) {
  /external/libxkbcommon/xkbcommon/src/
utf8.c 36 int count, shift, length; local
65 for (count = length - 1, shift = 0; count > 0; count--, shift += 6)
66 buffer[count] = 0x80 | ((unichar >> shift) & 0x3f);
  /external/linux-kselftest/tools/testing/selftests/media_tests/
video_device_test.c 43 int count; local
69 count = rand();
84 while (count > 0) {
98 count--;
  /external/linux-kselftest/tools/testing/selftests/timers/
leapcrash.c 63 int count = 0; local
81 for (count = 0; count < 20; count++) {
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 108 size_t count = std::min(Buffer.getBufferSize(), sizeof(uint64_t)); local
110 return count == 0 ||
111 std::all_of(buffer.begin(), buffer.begin() + count,
237 uint64_t Count;
238 if ((Line++)->getAsInteger(10, Count))
240 Record.Counts.push_back(Count);
387 for (uint64_t Count : RawCounts)
388 Record.Counts.push_back(swap(Count));
  /external/llvm/test/Other/
opt-bisect-helper.py 22 opt_command = [args.optcmd, "-O2", "-opt-bisect-limit=%(count)s", "-S", args.test]
26 count = int(round(start + (end - start)/2)) variable
27 cmd = [x % {'count':count} for x in opt_command]
35 start = count
37 end = count
39 print("Last good count: %d" % start)
  /external/llvm/utils/
bisect 25 count = start + (end - start)/2 variable
26 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, end))
27 cmd = [x % {'count':count} for x in args.command]
31 print(" PASSES! Setting start to count")
32 start = count
34 print(" FAILS! Setting end to count")
35 end = count
37 print("Last good count: %d" % start
    [all...]
  /external/ltp/testcases/kernel/controllers/cgroup_fj/
cgroup_fj_proc.c 47 int count = 0; local
66 count++;
  /external/ltp/testcases/kernel/controllers/cpuctl_fj/
cpuctl_fj_cpu-hog.c 35 unsigned long count; variable
  /external/ltp/testcases/kernel/syscalls/ftruncate/
ftruncate03.c 62 int wjh_ret = -1, wjh_f = -1, count = 0; local
115 while (count < strlen(str)) {
116 if ((count += write(wjh_f, str, strlen(str))) == -1) {
  /external/ltp/testcases/kernel/syscalls/getdtablesize/
getdtablesize01.c 57 int table_size, fd = 0, count = 0; local
88 count = fd;
97 if (count > 0)
98 close(count);
99 if (count == (max_val_opfiles - 1))
100 tst_resm(TPASS, "%d = %d", count, (max_val_opfiles - 1));
104 tst_resm(TFAIL, "%d != %d", count, (max_val_opfiles - 1));
  /external/ltp/utils/ffsb-6.0-rc2/
cirlist.h 32 int count; member in struct:cirlist

Completed in 1581 milliseconds

<<11121314151617181920>>