/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/chromium_org/ppapi/c/ |
pp_macros.h | 51 a given number of bytes wide. The size of the array is designed to be 1 52 (which should always be valid) if the enum's size is SIZE, and otherwise the 53 size of the array will be -1 (which all/most compilers should flag as an 63 SIZE is the expected size in bytes. 65 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, CTYPENAME, SIZE) \ 68 ## NAME ## _is_not_ ## SIZE ## \ 69 _bytes_wide[(sizeof(CTYPENAME) == SIZE) ? 1 : -1]; } 77 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES(NAME, SIZE) \ [all...] |
/external/chromium_org/ppapi/api/ |
pp_macros.idl | 42 a given number of bytes wide. The size of the array is designed to be 1 43 (which should always be valid) if the enum's size is SIZE, and otherwise the 44 size of the array will be -1 (which all/most compilers should flag as an 54 SIZE is the expected size in bytes. 56 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, CTYPENAME, SIZE) \ 59 ## NAME ## _is_not_ ## SIZE ## \ 60 _bytes_wide[(sizeof(CTYPENAME) == SIZE) ? 1 : -1]; } 68 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES(NAME, SIZE) \ [all...] |
/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));
|
/frameworks/base/core/java/android/provider/ |
OpenableColumns.java | 42 public static final String SIZE = "_size";
|
/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...] |
/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/rs/cpu_ref/linkloader/utils/ |
traits.h | 31 enum { size = sizeof(Type) }; enumerator in enum:TypeTraits::__anon32434 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/crypto/src/main/java/org/conscrypt/ |
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...] |
/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);
|
/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);
|