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

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
aligncomm-2.c 3 typedef __SIZE_TYPE__ size_t; typedef
12 return 15 & (int)(size_t)raddr;
aligncomm-3.c 3 typedef __SIZE_TYPE__ size_t; typedef
13 return 15 & (int)(size_t)raddr;
  /art/cmdline/
memory_representation.h 29 // The underlying runtime size_t value is guaranteed to be a multiple of Divisor.
30 template <size_t kDivisor = 1024>
34 static Memory<kDivisor> FromBytes(size_t bytes) {
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5]
43 operator size_t() const { return Value; }
45 size_t ToBytes() const {
58 size_t Value;
61 template <size_t kDivisor>
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longobject.h 21 PyAPI_FUNC(PyObject *) PyLong_FromSize_t(size_t); variable
74 (size_t)-1 is returned and OverflowError set if the true result doesn't
75 fit in a size_t.
77 PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
93 const unsigned char* bytes, size_t n,
116 unsigned char* bytes, size_t n,
pymem.h 52 PyAPI_FUNC(void *) PyMem_Malloc(size_t); variable
53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
93 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
96 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
106 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
109 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
longobject.h 21 PyAPI_FUNC(PyObject *) PyLong_FromSize_t(size_t); variable
73 (size_t)-1 is returned and OverflowError set if the true result doesn't
74 fit in a size_t.
76 PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
92 const unsigned char* bytes, size_t n,
115 unsigned char* bytes, size_t n,
pymem.h 52 PyAPI_FUNC(void *) PyMem_Malloc(size_t); variable
53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
93 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
96 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
106 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
109 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
macconfig.h 50 #undef size_t macro
  /device/linaro/bootloader/edk2/Nt32Pkg/Include/Common/
WinNTInclude.h 49 // size_t is undefined when go into the line below is found.
51 typedef UINT32 size_t ; typedef
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
core_types.h 25 typedef unsigned int size_t; typedef
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 21 size_t Unsigned integer type of the result of the sizeof operator.
53 void *calloc (size_t Num, size_t Size);
55 void *malloc (size_t);
56 void *realloc (void *Ptr, size_t NewSize);
60 size_t nmemb, size_t size,
62 void qsort (void *base, size_t nmemb, size_t size,
66 int mblen (const char *, size_t);
119 typedef _EFI_SIZE_T_ size_t; typedef
    [all...]
wchar.h 22 size_t Unsigned integer type of the result of the sizeof operator.
36 int swprintf (wchar_t * __restrict s, size_t n,
44 int vswprintf (wchar_t * __restrict s, size_t n,
87 const wchar_t * __restrict s2, size_t n);
89 const wchar_t * __restrict s2, size_t n);
90 wchar_t *wmemmove (wchar_t *s1, const wchar_t *s2, size_t n);
96 const wchar_t * __restrict s2, size_t n);
101 int wcsncmp (const wchar_t *s1, const wchar_t *s2, size_t n);
102 size_t wcsxfrm (wchar_t * __restrict s1,
103 const wchar_t * __restrict s2, size_t n);
175 typedef _EFI_SIZE_T_ size_t; \/**< Unsigned integer type of the result of the sizeof operator. *\/ typedef
    [all...]
  /external/clang/test/Analysis/
new-with-exceptions.cpp 6 typedef __typeof__(sizeof(int)) size_t; typedef
7 extern "C" void *malloc(size_t);
10 inline void* operator new(size_t, void* __p) throw()
16 void *operator new(size_t) throw();
20 void *operator new(size_t) noexcept;
24 void *operator new(size_t);
28 void *operator new(size_t) throw(int);
46 extern void *operator new[](size_t, int) noexcept;
no-outofbounds.c 22 typedef typeof(sizeof(int)) size_t; typedef
23 void *malloc(size_t);
27 struct vec { size_t len; int data[0]; };
string-fail.c 33 typedef typeof(sizeof(int)) size_t; typedef
42 size_t strnlen(const char *s, size_t maxlen);
57 size_t a = strnlen(z.a, 10);
59 size_t b = strnlen(z.a, 10);
65 size_t c = strnlen(z.a, 10);
72 size_t a = strnlen(x, 10);
73 size_t b = strnlen(x, 10);
79 size_t c = strnlen(x, 10);
86 size_t a = strnlen(global_strn, 10)
    [all...]
taint-tester.cpp 5 typedef __typeof(sizeof(int)) size_t; typedef
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
10 int snprintf(char *, size_t, const char *, ...);
14 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
20 size_t len = 0;
  /external/clang/test/CXX/drs/
dr10xx.cpp 9 __extension__ typedef __SIZE_TYPE__ size_t; typedef in namespace:std
12 const T *p; size_t n;
13 initializer_list(const T *p, size_t n);
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p19.cpp 2 typedef __SIZE_TYPE__ size_t; typedef
9 static void* operator new(size_t) {
31 static void* operator new[](size_t) {
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p2.cpp 3 typedef decltype(sizeof(int)) size_t; typedef
5 // FIXME: These diagnostics should say 'size_t' instead of 'unsigned long'
  /external/clang/test/SemaCXX/
cxx0x-compat.cpp 36 typedef __typeof(sizeof(int)) size_t; typedef
37 void h(size_t foo, size_t bar) {
new-null.cpp 4 typedef __SIZE_TYPE__ size_t; typedef
8 void *operator new(size_t n) {
11 void *operator new[](size_t n) noexcept {
18 static size_t x;
19 void *operator new(size_t n) throw() {
22 void *operator new[](size_t n) {
33 void *operator new(size_t n) {
42 void *operator new[](size_t n) {
49 void *operator new(size_t n) noexcept(B) {
58 void *operator new(size_t n) throw(T...)
    [all...]
  /external/libcxx/test/std/utilities/variant/variant.hash/
hash.pass.cpp 29 size_t operator()(const ::MakeEmptyT &) const {
49 ASSERT_SAME_TYPE(decltype(h(v)), std::size_t); member in class:std
104 ASSERT_SAME_TYPE(decltype(h(m1)), std::size_t); member in class:std
132 size_t operator()(B const&) const {
  /external/python/cpython2/Include/
longobject.h 21 PyAPI_FUNC(PyObject *) PyLong_FromSize_t(size_t); variable
74 (size_t)-1 is returned and OverflowError set if the true result doesn't
75 fit in a size_t.
77 PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
93 const unsigned char* bytes, size_t n,
116 unsigned char* bytes, size_t n,
pymem.h 52 PyAPI_FUNC(void *) PyMem_Malloc(size_t); variable
53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
93 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
96 ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
106 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : \
109 ( (p) = ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL :
    [all...]
  /external/python/cpython2/Modules/expat/
macconfig.h 50 #undef size_t macro

Completed in 1293 milliseconds

1 2 34 5 6 7 8 91011>>