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

<<11121314151617181920>>

  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
shared_ptr.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
35 assert(A::count == 1);
38 assert(A::count == 1);
44 assert(A::count == 1);
46 assert(A::count == 0);
50 assert(A::count == 0)
    [all...]
  /external/skia/src/core/
SkPtrRecorder.cpp 29 int count = fList.count(); local
33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
45 int count = fList.count(); local
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
53 pair.fIndex = count + 1;
55 return count + 1;
62 int count = fList.count(); local
    [all...]
  /external/skqp/src/core/
SkPtrRecorder.cpp 29 int count = fList.count(); local
33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
45 int count = fList.count(); local
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
53 pair.fIndex = count + 1;
55 return count + 1;
62 int count = fList.count(); local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/
target.pass.cpp 32 static int count; member in class:A
36 ++count;
41 A(const A&) {++count;}
43 ~A() {--count;}
55 int A::count = 0; member in class:A
63 assert(A::count == 1);
68 assert(A::count == 0);
71 assert(A::count == 0);
76 assert(A::count == 0);
79 assert(A::count == 1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
shared_ptr.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
35 assert(A::count == 1);
38 assert(A::count == 1);
44 assert(A::count == 1);
46 assert(A::count == 0);
50 assert(A::count == 0)
    [all...]
  /bionic/libc/include/bits/fortify/
unistd.h 87 ssize_t pread(int fd, void* const __pass_object_size0 buf, size_t count, off_t offset)
89 __error_if_overflows_ssizet(count, pread)
90 __error_if_overflows_objectsize(count, __bos0(buf), pread) {
93 if (count == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
94 return __PREAD_PREFIX(real)(fd, buf, count, offset);
97 return __PREAD_PREFIX(chk)(fd, buf, count, offset, bos);
101 ssize_t pread64(int fd, void* const __pass_object_size0 buf, size_t count, off64_t offset)
103 __error_if_overflows_ssizet(count, pread64)
104 __error_if_overflows_objectsize(count, __bos0(buf), pread64) {
108 return __pread64_real(fd, buf, count, offset)
    [all...]
  /art/test/674-hotness-compiled/
run 17 ${RUN} "$@" -Xcompiler-option --count-hotness-in-compiled-code
  /bionic/libc/bionic/
sched_cpualloc.c 32 cpu_set_t* __sched_cpualloc(size_t count)
37 return (cpu_set_t*) malloc(CPU_ALLOC_SIZE(count)); // NOLINT
  /device/linaro/bootloader/edk2/CryptoPkg/Library/IntrinsicLib/
MemoryIntrinsics.c 24 void * memset (void *dest, char ch, unsigned int count)
41 while (count-- != 0) {
  /external/clang/test/CodeGenCXX/
2007-04-05-PackedBitFieldsOverlap-2.cpp 14 unsigned long count : 21; member in struct:M_Packed
22 return (x.count != 0);
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Counter.java 27 int count = 0; field in class:Counter
29 /** Increments the count and returns the new value. */
31 return count++;
  /external/jarjar/src/test/
Generics.class 
  /external/libcxx/test/std/containers/associative/map/map.ops/
count0.pass.cpp 19 // The member function templates find, count, lower_bound, upper_bound, and
33 assert(M().count(C2Int{5}) == 0);
37 assert(M().count(C2Int{5}) == 0);
  /external/libcxx/test/std/containers/associative/multimap/multimap.ops/
count0.pass.cpp 19 // The member function templates find, count, lower_bound, upper_bound, and
33 assert(M().count(C2Int{5}) == 0);
37 assert(M().count(C2Int{5}) == 0);
  /external/libcxx/test/std/containers/unord/unord.multiset/
erase_key.pass.cpp 57 assert(c.count(1) == 2);
58 assert(c.count(2) == 2);
59 assert(c.count(3) == 1);
60 assert(c.count(4) == 1);
64 assert(c.count(1) == 2);
65 assert(c.count(3) == 1);
66 assert(c.count(4) == 1);
70 assert(c.count(1) == 2);
71 assert(c.count(3) == 1);
72 assert(c.count(4) == 1)
    [all...]
insert_init.pass.cpp 43 assert(c.count(1) == 2);
44 assert(c.count(2) == 2);
45 assert(c.count(3) == 1);
46 assert(c.count(4) == 1);
64 assert(c.count(1) == 2);
65 assert(c.count(2) == 2);
66 assert(c.count(3) == 1);
67 assert(c.count(4) == 1);
  /external/libcxx/test/std/containers/unord/unord.set/
erase_key.pass.cpp 57 assert(c.count(1) == 1);
58 assert(c.count(2) == 1);
59 assert(c.count(3) == 1);
60 assert(c.count(4) == 1);
64 assert(c.count(1) == 1);
65 assert(c.count(3) == 1);
66 assert(c.count(4) == 1);
70 assert(c.count(1) == 1);
71 assert(c.count(3) == 1);
72 assert(c.count(4) == 1)
    [all...]
insert_init.pass.cpp 43 assert(c.count(1) == 1);
44 assert(c.count(2) == 1);
45 assert(c.count(3) == 1);
46 assert(c.count(4) == 1);
64 assert(c.count(1) == 1);
65 assert(c.count(2) == 1);
66 assert(c.count(3) == 1);
67 assert(c.count(4) == 1);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
rep02.pass.cpp 27 assert(d.count() == 5);
30 static_assert(d2.count() == 5, "");
  /external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
ftrace_ftrace_enabled.sh 17 count=0
20 count=$(( $count + 1 ))
28 enable=$(( $count % 3 ))
ftrace_function_profile_enabled.sh 17 count=0
21 count=$(( $count + 1 ))
29 enable=$(( $count % 3 ))
  /external/skia/tests/
PathOpsThreadedCommon.cpp 13 for (int index = 0; index < fRunnables.count(); index++) {
19 SkTaskGroup().batch(fRunnables.count(), [&](int i) {
  /external/skqp/tests/
PathOpsThreadedCommon.cpp 13 for (int index = 0; index < fRunnables.count(); index++) {
19 SkTaskGroup().batch(fRunnables.count(), [&](int i) {
  /external/swiftshader/src/Reactor/
Routine.cpp 35 long count = atomicDecrement(&bindCount); local
37 if(count == 0)
  /external/tpm2/
Handle.c 84 UINT32 count, // IN: count of returned handle
92 handleList->count = 0;
93 // The maximum count of handles we may return is MAX_CAP_HANDLES
94 if(count > MAX_CAP_HANDLES) count = MAX_CAP_HANDLES;
99 if(handleList->count < count)
103 handleList->handle[handleList->count] = i;
104 handleList->count++
    [all...]

Completed in 812 milliseconds

<<11121314151617181920>>