HomeSort by relevance Sort by last modified time
    Searched refs:TYPE (Results 1 - 25 of 2456) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/headers/posix/
sys_types_h.c 34 TYPE(blkcnt_t);
35 TYPE(blksize_t);
36 TYPE(clock_t);
37 TYPE(clockid_t);
38 TYPE(dev_t);
39 TYPE(fsblkcnt_t);
40 TYPE(fsfilcnt_t);
41 TYPE(gid_t);
42 TYPE(id_t);
43 TYPE(ino_t)
    [all...]
stddef_h.c 40 TYPE(ptrdiff_t);
41 TYPE(wchar_t);
42 TYPE(size_t);
  /external/syslinux/com32/lib/
atoi.c 1 #define TYPE int
atol.c 1 #define TYPE long
atoll.c 1 #define TYPE long long
strtol.c 1 #define TYPE signed long
strtoll.c 1 #define TYPE signed long long
strtoul.c 1 #define TYPE unsigned long
strtoull.c 1 #define TYPE unsigned long long
strtoimax.c 1 #define TYPE intmax_t
strtoumax.c 1 #define TYPE uintmax_t
  /external/clang/test/Sema/
varargs_unreachable.c 6 #define VA_ARG_RDAR12322000(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN_RDAR12322000)) ? (TYPE)(__builtin_va_arg (Marker, UINTN_RDAR12322000)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))
  /prebuilts/misc/common/swig/include/2.0.11/
cmalloc.i 12 /* %malloc(TYPE [, NAME = TYPE])
13 %calloc(TYPE [, NAME = TYPE])
14 %realloc(TYPE [, NAME = TYPE])
15 %free(TYPE [, NAME = TYPE])
16 %allocators(TYPE [,NAME = TYPE])
    [all...]
carrays.i 9 * %array_functions(TYPE,NAME)
14 * TYPE *new_NAME(int nelements)
15 * void delete_NAME(TYPE *);
16 * TYPE NAME_getitem(TYPE *, int index);
17 * void NAME_setitem(TYPE *, int index, TYPE value);
21 %define %array_functions(TYPE,NAME)
23 static TYPE *new_##NAME(int nelements) { %}
25 %{ return new TYPE[nelements]; %
    [all...]
cpointer.i 9 * %pointer_class(type,name)
11 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
14 * class type {
16 * type();
17 * ~type();
18 * type value();
19 * void assign(type value);
44 %define %pointer_class(TYPE, NAME)
46 typedef TYPE NAME;
55 return new TYPE();
    [all...]
intrusive_ptr.i 50 %define %intrusive_ptr(TYPE...)
51 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
52 SWIG_INTRUSIVE_PTR_TYPEMAPS(SWIGEMPTYHACK, TYPE)
53 SWIG_INTRUSIVE_PTR_TYPEMAPS(const, TYPE)
56 %define %intrusive_ptr_no_wrap(TYPE...)
57 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
58 SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP(SWIGEMPTYHACK, TYPE)
59 SWIG_INTRUSIVE_PTR_TYPEMAPS_NO_WRAP(const, TYPE)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
carrays.i 8 * %array_functions(TYPE,NAME)
13 * TYPE *new_NAME(int nelements)
14 * void delete_NAME(TYPE *);
15 * TYPE NAME_getitem(TYPE *, int index);
16 * void NAME_setitem(TYPE *, int index, TYPE value);
20 %define %array_functions(TYPE,NAME)
22 static TYPE *new_##NAME(int nelements) { %}
24 %{ return new TYPE[nelements]; %
    [all...]
cpointer.i 8 * %pointer_class(type,name)
10 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
13 * class type {
15 * type();
16 * ~type();
17 * type value();
18 * void assign(type value);
43 %define %pointer_class(TYPE, NAME)
45 typedef TYPE NAME;
54 return new TYPE();
    [all...]
  /external/elfutils/libebl/
eblauxvinfo.c 42 TYPE (NULL, "") \
43 TYPE (IGNORE, "") \
44 TYPE (EXECFD, "d") \
45 TYPE (EXECFN, "s") \
46 TYPE (PHDR, "p") \
47 TYPE (PHENT, "u") \
48 TYPE (PHNUM, "u") \
49 TYPE (PAGESZ, "u") \
50 TYPE (BASE, "p") \
51 TYPE (FLAGS, "x")
    [all...]
  /system/core/libutils/include/utils/
SortedVector.h 35 template <class TYPE>
38 friend class Vector<TYPE>;
41 typedef TYPE value_type;
48 SortedVector(const SortedVector<TYPE>& rhs);
52 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const;
53 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs);
79 inline const TYPE* array() const;
83 TYPE* editArray()
    [all...]
Vector.h 45 template <typename TYPE>
49 * The main templated vector class ensuring type safety
56 template <class TYPE>
60 typedef TYPE value_type;
67 Vector(const Vector<TYPE>& rhs);
68 explicit Vector(const SortedVector<TYPE>& rhs);
72 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
73 Vector<TYPE>& operator = (const Vector<TYPE>& rhs)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cpointer.swg 10 * %pointer_class(type,name)
12 * Places a simple proxy around a simple type like 'int', 'float', or whatever.
15 * class type {
17 * type();
18 * ~type();
19 * type value();
20 * void assign(type value);
45 %define %pointer_class(TYPE, NAME)
47 typedef TYPE NAME;
55 return %new_instance(TYPE);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
typemaps.i 56 %define INPUT_TYPEMAP(TYPE, CTYPE, CSTYPE)
57 %typemap(ctype, out="void *") TYPE *INPUT, TYPE &INPUT "CTYPE"
58 %typemap(imtype, out="IntPtr") TYPE *INPUT, TYPE &INPUT "CSTYPE"
59 %typemap(cstype, out="$csclassname") TYPE *INPUT, TYPE &INPUT "CSTYPE"
60 %typemap(csin) TYPE *INPUT, TYPE &INPUT "$csinput"
62 %typemap(in) TYPE *INPUT, TYPE &INPU
    [all...]
  /external/elfutils/libelf/
gelf_xlate.h 1 /* Helper file for type conversion function generation.
41 TYPE (Ehdr, LIBELFBITS)
42 TYPE (Phdr, LIBELFBITS)
43 TYPE (Shdr, LIBELFBITS)
44 TYPE (Sym, LIBELFBITS)
45 TYPE (Rel, LIBELFBITS)
46 TYPE (Rela, LIBELFBITS)
47 TYPE (Note, LIBELFBITS)
48 TYPE (Dyn, LIBELFBITS)
49 TYPE (Syminfo, LIBELFBITS
    [all...]
  /external/clang/test/CodeGenCXX/
arm-swiftcall.cpp 1 // RUN: %clang_cc1 -triple armv7-apple-darwin9 -emit-llvm -o - %s -Wno-return-type-c-linkage | FileCheck %s
15 #define TEST(TYPE) \
16 extern "C" SWIFTCALL TYPE return_##TYPE(void) { \
17 TYPE result = {}; \
20 extern "C" SWIFTCALL void take_##TYPE(TYPE v) { \
22 extern "C" void test_##TYPE() { \
23 take_##TYPE(return_##TYPE()); \
    [all...]

Completed in 318 milliseconds

1 2 3 4 5 6 7 8 91011>>