HomeSort by relevance Sort by last modified time
    Searched refs:SIZE (Results 1 - 25 of 422) 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/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...]