/external/llvm-project/compiler-rt/lib/builtins/ |
D | fp_trunc.h | 41 typedef double dst_t; typedef 47 typedef float dst_t; typedef 54 typedef _Float16 dst_t; typedef 56 typedef uint16_t dst_t; typedef 77 static __inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep() 79 dst_t f; in dstFromRep()
|
D | fp_extend.h | 58 typedef float dst_t; typedef 64 typedef double dst_t; typedef 70 typedef long double dst_t; typedef 90 static __inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep() 92 dst_t f; in dstFromRep()
|
D | truncsfhf2.c | 15 COMPILER_RT_ABI NOINLINE dst_t __truncsfhf2(float a) { in __truncsfhf2() 19 COMPILER_RT_ABI dst_t __gnu_f2h_ieee(float a) { return __truncsfhf2(a); } in __gnu_f2h_ieee() 23 AEABI_RTABI dst_t __aeabi_f2h(float a) { return __truncsfhf2(a); } in __aeabi_f2h()
|
D | truncdfhf2.c | 13 COMPILER_RT_ABI dst_t __truncdfhf2(double a) { return __truncXfYf2__(a); } in __truncdfhf2() 17 AEABI_RTABI dst_t __aeabi_d2h(double a) { return __truncdfhf2(a); } in __aeabi_d2h()
|
D | fp_extend_impl.inc | 40 static __inline dst_t __extendXfYf2__(src_t a) { 55 const int dstBits = sizeof(dst_t) * CHAR_BIT;
|
D | fp_trunc_impl.inc | 41 static __inline dst_t __truncXfYf2__(src_t a) { 59 const int dstBits = sizeof(dst_t) * CHAR_BIT;
|
/external/compiler-rt/lib/builtins/ |
D | fp_trunc.h | 42 typedef double dst_t; typedef 48 typedef float dst_t; typedef 54 typedef uint16_t dst_t; typedef 71 static __inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep() 72 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; in dstFromRep()
|
D | fp_extend.h | 54 typedef float dst_t; typedef 60 typedef double dst_t; typedef 66 typedef long double dst_t; typedef 83 static __inline dst_t dstFromRep(dst_rep_t x) { in dstFromRep() 84 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; in dstFromRep()
|
D | fp_extend_impl.inc | 41 static __inline dst_t __extendXfYf2__(src_t a) { 56 const int dstBits = sizeof(dst_t)*CHAR_BIT; 105 // Apply the signbit to (dst_t)abs(a).
|
D | fp_trunc_impl.inc | 42 static __inline dst_t __truncXfYf2__(src_t a) { 60 const int dstBits = sizeof(dst_t)*CHAR_BIT; 132 // Apply the signbit to (dst_t)abs(a).
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opcodes.py | 224 for dst_t in dst_types: 225 for dst_bit_size in type_sizes(dst_t): 226 if dst_bit_size == 16 and dst_t == tfloat and src_t == tfloat: 249 dst_t[0], 252 dst_t + str(dst_bit_size), 254 elif dst_bit_size == 32 and dst_t == tfloat and src_t == tfloat: 262 unop_numeric_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], 264 dst_t + str(dst_bit_size), src_t, conv_expr) 266 conv_expr = "src0 != 0" if dst_t == tbool else "src0" 267 unop_numeric_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cast_op_test.py | 174 for dst_t in t: 178 def cast(x, dst_t=dst_t): argument 180 x = math_ops.cast(x, dst_t)
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 454 struct pipe_transfer *dst_t; in llvmpipe_clear_buffer() local 464 &dst_t); in llvmpipe_clear_buffer() 478 pipe->transfer_unmap(pipe, dst_t); in llvmpipe_clear_buffer()
|
/external/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_execute.c | 1519 struct pipe_transfer *src_t, *dst_t; in handle_copy_image_to_buffer() local 1551 &dst_t); in handle_copy_image_to_buffer() 1589 state->pctx->transfer_unmap(state->pctx, dst_t); in handle_copy_image_to_buffer() 1599 struct pipe_transfer *src_t, *dst_t; in handle_copy_buffer_to_image() local 1632 &dst_t); in handle_copy_buffer_to_image() 1654 dst_t->stride, dst_t->layer_stride, in handle_copy_buffer_to_image() 1663 dst_t->stride, dst_t->layer_stride, in handle_copy_buffer_to_image() 1672 state->pctx->transfer_unmap(state->pctx, dst_t); in handle_copy_buffer_to_image() 1826 struct pipe_transfer *dst_t; in handle_update_buffer() local 1835 &dst_t); in handle_update_buffer() [all …]
|