Searched refs:size (Results 76 - 100 of 10126) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/
H A Dbug129866.c5 char * touch_malloc (int size) argument
9 result = malloc (size);
10 for (i = 0; i < size; i++)
15 char * touch_realloc (char * ptr, int size) argument
19 result = realloc (ptr, size);
20 for (i = 0; i < size; i++)
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.cpp40 PassOwnPtr<BackingStore> BackingStore::create(const IntSize& size, WebPageProxy* webPageProxy) argument
42 return adoptPtr(new BackingStore(size, webPageProxy));
45 BackingStore::BackingStore(const IntSize& size, WebPageProxy* webPageProxy) argument
46 : m_size(size)
63 ASSERT(bitmap->size() == updateInfo.updateRectBounds.size());
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java31 /** {@code >= 0;} current size of the list */
32 private int size; field in class:IntList
90 throw new IllegalArgumentException("size < 0");
93 size = 0;
102 for (int i = 0; i < size; i++) {
126 if (size != otherList.size) {
130 for (int i = 0; i < size; i++) {
142 StringBuffer sb = new StringBuffer(size * 5 + 10);
146 for (int i = 0; i < size;
161 public int size() { method in class:IntList
[all...]
/external/speex/libspeex/
H A Dbuffer.c45 int size; member in struct:SpeexBuffer_
51 EXPORT SpeexBuffer *speex_buffer_init(int size) argument
54 st->data = speex_alloc(size);
55 st->size = size;
73 if (len > st->size)
75 data += len-st->size;
76 len = st->size;
80 if (end1 > st->size)
81 end1 = st->size;
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dvcdecoder1_test.cc26 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
28 delta_file_header_.size(),
35 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
37 delta_file_.size(),
50 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
52 delta_file_.size(),
60 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
62 delta_file_.size() - 1,
66 EXPECT_GE(expected_target_.size(), output_.size());
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_malloc_win.cc45 void *malloc(size_t size) { argument
47 return asan_malloc(size, &stack);
50 void* _malloc_dbg(size_t size, int , const char*, int) { argument
51 return malloc(size);
54 void *calloc(size_t nmemb, size_t size) { argument
56 return asan_calloc(nmemb, size, &stack);
59 void* _calloc_dbg(size_t n, size_t size, int, const char*, int) { argument
60 return calloc(n, size);
63 void *_calloc_impl(size_t nmemb, size_t size, int *errno_tmp) { argument
64 return calloc(nmemb, size);
67 realloc(void *ptr, size_t size) argument
72 _realloc_dbg(void *ptr, size_t size, int) argument
80 const size_t size = n * elem_size; local
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DSimpleLodThreshold.java45 * Just multiplies the terrain patch size by 2. So every two
54 private int size; // size of a terrain patch field in class:SimpleLodThreshold
63 this.size = ((TerrainQuad)terrain).getPatchSize();
67 this.size = patchSize;
79 return size;
82 public void setSize(int size) { argument
83 this.size = size;
88 return size*lodMultiplie
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dvalgrind-low-s390x.c121 transfer_direction dir, int size, Bool *mod)
134 case 1: VG_(transfer) (&s390x->guest_IA, buf, dir, size, mod); break;
135 case 2: VG_(transfer) (&s390x->guest_r0, buf, dir, size, mod); break;
136 case 3: VG_(transfer) (&s390x->guest_r1, buf, dir, size, mod); break;
137 case 4: VG_(transfer) (&s390x->guest_r2, buf, dir, size, mod); break;
138 case 5: VG_(transfer) (&s390x->guest_r3, buf, dir, size, mod); break;
139 case 6: VG_(transfer) (&s390x->guest_r4, buf, dir, size, mod); break;
140 case 7: VG_(transfer) (&s390x->guest_r5, buf, dir, size, mod); break;
141 case 8: VG_(transfer) (&s390x->guest_r6, buf, dir, size, mod); break;
142 case 9: VG_(transfer) (&s390x->guest_r7, buf, dir, size, mo
120 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRReaderStream.java48 public ANTLRReaderStream(Reader r, int size) throws IOException { argument
49 this(r, size, READ_BUFFER_SIZE);
52 public ANTLRReaderStream(Reader r, int size, int readChunkSize) throws IOException { argument
53 load(r, size, readChunkSize);
56 public void load(Reader r, int size, int readChunkSize) argument
62 if ( size<=0 ) {
63 size = INITIAL_BUFFER_SIZE;
68 // System.out.println("load "+size+" in chunks of "+readChunkSize);
70 // alloc initial buffer size.
71 data = new char[size];
[all...]
/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.h23 u32 StackDepotPut(const uptr *stack, uptr size);
25 const uptr *StackDepotGet(u32 id, uptr *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/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/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/webp/src/utils/
H A Dutils.h27 // size-checking safe malloc/calloc: verify that the requested size is not too
29 // malloc(sizeof(foo)), but only if there's picture-dependent size involved
33 void* WebPSafeMalloc(uint64_t nmemb, size_t size);
36 void* WebPSafeCalloc(uint64_t nmemb, size_t size);
/external/compiler-rt/lib/tsan/unit_tests/
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/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];

Completed in 732 milliseconds

1234567891011>>