Home
last modified time | relevance | path

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

/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[], void *op) \
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[], void *op) \
132 type_t tmp = l[i]; \
[all …]
/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()
Dinstr-a3xx.h408 } type_t; typedef
411 type_size(type_t type) in type_size()
431 static inline type_t
445 static inline type_t
458 type_float(type_t type) in type_float()
464 type_uint(type_t type) in type_uint()
470 type_sint(type_t type) in type_sint()
Dir3.h341 type_t src_type, dst_type;
370 type_t type;
373 type_t type;
915 type_t src_type = instr->cat1.src_type; in is_const_mov()
916 type_t dst_type = instr->cat1.dst_type; in is_const_mov()
1266 static inline type_t
1267 half_type(type_t type) in half_type()
1289 static inline type_t
1290 full_type(type_t type) in full_type()
1463 static inline type_t
[all …]
Dir3_context.h255 static inline type_t
271 static inline type_t
277 static inline type_t
Dir3_image.h41 type_t ir3_get_type_for_image_intrinsic(const nir_intrinsic_instr *instr);
Dir3_compiler.h176 type_t bool_type;
Dir3_image.c115 type_t
Dir3_compiler_nir.c131 type_t src_type, dst_type; in create_cov()
370 type_t dst_type = type_uint_size(nir_dest_bit_size(alu->dest.dest)); in emit_alu()
1208 type_t type = TYPE_U32; in emit_intrinsic_atomic_shared()
1409 type_t type, unsigned wrmask, struct ir3_instruction *src0, in emit_sam()
1458 type_t type = ir3_get_type_for_image_intrinsic(intr); in emit_intrinsic_load_image()
1498 type_t dst_type = nir_dest_bit_size(intr->dest) == 16 ? TYPE_U16 : TYPE_U32; in emit_intrinsic_image_size_tex()
2585 type_t dst_type = type_uint_size(nir_dest_bit_size(intr->dest)); in emit_intrinsic()
2714 type_t type = utype_for_size(ir3_bitsize(ctx, undef->def.bit_size)); in emit_undef()
2727 static type_t
2730 type_t type; in get_tex_dest_type()
[all …]
Dir3_a6xx.c114 type_t type = TYPE_U32; in emit_intrinsic_atomic_ssbo()
450 type_t type = TYPE_U32; in emit_intrinsic_atomic_global()
Dir3_a4xx.c156 type_t type = TYPE_U32; in emit_intrinsic_atomic_ssbo()
Dir3_print.c52 type_name(type_t type) in type_name()
Dir3_context.c343 type_t type = (flags & IR3_REG_HALF) ? TYPE_U16 : TYPE_U32; in ir3_create_collect()
Dir3_parser.y116 static type_t parse_type(const char **type) in parse_type()
304 type_t type;
/third_party/ltp/tools/sparse/sparse-src/validation/
Dtypeof-mods.c76 typedef int __bitwise type_t; in test_bitwise() typedef
77 type_t obj, *ptr; in test_bitwise()
Dbad-type-twice2.c1 extern type_t fun(int);
/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()
/third_party/protobuf/php/ext/google/protobuf/
Dphp-upb.h563 #define FUNCS(name, membername, type_t, converter, proto_type) \ argument
564 UPB_INLINE void upb_value_set ## name(upb_value *val, type_t cval) { \
567 UPB_INLINE upb_value upb_value_ ## name(type_t val) { \
572 UPB_INLINE type_t upb_value_get ## name(upb_value val) { \
573 return (type_t)(converter)val.val; \
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.h549 #define FUNCS(name, membername, type_t, converter, proto_type) \ argument
550 UPB_INLINE void upb_value_set ## name(upb_value *val, type_t cval) { \
553 UPB_INLINE upb_value upb_value_ ## name(type_t val) { \
558 UPB_INLINE type_t upb_value_get ## name(upb_value val) { \
559 return (type_t)(converter)val.val; \