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

<<11121314151617181920>>

  /external/vulkan-validation-layers/demos/smoke/
Helpers.h 40 uint32_t count = 0; local
41 vk::EnumerateInstanceExtensionProperties(layer, &count, nullptr);
43 exts.resize(count);
44 return vk::EnumerateInstanceExtensionProperties(layer, &count, exts.data());
48 uint32_t count = 0; local
49 vk::EnumerateDeviceExtensionProperties(phy, layer, &count, nullptr);
51 exts.resize(count);
52 return vk::EnumerateDeviceExtensionProperties(phy, layer, &count, exts.data());
56 uint32_t count = 0; local
57 vk::EnumeratePhysicalDevices(instance, &count, nullptr)
64 uint32_t count = 0; local
72 uint32_t count = 0; local
82 uint32_t count = 0; local
90 uint32_t count = 0; local
98 uint32_t count = 0; local
    [all...]
  /frameworks/base/core/java/android/text/
TextWatcher.java 26 * the <code>count</code> characters beginning at <code>start</code>
32 int count, int after);
35 * the <code>count</code> characters beginning at <code>start</code>
40 public void onTextChanged(CharSequence s, int start, int before, int count);
  /frameworks/base/media/java/android/media/midi/
MidiReceiver.java 47 * May fail if count exceeds {@link #getMaxMessageSize}.
57 * @param count the number of bytes of MIDI data in the array to be processed
61 abstract public void onSend(byte[] msg, int offset, int count, long timestamp)
92 * Data will get split into multiple calls to {@link #onSend} if count exceeds
100 * @param count the number of bytes of MIDI data in the array to be sent
103 public void send(byte[] msg, int offset, int count) throws IOException {
105 send(msg, offset, count, 0L);
111 * Data will get split into multiple calls to {@link #onSend} if count exceeds
119 * @param count the number of bytes of MIDI data in the array to be sent
123 public void send(byte[] msg, int offset, int count, long timestamp
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDrawElementsInstanced.java 1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
5 int count,
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
15 int count,
glDrawElementsInstancedBaseVertex.java 1 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
5 int count,
12 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
16 int count,
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
SortedListAdapterCallback.java 38 public void onInserted(int position, int count) {
39 mAdapter.notifyItemRangeInserted(position, count);
43 public void onRemoved(int position, int count) {
44 mAdapter.notifyItemRangeRemoved(position, count);
53 public void onChanged(int position, int count) {
54 mAdapter.notifyItemRangeChanged(position, count);
58 public void onChanged(int position, int count, Object payload) {
59 mAdapter.notifyItemRangeChanged(position, count, payload);
  /hardware/libhardware/modules/camera/3_0/
Metadata.h 34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
52 // Validate the tag, type and count for a metadata entry
53 bool validate(uint32_t tag, int tag_type, int count);
55 int add(uint32_t tag, int count, const void *tag_data);
  /hardware/libhardware/modules/usbcamera/
Metadata.h 34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
52 // Validate the tag, type and count for a metadata entry
53 bool validate(uint32_t tag, int tag_type, int count);
55 int add(uint32_t tag, int count, const void *tag_data);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.ops/
count0.pass.cpp 19 // The member function templates find, count, lower_bound, upper_bound, and
33 M().count(C2Int{5});
37 M().count(C2Int{5});
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/multimap.ops/
count0.pass.cpp 19 // The member function templates find, count, lower_bound, upper_bound, and
33 M().count(C2Int{5});
37 M().count(C2Int{5});
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cons/
rep02.pass.cpp 27 assert(d.count() == 5);
30 static_assert(d2.count() == 5, "");
  /prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.3/
jarjar-1.3-sources.jar 
  /prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.4/
jarjar-1.4-sources.jar 
  /toolchain/binutils/binutils-2.27/libiberty/
memcmp.c 7 size_t @var{count})
9 Compares the first @var{count} bytes of two areas of memory. Returns
23 memcmp (const PTR str1, const PTR str2, size_t count)
28 while (count-- > 0)
  /external/icu/icu4c/source/common/
cpputils.h 28 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count)
29 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); }
33 double* dst, int32_t dstStart, int32_t count)
34 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); }
37 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count)
38 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src)); }
42 int8_t* dst, int32_t dstStart, int32_t count)
43 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); }
46 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count)
47 { uprv_memcpy(dst, src, (size_t)count * sizeof(*src));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
count.h 1 /* stringlib: count implementation */
15 Py_ssize_t count; local
22 count = fastsearch(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
24 if (count < 0)
27 return count;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
count.h 1 /* stringlib: count implementation */
15 Py_ssize_t count; local
22 count = fastsearch(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
24 if (count < 0)
27 return count;
  /external/clang/test/Index/
print-bitwidth.c 12 int count; member in struct:X
24 // CHECK-NOT: count
  /external/icu/icu4c/source/samples/layout/
arraymem.h 17 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0])
19 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
  /external/javassist/sample/rmi/
Counter.java 9 private int count = 0; field in class:Counter
12 return count;
16 count += 1;
17 return count;
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
convert.fail.cpp 30 assert(A::count == 1);
31 assert(B::count == 1);
33 assert(A::count == 0);
34 assert(B::count == 0);

Completed in 510 milliseconds

<<11121314151617181920>>