/external/e2fsprogs/resize/ |
resize2fs.8.in | 29 .I size 37 If the filesystem is mounted, it can be used to expand the size of the 43 .I size 44 parameter specifies the requested new size of the filesystem. 46 .I size 49 .I size 54 .I size 55 of the filesystem may never be larger than the size of the partition. 57 .I size 58 parameter is not specified, it will default to the size of the partition [all...] |
extent.c | 23 int size; member in struct:ext2_extent_entry 29 int size; member in struct:_ext2_extent 37 errcode_t ext2fs_create_extent_table(ext2_extent *ret_extent, int size) 47 extent->size = size ? size : 50; 53 extent->size, &extent->list); 59 sizeof(struct ext2_extent_entry) * extent->size); 72 extent->size = 0; 87 if (extent->num >= extent->size) { [all...] |
/external/stlport/test/unit/ |
copy_test.cpp | 52 const size_t size = sizeof(a) / sizeof(a[0]); local 53 volatile int va[size]; 54 copy(a, a + size, va); 55 for (size_t i = 0; i != size; ++i) { 62 const size_t size = sizeof(a) / sizeof(a[0]); local 63 volatile int va[size]; 64 copy(a, a + size, va); 65 for (size_t i = 0; i != size; ++i) { 74 const size_t size = sizeof(a) / sizeof(a[0]); 75 const volatile int va[size] = {5, 4, 3, 2, 1, 0}; [all...] |
/external/webkit/WebCore/html/ |
HTMLFontElement.cpp | 45 // Returns 10 for any size greater than 9. 46 static bool parseFontSizeNumber(const String& s, int& size) 75 size = num + 3; 81 size = num == 1 ? 2 : 1; 85 size = num; 101 bool HTMLFontElement::cssValueFromFontSizeNumber(const String& s, int& size) 109 size = CSSValueSmall; 113 size = CSSValueMedium; 116 size = CSSValueLarge; 119 size = CSSValueXLarge; 136 int size; local 167 String HTMLFontElement::size() const function in class:WebCore::HTMLFontElement [all...] |
/external/webkit/JavaScriptCore/wtf/ |
Vector.h | 58 template <size_t size, size_t alignment> struct AlignedBuffer; 59 template <size_t size> struct AlignedBuffer<size, 1> { AlignedBufferChar buffer[size]; }; 60 template <size_t size> struct AlignedBuffer<size, 2> { WTF_ALIGNED(AlignedBufferChar, buffer[size], 2); }; 61 template <size_t size> struct AlignedBuffer<size, 4> { WTF_ALIGNED(AlignedBufferChar, buffer[size], 4); } 503 size_t size() const { return m_size; } function in class:WTF::Vector [all...] |
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
fields_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> 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...] |
/frameworks/base/docs/html/sdk/api_diff/4/changes/ |
fields_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> 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="#I"><font size="-2">I</font></a> 59 <a href="#L"><font size="-2">L</font></a> [all...] |
fields_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> 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="#I"><font size="-2">I</font></a> 59 <a href="#L"><font size="-2">L</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/8/changes/ |
fields_index_additions.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="#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="#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...] |
/external/guava/src/com/google/common/base/ |
Preconditions.java | 262 * list or string of size {@code size}. An element index may range from zero, 263 * inclusive, to {@code size}, exclusive. 267 * @param size the size of that array, list or string 270 * less than {@code size} 271 * @throws IllegalArgumentException if {@code size} is negative 273 public static int checkElementIndex(int index, int size) { 274 return checkElementIndex(index, size, "index"); 279 * list or string of size {@code size}. An element index may range from zero [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
PlatformAddressFactory.java | 36 * A mask with all bits set, matching the size of the cache. 63 * @param size the size of the memory in bytes 66 private static PlatformAddress make(int value, long size) { 71 return new PlatformAddress(value, size); 76 public synchronized static PlatformAddress on(int value, long size) { 85 new PlatformAddress(value, size); 87 if (cachedObj.osaddr == value && cachedObj.size == size) { 93 new PlatformAddress(value, size); [all...] |
/external/guava/src/com/google/common/collect/ |
RegularImmutableList.java | 37 private final transient int size; field in class:RegularImmutableList 40 RegularImmutableList(Object[] array, int offset, int size) { 42 this.size = size; 50 public int size() { method in class:RegularImmutableList 51 return size; 65 return (UnmodifiableIterator<E>) Iterators.forArray(array, offset, size); 69 Object[] newArray = new Object[size()]; 70 Platform.unsafeArrayCopy(array, offset, newArray, 0, size); 75 if (other.length < size) { [all...] |
/external/opencore/fileformats/mp4/composer/src/ |
moviefragmentatom.cpp | 55 for (uint32 ii = 0; ii < _pTrafList->size(); ii++) 77 // no need to recompute size. that is called by trun for parent 88 if (_pTrafList->size() != 0) 90 for (uint32 ii = 0; ii < _pTrafList->size(); ii++) 103 PVA_FF_MovieFragmentAtom::addSampleToFragment(uint32 trackId, uint32 size, 110 pTrafAtom->addSampleToFragment(size, ts, flags, baseOffset, otrunStart); 129 if (_pTrafList->size() != 0) 131 for (uint32 ii = 0; ii < _pTrafList->size(); ii++) 154 if (_pTrafList->size() != 0) 156 for (uint32 ii = 0; ii < _pTrafList->size(); ii++ 203 int32 size = getDefaultSize(); local [all...] |
samplesizeatom.cpp | 20 size of each sample. 54 PVA_FF_SampleSizeAtom::nextSample(uint32 size) 61 addNextSampleSize(size); 70 PVA_FF_SampleSizeAtom::addNextSampleSize(uint32 size) 72 if (_psampleSizeVec->size() == 0) // empty vector - either no samples or all samples same size 74 if (_sampleSize != size) // New size different from existing 78 _sampleSize = size; 81 else // New sample differs from all other sample that were the same size 156 int32 size = getDefaultSize(); local [all...] |
/frameworks/base/libs/binder/ |
MemoryDealer.cpp | 115 const sp<IMemoryHeap>& heap, ssize_t offset, size_t size); 129 SimpleBestFitAllocator(size_t size); 132 size_t allocate(size_t size, uint32_t flags = 0); 134 size_t size() const; 141 chunk_t(size_t start, size_t size) 142 : start(start), size(size), free(1), prev(0), next(0) { 145 size_t size : 28; member in struct:android::SimpleBestFitAllocator::chunk_t 151 ssize_t alloc(size_t size, uint32_t flags); 166 const sp<IMemoryHeap>& heap, ssize_t offset, size_t size) 204 size_t size = end-start; local 284 size_t SimpleBestFitAllocator::size() const function in class:android::SimpleBestFitAllocator 427 size_t size = 0; local [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabasePerformanceTests.java | 197 private static final int SIZE = 1000; 199 private String[] statements = new String[SIZE]; 206 for (int i = 0; i < SIZE; i++) { 219 for (int i = 0; i < SIZE; i++) { 230 private static final int SIZE = 1000; 232 private String[] statements = new String[SIZE]; 239 for (int i = 0; i < SIZE; i++) { 253 for (int i = 0; i < SIZE; i++) { 264 private static final int SIZE = 100; 267 private String[] where = new String[SIZE]; [all...] |
NewDatabasePerformanceTests.java | 108 private static final int SIZE = 10 * kMultiplier; 110 private String[] statements = new String[SIZE]; 117 for (int i = 0; i < SIZE; i++) { 129 for (int i = 0; i < SIZE; i++) { 140 private static final int SIZE = 10 * kMultiplier; 142 private String[] statements = new String[SIZE]; 149 for (int i = 0; i < SIZE; i++) { 162 for (int i = 0; i < SIZE; i++) { 173 private static final int SIZE = 1 * kMultiplier; 176 private String[] where = new String[SIZE]; [all...] |
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
DelayQueueTest.java | 118 * Create a queue of given size containing consecutive 130 assertEquals(n, q.size()); 157 PDelay[] ints = new PDelay[SIZE]; 169 PDelay[] ints = new PDelay[SIZE]; 170 for (int i = 0; i < SIZE-1; ++i) 183 PDelay[] ints = new PDelay[SIZE]; 184 for (int i = 0; i < SIZE; ++i) 187 for (int i = 0; i < SIZE; ++i) 210 * but size does 213 DelayQueue q = populatedQueue(SIZE); [all...] |
AtomicIntegerArrayTest.java | 27 * constructor creates array of given size with all elements zero 30 AtomicIntegerArray ai = new AtomicIntegerArray(SIZE); 31 for (int i = 0; i < SIZE; ++i) 49 * constructor with array is of same size and has all elements 63 AtomicIntegerArray ai = new AtomicIntegerArray(SIZE); 65 ai.get(SIZE); 73 ai.set(SIZE, 0); 86 AtomicIntegerArray ai = new AtomicIntegerArray(SIZE); 87 for (int i = 0; i < SIZE; ++i) { 101 AtomicIntegerArray ai = new AtomicIntegerArray(SIZE); [all...] |
AtomicLongArrayTest.java | 25 * constructor creates array of given size with all elements zero 28 AtomicLongArray ai = new AtomicLongArray(SIZE); 29 for (int i = 0; i < SIZE; ++i) 47 * constructor with array is of same size and has all elements 61 AtomicLongArray ai = new AtomicLongArray(SIZE); 63 ai.get(SIZE); 71 ai.set(SIZE, 0); 84 AtomicLongArray ai = new AtomicLongArray(SIZE); 85 for (int i = 0; i < SIZE; ++i) { 99 AtomicLongArray ai = new AtomicLongArray(SIZE); [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
alldiffs_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;"> 53 <a href="#A"><font size="-2">A</font></a> 54 <a href="#B"><font size="-2">B</font></a> 55 <a href="#C"><font size="-2">C</font></a> 56 <a href="#D"><font size="-2">D</font></a> 57 <a href="#E"><font size="-2">E</font></a> 58 <a href="#F"><font size="-2">F</font></a> 59 <a href="#G"><font size="-2">G</font></a> 60 <a href="#H"><font size="-2">H</font></a> 61 <a href="#I"><font size="-2">I</font></a> [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
DEROutputStream.java | 22 int size = 1; local 27 size++; 30 write((byte)(size | 0x80)); 32 for (int i = (size - 1) * 8; i >= 0; i -= 8)
|
/external/dropbear/libtommath/ |
bn_mp_unsigned_bin_size.c | 18 /* get the size for an unsigned equivalent */ 21 int size = mp_count_bits (a); local 22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
|
/external/kernel-headers/original/linux/ |
limits.h | 11 #define MAX_CANON 255 /* size of the canonical input queue */ 12 #define MAX_INPUT 255 /* size of the type-ahead buffer */ 17 #define XATTR_SIZE_MAX 65536 /* size of an extended attribute value (64k) */ 18 #define XATTR_LIST_MAX 65536 /* size of extended attribute namelist (64k) */
|
/external/oprofile/daemon/ |
opd_ibs_trans.h | 27 extern void trans_ibs_fetch (struct transient * trans, unsigned int selected_flag, unsigned int size); 28 extern void trans_ibs_op (struct transient * trans, unsigned int selected_flag, unsigned int size); 29 extern void trans_ibs_op_ls (struct transient * trans, unsigned int selected_flag, unsigned int size); 30 extern void trans_ibs_op_nb (struct transient * trans, unsigned int selected_flag, unsigned int size);
|