Searched defs:size (Results 1 - 25 of 6206) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DTutorial_AdvancedInitialization_ThreeWays.cpp1 const int size = 6; variable
2 MatrixXd mat1(size, size);
3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/
[all...]
/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/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/clang/test/CodeGen/
H A Dvla-3.c6 void vlaalign(int size) argument
8 char __attribute__((aligned(16))) tmp[size+32];
9 char tmp2[size+16];
/external/clang/test/Sema/
H A Darm-darwin-aapcs.cpp10 void* operator new(size_t size) argument
12 return (malloc(size));
H A Dfreemain.c5 void* allocate(long size);
7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/clang/tools/clang-format/fuzzer/
H A DClangFormatFuzzer.cpp18 extern "C" int LLVMFuzzerTestOneInput(uint8_t *data, size_t size) { argument
20 std::string s((const char *)data, size);
24 Style, s, {clang::tooling::Range(0, s.size())}));
/external/clang/tools/scan-build-py/tests/functional/src/
H A Dclean-two.c7 unsigned int const size = do_nothing_loop(); local
8 unsigned int const square = size * size;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_malloc_test.cc11 extern "C" void *__interceptor_malloc(size_t size);
12 extern "C" void *malloc(size_t size) { argument
14 return __interceptor_malloc(size);
/external/eigen/bench/btl/generic_bench/init/
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/elfutils/libdwelf/
H A Ddwelf_scn_gnu_compressed_size.c1 /* Return size of GNU compressed section.
60 an 8-byte big-endian size. There is only one type and
62 uint64_t size; local
63 memcpy (&size, d->d_buf + 4, sizeof size);
64 size = be64toh (size);
66 /* One more sanity check, size should be bigger than original
67 data size plus some overhead (4 chars ZLIB + 8 bytes size
[all...]
/external/elfutils/libelf/
H A Delf_memory.c41 elf_memory (char *image, size_t size) argument
49 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
/external/elfutils/src/
H A Darlib2.c37 size_t size = obstack_object_size (&symtab.longnamesob); local
42 return size - sizeof (struct ar_hdr);
/external/flatbuffers/tests/fuzzer/
H A Dflatbuffers_parser_fuzzer.cc10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
13 std::string s(reinterpret_cast<const char *>(data), size); local
H A Dflatbuffers_verifier_fuzzer.cc10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
11 flatbuffers::Verifier verifier(data, size);
/external/google-breakpad/src/google_breakpad/common/
H A Dminidump_size.h47 static size_t size() { return sizeof(T); } function in class:google_breakpad::minidump_size
50 // Explicit specializations for variable-length types. The size returned
51 // for these should be the size for an object without its variable-length
57 static size_t size() { return MDString_minsize; } function in class:google_breakpad::minidump_size
63 static size_t size() { return MDRawThreadList_minsize; } function in class:google_breakpad::minidump_size
69 static size_t size() { return MDCVInfoPDB20_minsize; } function in class:google_breakpad::minidump_size
75 static size_t size() { return MDCVInfoPDB70_minsize; } function in class:google_breakpad::minidump_size
81 static size_t size() { return MDImageDebugMisc_minsize; } function in class:google_breakpad::minidump_size
87 static size_t size() { return MDRawModuleList_minsize; } function in class:google_breakpad::minidump_size
93 static size_t size() { retur function in class:google_breakpad::minidump_size
102 static size_t size() { return MD_MODULE_SIZE; } function in class:google_breakpad::minidump_size
[all...]
/external/jemalloc/test/src/
H A Dbtalloc.c4 btalloc(size_t size, unsigned bits) argument
7 return (btalloc_0(size, bits));
/external/kmod/shared/
H A Dstrbuf.h10 unsigned size; member in struct:strbuf
/external/libcxxabi/fuzz/
H A Dcxa_demangle_fuzzer.cpp8 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { argument
9 char *str = new char[size+1];
10 memcpy(str, data, size);
11 str[size] = 0;
/external/lzma/CPP/7zip/Compress/
H A DBcjCoder.cpp7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size) argument
9 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size) argument
14 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
/external/mesa3d/src/mesa/drivers/x11/
H A Drealglx.c38 /* be sure our dispatch table size <= libGL's table */
40 GLuint size = sizeof(struct _glxapi_table) / sizeof(void *); local
41 (void) size;
42 assert(_glxapi_get_dispatch_table_size() >= size);
/external/pdfium/testing/libfuzzer/
H A Dpdf_cmap_fuzzer.cc9 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
11 cmap.LoadEmbedded(data, size);
H A Dpdf_codec_bmp_fuzzer.cc7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_BMP);
H A Dpdf_codec_gif_fuzzer.cc7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_GIF);
H A Dpdf_codec_jpeg_fuzzer.cc7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { argument
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_JPG);

Completed in 3473 milliseconds

1234567891011>>