Searched refs:size (Results 251 - 275 of 17066) sorted by relevance

<<11121314151617181920>>

/external/eigen/bench/btl/generic_bench/init/
H A Dinit_matrix.hh28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){ argument
30 X.resize(size);
32 for (unsigned int j=0;j<X.size();j++){
43 BTL_DONT_INLINE void init_matrix(Vector & A, int size){ argument
44 A.resize(size);
45 for (unsigned int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
51 BTL_DONT_INLINE void init_matrix_symm(Matrix& A, int size){ argument
52 A.resize(size);
53 for (unsigned int row=0; row<A.size() ; ro
[all...]
H A Dinit_vector.hh28 void init_vector(Vector & X, int size){ argument
30 X.resize(size);
32 for (unsigned int i=0;i<X.size();i++){
/external/freetype/include/freetype/
H A Dftsizes.h5 /* FreeType size objects management (specification). */
59 /* pixel-size dependent information, available in the `face->size' */
67 /* modify the contents of the current `active' size; you thus need */
83 /* Create a new size object from a given face object. */
89 /* asize :: A handle to a new size object. */
95 /* You need to call @FT_Activate_Size in order to select the new size */
101 FT_Size* size );
110 /* Discard a given size object. Note that @FT_Done_Face */
111 /* automatically discards all size object
121 FT_Done_Size( FT_Size size ); variable
149 FT_Activate_Size( FT_Size size ); variable
[all...]
/external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/
H A Dpush.pass.cpp21 assert(q.size() == 1);
24 assert(q.size() == 2);
27 assert(q.size() == 3);
/external/libvpx/libvpx/vpx_dsp/
H A Dsum_squares.c14 int size) {
18 for (r = 0; r < size; r++) {
19 for (c = 0; c < size; c++) {
13 vpx_sum_squares_2d_i16_c(const int16_t *src, int src_stride, int size) argument
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
9 UInt32 realProcessedSize = size;
12 res = _stream->Write(data, size, &realProcessedSize);
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_memory.h49 os_malloc(size_t size);
52 os_calloc(size_t count, size_t size);
61 os_malloc_aligned(size_t size, size_t alignment);
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_heap.h33 unsigned size; member in struct:nouveau_heap
40 unsigned size);
46 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv,
/external/openssh/
H A Dxmalloc.c30 xmalloc(size_t size) argument
34 if (size == 0)
35 fatal("xmalloc: zero size");
36 ptr = malloc(size);
38 fatal("xmalloc: out of memory (allocating %zu bytes)", size);
43 xcalloc(size_t nmemb, size_t size) argument
47 if (size == 0 || nmemb == 0)
48 fatal("xcalloc: zero size");
49 if (SIZE_MAX / nmemb < size)
50 fatal("xcalloc: nmemb * size > SIZE_MA
59 xreallocarray(void *ptr, size_t nmemb, size_t size) argument
[all...]
/external/pdfium/third_party/freetype/include/freetype/
H A Dftsizes.h5 /* FreeType size objects management (specification). */
59 /* pixel-size dependent information, available in the `face->size' */
67 /* modify the contents of the current `active' size; you thus need */
83 /* Create a new size object from a given face object. */
89 /* asize :: A handle to a new size object. */
95 /* You need to call @FT_Activate_Size in order to select the new size */
101 FT_Size* size );
110 /* Discard a given size object. Note that @FT_Done_Face */
111 /* automatically discards all size object
121 FT_Done_Size( FT_Size size ); variable
149 FT_Activate_Size( FT_Size size ); variable
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_inl.h51 int size) {
52 if (size < 0) return false; // security: size is often user-supplied
54 if (BufferSize() >= size) {
55 STLStringResizeUninitialized(buffer, size);
61 memcpy(z.first, buffer_, size);
62 Advance(size);
67 return ReadStringFallback(buffer, size);
70 inline bool CodedInputStream::InternalReadRawInline(void* buffer, int size) { argument
72 while ((current_buffer_size = BufferSize()) < size) {
50 InternalReadStringInline(string* buffer, int size) argument
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSparseArrayTest.java49 assertEquals(0, sparseArray.size());
55 assertEquals(i + 1, sparseArray.size());
71 assertEquals(LENGTH, sparseArray.size());
74 assertEquals(LENGTH, sparseArray.size());
80 int size = sparseArray.size();
82 assertEquals(size + 1, sparseArray.size());
83 assertEquals(size, sparseArray.indexOfKey(NON_EXISTED_KEY));
84 assertEquals(size, sparseArra
[all...]
/external/skia/src/svg/
H A DSkSVGCanvas.cpp14 SkISize size = bounds.roundOut().size(); local
15 sk_sp<SkBaseDevice> device(SkSVGDevice::Create(size, writer));
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
H A DRandomIntegerArrayGenerator.java32 int[] generate(int size) { argument
33 int[] result = new int[size];
34 for (int i = 0; i < size; i++) {
/external/strace/tests/
H A Drt_sigpending.c42 k_sigpending(void *const set, const unsigned long size) argument
44 return syscall(__NR_rt_sigpending, set, size);
48 iterate(const char *const text, unsigned int size, void *set) argument
51 if (k_sigpending(set, size)) {
53 set, size);
56 if (size) {
58 if (size < sizeof(long))
60 "[]", size);
64 text, size);
66 tprintf("rt_sigpending(%p, %u) = 0\n", set, size);
[all...]
H A Dumovestr3.c36 const unsigned int size = PATH_MAX - 1; local
37 const char *p = tail_alloc(size);
38 const char *const efault = p + size;
/external/strace/tests-m32/
H A Drt_sigpending.c42 k_sigpending(void *const set, const unsigned long size) argument
44 return syscall(__NR_rt_sigpending, set, size);
48 iterate(const char *const text, unsigned int size, void *set) argument
51 if (k_sigpending(set, size)) {
53 set, size);
56 if (size) {
58 if (size < sizeof(long))
60 "[]", size);
64 text, size);
66 tprintf("rt_sigpending(%p, %u) = 0\n", set, size);
[all...]
H A Dumovestr3.c36 const unsigned int size = PATH_MAX - 1; local
37 const char *p = tail_alloc(size);
38 const char *const efault = p + size;
/external/strace/tests-mx32/
H A Drt_sigpending.c42 k_sigpending(void *const set, const unsigned long size) argument
44 return syscall(__NR_rt_sigpending, set, size);
48 iterate(const char *const text, unsigned int size, void *set) argument
51 if (k_sigpending(set, size)) {
53 set, size);
56 if (size) {
58 if (size < sizeof(long))
60 "[]", size);
64 text, size);
66 tprintf("rt_sigpending(%p, %u) = 0\n", set, size);
[all...]
H A Dumovestr3.c36 const unsigned int size = PATH_MAX - 1; local
37 const char *p = tail_alloc(size);
38 const char *const efault = p + size;
/external/syslinux/com32/lib/
H A Dlmalloc.c34 void *lzalloc(size_t size) argument
37 p = lmalloc(size);
41 memset(p, 0, size);
H A Dstrlcat.c8 size_t strlcat(char *dst, const char *src, size_t size) argument
15 while (bytes < size && *q) {
21 if (bytes < size)
/external/toybox/toys/other/
H A Dcount.c20 uint64_t size = 0; local
27 size += len;
29 xwrite(2, buf, sprintf(buf, "%"PRIu64" bytes\r", size));
/external/tpm2/
H A DGetRandom.c18 // if the requested bytes exceed the output buffer size, generates the
21 out->randomBytes.t.size = sizeof(TPMU_HA);
23 out->randomBytes.t.size = in->bytesRequested;
25 CryptGenerateRandom(out->randomBytes.t.size, out->randomBytes.t.buffer);
/external/webrtc/webrtc/system_wrappers/source/
H A Daligned_malloc_unittest.cc25 // Returns true if |size| and |alignment| are valid combinations.
26 bool CorrectUsage(size_t size, size_t alignment) { argument
28 static_cast<char*>(AlignedMalloc(size, alignment)));
37 const size_t size = 100; local
41 static_cast<char*>(AlignedMalloc(size, alignment)));
58 const size_t size = 100; local
60 EXPECT_FALSE(CorrectUsage(size, incorrect_alignment));
64 size_t size = 100; local
66 EXPECT_TRUE(CorrectUsage(size, alignment));
70 size_t size local
76 size_t size = 100; local
[all...]

Completed in 1515 milliseconds

<<11121314151617181920>>