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

1 2 3 4 5

  /external/elfutils/libasm/
asm_addint16.c 15 #define SIZE 16
asm_addint32.c 15 #define SIZE 32
asm_addint64.c 15 #define SIZE 64
asm_adduint16.c 15 #define SIZE 16
asm_adduint32.c 15 #define SIZE 32
asm_adduint64.c 15 #define SIZE 64
asm_addint8.c 26 #ifndef SIZE
27 # define SIZE 8
30 #define FCT(size) _FCT(size)
31 #define _FCT(size) asm_addint##size
32 #define TYPE(size) _TYPE(size)
33 #define _TYPE(size) int##size##_
    [all...]
asm_adduint8.c 21 #ifndef SIZE
22 # define SIZE 8
25 #define UFCT(size) _UFCT(size)
26 #define _UFCT(size) asm_adduint##size
27 #define FCT(size) _FCT(size)
28 #define _FCT(size) asm_addint##size
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
IntSizeWin.cpp 33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
41 SIZE s = {m_width, m_height};
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 36 public static final String SIZE = "_size";
  /external/bluetooth/glib/tests/
qsort-test.c 6 #define SIZE 100000
8 guint32 array[SIZE];
21 for (i = 0; i < SIZE; i++)
24 g_qsort_with_data (array, SIZE, sizeof (guint32), sort, NULL);
26 for (i = 0; i < SIZE - 1; i++)
list-test.c 11 #define SIZE 50
16 static guint32 array[SIZE];
41 for (i = 0; i < SIZE; i++) {
46 for (i = 0; i < SIZE - 1; i++) {
67 for (i = 0; i < SIZE; i++) {
72 for (i = 0; i < SIZE - 1; i++) {
93 for (i = 0; i < SIZE; i++) {
97 for (i = 0; i < SIZE - 1; i++) {
118 for (i = 0; i < SIZE; i++) {
125 for (i = 0; i < SIZE - 1; i++)
    [all...]
slist-test.c 11 #define SIZE 50
16 static guint32 array[SIZE];
41 for (i = 0; i < SIZE; i++) {
46 for (i = 0; i < SIZE - 1; i++) {
65 for (i = 0; i < SIZE; i++) {
70 for (i = 0; i < SIZE - 1; i++) {
89 for (i = 0; i < SIZE; i++) {
93 for (i = 0; i < SIZE - 1; i++) {
112 for (i = 0; i < SIZE; i++) {
119 for (i = 0; i < SIZE - 1; i++)
    [all...]
  /external/valgrind/main/none/tests/
sigstackgrowth.c 29 #define SIZE (4*1024*1024)
48 deep = &here - SIZE;
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 45 int SIZE = 99;
47 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE;
63 throw new CursorIndexOutOfBoundsException(INDEX, SIZE);
  /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/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));
  /frameworks/base/libs/ui/
GraphicBufferAllocator.cpp 57 const size_t SIZE = 4096;
58 char buffer[SIZE];
59 snprintf(buffer, SIZE, "Allocated buffers:\n");
61 const size_t c = list.size();
64 if (rec.size) {
65 snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %8X | 0x%08x\n",
66 list.keyAt(i), rec.size/1024.0f,
69 snprintf(buffer, SIZE, "%10p: unknown | %4u (%4u) x %4u | %8X | 0x%08x\n",
74 total += rec.size;
76 snprintf(buffer, SIZE, "Total allocated (estimate): %.2f KB\n", total/1024.0f)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
SmallCircleActivity.java 38 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE));
41 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE));
47 private static final int SIZE = 37;
55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW);
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW)
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 109 #define SIZE (LASTTOKEN - FIRSTTOKEN + 1)
110 const char *table[SIZE];
111 char *names[SIZE];
125 for (i = SIZE; --i >= 0; )
142 printf("static char *printname[%d] = {\n", SIZE);
161 printf("\nCell *(*proctab[%d])(Node **, int) = {\n", SIZE);
162 for (i=0; i<SIZE; i++)
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposeShaderTest.java 42 private static final int SIZE = 255;
51 LinearGradient blueGradient = new LinearGradient(0, 0, SIZE, 0,
53 LinearGradient redGradient = new LinearGradient(0, 0, 0, SIZE,
57 Bitmap bitmap = Bitmap.createBitmap(SIZE, SIZE, Config.ARGB_8888);
63 for (int y = 0; y < SIZE; y++) {
64 for (int x = 0; x < SIZE; x++) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DrawPoints.java 36 private static final float SIZE = 300;
46 final float delta = SIZE / SEGS;
48 mPts[i*4 + X] = SIZE - value;
  /external/icu4c/test/compat/
tzdate.c 29 #define SIZE 80
37 char systime[SIZE];
38 char icutime[SIZE];
  /external/openssl/crypto/bn/
exp.c 7 #define SIZE 256
17 int j,i,size=SIZE,num=NUM,mod=MOD; local
31 while (size <= 1024*8)
33 BN_rand(&a,size,0,0);
34 BN_rand(&b,size,1,0);
35 BN_rand(&c,size,0,1);
54 printf("%5d bit:%6.2f %6d %6.4f %4d m_set(%5.4f)\n",size,
59 size*=2;
  /external/skia/samplecode/
SampleTriangles.cpp 6 #define SIZE SkIntToScalar(150)
12 r.set(0, 0, SIZE, SIZE);
18 r.set(0, 0, SIZE, SIZE);
19 path->addRoundRect(r, SIZE/4, SIZE/4);
24 r.set(0, 0, SIZE, SIZE);
85 canvas->translate(SIZE/2, SIZE/2)
    [all...]

Completed in 270 milliseconds

1 2 3 4 5