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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/0.153/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...]
  /system/extras/f2fs_utils/
mkf2fsuserimg.sh 8 ${0##*/} OUTPUT_FILE SIZE
20 SIZE=$2
24 if [ -z $SIZE ]; then
25 echo "Need size of filesystem"
29 MAKE_F2FS_CMD="make_f2fs -l $SIZE $OUTPUT_FILE"
  /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));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 33 /* Assembler pseudos to introduce constants of various size. */
48 that says to advance the location counter by SIZE bytes. */
50 #define ASM_OUTPUT_SKIP(FILE,SIZE) \
51 fprintf (FILE, "\t.space "HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
59 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
67 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
73 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNMENT) \
76 fprintf ((FILE), ",%u,%u\n", (int)(SIZE), (int)(ALIGNMENT) / BITS_PER_UNIT))
  /external/qemu/distrib/ext4_utils/src/
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/base/core/java/android/provider/
OpenableColumns.java 42 public static final String SIZE = "_size";
  /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...]
  /libcore/jsr166-tests/src/test/java/jsr166/
PriorityQueueTest.java 29 * Returns a new queue of given size containing consecutive
40 assertEquals(n, q.size());
48 assertEquals(0, new PriorityQueue(SIZE).size());
76 Integer[] ints = new Integer[SIZE];
87 Integer[] ints = new Integer[SIZE];
88 for (int i = 0; i < SIZE-1; ++i)
99 Integer[] ints = new Integer[SIZE];
100 for (int i = 0; i < SIZE; ++i)
103 for (int i = 0; i < SIZE; ++i
    [all...]
PriorityBlockingQueueTest.java 38 * Returns a new queue of given size containing consecutive
51 assertEquals(n, q.size());
59 assertEquals(NOCAP, new PriorityBlockingQueue(SIZE).remainingCapacity());
86 Collection<Integer> elements = Arrays.asList(new Integer[SIZE]);
97 Integer[] ints = new Integer[SIZE];
98 for (int i = 0; i < SIZE-1; ++i)
111 Integer[] ints = new Integer[SIZE];
112 for (int i = 0; i < SIZE; ++i)
115 for (int i = 0; i < SIZE; ++i)
124 PriorityBlockingQueue q = new PriorityBlockingQueue(SIZE, cmp)
259 final int size = 4; local
    [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::__anon39018
35 #define TYPE_TRAITS_SPECIALIZE(TYPE, SIZE, ALIGN) \
38 enum { size = SIZE }; \
  /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);

Completed in 1812 milliseconds

1 2 3 4 5 6 7 8 91011>>