Lines Matching refs:d

70     float64 d;  member
83 VIS64 d; in helper_fpmerge() local
87 d.ll = 0; in helper_fpmerge()
89 d.VIS_B64(7) = s1.VIS_B32(3); in helper_fpmerge()
90 d.VIS_B64(6) = s2.VIS_B32(3); in helper_fpmerge()
91 d.VIS_B64(5) = s1.VIS_B32(2); in helper_fpmerge()
92 d.VIS_B64(4) = s2.VIS_B32(2); in helper_fpmerge()
93 d.VIS_B64(3) = s1.VIS_B32(1); in helper_fpmerge()
94 d.VIS_B64(2) = s2.VIS_B32(1); in helper_fpmerge()
95 d.VIS_B64(1) = s1.VIS_B32(0); in helper_fpmerge()
96 d.VIS_B64(0) = s2.VIS_B32(0); in helper_fpmerge()
98 return d.ll; in helper_fpmerge()
108 VIS64 d; in helper_fmul8x16() local
112 d.ll = src2; in helper_fmul8x16()
114 d.VIS_W64(0) = do_ms16b(s.VIS_B32(0), d.VIS_SW64(0)); in helper_fmul8x16()
115 d.VIS_W64(1) = do_ms16b(s.VIS_B32(1), d.VIS_SW64(1)); in helper_fmul8x16()
116 d.VIS_W64(2) = do_ms16b(s.VIS_B32(2), d.VIS_SW64(2)); in helper_fmul8x16()
117 d.VIS_W64(3) = do_ms16b(s.VIS_B32(3), d.VIS_SW64(3)); in helper_fmul8x16()
119 return d.ll; in helper_fmul8x16()
125 VIS64 d; in helper_fmul8x16a() local
128 d.ll = 0; in helper_fmul8x16a()
130 d.VIS_W64(0) = do_ms16b(s.VIS_B32(0), src2); in helper_fmul8x16a()
131 d.VIS_W64(1) = do_ms16b(s.VIS_B32(1), src2); in helper_fmul8x16a()
132 d.VIS_W64(2) = do_ms16b(s.VIS_B32(2), src2); in helper_fmul8x16a()
133 d.VIS_W64(3) = do_ms16b(s.VIS_B32(3), src2); in helper_fmul8x16a()
135 return d.ll; in helper_fmul8x16a()
140 VIS64 s, d; in helper_fmul8sux16() local
143 d.ll = src2; in helper_fmul8sux16()
145 d.VIS_W64(0) = do_ms16b(s.VIS_SB64(1), d.VIS_SW64(0)); in helper_fmul8sux16()
146 d.VIS_W64(1) = do_ms16b(s.VIS_SB64(3), d.VIS_SW64(1)); in helper_fmul8sux16()
147 d.VIS_W64(2) = do_ms16b(s.VIS_SB64(5), d.VIS_SW64(2)); in helper_fmul8sux16()
148 d.VIS_W64(3) = do_ms16b(s.VIS_SB64(7), d.VIS_SW64(3)); in helper_fmul8sux16()
150 return d.ll; in helper_fmul8sux16()
155 VIS64 s, d; in helper_fmul8ulx16() local
158 d.ll = src2; in helper_fmul8ulx16()
160 d.VIS_W64(0) = do_ms16b(s.VIS_B64(0), d.VIS_SW64(0)); in helper_fmul8ulx16()
161 d.VIS_W64(1) = do_ms16b(s.VIS_B64(2), d.VIS_SW64(1)); in helper_fmul8ulx16()
162 d.VIS_W64(2) = do_ms16b(s.VIS_B64(4), d.VIS_SW64(2)); in helper_fmul8ulx16()
163 d.VIS_W64(3) = do_ms16b(s.VIS_B64(6), d.VIS_SW64(3)); in helper_fmul8ulx16()
165 return d.ll; in helper_fmul8ulx16()
171 VIS64 d; in helper_fexpand() local
174 d.ll = 0; in helper_fexpand()
175 d.VIS_W64(0) = s.VIS_B32(0) << 4; in helper_fexpand()
176 d.VIS_W64(1) = s.VIS_B32(1) << 4; in helper_fexpand()
177 d.VIS_W64(2) = s.VIS_B32(2) << 4; in helper_fexpand()
178 d.VIS_W64(3) = s.VIS_B32(3) << 4; in helper_fexpand()
180 return d.ll; in helper_fexpand()
186 VIS64 s, d; \
189 d.ll = src2; \
191 d.VIS_W64(0) = F(s.VIS_W64(0), d.VIS_W64(0)) ? 1 : 0; \
192 d.VIS_W64(0) |= F(s.VIS_W64(1), d.VIS_W64(1)) ? 2 : 0; \
193 d.VIS_W64(0) |= F(s.VIS_W64(2), d.VIS_W64(2)) ? 4 : 0; \
194 d.VIS_W64(0) |= F(s.VIS_W64(3), d.VIS_W64(3)) ? 8 : 0; \
195 d.VIS_W64(1) = d.VIS_W64(2) = d.VIS_W64(3) = 0; \
197 return d.ll; \
202 VIS64 s, d; \
205 d.ll = src2; \
207 d.VIS_L64(0) = F(s.VIS_L64(0), d.VIS_L64(0)) ? 1 : 0; \
208 d.VIS_L64(0) |= F(s.VIS_L64(1), d.VIS_L64(1)) ? 2 : 0; \
209 d.VIS_L64(1) = 0; \
211 return d.ll; \