Searched refs:size (Results 101 - 125 of 11141) sorted by relevance

1234567891011>>

/external/bluetooth/bluedroid/bta/include/
H A Dbta_jv_co.h46 BTA_API extern int bta_co_rfc_data_outgoing_size(void *user_data, int *size);
47 BTA_API extern int bta_co_rfc_data_outgoing(void *user_data, UINT8* buf, UINT16 size);
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotationsList.java41 int size = list1.size();
43 if (size != list2.size()) {
44 throw new IllegalArgumentException("list1.size() != list2.size()");
47 AnnotationsList result = new AnnotationsList(size);
49 for (int i = 0; i < size; i++) {
62 * @param size the size o
64 AnnotationsList(int size) argument
[all...]
/external/eigen/failtest/
H A Dmap_nonconst_ctor_on_const_ptr_1.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){ argument
12 Map<ArrayXf> m(ptr, size);
/external/eigen/test/
H A Dfirst_aligned.cpp13 void test_first_aligned_helper(Scalar *array, int size) argument
15 const int packet_size = sizeof(Scalar) * internal::packet_traits<Scalar>::size;
16 VERIFY(((size_t(array) + sizeof(Scalar) * internal::first_aligned(array, size)) % packet_size) == 0);
20 void test_none_aligned_helper(Scalar *array, int size) argument
23 EIGEN_UNUSED_VARIABLE(size);
24 VERIFY(internal::packet_traits<Scalar>::size == 1 || internal::first_aligned(array, size) == size);
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIndexedListIterator.java36 private final int size; field in class:AbstractIndexedListIterator
46 * Constructs an iterator across a sequence of the given size whose initial
48 * first element (or throw {@link NoSuchElementException} if {@code size} is
51 * @throws IllegalArgumentException if {@code size} is negative
53 protected AbstractIndexedListIterator(int size) { argument
54 this(size, 0);
58 * Constructs an iterator across a sequence of the given size with the given
65 * greater than {@code size}
66 * @throws IllegalArgumentException if {@code size} is negative
68 protected AbstractIndexedListIterator(int size, in argument
[all...]
/external/jpeg/
H A Djinclude.h54 * NOTE: we assume the size parameters to these functions are of type size_t.
61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/external/libselinux/src/
H A Dgetpeercon.c17 socklen_t size; local
20 size = INITCONTEXTLEN + 1;
21 buf = malloc(size);
24 memset(buf, 0, size);
26 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
30 newbuf = realloc(buf, size);
35 memset(buf, 0, size);
36 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
/external/qemu/distrib/jpeg-6b/
H A Djinclude.h54 * NOTE: we assume the size parameters to these functions are of type size_t.
61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/external/replicaisland/src/com/replica/replicaisland/
H A DTObjectPool.java31 public TObjectPool(int size) { argument
32 super(size);
/external/skia/src/utils/
H A DSkCityHash.h32 * @param size Size of the data block in bytes.
35 static uint32_t Compute32(const char *data, size_t size);
41 * @param size Size of the data block in bytes.
44 static uint64_t Compute64(const char *data, size_t size);
/external/srec/portable/include/
H A Dpcrc.h38 * @param size the size of the data.
41 PORTABLE_API unsigned int pcrcComputeData(const void *data, unsigned int size);
64 * @param size the size of the data.
69 unsigned int size);
/external/valgrind/main/memcheck/tests/
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/valgrind/main/none/tests/s390x/
H A Dtest.h25 static inline void dump_field(void *field, int size) argument
28 for (i=0; i < size; i++)
/external/webkit/Source/WebCore/platform/mac/
H A DWebFontCache.h32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits weight:(int)desiredWeight size:(float)size;
36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits size:(float)size;
/external/compiler-rt/lib/asan/tests/
H A Dasan_oob_test.cc15 NOINLINE void asan_write_sized_aligned(uint8_t *p, size_t size) { argument
16 EXPECT_EQ(0U, ((uintptr_t)p % size));
17 if (size == 1) asan_write((uint8_t*)p);
18 else if (size == 2) asan_write((uint16_t*)p);
19 else if (size == 4) asan_write((uint32_t*)p);
20 else if (size == 8) asan_write((uint64_t*)p);
24 NOINLINE void oob_test(int size, int off) { argument
25 char *p = (char*)malloc_aaa(size);
27 // sizeof(T), p, p + size, off);
35 for (int size
106 size_t size = large_power_of_two - i; local
[all...]
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_clock_test.cc22 CHECK_EQ(clk.size(), 0);
24 CHECK_EQ(clk.size(), 1);
27 CHECK_EQ(clk.size(), 4);
40 CHECK_EQ(vector.size(), 0);
41 CHECK_EQ(chunked.size(), 0);
43 CHECK_EQ(vector.size(), 0);
44 CHECK_EQ(chunked.size(), 0);
46 CHECK_EQ(vector.size(), 0);
47 CHECK_EQ(chunked.size(), 0);
49 CHECK_EQ(vector.size(),
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DAbstractBoxParser.java31 * This BoxParser handles the basic stuff like reading size and extracting box type.
40 * Parses the next size and type, creates a box instance and parses the box's content.
52 long size = IsoTypeReader.readUInt32(header);
54 if (size < 8 && size > 1) {
55 LOG.severe("Plausibility check failed: size < 8 (size = " + size + "). Stop parsing!");
64 if (size == 1) {
68 size
[all...]
/external/ceres-solver/internal/ceres/
H A Darray_utils.cc47 bool IsArrayValid(const int size, const double* x) { argument
49 for (int i = 0; i < size; ++i) {
58 void InvalidateArray(const int size, double* x) { argument
60 for (int i = 0; i < size; ++i) {
/external/chromium/chrome/browser/sync/util/
H A Ddbgq.h14 template <typename T, size_t size>
16 COMPILE_ASSERT(size > 0, DebugQueue_size_must_be_greater_than_zero);
20 i_ = (array_ == i_ ? array_ + size - 1 : i_ - 1);
25 T array_[size];
/external/chromium/sdch/open-vcdiff/src/
H A Dchecksum.h32 size_t size) {
35 static_cast<uInt>(size));
40 size_t size) {
43 static_cast<uInt>(size));
31 ComputeAdler32(const char* buffer, size_t size) argument
38 UpdateAdler32(VCDChecksum partial_checksum, const char* buffer, size_t size) argument
/external/clang/test/CodeGenCXX/
H A D2005-02-14-BitFieldOffset.cpp5 int size; member in struct:QVectorTypedData
/external/clang/test/SemaCXX/
H A Dbitfield-layout.cpp3 #define CHECK_SIZE(name, size) extern int name##1[sizeof(name) == size ? 1 : -1];
4 #define CHECK_ALIGN(name, size) extern int name##2[__alignof(name) == size ? 1 : -1];
8 char c : 9; // expected-warning {{size of bit-field 'c' (9 bits) exceeds the size of its type; value will be truncated to 8 bits}}
14 char c : 16; // expected-warning {{size of bit-field 'c' (16 bits) exceeds the size of its type; value will be truncated to 8 bits}}
20 char c : 32; // expected-warning {{size of bit-field 'c' (32 bits) exceeds the size o
[all...]
/external/linux-tools-perf/util/
H A Dbuild-id.h8 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
/external/open-vcdiff/src/
H A Dchecksum.h32 size_t size) {
35 static_cast<uInt>(size));
40 size_t size) {
43 static_cast<uInt>(size));
31 ComputeAdler32(const char* buffer, size_t size) argument
38 UpdateAdler32(VCDChecksum partial_checksum, const char* buffer, size_t size) argument
/external/oprofile/libutil++/
H A Dgrowable_vector.h33 if (index >= container.size())
45 if (index >= container.size())
55 if (rhs.container.size() > container.size())
56 container.resize(rhs.container.size());
58 size_type min_size = min(container.size(), rhs.container.size());
71 if (rhs.container.size() > container.size())
72 container.resize(rhs.container.size());
83 size_type size() const { function in class:growable_vector
89 fill(size_type size, T const & value) argument
[all...]

Completed in 2143 milliseconds

1234567891011>>