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

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/tests/msgq/1.0/
ITestMsgQ.hal 55 * @param count Number to messages to write.
59 requestWriteFmqSync(int32_t count) generates(bool ret);
65 * @param count Number to messages to read.
69 requestReadFmqSync(int32_t count) generates(bool ret);
75 * @param count Number to messages to write.
79 requestWriteFmqUnsync(int32_t count) generates(bool ret);
85 * @param count Number to messages to read.
89 requestReadFmqUnsync(int32_t count) generates(bool ret);
94 * @param count Number of messages to read.
97 oneway requestBlockingRead(int32_t count);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/
value.pass.cpp 39 assert(Type::count == 0);
42 assert(Type::count == 1);
51 assert(Type::count == 1);
54 assert(Type::count == 0);
61 assert(throws_on_move::count == 0);
64 assert(throws_on_move::count == 1);
73 assert(throws_on_move::count == 1);
75 assert(throws_on_move::count == 0);
83 assert(Type::count == 0);
87 assert(Type::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_rv.pass.cpp 25 static int count; member in struct:A
27 A() {++count;}
28 A(const A&) {++count;}
29 ~A() {--count;}
32 int A::count = 0; member in class:A
39 assert(A::count == 1);
43 assert(A::count == 1);
55 assert(A::count == 0);
58 assert(A::count == 1);
61 assert(A::count == 0)
    [all...]
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
    [all...]
unique_ptr.pass.cpp 26 static int count; member in struct:B
28 B() {++count;}
29 B(const B&) {++count;}
30 virtual ~B() {--count;}
33 int B::count = 0; member in class:B
38 static int count; member in struct:A
40 A() {++count;}
41 A(const A&) {++count;}
42 ~A() {--count;}
45 int A::count = 0 member in class:A
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR31384.pass.cpp 21 int count = 0; variable
37 operator std::tuple<U>() && { ++count; return {}; }
45 explicit operator std::tuple<U>() && { ++count; return {}; }
51 assert(count == 1);
53 assert(count == 2);
55 count = 0;
58 assert(count == 1);
60 assert(count == 2);
62 count = 0;
67 assert(count == 1)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 41 // count is maximum number of bytes to copy, and must be >= 0.
42 // offset + count must be <= buffer.length.
44 public int write(short[] buffer, int offset, int count)
48 if (written > count) {
49 written = count;
53 if ((count -= written) > rear) {
54 count = rear;
56 if (count > 0) {
57 System.arraycopy(buffer, offset + written, mBuffer, 0, count);
58 written += count;
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
PipeShort.java 46 * count is maximum number of bytes to copy, and must be >= 0.
47 * offset + count must be <= buffer.length.
50 public int write(short[] buffer, int offset, int count) {
54 if (written > count) {
55 written = count;
60 if ((count -= written) > rear) {
61 count = rear;
63 if (count > 0) {
64 System.arraycopy(buffer, offset + written, mBuffer, 0, count);
65 written += count;
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
unique_ptr.pass.cpp 26 static int count; member in struct:B
28 B() {++count;}
29 B(const B&) {++count;}
30 virtual ~B() {--count;}
33 int B::count = 0; member in class:B
38 static int count; member in struct:A
40 A() {++count;}
41 A(const A&) {++count;}
42 ~A() {--count;}
45 int A::count = 0 member in class:A
    [all...]
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
auto_pointer.pass.cpp 27 static int count; member in struct:A
28 A() { ++count; }
29 A(const A&) { ++count; }
30 virtual ~A() { --count; }
33 int A::count = 0; member in class:A
36 static int count; member in struct:B
37 B() { ++count; }
38 B(const B&) { ++count; }
39 virtual ~B() { --count; }
42 int B::count = 0 member in class:B
    [all...]
  /external/protobuf/objectivec/Tests/
GPBTestUtilities.h 54 - (void)setAllFields:(TestAllTypes *)message repeatedCount:(uint32_t)count;
57 repeatedCount:(uint32_t)count;
59 repeatedCount:(uint32_t)count;
61 repeatedCount:(uint32_t)count;
63 repeatedCount:(uint32_t)count;
65 repeatedCount:(uint32_t)count;
66 - (void)setAllMapFields:(TestMap *)message numEntries:(uint32_t)count;
68 - (TestAllTypes *)allSetRepeatedCount:(uint32_t)count;
69 - (TestAllExtensions *)allExtensionsSetRepeatedCount:(uint32_t)count;
70 - (TestPackedTypes *)packedSetRepeatedCount:(uint32_t)count;
    [all...]
  /external/skia/tests/
MemsetTest.cpp 28 uint16_t value, int count) {
29 for (int i = 0; i < count; ++i) {
38 uint32_t value, int count) {
39 for (int i = 0; i < count; ++i) {
50 for (int count = 0; count < MAX_COUNT; ++count) {
55 sk_memset16(base, VALUE16, count);
58 compare16(reporter, base, VALUE16, count);
59 compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment)
    [all...]
  /external/skqp/tests/
MemsetTest.cpp 28 uint16_t value, int count) {
29 for (int i = 0; i < count; ++i) {
38 uint32_t value, int count) {
39 for (int i = 0; i < count; ++i) {
50 for (int count = 0; count < MAX_COUNT; ++count) {
55 sk_memset16(base, VALUE16, count);
58 compare16(reporter, base, VALUE16, count);
59 compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment)
    [all...]
  /external/vixl/src/
compiler-intrinsics-vixl.cc 47 int count = 0; local
50 count += 32;
54 count += 16;
58 count += 8;
62 count += 4;
66 count += 2;
70 count += 1;
72 count += (value == 0);
73 return count;
114 int count = 0 local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
auto_pointer.pass.cpp 27 static int count; member in struct:A
28 A() { ++count; }
29 A(const A&) { ++count; }
30 virtual ~A() { --count; }
33 int A::count = 0; member in class:A
36 static int count; member in struct:B
37 B() { ++count; }
38 B(const B&) { ++count; }
39 virtual ~B() { --count; }
42 int B::count = 0 member in class:B
    [all...]
  /art/benchmark/string-indexof/src/
StringIndexOfBenchmark.java 20 public void timeIndexOf0(int count) {
23 for (int i = 0; i < count; ++i) {
28 public void timeIndexOf1(int count) {
31 for (int i = 0; i < count; ++i) {
36 public void timeIndexOf2(int count) {
39 for (int i = 0; i < count; ++i) {
44 public void timeIndexOf3(int count) {
47 for (int i = 0; i < count; ++i) {
52 public void timeIndexOf4(int count) {
55 for (int i = 0; i < count; ++i)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO7816d4Padding.java 63 int count = in.length - 1; local
65 while (count > 0 && in[count] == 0)
67 count--;
70 if (in[count] != (byte)0x80)
75 return in.length - count;
  /external/icu/icu4c/source/i18n/
significantdigitinterval.h 52 void setMax(int32_t count) {
53 fMax = count <= 0 ? INT32_MAX : count;
66 void setMin(int32_t count) {
67 fMin = count <= 0 ? 0 : count;
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
reset_pointer_deleter_allocator.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
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_allocator.h 37 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0)
50 if (capacity <= count) {
56 sizes[count] = size;
57 offsets[count] = total_size;
60 return count++;
77 unsigned count; member in class:brw::simple_allocator
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
AdapterListUpdateCallback.java 41 public void onInserted(int position, int count) {
42 mAdapter.notifyItemRangeInserted(position, count);
47 public void onRemoved(int position, int count) {
48 mAdapter.notifyItemRangeRemoved(position, count);
59 public void onChanged(int position, int count, Object payload) {
60 mAdapter.notifyItemRangeChanged(position, count, payload);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
reset_pointer_deleter_allocator.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
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug19403.go 12 var count float32 = 16 var
66 if f16 != count {
69 count -= 1
70 if f15 != count {
73 count -= 1
74 if f14 != count {
77 count -= 1
78 if f13 != count {
81 count -= 1
82 if f12 != count {
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug19403.go 12 var count float32 = 16 var
66 if f16 != count {
69 count -= 1
70 if f15 != count {
73 count -= 1
74 if f14 != count {
77 count -= 1
78 if f13 != count {
81 count -= 1
82 if f12 != count {
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
shared_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...]

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>