HomeSort by relevance Sort by last modified time
    Searched full:size (Results 876 - 900 of 15447) sorted by null

<<31323334353637383940>>

  /external/bluetooth/glib/gio/
gmemoryoutputstream.h 73 * @size: size to reallocate @data to
75 * Changes the size of the memory block pointed to by @data to
76 * @size bytes.
83 gsize size);
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_decrypt_key.c 25 @param outlen [in/out] The max size and resulting size of the plaintext (octets)
59 /* payload is upto pq, so we know q is 1/3rd the size of N and therefore pq is 2/3th the size */
65 /* outlen must be at least the size of the modulus */
katja_encrypt_key.c 25 @param outlen [in/out] The max size and resulting size of the ciphertext
58 /* payload is upto pq, so we know q is 1/3rd the size of N and therefore pq is 2/3th the size */
64 /* outlen must be at least the size of the modulus */
  /external/e2fsprogs/tests/m_dasd_bs/
expect.1 3 Block size=2048 (log=1)
4 Fragment size=2048 (log=1)
43 Block size: 2048
44 Fragment size: 2048
55 Inode size: 128
  /external/e2fsprogs/tests/m_large_file/
expect.1 4 Block size=4096 (log=2)
5 Fragment size=4096 (log=2)
42 Block size: 4096
43 Fragment size: 4096
54 Inode size: 256
  /external/elfutils/libasm/
asm_newcomsym.c 40 asm_newcomsym (ctx, name, size, align)
43 GElf_Xword size;
67 result->size = size;
82 name, (uintmax_t) size, (uintmax_t) align);
  /external/icu4c/common/
cmemory.c 53 uprv_realloc(void * buffer, size_t size) {
55 return uprv_malloc(size);
56 } else if (size == 0) {
66 return (*pRealloc)(pContext, buffer, size);
68 return realloc(buffer, size);
  /external/icu4c/samples/legacy/
oldcol.cpp 10 * tab size: 8 (not used)
84 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[4][32]) {
93 for(i = 0; i<size; i++) {
95 fprintf(stderr, "For i=%d, size of sortkey is %d\n", i, keySize);
101 qsort(data, size, maxlen*sizeof(UChar), compare_legacy);
  /external/kernel-headers/original/linux/
msg.h 53 #define MSGMAX 8192 /* <= INT_MAX */ /* max size of message (bytes) */
54 #define MSGMNB 16384 /* <= INT_MAX */ /* default max size of a message queue */
57 #define MSGPOOL (MSGMNI*MSGMNB/1024) /* size in kilobytes of message pool */
60 #define MSGSSZ 16 /* message segment size */
71 int m_ts; /* message text size */
  /external/kernel-headers/original/linux/mtd/
partitions.h 25 * size: the partition size; if defined as MTDPART_SIZ_FULL, the partition
35 * Note: writeable partitions require their size and offset be
41 u_int32_t size; /* partition size */ member in struct:mtd_partition
  /external/libxml2/
xmlmemory.c 151 * @size: an int specifying the size in byte to allocate.
161 xmlMallocLoc(size_t size, const char * file, int line)
169 "Malloc(%d)\n",size);
174 p = (MEMHDR *) malloc(RESERVE_SIZE+size);
183 p->mh_size = size;
189 debugMemSize += size;
199 "Malloc(%d) Ok\n",size);
208 "%p : Malloc(%ld) Ok\n", xmlMemTraceBlockAt, size);
219 * @size: an int specifying the size in byte to allocate
409 size_t size; local
483 size_t size = strlen(str) + 1; local
    [all...]
  /external/opencore/doc/oscl_html/
classallocator.html 18 A memory allocator class which allocates and deallocates from a fixed size memory pool; The memory pool is a multiple of fixed chunk size and does not grow. All allocation size must be the same as this chunk size.
22 <hr size="1"><img src="pvlogo_small.jpg"><address style="align: right;"><small>OSCL API</small>
  /external/opencore/fileformats/mp4/composer/include/
renderable.h 53 PVA_FF_BufferHolder(uint8* buf, int32 size)
58 if (size > 0)
60 _dataBuffer = (uint8*)(oscl_malloc(sizeof(uint8) * size));
61 oscl_memcpy(_dataBuffer, buf, size);
62 _dataSize = size;
  /external/opencore/fileformats/mp4/composer/src/
moviefragmentheaderatom.cpp 47 // recompute size of atom
51 int32 size = getDefaultSize(); local
53 size += 4; // For sequence number
55 _size = size;
57 // Update the parent atom size
mpegsampleentry.cpp 98 int32 size = getDefaultSize(); local
99 size += 8; // For reserved and dataRefIndex of PVA_FF_SampleEntry base class
101 size += _pes->getSize();
103 _size = size;
105 // Update size of parnet atom
trackatom.cpp 114 uint32 size,
152 _pmediaAtom->nextSample(mediaType, psample, size, ts,
159 uint32 size,
198 _pmediaAtom->nextTextSample(mediaType, psample, size, ts,
205 uint32 size,
243 _pmediaAtom->nextSample(mediaType, fragmentList, size, ts,
251 uint32 size,
290 _pmediaAtom->nextTextSample(mediaType, fragmentList, size, ts,
296 PVA_FF_TrackAtom::reAuthorFirstSample(uint32 size,
300 _pmediaAtom->reAuthorFirstSample(size,
337 int32 size = getDefaultSize(); \/\/ From base class local
    [all...]
  /external/opencore/nodes/pvdummyoutputnode/src/
pvmf_dummy_fileoutput_node.h 89 void* allocate(const uint32 size)
91 void* tmp = (void*)oscl_malloc(size);
102 //Default vector reserve size
327 * Send file size progress report if enabled.
340 * Check if maximum file size or duration is reached if a maximum is set.
342 * @param aFrameSize Size of current frame in bytes.
343 * @return PVMFSuccess if feature is enabled and the maximum file size / duration is reached.
344 * PVMFPending if feature is enabled and the max file size / duration has not been reached.
346 * PVMFFailure if informational observer is not set or if max file size or duration is set
352 * Check if maximum file size or duration is reached if a maximum is set
    [all...]
  /external/opencore/nodes/pvfileoutputnode/src/
pvmf_fileoutput_node.h 93 void* allocate(const uint32 size)
95 void* tmp = (void*)oscl_malloc(size);
106 //Default vector reserve size
310 * Send file size progress report if enabled.
323 * Check if maximum file size or duration is reached if a maximum is set.
325 * @param aFrameSize Size of current frame in bytes.
326 * @return PVMFSuccess if feature is enabled and the maximum file size / duration is reached.
327 * PVMFPending if feature is enabled and the max file size / duration has not been reached.
329 * PVMFFailure if informational observer is not set or if max file size or duration is set
335 * Check if maximum file size or duration is reached if a maximum is set
    [all...]
  /external/qemu/android/avd/
hw-config-defs.h 24 "Device ram size",
134 "disk.cachePartition.size",
136 "Cache partition size",
150 "Max VM application heap size",
151 "The maximum heap size a Dalvik application might allocate before being killed by the system. Value is in megabytes.")
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_qsort.c 12 * - separate code for non-aligned / aligned / word-size objects
112 * an item onto the stack its size is <= 1/2 of that
114 * log_2(max-array-size) entries.
153 * computing the size of stack needed. This would
156 * and |(size&(sizeof(int)-1))==0| then it's safe to
158 * actually |size==sizeof(int)| as well then it's
232 last=((char*)base)+nmemb*size; \
233 for (first=((char*)base)+size;first!=last;first+=size) { \
237 for (test=first-size;compare(test,first)>0;test-=size) ;
    [all...]
  /external/srec/srec/clib/
memmove.h 29 size_t size);
32 size_t size)
42 memcpy(dest, src, size);
43 dest = (void *)(((char *)dest) + size);
44 src = (void *)(((char *)src) + size);
  /external/stlport/test/eh/
test_deque.cpp 52 while ( testDeque.size() < dequeSize )
62 StrongCheck( testDeque, test_insert_one<TestDeque>(testDeque, (int)testDeque.size()) );
66 StrongCheck( testDeque, test_insert_n<TestDeque>(testDeque, random_number(random_base), (int)testDeque.size() ) );
91 testDeque2.resize( testDeque.size() * 3 / 2 );
93 testDeque2.resize( testDeque.size() * 2 / 3 );
  /external/webkit/WebCore/platform/
DragImage.cpp 36 DragImageRef fitDragImageToMaxSize(DragImageRef image, const IntSize& srcSize, const IntSize& size)
43 if (srcSize.width() > size.width()) {
44 widthResizeRatio = size.width() / (float)srcSize.width();
48 if (srcSize.height() > size.height()) {
49 heightResizeRatio = size.height() / (float)srcSize.height();
  /external/webkit/WebCore/platform/graphics/opentype/
OpenTypeSanitizer.cpp 47 // This is the largest web font size which we'll try to transcode.
49 if (m_buffer->size() > maxWebFontSize)
57 OwnArrayPtr<unsigned char> transcodeRawBuffer(new unsigned char[m_buffer->size() + padLen]);
58 ots::MemoryStream output(transcodeRawBuffer.get(), m_buffer->size() + padLen);
59 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
  /external/webkit/WebCore/platform/graphics/transforms/
TransformOperations.h 46 for (unsigned i = 0; i < m_operations.size(); ++i)
54 for (unsigned i = 0; i < m_operations.size(); ++i)
63 size_t size() const { return m_operations.size(); } function in class:WebCore::TransformOperations
64 const TransformOperation* at(size_t index) const { return index < m_operations.size() ? m_operations.at(index).get() : 0; }

Completed in 76 milliseconds

<<31323334353637383940>>