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

<<11121314151617181920>>

  /frameworks/base/docs/html/sdk/api_diff/5/changes/
constructors_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">B</font>&nbsp;
52 <a href="#C"><font size="-2">C</font></a>
53 <a href="#K"><font size="-2">K</font></a>
54 <a href="#N"><font size="-2">N</font></a>
55 <a href="#P"><font size="-2">P</font></a>
56 <a href="#topheader"><font size="-2">TOP</font></a>
64 <br><font size="+2">C</font>&nbsp;
65 <a href="#B"><font size="-2">B</font></a>
66 <a href="#K"><font size="-2">K</font></a>
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 35 * @param size the size of the pool; this corresponds to the
37 * always at least one more than the actual size of the constant pool,
40 public StdConstantPool(int size) {
41 super(size > 1);
43 if (size < 1) {
44 throw new IllegalArgumentException("size < 1");
47 entries = new Constant[size];
51 public int size() { method in class:StdConstantPool
93 * @param n {@code >= 1, < size();} which entr
    [all...]
  /external/dropbear/libtommath/
bn_mp_prime_random_ex.c 18 /* makes a truly random prime of a given size (bits),
34 int mp_prime_random_ex(mp_int *a, int t, int size, int flags, ltm_prime_callback cb, void *dat)
40 if (size <= 1 || t <= 0) {
49 /* calc the byte size */
50 bsize = (size>>3) + ((size&7)?1:0);
59 maskAND = ((size&7) == 0) ? 0xFF : (0xFF >> (8 - (size & 7)));
63 maskOR_msb_offset = ((size & 7) == 1) ? 1 : 0;
65 maskOR_msb |= 0x80 >> ((9 - size) & 7)
    [all...]
  /external/e2fsprogs/e2fsck/
mtrace.c 46 static __ptr_t (*tr_old_malloc_hook) __P ((size_t size));
47 static __ptr_t (*tr_old_realloc_hook) __P ((__ptr_t ptr, size_t size));
83 tr_mallochook (size)
84 size_t size;
89 hdr = (__ptr_t) malloc (size);
93 fprintf (mallstream, "+ %p %d\n", hdr, size);
103 tr_reallochook (ptr, size)
105 size_t size;
115 hdr = (__ptr_t) realloc (ptr, size);
121 fprintf (mallstream, "! %p %d\n", ptr, size);
    [all...]
  /external/opencore/fileformats/mp4/composer/src/
h263sampleentry.cpp 162 int32 size = getDefaultSize(); local
164 size += 8; // For reserved and dataRefIndex of PVA_FF_SampleEntry base class
166 size += 16; // For reserved1[4]
167 size += 16; // For reserved2 - reserved5
168 size += 2; // For reserved6
169 size += 32; // For reserved7[32]
170 size += 2; // For reserved8
171 size += 2; // For reserved9
173 size += pH263SpecificAtom->getSize();
175 _size = size;
    [all...]
visualsampleentry.cpp 168 int32 size = getDefaultSize(); local
170 size += 8; // For reserved and dataRefIndex of PVA_FF_SampleEntry base class
172 size += 16; // For reserved1[4]
173 size += 16; // For reserved2 - reserved5
174 size += 2; // For reserved6
175 size += 32; // For reserved7[32]
176 size += 2; // For reserved8
177 size += 2; // For reserved9
179 size += _pes->getSize();
181 _size = size;
    [all...]
  /external/opencore/protocols/rtp/src/
rtcp_encoder.cpp 123 uint16 size,
133 // transform size into number of 32 bit words - 1
134 size = (size / 4) - 1;
139 outStream << size; local
150 int32 size = (num_report_blocks * RTCP_REPORT_BLOCK_SIZE) + local
153 return size;
159 int32 size = (num_report_blocks * RTCP_REPORT_BLOCK_SIZE) + local
162 return size;
171 int32 size = 0 local
191 int32 size; local
246 uint size = (num_report_blocks * RTCP_REPORT_BLOCK_SIZE) + local
320 uint size = (num_report_blocks * RTCP_REPORT_BLOCK_SIZE) + local
400 uint size = (ssrc_count * sizeof(bye_packet.ssrc_array[0])) + local
577 int32 size = GetEncodedSize(sdes_packet) + pad_length; local
638 uint size = GetEncodedSize(app_packet) + pad_length; local
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
cmemlink.h 27 /// The pointer and block size are available through member functions and cast operator.
35 /// assert (a.size() == 46721));
37 /// assert (b.size() == 46721));
62 inline void link (const cmemlink& l) { link (l.begin(), l.size()); }
69 inline size_type size (void) const { return (m_Size); } function in class:ustl::cmemlink
70 inline size_type max_size (void) const { return (size()); }
71 inline size_type readable_size (void) const { return (size()); }
72 inline bool empty (void) const { return (!size()); }
75 inline iterator iat (size_type i) const { assert (i <= size()); return (begin() + i); }
76 inline iterator end (void) const { return (iat (size())); }
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/testdata/
repository_sample_2.xml 50 <sdk:size>65536</sdk:size>
65 <sdk:size>65536</sdk:size>
82 <sdk:size>65536</sdk:size>
109 <sdk:size>65536</sdk:size>
114 <sdk:size>65536</sdk:size>
    [all...]
  /bionic/libc/stdio/
setvbuf.c 43 setvbuf(FILE *fp, char *buf, int mode, size_t size)
50 * Verify arguments. The `int' limit on `size' is due to this
51 * particular implementation. Note, buf and size are ignored
55 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
80 * Find optimal I/O size for seek optimization. This also returns
85 if (size == 0) {
87 size = iosize;
92 if ((buf = malloc(size)) == NULL) {
95 * failure, but try again with file system size.
98 if (size != iosize)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 34 * @param size {@code >= 0;} the size of the list
36 public CatchHandlerList(int size) {
37 super(size);
45 * @param n {@code >= 0, < size();} which index
68 int size = size(); local
74 for (int i = 0; i < size; i++) {
83 if ((i == (size - 1)) && catchesAll()) {
104 int size = size() local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
badblocks.c 32 static errcode_t make_u32_list(int size, int num, __u32 *list,
43 bb->size = size ? size : 10;
45 retval = ext2fs_get_array(bb->size, sizeof(blk_t), &bb->list);
51 memcpy(bb->list, list, bb->size * sizeof(blk_t));
53 memset(bb->list, 0, bb->size * sizeof(blk_t));
62 errcode_t ext2fs_u32_list_create(ext2_u32_list *ret, int size)
64 return make_u32_list(size, 0, 0, ret);
70 errcode_t ext2fs_badblocks_list_create(ext2_badblocks_list *ret, int size)
    [all...]
  /external/libffi/src/
prep_cif.c 43 FFI_ASSERT(arg->size == 0);
50 if (((*ptr)->size == 0) && (initialize_aggregate((*ptr)) != FFI_OK))
56 arg->size = ALIGN(arg->size, (*ptr)->alignment);
57 arg->size += (*ptr)->size;
65 /* Structure size includes tail padding. This is important for
71 total size of 3*sizeof(long). */
72 arg->size = ALIGN (arg->size, arg->alignment)
    [all...]
  /external/webkit/WebCore/css/
CSSGradientValue.cpp 59 for (unsigned i = 0; i < m_stops.size(); i++) {
72 PassRefPtr<Gradient> CSSGradientValue::createGradient(RenderObject* renderer, const IntSize& size)
74 ASSERT(!size.isEmpty());
78 FloatPoint firstPoint = resolvePoint(m_firstX.get(), m_firstY.get(), size, zoomFactor);
79 FloatPoint secondPoint = resolvePoint(m_secondX.get(), m_secondY.get(), size, zoomFactor);
94 for (unsigned i = 0; i < m_stops.size(); i++) {
105 Image* CSSGradientValue::image(RenderObject* renderer, const IntSize& size)
109 // Need to look up our size. Create a string of width*height to use as a hash key.
110 Image* result = getImage(renderer, size);
114 if (size.isEmpty()
    [all...]
  /external/webkit/WebCore/platform/
SharedBuffer.cpp 64 SharedBuffer::SharedBuffer(const char* data, int size)
67 append(data, size);
70 SharedBuffer::SharedBuffer(const unsigned char* data, int size)
73 append(reinterpret_cast<const char*>(data), size); local
85 buffer->m_size = buffer->m_buffer.size();
97 unsigned SharedBuffer::size() const function in class:WebCore::SharedBuffer
103 return m_purgeableBuffer->size();
125 unsigned positionInSegment = offsetInSegment(m_size - m_buffer.size());
161 for (unsigned i = 0; i < m_segments.size(); ++i)
175 clone->append(data(), size());
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/comparator/
SizeFileComparator.java 26 * Compare the <b>length/size</b> of two files for order (see
30 * by their length/size.
46 * <strong>N.B.</strong> Directories are treated as <b>zero size</b> unless
54 /** Size comparator instance - directories are treated as zero size */
57 /** Reverse size comparator instance - directories are treated as zero size */
61 * Size comparator instance which sums the size of a directory's contents
67 * Reverse size comparator instance which sums the size of a directory's contents
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
HashSetTest.java 57 assertEquals("Created incorrect HashSet", 0, hs2.size());
72 assertEquals("Created incorrect HashSet", 0, hs2.size());
94 assertEquals("Created incorrect HashSet", 0, hs2.size());
119 assertTrue("HashSet created from collection incorrect size",
120 hs2.size() == objArray.length);
141 int size = hs.size(); local
143 assertTrue("Added element already contained by set", hs.size() == size);
145 assertTrue("Failed to increment set size after add"
256 int size = hs.size(); local
    [all...]
  /frameworks/base/libs/audioflinger/
AudioHardwareGeneric.cpp 166 const size_t SIZE = 256;
167 char buffer[SIZE];
170 snprintf(buffer, SIZE, "\tmFd: %d mMicMute: %s\n", mFd, mMicMute? "true": "false");
172 ::write(fd, result.string(), result.size());
245 const size_t SIZE = 256;
246 char buffer[SIZE];
248 snprintf(buffer, SIZE, "AudioStreamOutGeneric::dump\n");
250 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
252 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize())
    [all...]
AudioHardwareStub.cpp 101 const size_t SIZE = 256;
102 char buffer[SIZE];
105 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false");
107 ::write(fd, result.string(), result.size());
142 const size_t SIZE = 256;
143 char buffer[SIZE];
145 snprintf(buffer, SIZE, "AudioStreamOutStub::dump\n");
146 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
147 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize())
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/shared/
linux_osl.c 69 uint size; member in struct:bcm_mem_link
149 void * dhd_os_prealloc(int section, unsigned long size);
377 osl_pci_read_config(osl_t *osh, uint offset, uint size)
385 ASSERT(size == 4);
398 osl_pci_write_config(osl_t *osh, uint offset, uint size, uint val)
405 ASSERT(size == 4);
411 if (osl_pci_read_config(osh, offset, size) == val)
436 osl_pcmcia_attr(osl_t *osh, uint offset, char *buf, int size, bool write)
441 osl_pcmcia_read_attr(osl_t *osh, uint offset, void *buf, int size)
443 osl_pcmcia_attr(osh, offset, (char *) buf, size, FALSE)
    [all...]
  /external/freetype/src/base/
ftutil.c 51 FT_Long size,
55 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
57 if ( !error && size > 0 )
58 FT_MEM_ZERO( block, size );
67 FT_Long size,
74 if ( size > 0 )
76 block = memory->alloc( memory, size );
80 else if ( size < 0 )
178 FT_ULong size,
182 FT_Pointer p = ft_mem_qalloc( memory, size, &error )
    [all...]
  /external/oprofile/libdb/
db_manage.c 48 (data->descr->size * sizeof(odb_node_t)));
57 size_t size; local
59 size = node_nr * (sizeof(odb_index_t) * BUCKET_FACTOR);
60 size += node_nr * sizeof(odb_node_t);
61 size += data->offset_node;
63 return size;
74 old_file_size = tables_size(data, data->descr->size);
75 new_file_size = tables_size(data, data->descr->size * 2);
88 data->descr->size *= 2;
91 data->hash_mask = (data->descr->size * BUCKET_FACTOR) - 1
274 size_t size = tables_size(data, data->descr->size); local
304 size_t size; local
    [all...]
  /external/kernel-headers/original/asm-arm/
dma-mapping.h 17 extern void consistent_sync(void *kaddr, size_t size, int rw);
64 * @size: required memory size
73 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp);
78 * @size: size of memory originally requested in dma_alloc_coherent
89 dma_free_coherent(struct device *dev, size_t size, void *cpu_addr,
98 * @size: size of memory originally requested in dma_alloc_coherent
105 void *cpu_addr, dma_addr_t handle, size_t size);
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
alldiffs_index_removals.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">G</font>&nbsp;
53 <a href="#M"><font size="-2">M</font></a>
54 <a href="#O"><font size="-2">O</font></a>
55 <a href="#P"><font size="-2">P</font></a>
56 <a href="#S"><font size="-2">S</font></a>
57 <a href="#X"><font size="-2">X</font></a>
58 <a href="#topheader"><font size="-2">TOP</font></a>
64 <br><font size="+2">M</font>&nbsp;
65 <a href="#G"><font size="-2">G</font></a>
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
JUnitTestCaseAdapter.java 235 assertEquals(assertID, expectedSize, collection.size());
245 int size = expected.size(); local
248 assertEquals(assertID,size, actual.size());
249 boolean equals = (expected != null && actual != null && size == actual.size());
273 int size = expected.size(); local
276 assertEquals(assertID,size, actual.size())
309 int size = expected.size(); local
377 int size = expected.size(); local
402 int size = expected.size(); local
436 int size = expected.size(); local
461 int size = expected.size(); local
478 public int size(Collection collection) { method in class:JUnitTestCaseAdapter
482 public int size(NamedNodeMap collection) { method in class:JUnitTestCaseAdapter
486 public int size(NodeList collection) { method in class:JUnitTestCaseAdapter
    [all...]

Completed in 55 milliseconds

<<11121314151617181920>>