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

1 2 3 4 5 6 7 8 910

  /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_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...]
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...]
  /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/clang/test/CodeGenCXX/
2010-07-23-DeclLoc.cpp 35 typedef _SIZE SIZE;
41 template <typename SIZE> class TRange {
43 typename SIZE::ptr_t _location;
44 typename SIZE::size_t _length;
45 TRange(typename SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { }
47 template <typename SIZE, typename T> class TRangeValue : public TRange<SIZE> {
50 TRangeValue(typename SIZE::ptr_t location, typename SIZE::size_t length, T value) : TRange<SIZE>(location, length), _value(value) {}
    [all...]
  /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++)
  /system/extras/ext4_utils/
mkuserimg.sh 8 mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE
34 SIZE=$5
46 if [ -z $SIZE ]; then
47 SIZE=128M
50 MAKE_EXT4FS_CMD="make_ext4fs $ENABLE_SPARSE_IMAGE -l $SIZE -a $MOUNT_POINT $OUTPUT_FILE $SRC_DIR"
  /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...]
  /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/services/sensorservice/
vec.h 36 template <typename TYPE, size_t SIZE>
39 template <typename TYPE, size_t SIZE>
48 typename TYPE, size_t SIZE, size_t S>
49 vec<TYPE, SIZE>& doAssign(
50 vec<TYPE, SIZE>& lhs, const VEC<TYPE, S>& rhs) {
51 const size_t minSize = min(SIZE, S);
52 const size_t maxSize = max(SIZE, S);
65 size_t SIZE
67 VLHS<TYPE, SIZE> PURE doAdd(
68 const VLHS<TYPE, SIZE>& lhs
318 size_type size() const { return SIZE; } function in class:android::vec
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java 197 private static final int SIZE = 1000;
199 private String[] statements = new String[SIZE];
206 for (int i = 0; i < SIZE; i++) {
219 for (int i = 0; i < SIZE; i++) {
230 private static final int SIZE = 1000;
232 private String[] statements = new String[SIZE];
239 for (int i = 0; i < SIZE; i++) {
253 for (int i = 0; i < SIZE; i++) {
264 private static final int SIZE = 100;
267 private String[] where = new String[SIZE];
    [all...]
NewDatabasePerformanceTests.java 108 private static final int SIZE = 10 * kMultiplier;
110 private String[] statements = new String[SIZE];
117 for (int i = 0; i < SIZE; i++) {
129 for (int i = 0; i < SIZE; i++) {
140 private static final int SIZE = 10 * kMultiplier;
142 private String[] statements = new String[SIZE];
149 for (int i = 0; i < SIZE; i++) {
162 for (int i = 0; i < SIZE; i++) {
173 private static final int SIZE = 1 * kMultiplier;
176 private String[] where = new String[SIZE];
    [all...]
  /frameworks/compile/linkloader/utils/
traits.h 31 enum { size = sizeof(Type) }; enumerator in enum:TypeTraits::__anon15780
35 #define TYPE_TRAITS_SPECIALIZE(TYPE, SIZE, ALIGN) \
38 enum { size = SIZE }; \
  /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...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLMessageDigestJDK.java 38 * Holds the output size of the message digest.
40 private final int size; field in class:OpenSSLMessageDigestJDK
51 private OpenSSLMessageDigestJDK(String algorithm, int evp_md, int size)
55 this.size = size;
65 return size;
81 byte[] result = new byte[size];
117 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
119 super("MD5",EVP_MD, SIZE);
125 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD)
    [all...]
  /ndk/tests/build/stdint-c++/jni/
gen-sources.sh 7 for SIZE in 8 16 32 64; do
9 LIMITS="$LIMITS $PREFIX${SIZE}_MIN $PREFIX${SIZE}_MAX"
10 CONSTANTS="$CONSTANTS $PREFIX${SIZE}_C"
13 LIMITS="$LIMITS $PREFIX${SIZE}_MAX"
14 CONSTANTS="$CONSTANTS $PREFIX${SIZE}_C"
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
unknown-elf.h 60 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
72 ASM_OUTPUT_SKIP (FILE, SIZE ? (int)(SIZE) : 1); \
77 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN) \
87 fprintf (FILE, "\t.space\t%d\n", SIZE ? (int)(SIZE) : 1); \
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/arm/
unknown-elf.h 60 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
72 ASM_OUTPUT_SKIP (FILE, SIZE ? (int)(SIZE) : 1); \
77 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN) \
87 fprintf (FILE, "\t.space\t%d\n", SIZE ? (int)(SIZE) : 1); \
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 38 * Holds the output size of the message digest.
40 private final int size; field in class:OpenSSLDigest
43 * Holds the block size of the message digest.
63 private OpenSSLDigest(String algorithm, int evp_md, int size, int blockSize) {
66 this.size = size;
75 return size;
127 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
134 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD)
    [all...]

Completed in 2227 milliseconds

1 2 3 4 5 6 7 8 910