Searched refs:size (Results 1 - 25 of 22357) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dfreemain.c5 void* allocate(long size);
7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
H A Darm-darwin-aapcs.cpp10 void* operator new(size_t size) argument
12 return (malloc(size));
/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/clang/test/SemaTemplate/
H A Doverloaded-functions.cpp7 template <int size>
9 int arr[size];
10 // expected-error@-1 {{'arr' declared as an array with a negative size}}
22 template <int size>
24 int arr[size];
25 // expected-error@-1 {{'arr' declared as an array with a negative size}}
/external/elfutils/libasm/
H A Dasm_adduint8.c40 #define UFCT(size) _UFCT(size)
41 #define _UFCT(size) asm_adduint##size
42 #define FCT(size) _FCT(size)
43 #define _FCT(size) asm_addint##size
44 #define UTYPE(size) _UTYPE(size)
[all...]
/external/llvm/test/MC/ELF/
H A Dbracket.s5 .size x, [.-x)
8 .size y, (.-y]
H A Dsize.s5 .size foo, . - bar + 42
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Dbracket.s5 .size x, [.-x)
8 .size y, (.-y]
/external/toybox/toys/other/
H A Dtruncate.c16 -s New size (with optional prefix and suffix)
29 long size;
35 long long size; local
39 if (TT.type == -1) size = TT.size;
41 size = fdlength(fd);
42 if (TT.type<2) size += TT.size*(1-(2*TT.type));
44 if ((TT.type==2) ? (size <= TT.size)
[all...]
/external/elfutils/tests/
H A Drun-aggregate-size.sh68 c size 1
69 i size 4
70 l size 8
71 v size 8
72 s size 16
73 ca size 16
74 ia size 128
75 va size 512
76 sa size 128
80 c size
[all...]
/external/jemalloc/test/src/
H A Dbtalloc.c4 btalloc(size_t size, unsigned bits) argument
7 return (btalloc_0(size, bits));
/external/libpng/tests/
H A Dpngvalid-progressive-size2 exec ./pngvalid --strict --size --progressive-read
/external/syslinux/com32/include/
H A Dalloca.h10 #define alloca(size) __builtin_alloca(size)
/external/syslinux/gpxe/src/include/
H A Dalloca.h16 * @v size Size to allocate
23 #define alloca(size) __builtin_alloca ( size )
/external/clang/test/Analysis/
H A Dpr_4164.c11 // The basic issue is that the VarRegion for 'size' is casted to (char*),
21 int size; local
22 socklen_t size_len = sizeof(size);
23 if (getsockopt(s, 0xffff, 0x1001, (char *)&size, &size_len) < 0)
26 return size; // no-warning
36 int size; local
37 if (takes_charptr((char*)&size))
39 return size; // no-warning
/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/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/libtextclassifier/
H A Dtensor-view.cc23 int size = 1; local
25 size *= dim;
27 return size;
/external/parameter-framework/upstream/utility/
H A DIterator.hpp39 * and the size of the underline buffer.
42 #define MAKE_ARRAY_ITERATOR(begin, size) stdext::make_checked_array_iterator(begin, size)
45 #define MAKE_ARRAY_ITERATOR(begin, size) begin
/external/mesa3d/src/mapi/
H A Du_execmem.h5 u_execmem_alloc(unsigned int size);
/external/python/cpython2/RISCOS/Python/
H A Dgetcwd_riscos.c1 char *getcwd(char *buf, int size) argument
/external/tcpdump/
H A Daddrtostr.h41 extern const char *addrtostr(const void *src, char *dst, size_t size);
42 extern const char *addrtostr6(const void *src, char *dst, size_t size);
/external/pdfium/testing/libfuzzer/
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 735 milliseconds

1234567891011>>