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

1 2 3 45 6 7 8 91011>>

  /cts/tests/src/android/provider/cts/
MediaStoreAudioTestHelper.java 103 public static final int SIZE = 2737870;
127 values.put(Media.SIZE, SIZE);
181 public static final int SIZE = 2737321;
206 values.put(Media.SIZE, SIZE);
  /external/grub/util/
grub-image 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
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
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/
elfos.h 104 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
106 SKIP_ASM_OP, (SIZE))
164 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
170 (SIZE), (ALIGN) / BITS_PER_UNIT); \
182 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
188 ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN); \
230 /* Define the strings used for the special svr4 .type and .size directives.
237 #define SIZE_ASM_OP "\t.size\t"
266 /* These macros generate the special .type and .size directives which
297 HOST_WIDE_INT size; \
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 104 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
106 SKIP_ASM_OP, (SIZE))
164 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
170 (SIZE), (ALIGN) / BITS_PER_UNIT); \
182 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
188 ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN); \
230 /* Define the strings used for the special svr4 .type and .size directives.
237 #define SIZE_ASM_OP "\t.size\t"
266 /* These macros generate the special .type and .size directives which
297 HOST_WIDE_INT size; \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/
elfos.h 104 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
106 SKIP_ASM_OP, (SIZE))
164 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
170 (SIZE), (ALIGN) / BITS_PER_UNIT); \
182 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
188 ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN); \
230 /* Define the strings used for the special svr4 .type and .size directives.
237 #define SIZE_ASM_OP "\t.size\t"
266 /* These macros generate the special .type and .size directives which
297 HOST_WIDE_INT size; \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/
elfos.h 104 #define ASM_OUTPUT_SKIP(FILE, SIZE) \
106 SKIP_ASM_OP, (SIZE))
164 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
170 (SIZE), (ALIGN) / BITS_PER_UNIT); \
182 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
188 ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN); \
230 /* Define the strings used for the special svr4 .type and .size directives.
237 #define SIZE_ASM_OP "\t.size\t"
266 /* These macros generate the special .type and .size directives which
297 HOST_WIDE_INT size; \
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatDirectoryEntry.java 34 * The size in bytes of an FAT directory entry.
36 public final static int SIZE = 32;
44 * The offset to the file size dword.
76 this(new byte[SIZE], false);
82 * The buffer must have at least {@link #SIZE} bytes remaining. The entry
84 * non-null the position will have advanced by {@link #SIZE} bytes,
95 assert (buff.remaining() >= SIZE);
103 final byte[] data = new byte[SIZE];
109 for (int i=0; i < SIZE; i++) {
208 final byte[] data = new byte[SIZE];
    [all...]
  /external/guava/guava/src/com/google/common/math/
LongMath.java 80 return (Long.SIZE - 1) - Long.numberOfLeadingZeros(x);
84 return Long.SIZE - Long.numberOfLeadingZeros(x - 1);
93 int logFloor = (Long.SIZE - 1) - leadingZeros;
213 return (k < Long.SIZE) ? 1L << k : 0;
215 if (k < Long.SIZE) {
312 int signum = 1 | (int) ((p ^ q) >> (Long.SIZE - 1));
463 * If leadingZeros > Long.SIZE + 1 it's definitely fine, if it's < Long.SIZE it's definitely
472 if (leadingZeros > Long.SIZE + 1) {
475 checkNoOverflow(leadingZeros >= Long.SIZE);
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 187 ALOGE("Invalid video size: %dx%d", width, height);
407 ALOGW("Max file size is not positive: %lld bytes. "
408 "Disabling file size limit.", bytes);
409 bytes = 0; // Disable the file size limit for zero or negative values.
411 ALOGE("Max file size is too small: %lld bytes", bytes);
416 ALOGW("Target file size (%lld bytes) is too small to be respected", bytes);
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
NullCacheTest.java 30 * {@link LoadingCache} tests for caches with a maximum size of zero.
54 assertSame(RemovalCause.SIZE, notification.getCause());
71 assertSame(RemovalCause.SIZE, notification.getCause());
88 assertSame(RemovalCause.SIZE, notification.getCause());
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 98 outputs.size());
122 for (size_t i = 0; i < outputs.size(); i++) {
164 for (size_t i = 0; i < outputs.size(); i++) {
177 for (size_t i = 0; i < mOutputs.size(); i++) {
352 for (size_t i = 0; i < mOutputs.size(); i++) {
458 for (size_t i = 0; i < mOutputs.size(); i++) {
502 for (size_t i = 0; i < mHwModules.size(); i++) {
506 for (size_t j = 0; j < mHwModules[i]->mOutputProfiles.size(); j++) {
604 for (size_t i = 0; i < mOutputs.size(); i++) {
697 if (outputs.size() == 0)
    [all...]
  /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:__anon19229::__anon19230::__anon19231
141 size_t size; \/* Size (in blocks) of a free cluster. *\/ member in struct:__anon19229::__anon19233
    [all...]
  /external/zlib/src/examples/
gun.c 76 #define SIZE 32768U /* input and output buffer sizes */
80 input file and a buffer of size SIZE */
101 if ((unsigned)ret > SIZE - len)
102 ret = (int)(SIZE - len);
110 } while (ret != 0 && len < SIZE);
161 unsigned char inbuf[SIZE]; /* input buffer */
162 unsigned char outbuf[SIZE]; /* output buffer */
267 /* if the table will be full after this, increment the code size */
350 while (stack > SIZE - outcnt)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
VoiceMailConstants.java 47 static final int SIZE = 3;
101 String[] data = new String[SIZE];
  /packages/apps/UnifiedEmail/src/com/android/mail/
MailLogService.java 59 * A circular buffer of {@value #SIZE} lines. To insert into this buffer,
65 public static final int SIZE = 50;
68 /** The current size of the buffer */
89 if (mCurrentSize == SIZE) {
90 // At capacity, we'll remove the head, and add to the tail. Size is unchanged.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DumpFileProvider.java 87 * Used to provide {@link OpenableColumns#DISPLAY_NAME} and {@link OpenableColumns#SIZE}
97 : new String[] {OpenableColumns.DISPLAY_NAME, OpenableColumns.SIZE};
110 } else if (OpenableColumns.SIZE.equals(column)) {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 201 enum { SIZE = 8 };
203 static const uint16 SIZE = 8;
229 enum { SIZE = 4 };
231 static const uint16 SIZE = 4;
308 size_t Size() const;
stun.cc 51 ASSERT(transaction_id_.size() == 16);
56 for (unsigned i = 0; i < attrs_->size(); i++)
62 ASSERT(str.size() == 16);
137 for (unsigned i = 0; i < attrs_->size(); i++) {
160 ASSERT(transaction_id.size() == 16);
198 for (unsigned i = 0; i < attrs_->size(); i++) {
219 if (length != StunAddressAttribute::SIZE)
227 if (length != StunUInt32Attribute::SIZE)
323 : StunAttribute(type, SIZE), family_(0), port_(0), ip_(0) {
347 : StunAttribute(type, SIZE), bits_(0)
    [all...]
  /external/eigen/bench/
sparse_cholesky.cpp 11 #ifndef SIZE
12 #define SIZE 10
79 int rows = SIZE;
80 int cols = SIZE;
sparse_dense_product.cpp 6 #ifndef SIZE
7 #define SIZE 650000
54 int rows = SIZE;
55 int cols = SIZE;
sparse_product.cpp 9 #ifndef SIZE
10 #define SIZE 1000000
100 int rows = SIZE;
101 int cols = SIZE;
sparse_trisolver.cpp 7 #ifndef SIZE
8 #define SIZE 10000
58 int rows = SIZE;
59 int cols = SIZE;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 33 public static final Attribute SIZE = new AttributeImpl ("SIZE");
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 210 const ssize_t SIZE = 256;
211 char scrap[SIZE];
223 if ((index>0 && (index<SIZE-1)) && (!strcmp(name+index, "OES"))) {
234 snprintf(scrap, SIZE, "%sOES", name);

Completed in 1171 milliseconds

1 2 3 45 6 7 8 91011>>