/hardware/qcom/msm8x84/kernel-headers/media/ |
msm_media_info.h | 34 * X X X X X X X X X X X X X X X X --> Buffer size alignment 40 * Total size = align((Y_Stride * Y_Scanlines 70 * X X X X X X X X X X X X X X X X --> Padding & Buffer size alignment 76 * Total size = align((Y_Stride * Y_Scanlines 126 * X X X X X X X X X X X X X X X X --> Buffer size alignment 134 * Total size = align((2*(Y_Stride * Y_Scanlines) 146 * In the future, calculate the size based on the w/h but just 236 unsigned int uv_alignment = 0, size = 0; local 252 size = y_plane + uv_plane + extra_size; 253 size = MSM_MEDIA_ALIGN(size, 4096) [all...] |
/hardware/qcom/msm8x84/original-kernel-headers/media/ |
msm_media_info.h | 34 * X X X X X X X X X X X X X X X X --> Buffer size alignment 40 * Total size = align((Y_Stride * Y_Scanlines 70 * X X X X X X X X X X X X X X X X --> Padding & Buffer size alignment 76 * Total size = align((Y_Stride * Y_Scanlines 126 * X X X X X X X X X X X X X X X X --> Buffer size alignment 134 * Total size = align((2*(Y_Stride * Y_Scanlines) 146 * In the future, calculate the size based on the w/h but just 236 unsigned int uv_alignment = 0, size = 0; local 252 size = y_plane + uv_plane + extra_size; 253 size = MSM_MEDIA_ALIGN(size, 4096) [all...] |
/hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/ |
OMXSceneModeTables.h | 48 const unsigned int size; member in struct:Ti::Camera::CameraToSensorModesLUTEntry
|
/libcore/benchmarks/src/benchmarks/regression/ |
ByteBufferBulkBenchmark.java | 46 int size = aligned ? bsize : bsize + 8 + 1; local 50 result = ByteBuffer.allocateDirect(size); 53 result = ByteBuffer.allocate(size); 60 raf.setLength(size); 62 result = fc.map(FileChannel.MapMode.READ_WRITE, 0, fc.size());
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestFramework.java | 172 int size(Collection collection); method in interface:DOMTestFramework 174 int size(NamedNodeMap collection); method in interface:DOMTestFramework 176 int size(NodeList collection); method in interface:DOMTestFramework
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/ |
MethodLogger.java | 52 public int size() { method in class:MethodLogger 53 return methods.size(); 68 return (size() == 0 ? null : getMethod(size() - 1)); 84 return (size() == 0 ? null : getArgs(size() - 1));
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
CopyOnWriteArraySetTest.java | 40 assertEquals(n, a.size()); 50 assertEquals(elements.length, a.size()); 66 Integer[] ints = new Integer[SIZE]; 67 for (int i = 0; i < SIZE - 1; ++i) 70 for (int i = 0; i < SIZE; ++i) 80 assertEquals(6, full.size()); 82 assertEquals(6, full.size()); 92 assertEquals(5, full.size()); 94 assertEquals(5, full.size()); 103 assertEquals(3, full.size()); [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
BlockingDeque.java | 603 int size(); method in interface:BlockingDeque
|
/libcore/luni/src/main/java/libcore/util/ |
NativeAllocationRegistry.java | 36 * native function used to free the allocation and the estimated size of the 45 private final long size; field in class:NativeAllocationRegistry 63 * The <code>size</code> should be an estimate of the total number of 72 * @param size estimated size in bytes of this kind of native 74 * @throws IllegalArgumentException If <code>size</code> is negative 76 public NativeAllocationRegistry(ClassLoader classLoader, long freeFunction, long size) { 77 if (size < 0) { 78 throw new IllegalArgumentException("Invalid native allocation size: " + size); [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldAbstractMapTest.java | 70 assertEquals(0, amt.size()); 72 assertEquals(1, amt.size()); 74 assertEquals(2, amt.size()); 76 assertEquals(3, amt.size()); 81 assertEquals(0, amt.size()); 83 assertEquals(1, amt.size()); 85 assertEquals(2, amt.size()); 87 assertEquals(3, amt.size()); 115 @Override public int size() { method in class:OldAbstractMapTest.AMT 116 return entries.size(); [all...] |
/libcore/ojluni/src/main/java/java/beans/ |
ChangeListenerMap.java | 82 int size = (array != null) local 86 L[] clone = newArray(size + 1); 87 clone[size] = listener; 89 System.arraycopy(array, 0, clone, 0, size); 108 int size = array.length - 1; local 109 if (size > 0) { 110 L[] clone = newArray(size); 112 System.arraycopy(array, i + 1, clone, i, size - i); 186 return list.toArray(newArray(list.size()));
|
/libcore/ojluni/src/main/java/java/io/ |
ByteArrayOutputStream.java | 59 * initially 32 bytes, though its size increases if necessary. 67 * the specified size, in bytes. 69 * @param size the initial size. 70 * @exception IllegalArgumentException if size is negative. 72 public ByteArrayOutputStream(int size) { 73 if (size < 0) { 74 throw new IllegalArgumentException("Negative initial size: " 75 + size); 77 buf = new byte[size]; 188 public synchronized int size() { method in class:ByteArrayOutputStream [all...] |
CharArrayWriter.java | 62 * Creates a new CharArrayWriter with the specified initial size. 64 * @param initialSize an int specifying the initial buffer size. 69 throw new IllegalArgumentException("Negative initial size: " 250 * Returns the current size of the buffer. 252 * @return an int representing the current size of the buffer. 254 public int size() { method in class:CharArrayWriter
|
/libcore/ojluni/src/main/java/java/lang/ |
ProcessImpl.java | 70 int size = args.length; // For added NUL bytes local 73 size += args[i].length; 75 byte[] argBlock = new byte[size];
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
FileChannel.java | 43 * of bytes that can be read and written and whose current {@link #size 44 * <i>size</i>} can be queried. The size of the file increases 45 * when bytes are written beyond its current size; the size of the file 84 * channel's position or can change its file's size may be in progress at any 261 * current size is legal but does not change the size of the file. A later 286 * Returns the current size of this channel's file. </p> 288 * @return The current size of this channel's file 297 public abstract long size() throws IOException; method in class:FileChannel [all...] |
/libcore/ojluni/src/main/java/java/security/ |
IdentityScope.java | 173 public abstract int size(); method in class:IdentityScope 248 return super.toString() + "[" + size() + "]";
|
/libcore/ojluni/src/main/java/java/text/ |
CharacterIteratorFieldDelegate.java | 39 * for a region > size, a new instance of AttributedString is added to 49 private int size; field in class:CharacterIteratorFieldDelegate 59 if (start < size) { 61 int index = size; 62 int asIndex = attributedStrings.size() - 1; 76 if (size < start) { 79 buffer.substring(size, start))); 80 size = start; 82 if (size < end) { 84 int aStart = Math.max(start, size); [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Collection.java | 141 int size(); method in interface:Collection 201 * specified array and the size of this collection.
|
RegularEnumSet.java | 120 public int size() { method in class:RegularEnumSet 288 * the same size, and every member of the given set is contained in
|
/libcore/ojluni/src/main/java/java/util/stream/ |
SliceOps.java | 43 * Calculates the sliced size given the current size, number of elements 46 * @param size the current size 50 * @return the sliced size 52 private static long calcSize(long size, long skip, long limit) { 53 return size >= 0 ? Math.max(-1, Math.min(size - skip, limit)) : -1; 101 return size -> (T[]) new Object[size]; 134 long size = helper.exactOutputSizeIfKnown(spliterator); local 163 long size = helper.exactOutputSizeIfKnown(spliterator); local [all...] |
/libcore/ojluni/src/main/java/sun/nio/cs/ |
ThreadLocalCoders.java | 45 private final int size; field in class:ThreadLocalCoders.Cache 47 Cache(int size) { 48 this.size = size; 65 oa = new Object[size];
|
/libcore/ojluni/src/main/java/sun/security/util/ |
KeyUtil.java | 52 * Returns the key size of the given key object in bits. 55 * @return the key size of the given key object in bits, or -1 if the 56 * key size is not accessible 59 int size = -1; local 64 size = ruler.length(); 69 if (size >= 0) { 70 return size; 79 size = (sk.getEncoded().length * 8); 84 size = pubk.getModulus().bitLength(); 94 size = params.getOrder().bitLength() [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
GeneralNames.java | 38 * GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName 96 public int size() { method in class:GeneralNames 97 return names.size();
|
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
SpliteratorTestHelper.java | 218 // assert that size, tryAdvance, and forEach are consistent 220 assertEquals(sizeIfKnown, exp.size()); 222 assertEquals(fromForEach.size(), exp.size()); 248 // assert that size, tryAdvance, and forEach are consistent 250 assertEquals(sizeIfKnown, exp.size()); 252 assertEquals(fromTryAdvance.size(), exp.size()); 281 assertEquals(sizeIfKnown, dest.size()); 283 assertEquals(dest.size(), exp.size()) [all...] |
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
SpliteratorTestHelper.java | 218 // assert that size, tryAdvance, and forEach are consistent 220 assertEquals(sizeIfKnown, exp.size()); 222 assertEquals(fromForEach.size(), exp.size()); 248 // assert that size, tryAdvance, and forEach are consistent 250 assertEquals(sizeIfKnown, exp.size()); 252 assertEquals(fromTryAdvance.size(), exp.size()); 281 assertEquals(sizeIfKnown, dest.size()); 283 assertEquals(dest.size(), exp.size()) [all...] |