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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/media/libstagefright/
ESDS.cpp 23 ESDS::ESDS(const void *data, size_t size)
24 : mData(new uint8_t[size]),
25 mSize(size),
30 memcpy(mData, data, size);
54 status_t ESDS::getCodecSpecificInfo(const void **data, size_t *size) const {
60 *size = mDecoderSpecificLength;
66 size_t offset, size_t size,
68 if (size == 0) {
73 --size;
78 if (size == 0)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
classes_index_changes.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
55 <a href="#F"><font size="-2">F</font></a>
56 <a href="#G"><font size="-2">G</font></a>
57 <a href="#H"><font size="-2">H</font></a>
58 <a href="#I"><font size="-2">I</font></a>
59 <a href="#K"><font size="-2">K</font></a>
    [all...]
classes_index_additions.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#C"><font size="-2">C</font></a>
53 <a href="#E"><font size="-2">E</font></a>
54 <a href="#F"><font size="-2">F</font></a>
55 <a href="#G"><font size="-2">G</font></a>
56 <a href="#K"><font size="-2">K</font></a>
57 <a href="#L"><font size="-2">L</font></a>
58 <a href="#M"><font size="-2">M</font></a>
59 <a href="#O"><font size="-2">O</font></a>
    [all...]
classes_index_all.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#F"><font size="-2">F</font></a>
57 <a href="#G"><font size="-2">G</font></a>
58 <a href="#H"><font size="-2">H</font></a>
59 <a href="#I"><font size="-2">I</font></a>
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
SizeFileFilter.java 23 * Filters files based on size, can filter either smaller files or
27 * current directory whose size is greater than 1 MB:
43 /** The size threshold. */
44 private final long size; field in class:SizeFileFilter
49 * Constructs a new size file filter for files equal to or
50 * larger than a certain size.
52 * @param size the threshold size of the files
53 * @throws IllegalArgumentException if the size is negative
55 public SizeFileFilter(long size) {
    [all...]
  /external/kernel-headers/original/asm-generic/
ioctl.h 5 * size of the parameter structure in the lower 14 bits of the
7 * Encoding the size of the parameter structure in the ioctl request
11 * NOTE: This limits the max parameter size to 16kB -1 !
44 #define _IOC(dir,type,nr,size) \
48 ((size) << _IOC_SIZESHIFT))
50 /* provoke compile error for invalid uses of size argument */
59 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
60 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/7/changes/
alldiffs_index_changes.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
52 <br><font size="+2">A</font>&nbsp;
53 <a href="#B"><font size="-2">B</font></a>
54 <a href="#C"><font size="-2">C</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#G"><font size="-2">G</font></a>
57 <a href="#I"><font size="-2">I</font></a>
58 <a href="#L"><font size="-2">L</font></a>
59 <a href="#M"><font size="-2">M</font></a>
60 <a href="#N"><font size="-2">N</font></a>
    [all...]
  /frameworks/base/libs/rs/
rsHandcode.h 7 uint32_t size = sizeof(RS_CMD_AllocationData); local
9 size += (sizeBytes + 3) & ~3;
11 RS_CMD_AllocationData *cmd = static_cast<RS_CMD_AllocationData *>(io->mToCore.reserve(size));
18 io->mToCore.commit(RS_CMD_ID_AllocationData, size);
20 io->mToCore.commitSync(RS_CMD_ID_AllocationData, size);
28 uint32_t size = sizeof(RS_CMD_Allocation1DSubData); local
30 size += (sizeBytes + 3) & ~3;
32 RS_CMD_Allocation1DSubData *cmd = static_cast<RS_CMD_Allocation1DSubData *>(io->mToCore.reserve(size));
41 io->mToCore.commit(RS_CMD_ID_Allocation1DSubData, size);
43 io->mToCore.commitSync(RS_CMD_ID_Allocation1DSubData, size);
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
PriorityQueueTest.java 35 * Create a queue of given size containing consecutive
46 assertEquals(n, q.size());
54 assertEquals(0, new PriorityQueue(SIZE).size());
84 Integer[] ints = new Integer[SIZE];
96 Integer[] ints = new Integer[SIZE];
97 for (int i = 0; i < SIZE-1; ++i)
110 Integer[] ints = new Integer[SIZE];
111 for (int i = 0; i < SIZE; ++i)
114 for (int i = 0; i < SIZE; ++i
    [all...]
ConcurrentLinkedQueueTest.java 27 * Create a queue of given size containing consecutive
36 assertEquals(n, q.size());
44 assertEquals(0, new ConcurrentLinkedQueue().size());
63 Integer[] ints = new Integer[SIZE];
75 Integer[] ints = new Integer[SIZE];
76 for (int i = 0; i < SIZE-1; ++i)
89 Integer[] ints = new Integer[SIZE];
90 for (int i = 0; i < SIZE; ++i)
93 for (int i = 0; i < SIZE; ++i)
114 * size changes when elements added and remove
    [all...]
  /external/skia/src/core/
SkStream.cpp 37 size_t SkStream::skip(size_t size)
39 /* Check for size == 0, and just return 0. If we passed that
41 size of the stream.
43 return size ? this->read(NULL, size) : 0;
123 return this->write(tmp.c_str(), tmp.size());
130 return this->write(tmp.c_str(), tmp.size());
137 return this->write(tmp.c_str(), tmp.size());
229 size_t SkFILEStream::read(void* buffer, size_t size)
233 if (buffer == NULL && size == 0) // special signature, they want the total siz
610 size_t size; local
641 size_t size = block->written(); local
662 size_t size = block->written(); local
682 size_t size = block->written(); local
    [all...]
SkWriter32.cpp 12 uint32_t* alloc(size_t size)
14 SkASSERT(SkAlign4(size) == size);
15 SkASSERT(this->available() >= size);
17 fAllocated += size;
29 static Block* Create(size_t size)
31 SkASSERT(SkAlign4(size) == size);
32 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
34 block->fSize = size;
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
SparseArrayTest.java 97 method = "size",
108 assertEquals(0, sparseArray.size());
114 assertEquals(i + 1, sparseArray.size());
130 assertEquals(LENGTH, sparseArray.size());
133 assertEquals(LENGTH, sparseArray.size());
139 int size = sparseArray.size(); local
141 assertEquals(size + 1, sparseArray.size());
142 assertEquals(size, sparseArray.indexOfKey(NON_EXISTED_KEY))
276 int size = sparseArray.size(); local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
classes_index_all.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#F"><font size="-2">F</font></a>
57 <a href="#G"><font size="-2">G</font></a>
58 <a href="#H"><font size="-2">H</font></a>
59 <a href="#I"><font size="-2">I</font></a>
    [all...]
alldiffs_index_changes.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
52 <br><font size="+2">A</font>&nbsp;
53 <a href="#B"><font size="-2">B</font></a>
54 <a href="#C"><font size="-2">C</font></a>
55 <a href="#D"><font size="-2">D</font></a>
56 <a href="#E"><font size="-2">E</font></a>
57 <a href="#F"><font size="-2">F</font></a>
58 <a href="#G"><font size="-2">G</font></a>
59 <a href="#H"><font size="-2">H</font></a>
60 <a href="#I"><font size="-2">I</font></a>
    [all...]
classes_index_changes.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#F"><font size="-2">F</font></a>
57 <a href="#G"><font size="-2">G</font></a>
58 <a href="#H"><font size="-2">H</font></a>
59 <a href="#I"><font size="-2">I</font></a>
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
MappedPlatformAddress.java 25 MappedPlatformAddress(int address, long size) {
26 super(address, size);
30 memorySpy.rangeCheck(this, 0, (int) size * SIZEOF_JBYTE);
31 osMemory.load(osaddr, size);
35 memorySpy.rangeCheck(this, 0, (int) size * SIZEOF_JBYTE);
36 return osMemory.isLoaded(osaddr, size);
40 memorySpy.rangeCheck(this, 0, (int) size * SIZEOF_JBYTE);
41 osMemory.flush(osaddr, size);
46 osMemory.unmap(osaddr, size);
51 return PlatformAddressFactory.mapOn(osaddr, size);
    [all...]
  /external/kernel-headers/original/linux/
vmalloc.h 27 unsigned long size; member in struct:vm_struct
38 extern void *vmalloc(unsigned long size);
39 extern void *vmalloc_user(unsigned long size);
40 extern void *vmalloc_node(unsigned long size, int node);
41 extern void *vmalloc_exec(unsigned long size);
42 extern void *vmalloc_32(unsigned long size);
43 extern void *vmalloc_32_user(unsigned long size);
44 extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
47 extern void *__vmalloc_node(unsigned long size, gfp_t gfp_mask,
61 extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags)
    [all...]
  /external/expat/tests/benchmark/
README.txt 3 benchmark [-n] <file name> <buffer size> <# iterations>
9 <buffer size> ... size of processing buffer;
10 the file is parsed in chunks of this size
  /external/kernel-headers/original/asm-x86/
swiotlb.h 9 size_t size, int dir);
10 extern void *swiotlb_alloc_coherent(struct device *hwdev, size_t size,
13 size_t size, int dir);
16 size_t size, int dir);
19 size_t size, int dir);
23 size_t size, int dir);
27 size_t size, int dir);
39 extern void swiotlb_free_coherent (struct device *hwdev, size_t size,
54 static inline void dma_mark_clean(void *addr, size_t size) {}
  /external/openssl/crypto/bn/
exp.c 7 #define SIZE 256
17 int j,i,size=SIZE,num=NUM,mod=MOD; local
31 while (size <= 1024*8)
33 BN_rand(&a,size,0,0);
34 BN_rand(&b,size,1,0);
35 BN_rand(&c,size,0,1);
54 printf("%5d bit:%6.2f %6d %6.4f %4d m_set(%5.4f)\n",size,
59 size*=2;
  /external/webkit/WebCore/manual-tests/
input-type-file-autocomplete-frame-2.html 4 <form><input size=55 value="type something in here"></form>
  /external/freetype/include/freetype/
ftsizes.h 5 /* FreeType size objects management (specification). */
51 /* Size Management */
59 /* pixel-size dependent information, available in the `face->size' */
67 /* modify the contents of the current `active' size; you thus need */
83 /* Create a new size object from a given face object. */
89 /* asize :: A handle to a new size object. */
95 /* You need to call @FT_Activate_Size in order to select the new size */
101 FT_Size* size );
110 /* Discard a given size object. Note that @FT_Done_Face *
121 FT_Done_Size( FT_Size size ); variable
149 FT_Activate_Size( FT_Size size ); variable
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/6/changes/
alldiffs_index_all.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
52 <br><font size="+2">A</font>&nbsp;
53 <a href="#B"><font size="-2">B</font></a>
54 <a href="#C"><font size="-2">C</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#Q"><font size="-2">Q</font></a>
57 <a href="#R"><font size="-2">R</font></a>
58 <a href="#T"><font size="-2">T</font></a>
59 <a href="#U"><font size="-2">U</font></a>
60 <a href="#W"><font size="-2">W</font></a>
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
classes_index_all.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
55 <a href="#E"><font size="-2">E</font></a>
56 <a href="#G"><font size="-2">G</font></a>
57 <a href="#H"><font size="-2">H</font></a>
58 <a href="#I"><font size="-2">I</font></a>
59 <a href="#J"><font size="-2">J</font></a>
    [all...]

Completed in 384 milliseconds

1 23 4 5 6 7 8 91011>>