HomeSort by relevance Sort by last modified time
    Searched refs:SIZE (Results 51 - 75 of 162) sorted by null

1 23 4 5 6 7

  /external/grub/util/
grub-image.in 74 # Create a new filesystem image of the specified size.
80 SIZE=`expr $tarsize \* 130 / 100 / 1024`k
81 echo "# Creating $SIZE disk image \`$image'"
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/
elfos.h 108 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
110 SKIP_ASM_OP, (SIZE))
168 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
174 (SIZE), (ALIGN) / BITS_PER_UNIT); \
186 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
192 ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN); \
234 /* Define the strings used for the special svr4 .type and .size directives.
241 #define SIZE_ASM_OP "\t.size\t"
270 /* These macros generate the special .type and .size directives which
295 HOST_WIDE_INT size; \
    [all...]
  /external/webkit/WebCore/platform/graphics/
IntSize.h 44 typedef struct tagSIZE SIZE;
118 IntSize(const SIZE&);
119 operator SIZE() const;
170 inline IntSize operator-(const IntSize& size)
172 return IntSize(-size.width(), -size.height());
Image.h 52 typedef struct tagSIZE SIZE;
53 typedef SIZE* LPSIZE;
100 bool isNull() const { return size().isEmpty(); }
108 virtual IntSize size() const = 0;
109 IntRect rect() const { return IntRect(IntPoint(), size()); }
110 int width() const { return size().width(); }
111 int height() const { return size().height(); }
157 static PassRefPtr<Image> loadPlatformThemeIcon(const char* name, int size);
  /external/e2fsprogs/e2fsck/
mtrace.h 60 /* Allocate SIZE bytes of memory. */
63 in __ptr_t, making the new block SIZE bytes long. */
65 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */
70 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */
73 /* Allocate SIZE bytes on a page boundary. */
99 /* The allocator divides the heap into blocks of fixed size; large
102 and all fragments of a block are the same size. When all the
107 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
124 logarithm to the base two of the fragment size. *
134 size_t size; member in union:__anon1664::__anon1665::__anon1666
141 size_t size; \/* Size (in blocks) of a free cluster. *\/ member in struct:__anon1664::__anon1668
    [all...]
  /external/zlib/examples/
gun.c 72 #define SIZE 32768U /* input and output buffer sizes */
76 input file and a buffer of size SIZE */
97 if ((unsigned)ret > SIZE - len)
98 ret = (int)(SIZE - len);
106 } while (ret != 0 && len < SIZE);
157 unsigned char inbuf[SIZE]; /* input buffer */
158 unsigned char outbuf[SIZE]; /* output buffer */
262 /* if the table will be full after this, increment the code size */
343 while (stack > SIZE - outcnt)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
VoiceMailConstants.java 47 static final int SIZE = 3;
101 String[] data = new String[SIZE];
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
CopyOnWriteArraySetTest.java 30 assertEquals(n, a.size());
46 Integer[] ints = new Integer[SIZE];
47 for (int i = 0; i < SIZE-1; ++i)
50 for (int i = 0; i < SIZE; ++i)
65 assertEquals(6, full.size());
79 assertEquals(5, full.size());
88 assertEquals(3, full.size());
107 assertEquals(0, full.size());
208 assertEquals(1, full.size());
219 assertEquals(2, full.size());
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 33 public static final Attribute SIZE = new AttributeImpl ("SIZE");
  /packages/apps/Contacts/tests/src/com/android/contacts/
RecentCallsListActivityTests.java 116 final int SIZE = 100;
117 mList = new View[SIZE];
121 insertRandomEntries(SIZE / 2);
133 insertRandomEntries(SIZE / 2);
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.cpp 209 for (size_t index = 0; index < mInputs.size(); index++) {
937 LOGI("Firmware %s size %d\n", fn, remaining);
940 LOGE("File %s size %d exceeds internal limit %d\n",
    [all...]
  /frameworks/base/libs/audioflinger/
AudioPolicyService.cpp 361 const size_t SIZE = 256;
362 char buffer[SIZE];
365 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpPolicyManager);
367 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
369 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
372 write(fd, result.string(), result.size());
384 write(fd, result.string(), result.size());
406 const size_t SIZE = 256;
407 char buffer[SIZE];
409 snprintf(buffer, SIZE, "Permission Denial:
    [all...]
AudioFlinger.cpp 167 const size_t SIZE = 256;
168 char buffer[SIZE];
172 for (size_t i = 0; i < mClients.size(); ++i) {
177 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
182 write(fd, result.string(), result.size());
189 const size_t SIZE = 256;
190 char buffer[SIZE];
194 snprintf(buffer, SIZE, "Hardware status: %d\n", hardwareStatus);
196 write(fd, result.string(), result.size());
202 const size_t SIZE = 256
755 size_t size = mNotificationClients.size(); local
1614 size_t size = mTracks.size(); local
1648 size_t size = tracks.size(); local
2320 size_t size = sizeof(audio_track_cblk_t); local
3054 size_t size = mBufferQueue.size(); local
    [all...]
  /frameworks/base/awt/javax/imageio/stream/
ImageInputStreamImpl.java 361 * The Constant SIZE.
363 private static final int SIZE = 10;
368 private long[] values = new long[SIZE];
409 * @param size
410 * the size.
412 private void ensure(int size) {
413 long[] arr = new long[Math.max(2 * values.length, size)];
  /frameworks/base/core/java/android/provider/
DrmStore.java 65 * The size of the file in bytes
68 public static final String SIZE = "_size";
150 long size = stream.available(); local
164 values.put(DrmStore.Columns.SIZE, size);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_MediaTest.java 112 assertEquals(Audio1.SIZE, c.getInt(c.getColumnIndex(Media.SIZE)));
159 assertEquals(Audio2.SIZE, c.getInt(c.getColumnIndex(Media.SIZE)));
MediaStore_Video_MediaTest.java 82 values.put(Media.SIZE, 86853);
118 assertEquals(86853, c.getInt(c.getColumnIndex(Media.SIZE)));
143 values.put(Media.SIZE, 86854);
172 assertEquals(86854, c.getInt(c.getColumnIndex(Media.SIZE)));
  /dalvik/libcore/luni/src/main/java/java/lang/
Byte.java 50 public static final int SIZE = 8;
Short.java 51 public static final int SIZE = 16;
  /external/webkit/WebKit/win/Interfaces/
IWebFramePrivate.idl 61 HRESULT scrollOffset([out, retval] SIZE* offset);
75 HRESULT size([out, retval] SIZE* size);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
output.h 186 /* Output assembler code associated with defining the size of the
210 /* Assemble code to leave SIZE bytes of zeros. */
238 object. SIZE is the number of bytes in the object and ALIGNED_P
253 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
261 object and SIZE is the number of bytes it contains. */
262 #define assemble_aligned_integer(SIZE, VALUE) \
263 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1)
266 /* Assemble the floating-point constant D into an object of size MODE. */
273 /* Return the size of the constant pool. *
    [all...]
defaults.h 122 #define ASM_OUTPUT_TLS_COMMON(FILE, DECL, NAME, SIZE) \
128 (SIZE), DECL_ALIGN (DECL) / BITS_PER_UNIT); \
222 /* How to emit a .size directive. */
225 #define ASM_OUTPUT_SIZE_DIRECTIVE(STREAM, NAME, SIZE) \
228 HOST_WIDE_INT size_ = (SIZE); \
425 /* `bool' has size and alignment `1', on almost all platforms. */
682 #define LARGEST_EXPONENT_IS_NORMAL(SIZE) 0
839 /* This macro is used to determine what the largest unit size that
  /external/openssl/apps/
enc.c 72 int set_hex(char *in,unsigned char *out,int size);
73 #undef SIZE
77 #define SIZE (512)
296 BIO_printf(bio_err,"%-14s buffer size\n","-bufsize <n>");
360 strbuf=OPENSSL_malloc(SIZE);
416 i=EVP_read_pw_string((char *)strbuf,SIZE,buf,enc);
532 OPENSSL_cleanse(str,SIZE);
664 int set_hex(char *in, unsigned char *out, int size)
670 if (n > (size*2))
675 memset(out,0,size);
    [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/media/libmediaplayerservice/
MediaPlayerService.cpp 137 size_t size = num * sizeof(Metadata::Type); local
140 if (p.dataAvail() < size)
142 LOGE("Filter too short expected %d but got %d", size, p.dataAvail());
148 static_cast<const Metadata::Type*>(p.readInplace(size));
305 const size_t SIZE = 256;
306 char buffer[SIZE];
311 snprintf(buffer, 255, " heap base(%p), size(%d), flags(%d), device(%s)\n",
318 snprintf(buffer, 255, " sample rate(%d), size(%d), error(%d), command complete(%s)\n",
321 ::write(fd, result.string(), result.size());
327 const size_t SIZE = 256
397 size_t size() const { function in struct:android::MyString8
415 size_t size; member in struct:android::__anon7315
    [all...]

Completed in 642 milliseconds

1 23 4 5 6 7