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

12 3 4 5 6 7 8 91011>>

  /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); \
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)
  /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/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
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 59 template<size_t SIZE>
68 template<size_t SIZE>
74 template<size_t SIZE>
90 template<size_t SIZE>
96 template<size_t SIZE>
102 template<size_t SIZE>
112 template<size_t SIZE>
  /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...]
AudioHardwareGeneric.cpp 168 const size_t SIZE = 256;
169 char buffer[SIZE];
172 snprintf(buffer, SIZE, "\tmFd: %d mMicMute: %s\n", mFd, mMicMute? "true": "false");
174 ::write(fd, result.string(), result.size());
247 const size_t SIZE = 256;
248 char buffer[SIZE];
250 snprintf(buffer, SIZE, "AudioStreamOutGeneric::dump\n");
252 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
254 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize())
    [all...]
AudioHardwareInterface.cpp 139 const size_t SIZE = 256;
140 char buffer[SIZE];
142 snprintf(buffer, SIZE, "AudioHardwareBase::dumpState\n");
144 snprintf(buffer, SIZE, "\tmMode: %d\n", mMode);
146 ::write(fd, result.string(), result.size());
  /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...]
isnan.c 48 # define SIZE SIZEOF_LDBL
60 # define SIZE SIZEOF_DBL
72 # define SIZE SIZEOF_FLT
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/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...]
  /external/eigen/bench/
bench_sum.cpp 9 Vec v(SIZE);
sparse_setter.cpp 6 #ifndef SIZE
7 #define SIZE 100000
63 int rows = SIZE;
64 int cols = SIZE;
77 // DynamicSparseMatrix<int> stencil(SIZE,SIZE);
93 int i = internal::random<int>(0,pool.size());
107 std::cout << "nnz = " << coords.size() << "\n";
197 SparseMatrix<Scalar> mat(SIZE,SIZE);
    [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++)
  /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-eabi-4.6/lib/gcc/arm-eabi/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)
  /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)
  /prebuilts/gcc/linux-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)
  /external/clang/test/Sema/
ms-inline-asm.c 28 mov eax, SIZE bar // expected-error {{Unable to lookup expr!}}
  /external/guava/guava/src/com/google/common/cache/
RemovalCause.java 82 * The entry was evicted due to size constraints. This can occur when using
85 SIZE {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DrawPoints.java 36 private static final float SIZE = 300;
46 final float delta = SIZE / SEGS;
48 mPts[i*4 + X] = SIZE - value;
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposeShaderTest.java 38 private static final int SIZE = 255;
42 LinearGradient blueGradient = new LinearGradient(0, 0, SIZE, 0,
44 LinearGradient redGradient = new LinearGradient(0, 0, 0, SIZE,
48 Bitmap bitmap = Bitmap.createBitmap(SIZE, SIZE, Config.ARGB_8888);
54 for (int y = 0; y < SIZE; y++) {
55 for (int x = 0; x < SIZE; x++) {
  /frameworks/native/libs/ui/
GraphicBufferAllocator.cpp 59 const size_t SIZE = 4096;
60 char buffer[SIZE];
61 snprintf(buffer, SIZE, "Allocated buffers:\n");
63 const size_t c = list.size();
66 if (rec.size) {
67 snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %8X | 0x%08x\n",
68 list.keyAt(i), rec.size/1024.0f,
71 snprintf(buffer, SIZE, "%10p: unknown | %4u (%4u) x %4u | %8X | 0x%08x\n",
76 total += rec.size;
78 snprintf(buffer, SIZE, "Total allocated (estimate): %.2f KB\n", total/1024.0f)
    [all...]

Completed in 626 milliseconds

12 3 4 5 6 7 8 91011>>