HomeSort by relevance Sort by last modified time
    Searched refs:SIZE (Results 26 - 50 of 422) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/bench/
vdw_new.cpp 10 #ifndef SIZE
11 #define SIZE 10000
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
bench_sum.cpp 9 Vec v(SIZE);
  /frameworks/base/core/java/android/hardware/camera2/impl/
MetadataMarshalSize.java 18 import android.hardware.camera2.Size;
22 public class MetadataMarshalSize implements MetadataMarshalClass<Size> {
24 private static final int SIZE = 8;
27 public int marshal(Size value, ByteBuffer buffer, int nativeType, boolean sizeOnly) {
29 return SIZE;
35 return SIZE;
39 public Size unmarshal(ByteBuffer buffer, int nativeType) {
43 return new Size(width, height);
47 public Class<Size> getMarshalingClass() {
48 return Size.class
    [all...]
MetadataMarshalRect.java 23 private static final int SIZE = 16;
28 return SIZE;
36 return SIZE;
65 return SIZE;
  /ndk/tests/build/stdint-c++/jni/
gen-sources.sh 7 for SIZE in 8 16 32 64; do
9 LIMITS="$LIMITS $PREFIX${SIZE}_MIN $PREFIX${SIZE}_MAX"
10 CONSTANTS="$CONSTANTS $PREFIX${SIZE}_C"
13 LIMITS="$LIMITS $PREFIX${SIZE}_MAX"
14 CONSTANTS="$CONSTANTS $PREFIX${SIZE}_C"
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
unknown-elf.h 60 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
72 ASM_OUTPUT_SKIP (FILE, SIZE ? (int)(SIZE) : 1); \
77 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN) \
87 fprintf (FILE, "\t.space\t%d\n", SIZE ? (int)(SIZE) : 1); \
aout.h 336 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
342 (int)(ROUNDED), (int)(SIZE)); \
352 #define ASM_OUTPUT_ALIGNED_LOCAL(STREAM, NAME, SIZE, ALIGN) \
358 fprintf (STREAM, "\t.space\t%d\n", (int)(SIZE)); \
365 #define ASM_OUTPUT_ALIGNED_BSS(STREAM, DECL, NAME, SIZE, ALIGN) \
366 asm_output_aligned_bss (STREAM, DECL, NAME, SIZE, ALIGN)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
unknown-elf.h 60 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
72 ASM_OUTPUT_SKIP (FILE, SIZE ? (int)(SIZE) : 1); \
77 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN) \
87 fprintf (FILE, "\t.space\t%d\n", SIZE ? (int)(SIZE) : 1); \
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 38 * Holds the output size of the message digest.
40 private final int size; field in class:OpenSSLDigest
43 * Holds the block size of the message digest.
63 private OpenSSLDigest(String algorithm, long evp_md, int size, int blockSize) {
66 this.size = size;
75 return size;
127 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
134 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD)
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLMac.java 49 * Holds the output size of the message digest.
51 private final int size; field in class:OpenSSLMac
58 private OpenSSLMac(long evp_md, int size, int evp_pkey_type) {
60 this.size = size;
66 return size;
125 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
128 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC);
134 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
137 super(EVP_MD, SIZE, NativeCrypto.EVP_PKEY_HMAC)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectWriter.h 55 template<size_t SIZE>
64 template<size_t SIZE>
70 template<size_t SIZE>
86 template<size_t SIZE>
92 template<size_t SIZE>
98 template<size_t SIZE>
108 template<size_t SIZE>
  /external/pixman/demos/
radial-test.c 7 #define SIZE 128
8 #define WIDTH (SIZE * NUM_GRADIENTS)
9 #define HEIGHT (SIZE * NUM_REPEAT)
24 * - If the two circles have the same size, neither can be inside or
43 * - Start circle with the same size as the end circle
166 pixman_double_to_fixed (SIZE),
167 pixman_double_to_fixed (SIZE));
195 i * SIZE, j * SIZE,
196 SIZE, SIZE)
    [all...]
  /external/chromium_org/ui/gfx/
size.cc 5 #include "ui/gfx/size.h"
15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s)
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
31 SIZE s
    [all...]
  /external/valgrind/main/none/tests/
sigstackgrowth.c 29 #define SIZE (4*1024*1024)
48 deep = &here - SIZE;
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 101 const size_t SIZE = 256;
102 char buffer[SIZE];
105 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false");
107 ::write(fd, result.string(), result.size());
142 const size_t SIZE = 256;
143 char buffer[SIZE];
145 snprintf(buffer, SIZE, "AudioStreamOutStub::dump\n");
146 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
147 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize())
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleArrayTest.java 56 * constructor creates array of given size with all elements zero
59 AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
60 for (int i = 0; i < SIZE; i++) {
77 * constructor with array is of same size and has all elements
88 * constructor with empty array has size 0 and contains no elements
100 * constructor with length zero has size 0 and contains no elements
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})
    [all...]
  /external/bison/lib/
xsize.h 35 /* The size of memory objects is often computed through expressions of
47 size_t size = xsum (header_size, xtimes (n, element_size));
48 void *p = (size_in_bounds_p (size) ? malloc (size) : NULL);
98 /* Multiplication of a count with an element size, with overflow check.
99 The count must be >= 0 and the element size must be > 0.
106 #define size_overflow_p(SIZE) \
107 ((SIZE) == SIZE_MAX)
109 #define size_in_bounds_p(SIZE) \
110 ((SIZE) != SIZE_MAX
    [all...]
  /external/e2fsprogs/intl/
xsize.h 32 /* The size of memory objects is often computed through expressions of
44 size_t size = xsum (header_size, xtimes (n, element_size));
45 void *p = (size_in_bounds_p (size) ? malloc (size) : NULL);
95 /* Multiplication of a count with an element size, with overflow check.
96 The count must be >= 0 and the element size must be > 0.
103 #define size_overflow_p(SIZE) \
104 ((SIZE) == SIZE_MAX)
106 #define size_in_bounds_p(SIZE) \
107 ((SIZE) != SIZE_MAX
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 109 #define SIZE (LASTTOKEN - FIRSTTOKEN + 1)
110 const char *table[SIZE];
111 char *names[SIZE];
125 for (i = SIZE; --i >= 0; )
142 printf("static char *printname[%d] = {\n", SIZE);
161 printf("\nCell *(*proctab[%d])(Node **, int) = {\n", SIZE);
162 for (i=0; i<SIZE; i++)
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
quad-tex.c 117 #define SIZE 16
121 ubyte tex2d[SIZE][SIZE][4];
124 #if (SIZE != 2)
125 for (s = 0; s < SIZE; s++) {
126 for (t = 0; t < SIZE; t++) {
136 tex2d[t][s][0] = s*255/(SIZE-1);
137 tex2d[t][s][1] = t*255/(SIZE-1);
165 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
    [all...]
tex-srgb.c 146 #define SIZE 64
147 ubyte tex2d[SIZE][SIZE][4];
150 for (s = 0; s < SIZE; s++) {
151 for (t = 0; t < SIZE; t++) {
153 tex2d[t][s][1] = s * 255 / SIZE;
154 tex2d[t][s][2] = t * 255 / SIZE;
159 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
199 #undef SIZE
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
quad-tex.c 117 #define SIZE 16
121 ubyte tex2d[SIZE][SIZE][4];
124 #if (SIZE != 2)
125 for (s = 0; s < SIZE; s++) {
126 for (t = 0; t < SIZE; t++) {
136 tex2d[t][s][0] = s*255/(SIZE-1);
137 tex2d[t][s][1] = t*255/(SIZE-1);
165 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
    [all...]
tex-srgb.c 146 #define SIZE 64
147 ubyte tex2d[SIZE][SIZE][4];
150 for (s = 0; s < SIZE; s++) {
151 for (t = 0; t < SIZE; t++) {
153 tex2d[t][s][1] = s * 255 / SIZE;
154 tex2d[t][s][2] = t * 255 / SIZE;
159 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
199 #undef SIZE
    [all...]
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/inc/
omx_rpc_utils.h 111 #define RPC_SETFIELDCOPYGEN(MSGBODY, POS, PTR, SIZE) do { \
112 TIMM_OSAL_Memcpy((OMX_U8*)((OMX_U32)MSGBODY+POS), PTR, SIZE); \
113 POS += SIZE; \
134 #define RPC_GETFIELDCOPYGEN(MSGBODY, POS, PTR, SIZE) do { \
135 TIMM_OSAL_Memcpy(PTR, (OMX_U8*)((OMX_U32)MSGBODY+POS), SIZE); \
136 POS += SIZE; \
152 RPC_OMX_ERRORTYPE RPC_FlushBuffer(OMX_U8 * pBuffer, OMX_U32 size,
155 OMX_U32 size, OMX_U32 nTargetCoreId);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
aout.h 336 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
342 (int)(ROUNDED), (int)(SIZE)); \
352 #define ASM_OUTPUT_ALIGNED_LOCAL(STREAM, NAME, SIZE, ALIGN) \
358 fprintf (STREAM, "\t.space\t%d\n", (int)(SIZE)); \
365 #define ASM_OUTPUT_ALIGNED_BSS(STREAM, DECL, NAME, SIZE, ALIGN) \
366 asm_output_aligned_bss (STREAM, DECL, NAME, SIZE, ALIGN)

Completed in 624 milliseconds

12 3 4 5 6 7 8 91011>>