Home
last modified time | relevance | path

Searched refs:void_type (Results 1 – 9 of 9) sorted by relevance

/external/stlport/stlport/stl/pointers/
D_tools.h207 typedef _StorageT void_type;
209 static void_type * uncv_ptr(void_cv_type *__ptr)
211 static void_type const* uncv_cptr(void_cv_type const*__ptr)
213 static void_type ** uncv_pptr(void_cv_type **__ptr)
215 static void_type & uncv_ref(void_cv_type & __ref)
217 static void_type const& uncv_cref(void_cv_type const& __ref)
219 static void_cv_type* cv_ptr(void_type *__ptr)
221 static void_cv_type const* cv_cptr(void_type const*__ptr)
223 static void_cv_type ** cv_pptr(void_type **__ptr)
225 static void_cv_type & cv_ref(void_type & __ref)
[all …]
/external/llvm/test/Bindings/Ocaml/
Dscalar_opts.ml15 let void_type = Llvm.void_type context var
37 let fty = function_type void_type [| |] in
Danalysis.ml21 let fty = function_type (void_type context) [| |] in
Dvmcore.ml27 let void_type = Llvm.void_type context var
333 let ft = function_type void_type [| i32_type; i32_type; i32_type |] in
646 let vf = define_function "void" (function_type void_type [| |]) m in
651 let ty = function_type void_type [| i32_type; i32_type |] in
685 let ty = function_type void_type [| |] in
761 let fty = function_type void_type [| i32_type; i32_type |] in
802 let fty = function_type void_type [| i32_type |] in
820 let fty = function_type void_type [| |] in
1163 let fty = function_type void_type [| |] in
/external/mesa3d/src/glsl/
Dglsl_types.cpp123 add_types_to_symbol_table(symtab, &void_type, 1, false); in generate_100ES_types()
282 return &void_type; in get_instance()
Dglsl_types.h427 static const glsl_type void_type; member
Dbuiltin_types.h27 const glsl_type glsl_type::void_type =
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml217 external void_type : llcontext -> lltype = "llvm_void_type"
Dllvm.mli426 (** [void_type c] creates a type of a function which does not return any
428 val void_type : llcontext -> lltype val