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

1 2 3 4 5 6 7 8 91011>>

  /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_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...]
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...]
  /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...]
  /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));
  /system/extras/ext4_utils/
mkuserimg.sh 8 mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [FILE_CONTEXTS]
34 SIZE=$5
47 if [ -z $SIZE ]; then
48 echo "Need size of filesystem"
56 MAKE_EXT4FS_CMD="make_ext4fs $ENABLE_SPARSE_IMAGE $FCOPT -l $SIZE -a $MOUNT_POINT $OUTPUT_FILE $SRC_DIR"
  /frameworks/native/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 198 private static final int SIZE = 1000;
200 private String[] statements = new String[SIZE];
207 for (int i = 0; i < SIZE; i++) {
220 for (int i = 0; i < SIZE; i++) {
231 private static final int SIZE = 1000;
233 private String[] statements = new String[SIZE];
240 for (int i = 0; i < SIZE; i++) {
254 for (int i = 0; i < SIZE; i++) {
265 private static final int SIZE = 100;
268 private String[] where = new String[SIZE];
    [all...]
NewDatabasePerformanceTests.java 107 private static final int SIZE = 10 * kMultiplier;
109 private String[] statements = new String[SIZE];
116 for (int i = 0; i < SIZE; i++) {
128 for (int i = 0; i < SIZE; i++) {
139 private static final int SIZE = 10 * kMultiplier;
141 private String[] statements = new String[SIZE];
148 for (int i = 0; i < SIZE; i++) {
161 for (int i = 0; i < SIZE; i++) {
172 private static final int SIZE = 1 * kMultiplier;
175 private String[] where = new String[SIZE];
    [all...]
  /frameworks/rs/driver/linkloader/utils/
traits.h 31 enum { size = sizeof(Type) }; enumerator in enum:TypeTraits::__anon20253
35 #define TYPE_TRAITS_SPECIALIZE(TYPE, SIZE, ALIGN) \
38 enum { size = SIZE }; \
  /hardware/ti/wlan/mac80211/ti-utils/scripts/
mkcard.sh 7 SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
9 echo DISK SIZE - $SIZE bytes
11 CYLINDERS=`echo $SIZE/255/63/512 | bc`
  /external/eigen/bench/btl/generic_bench/static/
static_size_generator.hh 28 template <int SIZE,template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
32 tab_sizes.push_back(SIZE);
34 Perf_Analyzer<Action<Interface<REAL_TYPE,SIZE> > > perf_action;
35 tab_mflops.push_back(perf_action.eval_mflops(SIZE));
37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
  /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, long 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...]
  /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/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
  /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"
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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); \

Completed in 1427 milliseconds

1 2 3 4 5 6 7 8 91011>>