OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:struct_type
(Results
1 - 9
of
9
) 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/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/llvm/lib/Object/
MachOObject.cpp
36
typedef T
struct_type
;
typedef
37
uint64_t Size = sizeof(
struct_type
);
46
struct_type
*Ptr = (
struct_type
*) (Buffer.data() + Base);
/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.ml
297
external
struct_type
: llcontext -> lltype array -> lltype = "llvm_struct_type"
[
all
...]
llvm.mli
471
(** [
struct_type
context tys] returns the structure type in the context
474
val
struct_type
: llcontext -> lltype array -> lltype
var
761
[
struct_type
(Array.map type_of elts)] and containing the values [elts]
[
all
...]
Completed in 329 milliseconds