HomeSort by relevance Sort by last modified time
    Searched refs:SIZE (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /external/openssl/crypto/ui/
ui_openssl.c 308 static int noecho_fgets(char *buf, int size, FILE *tty);
397 #define SIZE 4
398 char buf[SIZE+1];
401 if (!fgets(buf,SIZE,in))
669 static int noecho_fgets(char *buf, int size, FILE *tty)
677 if (size == 0)
682 size--;
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 112 // pool's size
113 private static final int SIZE;
135 SIZE = 10;
136 KNOWN_OIDS = new ObjectIdentifier[SIZE][CAPACITY];
381 * teletexString TeletexString (SIZE (1..MAX)),
382 * printableString PrintableString (SIZE (1..MAX)),
383 * universalString UniversalString (SIZE (1..MAX)),
384 * utf8String UTF8String (SIZE (1.. MAX)),
385 * bmpString BMPString (SIZE (1..MAX)) }
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 79 public static final String SIZE = "_size";
88 AttachmentColumns.SIZE, AttachmentColumns.CONTENT_URI };
334 int size = -1; local
343 size = c.getInt(1);
365 else if (AttachmentProviderColumns.SIZE.equals(column)) {
366 values[i] = size;
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 268 values.put(Media.SIZE, 86853);
299 assertEquals(86853, c.getInt(c.getColumnIndex(Media.SIZE)));
319 values.put(Media.SIZE, 86854);
343 assertEquals(86854, c.getInt(c.getColumnIndex(Media.SIZE)));
MediaStore_Audio_Genres_MembersTest.java 153 assertEquals(Audio1.SIZE, c.getInt(c.getColumnIndex(Members.SIZE)));
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 101 if (m_footer != null) m_body.add (m_body.size (), m_footer);
173 public void addHR (final int size)
176 hr.getAttributes ().set (Attribute.SIZE, size);
  /external/webkit/WebCore/platform/wx/wxcode/win/
fontprops.cpp 128 SIZE sizeRect;
  /external/webkit/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 40 PassRefPtr<EmbeddedWidget> EmbeddedWidget::create(IWebEmbeddedView* view, Element* element, HWND parentWindow, const IntSize& size)
44 widget->createWindow(parentWindow, size);
54 bool EmbeddedWidget::createWindow(HWND parentWindow, const IntSize& size)
60 SIZE pluginSize(size);
102 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
  /libcore/luni/src/main/java/java/awt/font/
TextAttribute.java 162 /** The SIZE text attribute. */
163 public static final TextAttribute SIZE = new TextAttribute("size");
  /libcore/luni/src/main/java/java/lang/
Double.java 114 public static final int SIZE = 64;
Float.java 111 public static final int SIZE = 32;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java 114 OpenableColumns.DISPLAY_NAME, OpenableColumns.SIZE
  /external/bison/lib/
bbitset.h 29 BITSET_ARRAY: Array of bits (fixed size, fast for dense bitsets).
32 BITSET_LIST: Linked list of arrays of bits (variable size, least storage
35 (variable size, less storage for large sparse sets).
37 BITSET_VARRAY: Variable array of bits (variable size, fast for
89 bitset_windex csize; /* Cache size in words. */
119 bitset_bindex (*size) (bitset); member in struct:bitset_vtable
172 #define BITSET_RESIZE_(DST, SIZE) (DST)->b.vtable->resize (DST, SIZE)
174 /* Return size in bits of bitset SRC. */
175 #define BITSET_SIZE_(SRC) (SRC)->b.vtable->size (SRC
    [all...]
  /external/guava/src/com/google/common/primitives/
Chars.java 51 public static final int BYTES = Character.SIZE / Byte.SIZE;
307 * Otherwise, a new array of size {@code minLength + padding} is returned,
424 * Returns a fixed-size list backed by the specified array, similar to {@link
461 @Override public int size() { method in class:Chars.CharArrayAsList
470 checkElementIndex(index, size());
503 checkElementIndex(index, size());
511 int size = size(); local
512 checkPositionIndexes(fromIndex, toIndex, size);
525 int size = size(); local
558 int size = size(); local
    [all...]
Ints.java 51 public static final int BYTES = Integer.SIZE / Byte.SIZE;
316 * Otherwise, a new array of size {@code minLength + padding} is returned,
431 * Returns a fixed-size list backed by the specified array, similar to {@link
468 @Override public int size() { method in class:Ints.IntArrayAsList
477 checkElementIndex(index, size());
510 checkElementIndex(index, size());
518 int size = size(); local
519 checkPositionIndexes(fromIndex, toIndex, size);
532 int size = size(); local
565 int size = size(); local
    [all...]
Longs.java 51 public static final int BYTES = Long.SIZE / Byte.SIZE;
293 * Otherwise, a new array of size {@code minLength + padding} is returned,
409 * Returns a fixed-size list backed by the specified array, similar to {@link
446 @Override public int size() { method in class:Longs.LongArrayAsList
455 checkElementIndex(index, size());
488 checkElementIndex(index, size());
496 int size = size(); local
497 checkPositionIndexes(fromIndex, toIndex, size);
510 int size = size(); local
543 int size = size(); local
    [all...]
Shorts.java 51 public static final int BYTES = Short.SIZE / Byte.SIZE;
307 * Otherwise, a new array of size {@code minLength + padding} is returned,
423 * Returns a fixed-size list backed by the specified array, similar to {@link
460 @Override public int size() { method in class:Shorts.ShortArrayAsList
469 checkElementIndex(index, size());
502 checkElementIndex(index, size());
510 int size = size(); local
511 checkPositionIndexes(fromIndex, toIndex, size);
524 int size = size(); local
557 int size = size(); local
    [all...]
  /external/libffi/src/x86/
ffi.c 68 z = (*p_arg)->size;
147 if (cif->rtype->size == 1)
149 cif->flags = FFI_TYPE_SMALL_STRUCT_1B; /* same as char size */
151 else if (cif->rtype->size == 2)
153 cif->flags = FFI_TYPE_SMALL_STRUCT_2B; /* same as short size */
155 else if (cif->rtype->size == 4)
159 else if (cif->rtype->size == 8)
204 ecif.rvalue = alloca(cif->rtype->size);
299 z = (*p_arg)->size;
325 #define FFI_INIT_TRAMPOLINE_STDCALL(TRAMP,FUN,CTX,SIZE) \
    [all...]
  /frameworks/base/libs/camera/
CameraParameters.cpp 27 const char CameraParameters::KEY_PREVIEW_SIZE[] = "preview-size";
28 const char CameraParameters::KEY_SUPPORTED_PREVIEW_SIZES[] = "preview-size-values";
35 const char CameraParameters::KEY_PICTURE_SIZE[] = "picture-size";
36 const char CameraParameters::KEY_SUPPORTED_PICTURE_SIZES[] = "picture-size-values";
41 const char CameraParameters::KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES[] = "jpeg-thumbnail-size-values";
159 size_t size = mMap.size(); local
161 for (size_t i = 0; i < size; i++) {
169 if (i != size-1)
293 static void parseSizesList(const char *sizesStr, Vector<Size> &sizes
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 79 const size_t SIZE = 256;
80 char buffer[SIZE];
85 write(fd, result.string(), result.size());
168 LOGE("offset (%lld) bigger than file size (%llu)", offset, sb.st_size);
237 size_t size = sizeof(VideoFrame) + frame->mSize; local
238 sp<MemoryHeapBase> heap = new MemoryHeapBase(size, 0, "MetadataRetrieverClient");
244 mThumbnail = new MemoryBase(heap, 0, size);
246 LOGE("not enough memory for VideoFrame size=%u", size);
278 size_t size = sizeof(MediaAlbumArt) + albumArt->mSize local
    [all...]
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.cpp 339 int size = mWidth / 10; local
341 drawCheckerboard(buffer, size);
348 drawSquare(buffer, x*size/32, y*size/32, (size*5)>>1, (mCounter&0x100)?kRed:kGreen, kBlue);
362 void FakeCamera::drawSquare(uint16_t *dst, int x, int y, int size, int color, int shadow)
366 square_xstop = min(mWidth, x+size);
367 square_ystop = min(mHeight, y+size);
368 shadow_xstop = min(mWidth, x+size+(size/4))
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 125 public static void setImageSize(ContentResolver cr, Uri uri, long size) {
127 values.put(Images.Media.SIZE, size);
167 // Read back the compressed file size.
168 long size = new File(directory, filename).length(); local
183 values.put(Images.Media.SIZE, size);
  /frameworks/base/libs/surfaceflinger_client/
SharedBufferStack.cpp 196 const size_t SIZE = 1024;
197 char buffer[SIZE];
200 snprintf(buffer, SIZE,
SurfaceComposerClient.cpp 98 if (mOpenTransactions.size()) {
102 const size_t N = mActiveConnections.size();
126 const size_t N = clients.size();
284 const size_t SIZE = 128;
285 char buffer[SIZE];
286 snprintf(buffer, SIZE, "<pid_%d>", getpid());
389 const ssize_t count = mStates.size();
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ReentrantReadWriteLockTest.java 134 for (int i = 1; i <= SIZE; i++) {
138 for (int i = SIZE; i > 0; i--) {
149 for (int i = 1; i <= SIZE; i++) {
153 for (int i = SIZE; i > 0; i--) {
164 for (int i = 1; i <= SIZE; i++) {
168 for (int i = SIZE; i > 0; i--) {
    [all...]

Completed in 1159 milliseconds

1 2 3 45 6 7 8