HomeSort by relevance Sort by last modified time
    Searched full:struct_type (Results 1 - 15 of 15) sorted by null

  /external/bluetooth/glib/glib/
gmem.h 64 #define g_new(struct_type, n_structs) \
65 ((struct_type *) g_malloc (((gsize) sizeof (struct_type)) * ((gsize) (n_structs))))
66 #define g_new0(struct_type, n_structs) \
67 ((struct_type *) g_malloc0 (((gsize) sizeof (struct_type)) * ((gsize) (n_structs))))
68 #define g_renew(struct_type, mem, n_structs) \
69 ((struct_type *) g_realloc ((mem), ((gsize) sizeof (struct_type)) * ((gsize) (n_structs))))
71 #define g_try_new(struct_type, n_structs)
    [all...]
galloca.h 61 #define g_newa(struct_type, n_structs) ((struct_type*) g_alloca (sizeof (struct_type) * (gsize) (n_structs)))
gmacros.h 218 # define G_STRUCT_OFFSET(struct_type, member) \
219 ((glong) offsetof (struct_type, member))
221 # define G_STRUCT_OFFSET(struct_type, member) \
222 ((glong) ((guint8*) &((struct_type*) 0)->member))
  /external/clang/test/SemaTemplate/
inject-templated-friend.cpp 12 template <typename STRUCT_TYPE>
22 Streamer(const STRUCT_TYPE& s) : s(s) {}
24 const STRUCT_TYPE& s;
inject-templated-friend-post.cpp 17 template <typename STRUCT_TYPE>
29 template <typename STRUCT_TYPE>
39 Streamer(const STRUCT_TYPE& s) : s(s) {}
41 const STRUCT_TYPE& s;
  /external/bluetooth/glib/docs/reference/glib/tmpl/
memory.sgml 39 Allocates @n_structs elements of type @struct_type.
49 @struct_type: the type of the elements to allocate
51 @Returns: a pointer to the allocated memory, cast to a pointer to @struct_type
56 Allocates @n_structs elements of type @struct_type, initialized to 0's.
66 @struct_type: the type of the elements to allocate.
68 @Returns: a pointer to the allocated memory, cast to a pointer to @struct_type.
74 @n_structs elements of type @struct_type. It returns the new address of
78 @struct_type: the type of the elements to allocate
81 @Returns: a pointer to the new allocated memory, cast to a pointer to @struct_type
86 Attempts to allocate @n_structs elements of type @struct_type, and returns
    [all...]
macros.sgml 201 @struct_type: a structure type, e.g. <structname>GtkWidget</structname>.
203 @Returns: the offset of @member from the start of @struct_type.
  /external/llvm/lib/Object/
MachOObject.cpp 37 typedef T struct_type; typedef
38 uint64_t Size = sizeof(struct_type);
47 struct_type *Ptr = (struct_type *) (Buffer.data() + Base);
  /external/llvm/test/Bindings/Ocaml/
target.ml 37 let sty = struct_type context [| i32_type; i64_type |] in
vmcore.ml 173 insist ((struct_type context [| i16_type; i16_type; i32_type; i32_type |])
840 let sty = struct_type context [| i8_type; i64_type |] in
870 let rt = struct_type context [| pointer_type i8_type; i32_type |] in
    [all...]
  /external/dbus/dbus/
dbus-internals.h 177 #define _DBUS_STRUCT_OFFSET(struct_type, member) \
178 ((intptr_t) ((unsigned char*) &((struct_type*) 0)->member))
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 472 (** [struct_type context tys] returns the structure type in the context
475 val struct_type : llcontext -> lltype array -> lltype var
762 [struct_type (Array.map type_of elts)] and containing the values [elts]
    [all...]
llvm.ml 298 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type"
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 845 milliseconds