Searched defs:SIZE (Results 1 - 25 of 104) sorted by relevance

12345

/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_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...]
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);
/external/valgrind/main/none/tests/
H A Dsigstackgrowth.c29 #define SIZE (4*1024*1024) macro
48 deep = &here - SIZE;
/external/chromium_org/third_party/skia/gm/
H A Dbitmapmatrix.cpp113 static const int SIZE = 64; local
114 bm->allocN32Pixels(SIZE, SIZE);
123 SkRect rect = SkRect::MakeWH(SkIntToScalar(SIZE), SkIntToScalar(SIZE));
/external/chromium_org/ui/gfx/geometry/
H A Dsize.h17 typedef struct tagSIZE SIZE; typedef in typeref:struct:tagSIZE
42 SIZE ToSIZE() const;
/external/eigen/bench/
H A Dsparse_transpose.cpp6 #ifndef SIZE
7 #define SIZE 10000 macro
38 int rows = SIZE;
39 int cols = SIZE;
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
H A Dsparse_dense_product.cpp6 #ifndef SIZE
7 #define SIZE 650000 macro
54 int rows = SIZE;
55 int cols = SIZE;
/external/guava/guava/src/com/google/common/cache/
H A DRemovalCause.java85 SIZE { enum constant in enum:RemovalCause
/external/okhttp/okio/src/main/java/okio/
H A DSegment.java32 static final int SIZE = 2048; field in class:Segment
34 final byte[] data = new byte[SIZE];
112 if ((prev.limit - prev.pos) + (limit - pos) > SIZE) return; // Cannot compact.
122 if (byteCount + (sink.limit - sink.pos) > SIZE) throw new IllegalArgumentException();
124 if (sink.limit + byteCount > SIZE) {
/external/skia/gm/
H A Dbitmapmatrix.cpp113 static const int SIZE = 64; local
114 bm->allocN32Pixels(SIZE, SIZE);
123 SkRect rect = SkRect::MakeWH(SkIntToScalar(SIZE), SkIntToScalar(SIZE));
/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/bison/lib/
H A Disnan.c48 # define SIZE SIZEOF_LDBL macro
60 # define SIZE SIZEOF_DBL macro
72 # define SIZE SIZEOF_FLT macro
149 return (memcmp (&m.value, &plus_inf, SIZE) != 0
150 && memcmp (&m.value, &minus_inf, SIZE) != 0);
165 memset (&m1.value, 0, SIZE);
166 memset (&m2.value, 0, SIZE);
169 if (memcmp (&m1.value, &m2.value, SIZE) != 0)
/external/chromium_org/third_party/skia/bench/
H A DChecksumBench.cpp25 SIZE = U32COUNT * 4, enumerator in enum:ComputeChecksumBench::__anon14964
/external/skia/bench/
H A DChecksumBench.cpp25 SIZE = U32COUNT * 4, enumerator in enum:ComputeChecksumBench::__anon30375
/external/chromium_org/third_party/icu/source/test/compat/
H A Dtzdate.c29 #define SIZE 80 macro
37 char systime[SIZE];
38 char icutime[SIZE];
/external/clang/test/SemaTemplate/
H A Ddependent-type-identity.cpp94 enum { SIZE = 100 }; enumerator in enum:PR7460::TemplateClass2::__anon19445
95 static T member[SIZE];
99 T TemplateClass2<T>::member[TemplateClass2<T>::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...]

Completed in 3550 milliseconds

12345