HomeSort by relevance Sort by last modified time
    Searched defs:SIZE (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/elfutils/libasm/
asm_addint16.c 27 #define SIZE 16
asm_addint32.c 27 #define SIZE 32
asm_addint64.c 27 #define SIZE 64
asm_adduint16.c 27 #define SIZE 16
asm_adduint32.c 27 #define SIZE 32
asm_adduint64.c 27 #define SIZE 64
asm_addint8.c 38 #ifndef SIZE
39 # define SIZE 8
42 #define FCT(size) _FCT(size)
43 #define _FCT(size) asm_addint##size
44 #define TYPE(size) _TYPE(size)
45 #define _TYPE(size) int##size##_
    [all...]
asm_adduint8.c 33 #ifndef SIZE
34 # define SIZE 8
37 #define UFCT(size) _UFCT(size)
38 #define _UFCT(size) asm_adduint##size
39 #define FCT(size) _FCT(size)
40 #define _FCT(size) asm_addint##size
    [all...]
  /art/test/103-string-append/src/
Main.java 19 public static final int SIZE = 8 * 1024;
25 for (int i = 0; i < SIZE; i++) {
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 42 public static final String SIZE = "_size";
  /external/valgrind/main/none/tests/
sigstackgrowth.c 29 #define SIZE (4*1024*1024)
48 deep = &here - SIZE;
  /external/chromium_org/ui/gfx/
size.h 16 typedef struct tagSIZE SIZE;
25 // A size has width and height values.
26 class UI_EXPORT Size : public SizeBase<Size, int> {
28 Size() : SizeBase<Size, int>(0, 0) {}
29 Size(int width, int height) : SizeBase<Size, int>(width, height) {}
31 explicit Size(const CGSize& s);
34 ~Size() {}
    [all...]
  /external/eigen/bench/
vdw_new.cpp 10 #ifndef SIZE
11 #define SIZE 10000
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
sparse_transpose.cpp 6 #ifndef SIZE
7 #define SIZE 10000
38 int rows = SIZE;
39 int cols = SIZE;
sparse_dense_product.cpp 6 #ifndef SIZE
7 #define SIZE 650000
54 int rows = SIZE;
55 int cols = SIZE;
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 26 int SIZE = 99;
28 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE;
44 throw new CursorIndexOutOfBoundsException(INDEX, SIZE);
  /external/bison/lib/
isnan.c 48 # define SIZE SIZEOF_LDBL
60 # define SIZE SIZEOF_DBL
72 # define SIZE SIZEOF_FLT
149 return (memcmp (&m.value, &plus_inf, SIZE) != 0
150 && memcmp (&m.value, &minus_inf, SIZE) != 0);
165 memset (&m1.value, 0, SIZE);
166 memset (&m2.value, 0, SIZE);
169 if (memcmp (&m1.value, &m2.value, SIZE) != 0)
  /external/clang/test/SemaTemplate/
dependent-type-identity.cpp 94 enum { SIZE = 100 };
95 static T member[SIZE];
99 T TemplateClass2<T>::member[TemplateClass2<T>::SIZE];
  /external/guava/guava/src/com/google/common/cache/
RemovalCause.java 82 * The entry was evicted due to size constraints. This can occur when using
85 SIZE {
  /external/skia/gm/
bitmapmatrix.cpp 108 static const int SIZE = 64;
109 bm->setConfig(SkBitmap::kARGB_8888_Config, SIZE, SIZE);
119 SkRect rect = SkRect::MakeWH(SkIntToScalar(SIZE), SkIntToScalar(SIZE));
  /external/valgrind/main/callgrind/tests/
simwork.c 9 #define SIZE 100000
16 for(i = 0; i< SIZE; i++) a[i] = b[i] = 1.0;
22 for(i = 0; i< SIZE; i++) {
34 for(i = 0; i< SIZE; i++) sum += c[i];
54 a = (double*) malloc(SIZE * sizeof(double));
55 b = (double*) malloc(SIZE * sizeof(double));
56 c = (double*) malloc(SIZE * sizeof(double));
  /cts/suite/pts/deviceTests/opengl/jni/primitive/shaderperf/
ShaderPerfRenderer.cpp 124 const int SIZE = 256;
125 uint32_t* m = new uint32_t[SIZE];
128 for (int i = 0; i < SIZE; i++) {
134 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, SIZE, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, m);
  /device/lge/mako/camera/
QCameraHWI_Mem.cpp 52 static bool register_buf(int size,
121 // size.
144 "buffer size %d",
158 static bool register_buf(int size,
177 pmemBuf.len = size;
245 "%d frames @ %d bytes, buffer size %d",
254 // mAlignedBufferSize is already in 4k aligned. (do we need total size necessary to be in power of 2??)
381 const size_t SIZE = 256;
382 char buffer[SIZE];
392 snprintf(buffer, 255, "heap base(%p), size(%d), flags(%d), device(%s)\n"
    [all...]
  /external/pixman/demos/
conical-test.c 4 #define SIZE 128
7 #define WIDTH (SIZE * GRADIENTS_PER_ROW)
8 #define HEIGHT (SIZE * NUM_ROWS)
71 pixman_double_to_fixed (SIZE),
72 pixman_double_to_fixed (SIZE));
89 0, 0, 0, 0, column * SIZE, row * SIZE,
90 SIZE, SIZE);
  /frameworks/base/core/java/android/hardware/camera2/impl/
MetadataMarshalSize.java 18 import android.hardware.camera2.Size;
22 public class MetadataMarshalSize implements MetadataMarshalClass<Size> {
24 private static final int SIZE = 8;
27 public int marshal(Size value, ByteBuffer buffer, int nativeType, boolean sizeOnly) {
29 return SIZE;
35 return SIZE;
39 public Size unmarshal(ByteBuffer buffer, int nativeType) {
43 return new Size(width, height);
47 public Class<Size> getMarshalingClass() {
48 return Size.class
    [all...]

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 9