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

123

/external/elfutils/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/webkit/Source/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
41 SIZE s = {m_width, m_height};
/external/valgrind/main/none/tests/
H A Dsigstackgrowth.c29 #define SIZE (4*1024*1024) macro
48 deep = &here - SIZE;
/external/clang/test/SemaTemplate/
H A Ddependent-type-identity.cpp94 enum { SIZE = 100 }; enumerator in enum:PR7460::TemplateClass2::__anon4784
95 static T member[SIZE];
99 T TemplateClass2<T>::member[TemplateClass2<T>::SIZE];
/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;
H A Dsparse_lu.cpp11 #ifndef SIZE
12 #define SIZE 10 macro
74 int rows = SIZE;
75 int cols = SIZE;
H A Dsparse_product.cpp9 #ifndef SIZE
10 #define SIZE 1000000 macro
100 int rows = SIZE;
101 int cols = SIZE;
H A Dsparse_randomsetter.cpp10 #ifndef SIZE
11 #define SIZE 10000 macro
67 int rows = SIZE;
68 int cols = SIZE;
H A Dsparse_trisolver.cpp7 #ifndef SIZE
8 #define SIZE 10000 macro
58 int rows = SIZE;
59 int cols = SIZE;
/external/guava/guava/src/com/google/common/cache/
H A DRemovalCause.java85 SIZE { enum constant in enum:RemovalCause
/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/icu4c/test/compat/
H A Dtzdate.c29 #define SIZE 80 macro
37 char systime[SIZE];
38 char icutime[SIZE];
/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DFastInteger.java33 public static final int SIZE = 32; field in class:FastInteger
/external/openssl/crypto/bn/
H A Dexp.c7 #define SIZE 256 macro
17 int j,i,size=SIZE,num=NUM,mod=MOD;
/external/skia/samplecode/
H A DSampleTriangles.cpp13 #define SIZE SkIntToScalar(150) macro
19 r.set(0, 0, SIZE, SIZE);
25 r.set(0, 0, SIZE, SIZE);
26 path->addRoundRect(r, SIZE/4, SIZE/4);
31 r.set(0, 0, SIZE, SIZE);
92 canvas->translate(SIZE/
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DOpenSSLDigest.java127 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLDigest.MD5
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
134 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLDigest.SHA1
136 public SHA1() { super("SHA-1", EVP_MD, SIZE, BLOCK_SIZE); }
141 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLDigest.SHA256
143 public SHA256() { super("SHA-256", EVP_MD, SIZE, BLOCK_SIZE); }
148 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLDigest.SHA384
150 public SHA384() { super("SHA-384", EVP_MD, SIZE, BLOCK_SIZE); }
155 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLDigest.SHA512
157 public SHA512() { super("SHA-512", EVP_MD, SIZE, BLOCK_SIZ
[all...]

Completed in 5824 milliseconds

123