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

1234

/external/elfutils/libasm/
H A Dasm_addint16.c30 #define SIZE 16 macro
H A Dasm_addint32.c30 #define SIZE 32 macro
H A Dasm_addint64.c30 #define SIZE 64 macro
H A Dasm_adduint16.c30 #define SIZE 16 macro
H A Dasm_adduint32.c30 #define SIZE 32 macro
H A Dasm_adduint64.c30 #define SIZE 64 macro
H A Dasm_addint8.c41 #ifndef SIZE
42 # define SIZE 8 macro
54 FCT(SIZE) (AsmScn_t *asmscn, TYPE(SIZE) num) function
68 if (SIZE == 8)
70 else if (SIZE == 16)
73 else if (SIZE == 32)
92 #if SIZE > 8
96 TYPE(SIZE) var = num;
99 if (__libasm_ensure_section_space (asmscn, SIZE /
[all...]
H A Dasm_adduint8.c36 #ifndef SIZE
37 # define SIZE 8 macro
51 UFCT(SIZE) (AsmScn_t *asmscn, UTYPE(SIZE) num) function
53 return INTUSE(FCT(SIZE)) (asmscn, (TYPE(SIZE)) num);
/external/autotest/client/site_tests/security_Minijail_seccomp/src/
H A Dok.c10 #define SIZE 1024 macro
13 char buf[SIZE];
15 int n = syscall(__NR_read, fd, buf, SIZE);
H A Dfail.c10 #define SIZE 1024 macro
13 char buf[SIZE];
16 int nr = syscall(__NR_read, fd_z, buf, SIZE);
17 int nw = syscall(__NR_write, fd_n, buf, SIZE);
/external/valgrind/none/tests/
H A Dsigstackgrowth.c29 #define SIZE (4*1024*1024) macro
48 deep = &here - 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
/external/guava/guava/src/com/google/common/cache/
H A DRemovalCause.java87 SIZE { enum constant in enum:RemovalCause
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfName.h82 static const int SIZE = 256; member in class:Imf::Name
83 static const int MAX_LENGTH = SIZE - 1;
87 char _text[SIZE];
/external/skia/bench/
H A DChecksumBench.cpp22 SIZE = U32COUNT * 4, enumerator in enum:ComputeChecksumBench::__anon16570
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue102/
H A DBigDataLoadTest.java29 private static final int SIZE = 5000; field in class:BigDataLoadTest
33 List<?> loaded = (List<?>) yaml.load(getLongYamlDocument(SIZE));
34 assertEquals(SIZE, loaded.size());
39 StringReader buffer = new StringReader(getLongYamlDocument(SIZE));
41 assertEquals(SIZE, loaded.size());
/external/valgrind/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/okhttp/okio/okio/src/main/java/okio/
H A DSegment.java35 static final int SIZE = 8192; field in class:Segment
58 this.data = new byte[SIZE];
126 int availableByteCount = SIZE - prev.limit + (prev.shared ? 0 : prev.pos);
136 if (sink.limit + byteCount > SIZE) {
139 if (sink.limit + byteCount - sink.pos > SIZE) throw new IllegalArgumentException();
/external/autotest/client/tests/linus_stress/
H A Dlinus_stress.c12 #define SIZE (NRCHUNKS * CHUNKSIZE) macro
60 munmap(mapping, SIZE);
61 posix_fadvise(fd, 0, SIZE, POSIX_FADV_DONTNEED);
63 return mmap(NULL, SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
92 if (ftruncate(fd, SIZE) < 0)
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
H A Dhtml.js20 SIZE: 'size'
/external/clang/test/SemaTemplate/
H A Ddependent-type-identity.cpp94 enum { SIZE = 100 }; enumerator in enum:PR7460::TemplateClass2::__anon2963
95 static T member[SIZE];
99 T TemplateClass2<T>::member[TemplateClass2<T>::SIZE];
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLMac.java157 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacMD5
160 super(EVP_MD, SIZE);
166 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA1
169 super(EVP_MD, SIZE);
175 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA224
178 super(EVP_MD, SIZE);
184 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA256
187 super(EVP_MD, SIZE);
193 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA384
196 super(EVP_MD, SIZE);
202 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMac.HmacSHA512
[all...]
H A DOpenSSLMessageDigestJDK.java159 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.MD5
161 super(EVP_MD, SIZE);
167 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA1
169 super(EVP_MD, SIZE);
175 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA224
177 super(EVP_MD, SIZE);
183 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA256
185 super(EVP_MD, SIZE);
191 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA384
193 super(EVP_MD, SIZE);
199 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD); field in class:OpenSSLMessageDigestJDK.SHA512
[all...]

Completed in 1104 milliseconds

1234