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

1 2 3 4 5 67 8 91011>>

  /external/e2fsprogs/e2fsck/
crc32.c 534 #define SIZE 64
540 unsigned char buf1[SIZE + 4];
541 unsigned char buf2[SIZE + 4];
542 unsigned char buf3[SIZE + 4];
547 for (i = 0; i <= SIZE; i++) {
  /frameworks/native/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)
203 size_t size = end-start; local
288 size_t SimpleBestFitAllocator::size() const function in class:android::SimpleBestFitAllocator
431 size_t size = 0; local
    [all...]
  /frameworks/native/services/sensorservice/
mat.h 133 size_type size() const { return R*C; } function in class:android::mat
264 size_type size() const { return R; } function in class:android::mat
325 size_t SIZE
327 mat<TYPE, SIZE, 1> PURE transpose(const VEC<TYPE, SIZE>& v) {
328 mat<TYPE, SIZE, 1> r;
329 for (size_t i=0 ; i<SIZE ; i++)
  /frameworks/support/tests/java/android/support/v4/content/
FileProviderTest.java 20 import static android.provider.OpenableColumns.SIZE;
179 assertEquals(TEST_DATA.length, cursor.getLong(cursor.getColumnIndex(SIZE)));
191 SIZE, DISPLAY_NAME }, null, null, null);
202 DISPLAY_NAME, SIZE }, null, null, null);
219 SIZE, "foobar", DISPLAY_NAME }, null, null, null);
  /frameworks/av/services/audioflinger/
Threads.cpp 107 // minimum normal mix buffer size, expressed in milliseconds rather than frames
109 // maximum normal mix buffer size
121 // multiplier is calculated based on min & max normal mixer buffer size
123 // multiplier is calculated based on min & max normal mixer buffer size
136 // IAudioFlinger::createTrack() reports back to client the total size of shared memory area
286 for (size_t i = 0; i < mConfigEvents.size(); i++) {
355 ALOGV("sendIoConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event,
366 mConfigEvents.size(), pid, tid, prio);
374 ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
410 const size_t SIZE = 256
961 size_t size = mEffectChains.size(); local
973 size_t size = mEffectChains.size(); local
1996 size_t size = mTracks.size(); local
2059 size_t size = mEffectChains.size(); local
    [all...]
Effects.cpp 110 size_t size = mHandles.size(); local
113 for (i = 0; i < size; i++) {
145 size_t size = mHandles.size(); local
147 for (i = 0; i < size; i++) {
152 if (i == size) {
153 return size;
169 if (mHandles.size() == 0 && !mPinned) {
173 return mHandles.size();
308 uint32_t size; local
416 uint32_t size = sizeof(status_t); local
444 uint32_t size = sizeof(status_t); local
483 uint32_t size = sizeof(status_t); local
536 uint32_t size = (replySize == NULL) ? 0 : *replySize; local
651 uint32_t size = sizeof(volume); local
684 uint32_t size = sizeof(status_t); local
706 uint32_t size = sizeof(status_t); local
728 uint32_t size = 0; local
776 uint32_t size = sizeof(status_t); local
1099 int size = *p++; local
1229 size_t size = mEffects.size(); local
1242 size_t size = mEffects.size(); local
1257 size_t size = mEffects.size(); local
1317 size_t size = mEffects.size(); local
1372 size_t size = mEffects.size(); local
1448 size_t size = mEffects.size(); local
1481 size_t size = mEffects.size(); local
1490 size_t size = mEffects.size(); local
1499 size_t size = mEffects.size(); local
1512 size_t size = mEffects.size(); local
1786 size_t size = mEffects.size(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowParcel.java 72 return calculateSizeToIndex(parcelData.size());
86 int size = 0; local
88 size += parcelData.get(i).first;
90 return size;
94 int size = 0; local
95 for (int i = 0; i < parcelData.size(); i++) {
96 if (size >= pos) {
99 size += parcelData.get(i).first;
101 return parcelData.size();
126 addValueToList(Pair.create(Integer.SIZE / 8, i))
    [all...]
  /development/build/tools/
mk_sdk_repo_xml.sh 382 SIZE=$( stat -f %z "$SRC" )
384 SIZE=$( stat -c %s "$SRC" )
390 <sdk:size>$SIZE</sdk:size>
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
read_pwd.c 207 static int noecho_fgets(char *buf, int size, FILE *tty);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify)
231 memset(buf,0,size);
232 memset(buff,0,size);
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify)
240 memset(buf,0,size);
241 memset(buff,0,size);
249 #define SIZE 4
250 char buf[SIZE+1];
253 fgets(buf,SIZE,in)
    [all...]
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 141 for (int i = powersOf10.size() - 1; i >= 0; i--) {
293 int approxSize = IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
323 if (normalizedBits + productBits >= Long.SIZE) {
340 return listProduct(nums, 0, nums.size());
388 return x.bitLength() <= Long.SIZE - 1;
  /external/guava/guava/src/com/google/common/primitives/
Ints.java 54 public static final int BYTES = Integer.SIZE / Byte.SIZE;
61 public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
331 * Otherwise, a new array of size {@code minLength + padding} is returned,
448 * Returns a fixed-size list backed by the specified array, similar to {@link
485 @Override public int size() { method in class:Ints.IntArrayAsList
494 checkElementIndex(index, size());
527 checkElementIndex(index, size());
534 int size = size(); local
548 int size = size(); local
581 int size = size(); local
    [all...]
Longs.java 51 public static final int BYTES = Long.SIZE / Byte.SIZE;
58 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
315 * Otherwise, a new array of size {@code minLength + padding} is returned,
433 * Returns a fixed-size list backed by the specified array, similar to {@link
470 @Override public int size() { method in class:Longs.LongArrayAsList
479 checkElementIndex(index, size());
512 checkElementIndex(index, size());
519 int size = size(); local
533 int size = size(); local
566 int size = size(); local
    [all...]
Shorts.java 51 public static final int BYTES = Short.SIZE / Byte.SIZE;
58 public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2);
328 * Otherwise, a new array of size {@code minLength + padding} is returned,
446 * Returns a fixed-size list backed by the specified array, similar to {@link
483 @Override public int size() { method in class:Shorts.ShortArrayAsList
492 checkElementIndex(index, size());
525 checkElementIndex(index, size());
532 int size = size(); local
546 int size = size(); local
579 int size = size(); local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Ints.java 49 public static final int BYTES = Integer.SIZE / Byte.SIZE;
56 public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
275 * Otherwise, a new array of size {@code minLength + padding} is returned,
392 * Returns a fixed-size list backed by the specified array, similar to {@link
429 @Override public int size() { method in class:Ints.IntArrayAsList
438 checkElementIndex(index, size());
471 checkElementIndex(index, size());
478 int size = size(); local
492 int size = size(); local
525 int size = size(); local
    [all...]
Longs.java 49 public static final int BYTES = Long.SIZE / Byte.SIZE;
56 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
248 * Otherwise, a new array of size {@code minLength + padding} is returned,
366 * Returns a fixed-size list backed by the specified array, similar to {@link
403 @Override public int size() { method in class:Longs.LongArrayAsList
412 checkElementIndex(index, size());
445 checkElementIndex(index, size());
452 int size = size(); local
466 int size = size(); local
499 int size = size(); local
    [all...]
Shorts.java 49 public static final int BYTES = Short.SIZE / Byte.SIZE;
56 public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2);
276 * Otherwise, a new array of size {@code minLength + padding} is returned,
394 * Returns a fixed-size list backed by the specified array, similar to {@link
431 @Override public int size() { method in class:Shorts.ShortArrayAsList
440 checkElementIndex(index, size());
473 checkElementIndex(index, size());
480 int size = size(); local
494 int size = size(); local
527 int size = size(); local
    [all...]
  /external/openssl/crypto/des/
read_pwd.c 207 static int noecho_fgets(char *buf, int size, FILE *tty);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify)
231 memset(buf,0,size);
232 memset(buff,0,size);
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify)
240 memset(buf,0,size);
241 memset(buff,0,size);
249 #define SIZE 4
250 char buf[SIZE+1];
253 fgets(buf,SIZE,in)
    [all...]
  /frameworks/av/drm/drmserver/
DrmManagerService.cpp 44 if (0 >= trustedUids.size()) {
274 const size_t SIZE = 256;
275 char buffer[SIZE];
278 snprintf(buffer, SIZE, "Permission Denial: "
286 for (size_t i = 0; i < args.size(); i++) {
296 write(fd, result.string(), result.size());
  /frameworks/native/libs/ui/
FramebufferNativeWindow.cpp 204 const size_t SIZE = 4096;
205 char buffer[SIZE];
207 fbDev->dump(fbDev, buffer, SIZE);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
output.h 199 /* Output assembler code associated with defining the size of the
223 /* Assemble code to leave SIZE bytes of zeros. */
251 object. SIZE is the number of bytes in the object and ALIGNED_P
266 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
278 object and SIZE is the number of bytes it contains. */
279 #define assemble_aligned_integer(SIZE, VALUE) \
280 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1)
283 /* Assemble the floating-point constant D into an object of size MODE. */
290 /* Return the size of the constant pool. *
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
output.h 199 /* Output assembler code associated with defining the size of the
223 /* Assemble code to leave SIZE bytes of zeros. */
251 object. SIZE is the number of bytes in the object and ALIGNED_P
266 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
278 object and SIZE is the number of bytes it contains. */
279 #define assemble_aligned_integer(SIZE, VALUE) \
280 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1)
283 /* Assemble the floating-point constant D into an object of size MODE. */
290 /* Return the size of the constant pool. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
output.h 199 /* Output assembler code associated with defining the size of the
223 /* Assemble code to leave SIZE bytes of zeros. */
251 object. SIZE is the number of bytes in the object and ALIGNED_P
266 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
278 object and SIZE is the number of bytes it contains. */
279 #define assemble_aligned_integer(SIZE, VALUE) \
280 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1)
283 /* Assemble the floating-point constant D into an object of size MODE. */
290 /* Return the size of the constant pool. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
output.h 199 /* Output assembler code associated with defining the size of the
223 /* Assemble code to leave SIZE bytes of zeros. */
251 object. SIZE is the number of bytes in the object and ALIGNED_P
266 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
278 object and SIZE is the number of bytes it contains. */
279 #define assemble_aligned_integer(SIZE, VALUE) \
280 assemble_integer (VALUE, SIZE, (SIZE) * BITS_PER_UNIT, 1)
283 /* Assemble the floating-point constant D into an object of size MODE. */
290 /* Return the size of the constant pool. *
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_MediaTest.java 103 assertEquals(Audio1.SIZE, c.getInt(c.getColumnIndex(Media.SIZE)));
145 assertEquals(Audio2.SIZE, c.getInt(c.getColumnIndex(Media.SIZE)));
MediaStore_Video_MediaTest.java 98 values.put(Media.SIZE, numBytes);
134 assertEquals(numBytes, c.getInt(c.getColumnIndex(Media.SIZE)));
159 values.put(Media.SIZE, 86854);
188 assertEquals(86854, c.getInt(c.getColumnIndex(Media.SIZE)));

Completed in 956 milliseconds

1 2 3 4 5 67 8 91011>>