/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
fields_index_additions.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;"> 52 <a href="#A"><font size="-2">A</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="#I"><font size="-2">I</font></a> 59 <a href="#K"><font size="-2">K</font></a> 60 <a href="#M"><font size="-2">M</font></a> [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/ |
osmemapi.c | 63 __u32 size; member in struct:os_mem_block 81 Size - Specifies the size, in bytes, to be allocated. 94 UINT32 Size 98 __u32 total_size = Size + sizeof(struct os_mem_block) + sizeof(__u32); 101 os_printf("MTT:%s:%d ::os_memoryAlloc(0x%p, %lu) : %lu\n",__FUNCTION__, __LINE__,OsContext,Size,total_size); 103 if( total_size < Size ) { /* Dm: Security fix */ 137 blk->size = Size; 161 Size - Specifies the size, in bytes, to be allocated [all...] |
/external/quake/quake/src/QW/client/ |
zone.c | 31 int size; // including the header and possibly tiny fragments member in struct:memblock_s 40 int size; // total bytes malloced, including header member in struct:__anon5085 66 void Z_ClearZone (memzone_t *zone, int size); 74 void Z_ClearZone (memzone_t *zone, int size) 84 zone->blocklist.size = 0; 90 block->size = size - sizeof(memzone_t); 117 other->size += block->size; 128 block->size += other->size 271 int size; \/\/ including sizeof(hunk_t), -1 = not allocated member in struct:__anon5086 564 int size; \/\/ including this header member in struct:cache_system_s [all...] |
/external/quake/quake/src/WinQuake/ |
zone.cpp | 31 int size; // including the header and possibly tiny fragments member in struct:memblock_s 40 int size; // total bytes malloced, including header member in struct:__anon5546 66 void Z_ClearZone (memzone_t *zone, int size); 74 void Z_ClearZone (memzone_t *zone, int size) 84 zone->blocklist.size = 0; 90 block->size = size - sizeof(memzone_t); 117 other->size += block->size; 128 block->size += other->size 271 int size; \/\/ including sizeof(hunk_t), -1 = not allocated member in struct:__anon5547 559 int size; \/\/ including this header member in struct:cache_system_s [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CameraPreview.java | 22 import android.hardware.Camera.Size; 89 private Size getOptimalPreviewSize(List<Size> sizes, int w, int h) { 94 Size optimalSize = null; 99 // Try to find an size match aspect ratio and size 100 for (Size size : sizes) { 101 double ratio = (double) size.width / size.height [all...] |
/external/opencore/fileformats/mp4/composer/src/ |
avcsampleentry.cpp | 99 uint32 size = pinfo->getInfoSize(); local 101 setSample(sample, size); 230 int32 size = getDefaultSize(); local 235 size += sizeof(_reserved[k]); 238 size += sizeof(_dataReferenceIndex); 239 size += sizeof(_preDefined1); 240 size += sizeof(_reserved1); 243 size += sizeof(_predefined2[j]); 245 size += sizeof(_width); 246 size += sizeof(_height) [all...] |
trackfragmentatom.cpp | 66 for (uint32 ii = 0; ii < _pTrunList->size(); ii++) 95 PVA_FF_TrackFragmentAtom::addSampleToFragment(uint32 size, uint32 ts, uint8 flags, 105 pTrunAtom->addSample(size, ts, flags); 124 pTrunAtom->addSample(size, ts, flags); 162 // recompute size of atom 166 int32 size = getDefaultSize(); local 168 // add size of tfhd atom 169 size += _pTfhdAtom->getSize(); 171 // add size of Track run atoms 172 if (_pTrunList->size() != 0 216 int32 size = _pTrunList->size(); local [all...] |
trackfragmentrandomaccessatom.cpp | 81 if (_pSampleEntries->size() >= _entryCount) 95 // recompute size of atom 99 int32 size = getDefaultSize(); local 101 size += 4; // track id 102 size += 4; // reserved 103 size += 4; // entry count 109 size += 4; // time 110 size += 4; // MoofOffset 111 size += 2; // traf number 112 size += 2; // trun numbe [all...] |
decoderspecificinfo.cpp | 39 PVA_FF_DecoderSpecificInfo::PVA_FF_DecoderSpecificInfo(uint8 *pdata, uint32 size) 42 _infoSize = size; 50 PVA_FF_DecoderSpecificInfo::PVA_FF_DecoderSpecificInfo(PVA_FF_TextSampleDescInfo *pdata, uint32 size) 53 _infoSize = size; 70 PVA_FF_DecoderSpecificInfo::addInfo(uint8 *info, uint32 size) 72 _infoSize = size; 82 // Render base descriptor packed size and tag 100 int32 contents = _infoSize; // Size of decoder specific info payload 105 // Have the parent descriptor recompute its size based on this update
|
trackreferencetypeatom.cpp | 53 return _trackIDs->size(); 59 if (index < (int32)_trackIDs->size()) 70 int32 size = getDefaultSize(); local 71 size += 4 * _trackIDs->size(); 73 _size = size; 75 // Update size of parent atom 94 for (uint32 i = 0; i < _trackIDs->size(); i++) 101 rendered += (4 * _trackIDs->size());
|
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_byte_order.inl | 34 \param size The number of bytes in the buffer. 47 \param size The number of bytes in the buffer. 49 OSCL_INLINE void swap_byte_order(char *data, unsigned int size) 55 ptr2 = data + size - 1; 69 OSCL_INLINE void little_endian_to_host(char *data, uint32 size) 72 swap_byte_order(data, size); 75 OSCL_UNUSED_ARG(size); // to remove warning 'unreferenced parameter 76 // data=data; size=size; 87 \param size The number of bytes in the buffer [all...] |
/external/srec/portable/src/ |
ArrayListImpl.c | 62 impl->size = 0; 78 if (impl->size >= impl->capacity) 89 for (i = impl->size; i > index; --i) 91 ++impl->size; 100 return ArrayList_Insert_Internal(impl, impl->size, element); 107 if (index > impl->size) 115 --impl->size; 116 while (i < impl->size) 123 impl->size <= impl->capacity / 4) 143 for (i = 0; i < impl->size; ++i 218 size_t size, i; local [all...] |
/frameworks/base/docs/html/sdk/api_diff/6/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> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#R"><font size="-2">R</font></a> 54 <a href="#W"><font size="-2">W</font></a> 55 <a href="#topheader"><font size="-2">TOP</font></a> 59 <br><font size="+2">B</font> 60 <a href="#A"><font size="-2">A</font></a> 61 <a href="#R"><font size="-2">R</font></a> 62 <a href="#W"><font size="-2">W</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:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#R"><font size="-2">R</font></a> 54 <a href="#W"><font size="-2">W</font></a> 55 <a href="#topheader"><font size="-2">TOP</font></a> 59 <br><font size="+2">B</font> 60 <a href="#A"><font size="-2">A</font></a> 61 <a href="#R"><font size="-2">R</font></a> 62 <a href="#W"><font size="-2">W</font></a> [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ubitset.h | 25 /// \brief bitset is a fixed-size block of memory with addressable bits. 34 template <size_t Size> 46 static const size_t s_nWords = Size / s_WordBits + ((Size % s_WordBits) != 0); 49 inline value_type& BitRef (uoff_t n) { assert (n < Size); return (m_Bits [n / s_WordBits]); } 50 inline const value_type BitRef (uoff_t n) const { assert (n < Size); return (m_Bits [n / s_WordBits]); } 51 inline const value_type Mask (uoff_t n) const { assert (n < Size); return (1 << (n % s_WordBits)); } 60 inline size_type size (void) const { return (Size); } 68 /// Returns the value_type with the equivalent bits. If size() > 1, you'll get only the first BitsInType(value_type) bits [all...] |
/external/webkit/WebCore/history/ |
BackForwardList.cpp | 69 while (m_entries.size() > targetSize) { 79 if (m_entries.size() == m_capacity && (m_current != 0 || m_capacity == 1)) { 105 ASSERT(m_current < m_entries.size() - 1); 106 if (m_current < m_entries.size() - 1) { 114 if (!m_entries.size() || !item) 118 for (; index < m_entries.size(); ++index) 121 if (index < m_entries.size()) { 143 if (m_entries.size() && m_current < m_entries.size() - 1) 162 if (!m_entries.size()) 255 int size = m_entries.size(); local 301 int size = m_entries.size(); local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationSetItem.java | 31 /** the size of an entry int the set: one {@code uint} */ 53 this.items = new AnnotationItem[annotations.size()]; 63 * Gets the write size for the given set. 66 * @return {@code > 0;} the write size 69 // This includes an int size at the start of the list. 72 return (annotations.size() * ENTRY_WRITE_SIZE) + 4; 117 int size = items.length; local 119 for (int i = 0; i < size; i++) { 135 int size = items.length; local 139 out.annotate(4, " size: " + Hex.u4(size)) [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
TBSCertList.java | 48 if (seq.size() < 2 || seq.size() > 3) 50 throw new IllegalArgumentException("Bad sequence size: " + seq.size()); 57 if (seq.size() == 3) 119 if (seq.size() < 3 || seq.size() > 7) 121 throw new IllegalArgumentException("Bad sequence size: " + seq.size()); 141 if (seqPos < seq.size() [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_length_sequence.c | 31 unsigned long size, x, y, z, i; local 37 /* get size of output that will be required */ 41 size = list[i].size; 71 if ((err = der_length_bit_string(size, &x)) != CRYPT_OK) { 78 if ((err = der_length_octet_string(size, &x)) != CRYPT_OK) { 89 if ((err = der_length_object_identifier(data, size, &x)) != CRYPT_OK) { 96 if ((err = der_length_ia5_string(data, size, &x)) != CRYPT_OK) { 103 if ((err = der_length_printable_string(data, size, &x)) != CRYPT_OK) { 117 if ((err = der_length_utf8_string(data, size, &x)) != CRYPT_OK) [all...] |
/external/ipsec-tools/src/racoon/ |
vmbuf.c | 53 vmalloc(size) 54 size_t size; 61 var->l = size; 62 if (size == 0) { 65 var->v = (caddr_t)racoon_calloc(1, size); 76 vrealloc(ptr, size) 78 size_t size; 85 return vmalloc(size); /* zero-fill it? */ 88 if ((v = (caddr_t)racoon_realloc(ptr->v, size)) == NULL) { 93 if ( size > ptr->l [all...] |
/external/webkit/WebCore/css/ |
CSSSegmentedFontFace.cpp | 45 unsigned size = m_fontFaces.size(); local 46 for (unsigned i = 0; i < size; i++) 64 unsigned size = m_fontFaces.size(); local 65 for (unsigned i = 0; i < size; i++) { 74 unsigned size = m_fontFaces.size(); local 75 for (unsigned i = 0; i < size; i++) { 108 unsigned size = m_fontFaces.size() local [all...] |
/external/webkit/WebCore/history/cf/ |
HistoryPropertyList.cpp | 51 UInt8* HistoryPropertyListWriter::buffer(size_t size) 54 m_buffer = static_cast<UInt8*>(CFAllocatorAllocate(0, size, 0)); 55 m_bufferSize = size; 142 size_t size = redirectURLs->size(); local 143 ASSERT(size); 144 for (size_t i = 0; i < size; ++i) 148 if (size_t size = dailyVisitCounts.size()) 149 stream.writeIntegerArray(dailyVisitCounts.data(), size); [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/esf/ |
SignerLocation.java | 16 * PostalAddress ::= SEQUENCE SIZE(1..6) OF DirectoryString 45 if (postalAddress != null && postalAddress.size() > 6) 61 if (postalAddress != null && postalAddress.size() > 6) 115 * PostalAddress ::= SEQUENCE SIZE(1..6) OF DirectoryString 118 * teletexString TeletexString (SIZE (1..MAX)), 119 * printableString PrintableString (SIZE (1..MAX)), 120 * universalString UniversalString (SIZE (1..MAX)), 121 * utf8String UTF8String (SIZE (1.. MAX)), 122 * bmpString BMPString (SIZE (1..MAX)) }
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/icao/ |
LDSSecurityObject.java | 19 * dataGroupHashValues SEQUENCE SIZE (2..ub-DataGroups) OF DataHashGroup} 57 if (seq == null || seq.size() == 0) 71 checkDatagroupHashSeqSize(datagroupHashSeq.size()); 73 datagroupHash = new DataGroupHash[datagroupHashSeq.size()]; 74 for (int i= 0; i< datagroupHashSeq.size();i++) 91 private void checkDatagroupHashSeqSize(int size) 93 if ((size < 2) || (size > ub_DataGroups)) 95 throw new IllegalArgumentException("wrong size in DataGroupHashValues : not in (2.."+ ub_DataGroups +")");
|
/external/icu4c/common/ |
cmemory.h | 32 #define uprv_memcpy(dst, src, size) U_STANDARD_CPP_NAMESPACE memcpy(dst, src, size) 33 #define uprv_memmove(dst, src, size) U_STANDARD_CPP_NAMESPACE memmove(dst, src, size) 34 #define uprv_memset(buffer, mark, size) U_STANDARD_CPP_NAMESPACE memset(buffer, mark, size) 35 #define uprv_memcmp(buffer1, buffer2, size) U_STANDARD_CPP_NAMESPACE memcmp(buffer1, buffer2,size) 41 uprv_realloc(void *mem, size_t size);
|