Home
last modified time | relevance | path

Searched refs:type_t (Results 1 – 25 of 31) sorted by relevance

12

/third_party/iowow/src/utils/
Dksort.h78 #define KSORT_SWAP(type_t, a, b) { register type_t t=(a); (a)=(b); (b)=t; } argument
80 #define KSORT_INIT(name, type_t, __sort_lt) \ argument
81 void ks_mergesort_##name(size_t n, type_t array[], type_t temp[]) \
83 type_t *a2[2], *a, *b; \
87 a2[1] = temp? temp : (type_t*)malloc(sizeof(type_t) * n); \
91 type_t *p = b, *i, *eb = a + n; \
105 type_t *p, *j, *k, *ea, *eb; \
124 type_t *p = a2[0], *i = a2[1], *eb = array + n; \
129 void ks_heapadjust_##name(size_t i, size_t n, type_t l[]) \
132 type_t tmp = l[i]; \
[all …]
/third_party/boost/libs/type_traits/test/
Ddetected_or_test.cpp24 using type_t = typename T::type; typedef
34 CHECK_FALSE((::tt::detected_or<bool, type_t, int>::value_t::value));
35 CHECK_TRUE((::tt::detected_or<bool, type_t, has_type>::value_t::value));
36 CHECK_FALSE((::tt::detected_or<bool, type_t, no_type>::value_t::value));
37 BOOST_CHECK_TYPE4(::tt::detected_or<bool, type_t, int>::type, bool);
38 BOOST_CHECK_TYPE4(::tt::detected_or<bool, type_t, has_type>::type, char);
39 BOOST_CHECK_TYPE4(::tt::detected_or<bool, type_t, no_type>::type, bool);
40 BOOST_CHECK_TYPE4(::tt::detected_or_t<bool, type_t, int>, bool);
41 BOOST_CHECK_TYPE4(::tt::detected_or_t<bool, type_t, has_type>, char);
42 BOOST_CHECK_TYPE4(::tt::detected_or_t<bool, type_t, no_type>, bool);
Dis_detected_convertible.cpp24 using type_t = typename T::type; typedef
34 CHECK_FALSE((::tt::is_detected_convertible<long, type_t, int>::value));
35 CHECK_TRUE((::tt::is_detected_convertible<long, type_t, has_type>::value));
36 CHECK_FALSE((::tt::is_detected_convertible<long, type_t, no_type>::value));
38 CHECK_FALSE((::tt::is_detected_convertible_v<long, type_t, int>));
39 CHECK_TRUE((::tt::is_detected_convertible_v<long, type_t, has_type>));
40 CHECK_FALSE((::tt::is_detected_convertible_v<long, type_t, no_type>));
Dis_detected_test.cpp24 using type_t = typename T::type; typedef
34 CHECK_FALSE((::tt::is_detected<type_t, int>::value));
35 CHECK_TRUE((::tt::is_detected<type_t, has_type>::value));
36 CHECK_FALSE((::tt::is_detected<type_t, no_type>::value));
38 CHECK_FALSE((::tt::is_detected_v<type_t, int>));
39 CHECK_TRUE((::tt::is_detected_v<type_t, has_type>));
40 CHECK_FALSE((::tt::is_detected_v<type_t, no_type>));
Dis_detected_exact_test.cpp24 using type_t = typename T::type; typedef
34 CHECK_FALSE((::tt::is_detected_exact<char, type_t, int>::value));
35 CHECK_TRUE((::tt::is_detected_exact<char, type_t, has_type>::value));
36 CHECK_FALSE((::tt::is_detected_exact<char, type_t, no_type>::value));
38 CHECK_FALSE((::tt::is_detected_exact_v<char, type_t, int>));
39 CHECK_TRUE((::tt::is_detected_exact_v<char, type_t, has_type>));
40 CHECK_FALSE((::tt::is_detected_exact_v<char, type_t, no_type>));
Ddetected_test.cpp24 using type_t = typename T::type; typedef
34 BOOST_CHECK_TYPE3(::tt::detected_t<type_t, int>, boost::nonesuch);
35 BOOST_CHECK_TYPE3(::tt::detected_t<type_t, has_type>, char);
36 BOOST_CHECK_TYPE3(::tt::detected_t<type_t, no_type>, boost::nonesuch);
/third_party/mesa3d/src/freedreno/ir3/
Dir3_cf.c29 is_safe_conv(struct ir3_instruction *instr, type_t src_type, opc_t *src_opc) in is_safe_conv()
87 all_uses_safe_conv(struct ir3_instruction *conv_src, type_t src_type) in all_uses_safe_conv()
144 type_t base_type = ir3_output_conv_type(src, &can_fold); in try_conversion_folding()
148 type_t src_type = ir3_output_conv_src_type(src, base_type); in try_conversion_folding()
149 type_t dst_type = ir3_output_conv_dst_type(src, base_type); in try_conversion_folding()
Dir3.h316 type_t src_type, dst_type;
332 type_t type;
335 type_t type;
855 type_t src_type = instr->cat1.src_type; in is_const_mov()
856 type_t dst_type = instr->cat1.dst_type; in is_const_mov()
1187 static inline type_t
1188 half_type(type_t type) in half_type()
1207 static inline type_t
1208 full_type(type_t type) in full_type()
1372 static inline type_t
[all …]
Dinstr-a3xx.h362 } type_t; typedef
365 type_size(type_t type) in type_size()
386 type_float(type_t type) in type_float()
392 type_uint(type_t type) in type_uint()
398 type_sint(type_t type) in type_sint()
Dir3_context.h250 static inline type_t
266 static inline type_t
272 static inline type_t
Dir3_image.h41 type_t ir3_get_type_for_image_intrinsic(const nir_intrinsic_instr *instr);
Dir3_image.c110 type_t
Dir3_compiler_nir.c127 type_t src_type, dst_type; in create_cov()
296 type_t dst_type = in emit_alu()
1011 type_t type = TYPE_U32; in emit_intrinsic_atomic_shared()
1189 type_t type, unsigned wrmask, struct ir3_instruction *src0, in emit_sam()
1227 type_t type = ir3_get_type_for_image_intrinsic(intr); in emit_intrinsic_load_image()
1265 type_t dst_type = nir_dest_bit_size(intr->dest) == 16 ? TYPE_U16 : TYPE_U32; in emit_intrinsic_image_size_tex()
2181 type_t type = (undef->def.bit_size == 16) ? TYPE_U16 : TYPE_U32; in emit_undef()
2194 static type_t
2197 type_t type; in get_tex_dest_type()
2393 type_t type; in emit_tex()
[all …]
Dir3_a4xx.c125 type_t type = TYPE_U32; in emit_intrinsic_atomic_ssbo()
Dir3_a6xx.c114 type_t type = TYPE_U32; in emit_intrinsic_atomic_ssbo()
/third_party/boost/boost/spirit/home/classic/phoenix/
Dnew.hpp875 typedef typename make_composite_t::type type_t; in new_() typedef
878 return type_t(composite_type_t(new_l_0<T>())); in new_()
887 typedef typename make_composite_t::type type_t; in new_() typedef
890 return type_t(composite_type_t(new_1<T>(), in new_()
901 typedef typename make_composite_t::type type_t; in new_() typedef
904 return type_t(composite_type_t(new_2<T>(), in new_()
916 typedef typename make_composite_t::type type_t; in new_() typedef
919 return type_t(composite_type_t(new_3<T>(), in new_()
938 typedef typename make_composite_t::type type_t; in new_() typedef
941 return type_t(composite_type_t(new_4<T>(), in new_()
[all …]
Dcasts.hpp1030 typedef typename make_composite_t::type type_t; in construct_() typedef
1033 return type_t(composite_type_t(construct_l_0<T>())); in construct_()
1042 typedef typename make_composite_t::type type_t; in construct_() typedef
1045 return type_t(composite_type_t(construct_1<T>(), in construct_()
1056 typedef typename make_composite_t::type type_t; in construct_() typedef
1059 return type_t(composite_type_t(construct_2<T>(), in construct_()
1071 typedef typename make_composite_t::type type_t; in construct_() typedef
1074 return type_t(composite_type_t(construct_3<T>(), in construct_()
1093 typedef typename make_composite_t::type type_t; in construct_() typedef
1096 return type_t(composite_type_t(construct_4<T>(), in construct_()
[all …]
/third_party/boost/boost/interprocess/detail/
Dmanaged_multi_shared_memory.hpp175 enum type_t { DoCreate, DoOpen, DoOpenOrCreate }; enum
180 type_t type, size_type segment_number) in create_open_func()
236 type_t m_type;
297 bool priv_open_or_create(typename create_open_func::type_t type, in priv_open_or_create()
328 bool priv_new_segment(typename create_open_func::type_t type, in priv_new_segment()
/third_party/boost/libs/container/test/
Dflat_map_adaptor_test.cpp31 typedef std::pair<ValueType, ValueType> type_t; typedef
35 …pename boost::container::dtl::container_or_allocator_rebind<VoidAllocatorOrContainer, type_t>::type
41 …pename boost::container::dtl::container_or_allocator_rebind<VoidAllocatorOrContainer, type_t>::type
Dflat_map_test.cpp399 typedef std::pair<ValueType, ValueType> type_t; typedef
403 …pename boost::container::dtl::container_or_allocator_rebind<VoidAllocatorOrContainer, type_t>::type
409 …pename boost::container::dtl::container_or_allocator_rebind<VoidAllocatorOrContainer, type_t>::type
/third_party/grpc/third_party/upb/upb/
Dtable.int.h85 #define FUNCS(name, membername, type_t, converter, proto_type) \ argument
86 UPB_INLINE void upb_value_set ## name(upb_value *val, type_t cval) { \
89 UPB_INLINE upb_value upb_value_ ## name(type_t val) { \
94 UPB_INLINE type_t upb_value_get ## name(upb_value val) { \
95 return (type_t)(converter)val.val; \
/third_party/ltp/tools/sparse/sparse-src/validation/
Dbad-type-twice2.c1 extern type_t fun(int);
Dtypeof-mods.c76 typedef int __bitwise type_t; in test_bitwise() typedef
77 type_t obj, *ptr; in test_bitwise()
/third_party/grpc/third_party/upb/tests/
Dtest_table.cc30 #define FUNCS(name, type_t, enumval) \ argument
31 template<> upb_value MakeUpbValue<type_t>(type_t val) { return upb_value_ ## name(val); } \
32 template<> type_t GetUpbValue<type_t>(upb_value val) { return upb_value_get ## name(val); } \
33 template<> upb_ctype_t GetUpbValueType<type_t>() { return enumval; }
/third_party/skia/third_party/externals/tint/src/resolver/
Dvar_let_test.cc340 auto* type_t = Sem().Get(t); in TEST_F() local
347 EXPECT_EQ(local_v->Shadows(), type_t); in TEST_F()
348 EXPECT_EQ(local_l->Shadows(), type_t); in TEST_F()
372 auto* type_t = Sem().Get(t); in TEST_F() local
379 EXPECT_EQ(local_v->Shadows(), type_t); in TEST_F()
380 EXPECT_EQ(local_l->Shadows(), type_t); in TEST_F()

12