HomeSort by relevance Sort by last modified time
    Searched defs:size_t (Results 26 - 50 of 388) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/include/bitsize32/
stddef.h 6 typedef unsigned int size_t; typedef
  /external/syslinux/com32/include/bitsize64/
stddef.h 6 typedef unsigned long size_t; typedef
  /external/syslinux/dos/
stdlib.h 5 /* size_t is defined elsewhere */
7 typedef unsigned int size_t; typedef
9 typedef unsigned long size_t; typedef
16 void *malloc(size_t);
17 void *calloc(size_t, size_t);
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/
memset.c 16 typedef __SIZE_TYPE__ size_t; typedef
19 void *__memset(void *s, int c, size_t n)
36 void *memset(void *dest, int c, size_t n);
40 void __aeabi_memset(void *dest, size_t n, int c)
46 void __aeabi_memset4(void *dest, size_t n, int c);
49 void __aeabi_memset8(void *dest, size_t n, int c);
51 void __aeabi_memclr(void *dest, size_t n)
57 void __aeabi_memclr4(void *dest, size_t n);
60 void __aeabi_memclr8(void *dest, size_t n);
  /external/clang/test/Analysis/diagnostics/
false-positive-suppression.c 6 typedef __typeof(sizeof(int)) size_t; typedef
7 void *malloc(size_t);
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
p2.cpp 19 typedef __SIZE_TYPE__ size_t; typedef in namespace:std
22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}}
23 void* operator new[](std::size_t) throw(std::bad_alloc);
27 void* operator new(std::size_t); // expected-warning{{'operator new' is missing exception specification 'throw(std::bad_alloc)'}}
  /external/clang/test/Sema/
format-strings-int-typedefs.c 9 printf("%zu", 42.0); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long')}}
18 scanf("%zu", 0); // expected-warning {{format specifies type 'size_t *' (aka 'unsigned long *')}}
26 // typedef size_t et al. to something crazy.
27 typedef void *size_t; typedef
35 printf("%zu", (size_t)42); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long') but the argument has type 'size_t' (aka 'void *')}}
  /external/clang/test/SemaCXX/
attr-sentinel.cpp 9 typedef __typeof__(sizeof(int)) size_t; typedef
14 void* operator new(size_t,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
constexpr-strlen.cpp 5 typedef decltype(sizeof(int)) size_t; typedef
6 extern size_t strlen(const char *p);
no-exceptions.cpp 5 typedef __SIZE_TYPE__ size_t; typedef
11 void* operator new(size_t x);
  /external/skia/experimental/svg/model/
SkSVGAttributeParser.h 35 void* operator new(size_t) = delete; member in class:SkSVGAttributeParser
36 void* operator new(size_t, void*) = delete;
  /external/skqp/experimental/svg/model/
SkSVGAttributeParser.h 35 void* operator new(size_t) = delete; member in class:SkSVGAttributeParser
36 void* operator new(size_t, void*) = delete;
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 7 typedef unsigned size_t; typedef
26 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
31 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 7 typedef unsigned size_t; typedef
24 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
27 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdio.h 50 typedef __size_t size_t; typedef
72 int snprintf(char * __restrict, size_t, const char * __restrict,
74 int vsnprintf(char * __restrict, size_t, const char * __restrict,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pythread.h 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pythread.h 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); variable
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 9 Where an argument declared as size_t n specifies the length of the array for
21 bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c))
22 bcmp(a,b,c) ( memcmp((void *)a, (void *)b, (size_t)c))
27 size_t Unsigned integer type of the result of the sizeof operator.
33 void *memcpy (void * __restrict s1, const void * __restrict s2, size_t n);
34 void *memmove (void *s1, const void *s2, size_t n);
36 char *strncpy (char * __restrict s1, const char * __restrict s2, size_t n);
37 int strncpyX (char * __restrict s1, const char * __restrict s2, size_t n);
41 char *strncat (char * __restrict s1, const char * __restrict s2, size_t n);
42 int strncatX (char * __restrict s1, const char * __restrict s2, size_t n);
91 typedef _EFI_SIZE_T_ size_t; typedef
    [all...]
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 6 typedef typeof(sizeof(int)) size_t; typedef
19 size_t comparisonSize = sizeof(1 == 1);
21 // Sanity check. This test is useless if size_t isn't bigger than bool.
22 clang_analyzer_eval(sizeof(size_t) > comparisonSize); // expected-warning{{TRUE}}
74 size_t strlen(const char *s);
76 size_t comparisonSize = sizeof(1 == 1);
78 // Sanity check. This test is useless if size_t isn't bigger than bool.
79 clang_analyzer_eval(sizeof(size_t) > comparisonSize); // expected-warning{{TRUE}}
82 size_t value = 1UL;
  /external/clang/test/CodeGen/
ms-intrinsics.c 11 // intrin.h needs size_t, but -ffreestanding prevents us from getting it from
13 typedef __SIZE_TYPE__ size_t; typedef
  /external/clang/test/CodeGenCXX/
virtual-base-ctor.cpp 6 typedef __typeof(sizeof(int)) size_t; typedef
7 struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } };
  /external/clang/test/Headers/
typedef_guards.c 16 typedef __typeof__(sizeof(int)) size_t; typedef
24 extern void bar(size_t x);
  /external/clang/test/Modules/Inputs/
cxx-inline-namespace.h 9 typedef int size_t; typedef in namespace:std::__1
  /external/python/cpython2/Include/
pythread.h 24 PyAPI_FUNC(size_t) PyThread_get_stacksize(void);
25 PyAPI_FUNC(int) PyThread_set_stacksize(size_t); variable
  /external/skia/src/core/
SkBitmapProvider.h 44 void* operator new(size_t) = delete; member in class:SkBitmapProvider
45 void* operator new(size_t, void*) = delete;

Completed in 633 milliseconds

12 3 4 5 6 7 8 91011>>