HomeSort by relevance Sort by last modified time
    Searched refs:initialSize (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
FixedBuffer.h 21 FixedBuffer(size_t initialSize = 0) {
23 m_bufferLen = initialSize;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ConcurrentMapInterfaceTest.java 82 int initialSize = map.size();
87 assertEquals(initialSize + 1, map.size());
113 int initialSize = map.size();
119 assertEquals(initialSize, map.size());
143 int initialSize = map.size();
161 assertEquals(initialSize, map.size());
177 int initialSize = map.size();
195 assertEquals(initialSize, map.size());
211 int initialSize = map.size();
228 assertEquals(initialSize, map.size())
    [all...]
MapInterfaceTest.java 469 int initialSize = map.size();
475 assertEquals(initialSize - 1, map.size());
509 int initialSize = map.size();
512 assertEquals(initialSize - 1, map.size());
537 int initialSize = map.size();
547 assertEquals(initialSize, map.size());
564 int initialSize = map.size();
574 assertEquals(initialSize, map.size());
620 int initialSize = map.size();
634 assertEquals(initialSize, map.size())
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
ShaderExecutable.h 52 UniformStorage(size_t initialSize)
53 : mSize(initialSize)
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 61 int initialSize = computeInitialSampleSize(
64 return initialSize <= 8
65 ? Utils.nextPowerOf2(initialSize)
66 : (initialSize + 7) / 8 * 8;
89 int initialSize = Math.max(w / minSideLength, h / minSideLength);
90 if (initialSize <= 1) return 1;
92 return initialSize <= 8
93 ? Utils.prevPowerOf2(initialSize)
94 : initialSize / 8 * 8;
99 int initialSize = (int) FloatMath.floor(1f / scale)
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 61 int initialSize = computeInitialSampleSize(
64 return initialSize <= 8
65 ? Utils.nextPowerOf2(initialSize)
66 : (initialSize + 7) / 8 * 8;
89 int initialSize = Math.max(w / minSideLength, h / minSideLength);
90 if (initialSize <= 1) return 1;
92 return initialSize <= 8
93 ? Utils.prevPowerOf2(initialSize)
94 : initialSize / 8 * 8;
99 int initialSize = (int) FloatMath.floor(1f / scale)
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java 61 int initialSize = computeInitialSampleSize(
64 return initialSize <= 8
65 ? Utils.nextPowerOf2(initialSize)
66 : (initialSize + 7) / 8 * 8;
89 int initialSize = Math.max(w / minSideLength, h / minSideLength);
90 if (initialSize <= 1) return 1;
92 return initialSize <= 8
93 ? Utils.prevPowerOf2(initialSize)
94 : initialSize / 8 * 8;
99 int initialSize = (int) FloatMath.floor(1f / scale)
    [all...]
  /libcore/luni/src/main/java/java/io/
StringWriter.java 47 * allocated with a size of {@code initialSize} characters. The {@code
51 * @param initialSize
54 public StringWriter(int initialSize) {
55 if (initialSize < 0) {
56 throw new IllegalArgumentException("initialSize < 0: " + initialSize);
58 buf = new StringBuffer(initialSize);
CharArrayWriter.java 54 * with the size of {@code initialSize} characters. The buffer is also used
57 * @param initialSize
60 * if {@code initialSize < 0}.
62 public CharArrayWriter(int initialSize) {
63 if (initialSize < 0) {
66 buf = new char[initialSize];
  /external/javassist/src/main/javassist/bytecode/
LongVector.java 30 public LongVector(int initialSize) {
31 int vsize = ((initialSize >> ABITS) & ~(VSIZE - 1)) + VSIZE;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
ShaderExecutable11.cpp 77 UniformStorage11::UniformStorage11(Renderer11 *renderer, size_t initialSize)
78 : UniformStorage(initialSize),
83 if (initialSize > 0)
86 constantBufferDescription.ByteWidth = initialSize;
ShaderExecutable11.h 48 UniformStorage11(Renderer11 *renderer, size_t initialSize);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
FixedBuffer.h 21 FixedBuffer(size_t initialSize = 0) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 39 * size of <code>initialSize</code> characters. The StringBuffer is also
42 public Support_StringWriter(int initialSize) {
43 if (initialSize >= 0) {
44 buf = new StringBuffer(initialSize);
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 39 * size of <code>initialSize</code> characters. The StringBuffer is also
42 public Support_StringWriter(int initialSize) {
43 if (initialSize >= 0) {
44 buf = new StringBuffer(initialSize);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 77 * @param initialSize the initial size of the buffer
80 public UnboundedFifoByteBuffer(int initialSize) {
81 if (initialSize <= 0) {
84 buffer = new byte[initialSize + 1];
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioArray.h 61 unsigned initialSize = sizeof(T) * n;
80 if (initialSize + extraAllocationBytes < initialSize)
83 T* allocation = static_cast<T*>(fastMalloc(initialSize + extraAllocationBytes));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapRemoveTester.java 44 int initialSize = getMap().size();
48 initialSize - 1, getMap().size());
64 int initialSize = getMap().size();
68 initialSize - 1, getMap().size());
ListRemoveTester.java 44 int initialSize = getList().size();
53 initialSize - 1, getList().size());
CollectionRemoveTester.java 45 int initialSize = collection.size();
49 initialSize - 1, collection.size());
65 int initialSize = collection.size();
68 initialSize - 1, collection.size());
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMultimapAsMapImplementsMapTest.java 77 int initialSize = map.size();
83 assertEquals(initialSize - 1, map.size());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 98 protected Point getInitialLocation(Point initialSize) {
109 int maxX = windowBounds.x + windowBounds.width - initialSize.x;
110 int maxY = windowBounds.y + windowBounds.height - initialSize.y;
126 int x = windowBounds.x + (windowBounds.width - initialSize.x) / 2;
127 int y = windowBounds.y + (windowBounds.height - initialSize.y) / 2;
  /frameworks/base/cmds/wm/src/com/android/commands/wm/
Wm.java 89 Point initialSize = new Point();
92 mWm.getInitialDisplaySize(Display.DEFAULT_DISPLAY, initialSize);
94 System.out.println("Physical size: " + initialSize.x + "x" + initialSize.y);
95 if (!initialSize.equals(baseSize)) {
  /frameworks/base/tools/preload/
WritePreloadedClassFile.java 92 int initialSize = toPreload.size();
93 System.out.println(initialSize
109 System.out.println("Added " + (toPreload.size() - initialSize)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBufferTest.cpp 245 IntSize initialSize(initialWidth, initialHeight);
251 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
269 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
275 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
288 IntSize initialSize(initialWidth, initialHeight);
470 IntSize initialSize(initialWidth, initialHeight);
478 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
518 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
526 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());

Completed in 1731 milliseconds

1 2 3 4 5 6 7