Lines Matching full:t

80 template < typename T >
81 static inline int z_cbprintf_cxx_is_pchar(T arg, bool const_as_fixed) in z_cbprintf_cxx_is_pchar()
132 template < typename T >
133 static inline int z_cbprintf_cxx_is_word_num(T arg) in z_cbprintf_cxx_is_word_num()
243 template < typename T >
244 static inline int z_cbprintf_cxx_is_none_char_ptr(T arg) in z_cbprintf_cxx_is_none_char_ptr()
259 template < typename T >
260 static inline size_t z_cbprintf_cxx_arg_size(T arg) in z_cbprintf_cxx_arg_size()
264 return MAX(sizeof(T), sizeof(int)); in z_cbprintf_cxx_arg_size()
316 template < typename T >
317 static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, T arg) in z_cbprintf_cxx_store_arg()
332 template < typename T >
333 static inline int z_cbprintf_cxx_is_longdouble(T arg) in z_cbprintf_cxx_is_longdouble()
376 template < typename T >
377 static inline size_t z_cbprintf_cxx_alignment(T arg) in z_cbprintf_cxx_alignment()
390 template < typename T >
391 struct z_cbprintf_cxx_is_same_type < T, T > {
397 template < typename T >
399 typedef T type;
402 template < typename T >
403 struct z_cbprintf_cxx_remove_reference < T & > {
404 typedef T type;
408 template < typename T >
409 struct z_cbprintf_cxx_remove_reference < T && > {
410 typedef T type;
414 template < typename T >
416 typedef T type;
419 template < typename T >
420 struct z_cbprintf_cxx_remove_cv < const T > {
421 typedef T type;
424 template < typename T >
425 struct z_cbprintf_cxx_remove_cv < volatile T > {
426 typedef T type;
429 template < typename T >
430 struct z_cbprintf_cxx_remove_cv < const volatile T > {
431 typedef T type;
435 template < typename T >
442 template < typename T >
443 struct z_cbprintf_cxx_is_array < T[] > {
449 template < typename T, size_t N >
450 struct z_cbprintf_cxx_is_array < T[N] > {
457 template < typename T >
459 typedef T type;
462 template < typename T >
463 struct z_cbprintf_cxx_remove_extent < T[] > {
464 typedef T type;
467 template < typename T, size_t N >
468 struct z_cbprintf_cxx_remove_extent < T[N] > {
469 typedef T type;