Searched refs:SIZE (Results 1 - 25 of 210) sorted by relevance

123456789

/external/elfutils/0.153/libasm/
H A Dasm_addint16.c27 #define SIZE 16 macro
H A Dasm_addint32.c27 #define SIZE 32 macro
H A Dasm_addint64.c27 #define SIZE 64 macro
H A Dasm_adduint16.c27 #define SIZE 16 macro
H A Dasm_adduint32.c27 #define SIZE 32 macro
H A Dasm_adduint64.c27 #define SIZE 64 macro
H A Dasm_adduint8.c33 #ifndef SIZE
34 # define SIZE 8 macro
48 UFCT(SIZE) (asmscn, num) function
50 UTYPE(SIZE) num;
52 return INTUSE(FCT(SIZE)) (asmscn, (TYPE(SIZE)) num);
H A Dasm_addint8.c38 #ifndef SIZE
39 # define SIZE 8 macro
51 FCT(SIZE) (asmscn, num) function
53 TYPE(SIZE) num;
67 if (SIZE == 8)
69 else if (SIZE == 16)
72 else if (SIZE == 32)
91 #if SIZE > 8
95 TYPE(SIZE) var = num;
98 if (__libasm_ensure_section_space (asmscn, SIZE /
[all...]
/external/chromium_org/ppapi/c/
H A Dpp_macros.h52 (which should always be valid) if the enum's size is SIZE, and otherwise the
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) \
78 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, NAME, SIZE)
86 #define PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(NAME, SIZE) \
87 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, struct NAME, SIZE)
95 #define PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(NAME, SIZE) \
[all...]
/external/chromium_org/ppapi/api/
H A Dpp_macros.idl43 (which should always be valid) if the enum's size is SIZE, and otherwise the
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) \
69 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, NAME, SIZE)
77 #define PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(NAME, SIZE) \
78 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, struct NAME, SIZE)
86 #define PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(NAME, SIZE) \
[all...]
/external/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp35 typedef _SIZE SIZE; typedef in class:SizeAndEndianness
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
76 typedef typename SIZE_AND_ENDIANNESS::SIZE SIZE; typedef
[all...]
/external/valgrind/main/callgrind/tests/
H A Dsimwork.c9 #define SIZE 100000 macro
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));
/external/qemu/distrib/ext4_utils/src/
H A Dmkuserimg.sh8 mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [FILE_CONTEXTS]
34 SIZE=$5
47 if [ -z $SIZE ]; then
56 MAKE_EXT4FS_CMD="make_ext4fs $ENABLE_SPARSE_IMAGE $FCOPT -l $SIZE -a $MOUNT_POINT $OUTPUT_FILE $SRC_DIR"
/external/eigen/bench/btl/generic_bench/static/
H A Dstatic_size_generator.hh28 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);
/external/pixman/demos/
H A Dconical-test.c4 #define SIZE 128 macro
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);
H A Dradial-test.c7 #define SIZE 128 macro
8 #define WIDTH (SIZE * NUM_GRADIENTS)
9 #define HEIGHT (SIZE * NUM_REPEAT)
166 pixman_double_to_fixed (SIZE),
167 pixman_double_to_fixed (SIZE));
195 i * SIZE, j * SIZE,
196 SIZE, SIZE);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLMac.java132 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacMD5
135 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC);
141 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA1
144 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC);
150 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA224
153 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC);
159 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA256
162 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC);
168 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA384
171 super(EVP_MD, SIZE, NativeCrypt
177 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA512
[all...]
H A DOpenSSLMessageDigestJDK.java97 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.MD5
99 super(EVP_MD, SIZE);
105 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA1
107 super(EVP_MD, SIZE);
113 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA224
115 super(EVP_MD, SIZE);
121 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA256
123 super(EVP_MD, SIZE);
129 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA384
131 super(EVP_MD, SIZE);
137 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA512
[all...]
/external/okhttp/okio/src/main/java/okio/
H A DSegmentPool.java44 byteCount -= Segment.SIZE;
54 if (byteCount + Segment.SIZE > MAX_SIZE) return; // Pool is full.
55 byteCount += Segment.SIZE;
/external/eigen/bench/
H A Dvdw_new.cpp10 #ifndef SIZE
11 #define SIZE 10000 macro
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
/external/okhttp/okio/src/test/java/okio/
H A DOkBufferTest.java54 buffer.writeUtf8(repeat('a', Segment.SIZE * 4));
55 assertEquals(Segment.SIZE * 4, buffer.completeSegmentByteCount());
60 buffer.writeUtf8(repeat('a', Segment.SIZE * 4 - 10));
61 assertEquals(Segment.SIZE * 3, buffer.completeSegmentByteCount());
66 buffer.writeUtf8(repeat('a', Segment.SIZE * 2));
67 buffer.readUtf8(Segment.SIZE - 1);
73 buffer.writeUtf8(repeat('a', Segment.SIZE));
74 assertEquals(repeat('a', Segment.SIZE), buffer.readUtf8(Segment.SIZE));
144 int size = (Segment.SIZE /
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dsize.cc30 SIZE Size::ToSIZE() const {
31 SIZE s;
/external/valgrind/main/none/tests/
H A Dsigstackgrowth.c29 #define SIZE (4*1024*1024) macro
48 deep = &here - SIZE;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicDoubleArrayTest.java59 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
60 for (int i = 0; i < SIZE; i++) {
115 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
116 for (int index : new int[] { -1, SIZE }) {
180 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
181 for (int i : new int[] { 0, SIZE - 1}) {
220 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
221 for (int i : new int[] { 0, SIZE - 1}) {
241 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
242 for (int i : new int[] { 0, SIZE
[all...]
/external/bison/lib/
H A Dxsize.h106 #define size_overflow_p(SIZE) \
107 ((SIZE) == SIZE_MAX)
109 #define size_in_bounds_p(SIZE) \
110 ((SIZE) != SIZE_MAX)

Completed in 1512 milliseconds

123456789