Home
last modified time | relevance | path

Searched refs:__type (Results 1 – 11 of 11) sorted by relevance

/external/chromium/base/third_party/nspr/
Dprtypes.h92 #define PR_EXPORT(__type) extern __type argument
93 #define PR_EXPORT_DATA(__type) extern __type argument
94 #define PR_IMPORT(__type) extern __type argument
95 #define PR_IMPORT_DATA(__type) extern __type argument
97 #define PR_EXTERN(__type) extern __type argument
98 #define PR_IMPLEMENT(__type) __type argument
99 #define PR_EXTERN_DATA(__type) extern __type argument
100 #define PR_IMPLEMENT_DATA(__type) __type argument
108 #define PR_EXPORT(__type) extern __declspec(dllexport) __type argument
109 #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type argument
[all …]
/external/mesa3d/src/glsl/
Dlist.h493 #define foreach_list_typed(__type, __node, __field, __list) \ argument
494 for (__type * __node = \
495 exec_node_data(__type, (__list)->head, __field); \
497 (__node) = exec_node_data(__type, (__node)->__field.next, __field))
499 #define foreach_list_typed_const(__type, __node, __field, __list) \ argument
500 for (const __type * __node = \
501 exec_node_data(__type, (__list)->head, __field); \
503 (__node) = exec_node_data(__type, (__node)->__field.next, __field))
/external/stlport/stlport/stl/
D_cmath.h188 #define _STLP_MATH_INLINEX(__type,func,cfunc) \ argument
189 inline __type func (__type x) \
190 { return __STATIC_CAST(__type, _STLP_CMATH_FUNC_NAMESPACE::cfunc((double)x)); }
194 #define _STLP_MATH_INLINE2PX(__type,func,cfunc) \ argument
195 inline __type func (__type x, __type *y) { \
198 *y = __STATIC_CAST(__type, tmp2); \
199 return __STATIC_CAST(__type, tmp1); \
201 #define _STLP_MATH_INLINE2XX(__type,func,cfunc) \ argument
202 inline __type func (__type x, __type y) \
203 { return __STATIC_CAST(__type, _STLP_CMATH_FUNC_NAMESPACE::cfunc((double)x, (double)y)); }
D_function.h126 # define __UNARY_ARG(__Operation,__type) __unary_fun_aux<__Operation>::__type argument
127 # define __BINARY_ARG(__Operation,__type) __binary_fun_aux<__Operation>::__type argument
128 # define __PAIR_ARG(__Pair,__type) __pair_aux<__Pair>::__type argument
130 # define __UNARY_ARG(__Operation,__type) __Operation::__type argument
131 # define __BINARY_ARG(__Operation,__type) __Operation::__type argument
132 # define __PAIR_ARG(__Pair,__type) __Pair::__type argument
D_limits.c36 # define __declare_numeric_base_member(__type, __mem) \ argument
38 const __type _Numeric_limits_base<__number>:: __mem
65 # define __declare_integer_limits_member(__type, __mem) \ argument
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
102 # define __declare_float_limits_member(__type, __mem) \ argument
110 const __type _Floating_limits< __number, __Digits, __Digits10, \
/external/stlport/stlport/stl/config/
Dfeatures.h786 # define __TRIVIAL_CONSTRUCTOR(__type) __type() {} argument
788 # define __TRIVIAL_CONSTRUCTOR(__type) argument
792 # define __TRIVIAL_DESTRUCTOR(__type) ~__type() {} argument
794 # define __TRIVIAL_DESTRUCTOR(__type) argument
797 #define __TRIVIAL_STUFF(__type) \ argument
798 __TRIVIAL_CONSTRUCTOR(__type) __TRIVIAL_DESTRUCTOR(__type)
801 # define _STLP_STATIC_CONSTANT(__type, __assignment) enum { __assignment } argument
803 # define _STLP_STATIC_CONSTANT(__type, __assignment) static const __type __assignment argument
/external/clang/test/CodeGenCXX/
Dmangle.cpp193 typedef T __type; typedef
197 template<typename T> typename __enable_if<__is_scalar_type<T>::__value, void>::__type ft7() { } in ft7()
228 template<typename T> typename __enable_if<(__is_scalar_type<T>::__value), void>::__type ft8() { } in ft8()
241 template<typename T> struct __enable_if<true, T> { typedef T __type; }; typedef
245 typename __enable_if<!__is_scalar_type<T>::__value, void>::__type __fill_a() { }; in __fill_a()
/external/valgrind/main/VEX/auxprogs/
Dgenoffsets.c58 #define my_offsetof(__type,__field) (&((__type*)0)->__field) argument
/external/elfutils/libelf/
DlibelfP.h398 extern size_t __elf32_msize (Elf_Type __type, size_t __count,
400 extern size_t __elf64_msize (Elf_Type __type, size_t __count,
495 extern size_t __gelf_fsize_internal (Elf *__elf, Elf_Type __type,
Dlibelf.h286 extern size_t elf32_fsize (Elf_Type __type, size_t __count,
290 extern size_t elf64_fsize (Elf_Type __type, size_t __count,
Dgelf.h144 extern size_t gelf_fsize (Elf *__elf, Elf_Type __type, size_t __count,