Searched refs:dst_t (Results 1 – 8 of 8) sorted by relevance
/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 | 176 for dst_t in dst_types: 177 if dst_t == tfloat: 182 if bit_size == 16 and dst_t == tfloat and src_t == tfloat: 185 unop_convert("{0}2{1}{2}_{3}".format(src_t[0], dst_t[0], 187 dst_t + str(bit_size), src_t, "src0") 189 unop_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], bit_size), 190 dst_t + str(bit_size), src_t, "src0")
|
/external/owasp/sanitizer/tools/ |
D | update_tree_in_svn.py | 113 dst_t = classify(dst) 114 for action in actions[(src_t, dst_t)]: action(src, dst)
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | rebatch.cc | 98 NodeDef* AddCastNode(const string& input, DataType src_t, DataType dst_t, in AddCastNode() argument 106 AddNodeAttr("DstT", dst_t, &cast_node); in AddCastNode()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cast_op_test.py | 208 for dst_t in t: 212 y = math_ops.cast(z, dst_t)
|