Lines Matching +full:1 +full:a

13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * You should have received a copy of the GNU Lesser General Public
29 * so addressing units smaller than that needs a host-endian fixup.
34 * casting the final pointer to a type of size N.
41 #define H4(x) ((x) ^ 1)
51 * and H1_8 so that when a function is being generated from a macro we
67 extern const uint64_t expand_pred_h_data[0x55 + 1];
94 src >>= -shift - 1; in do_sqrshl_bhs()
95 return (src >> 1) + (src & 1); in do_sqrshl_bhs()
114 *sat = 1; in do_sqrshl_bhs()
115 return (1u << (bits - 1)) - (src >= 0); in do_sqrshl_bhs()
125 src >>= -shift - 1; in do_uqrshl_bhs()
126 return (src >> 1) + (src & 1); in do_uqrshl_bhs()
145 *sat = 1; in do_uqrshl_bhs()
153 *sat = 1; in do_suqrshl_bhs()
170 src >>= -shift - 1; in do_sqrshl_d()
171 return (src >> 1) + (src & 1); in do_sqrshl_d()
183 *sat = 1; in do_sqrshl_d()
194 src >>= -shift - 1; in do_uqrshl_d()
195 return (src >> 1) + (src & 1); in do_uqrshl_d()
207 *sat = 1; in do_uqrshl_d()
215 *sat = 1; in do_suqrshl_d()
252 * for the FPCR.EBF == 1 case.
263 * Determine whether a BFDotAdd operation should use FPCR.EBF = 0
264 * or FPCR.EBF = 1 semantics. On return, has initialized *statusp
267 * Returns true for EBF = 1, false for EBF = 0. (The caller should use this
273 * Negate as for FPCR.AH=1 -- do not negate NaNs.
275 static inline float16 float16_ah_chs(float16 a) in float16_ah_chs() argument
277 return float16_is_any_nan(a) ? a : float16_chs(a); in float16_ah_chs()
280 static inline float32 float32_ah_chs(float32 a) in float32_ah_chs() argument
282 return float32_is_any_nan(a) ? a : float32_chs(a); in float32_ah_chs()
285 static inline float64 float64_ah_chs(float64 a) in float64_ah_chs() argument
287 return float64_is_any_nan(a) ? a : float64_chs(a); in float64_ah_chs()
290 static inline float16 float16_maybe_ah_chs(float16 a, bool fpcr_ah) in float16_maybe_ah_chs() argument
292 return fpcr_ah && float16_is_any_nan(a) ? a : float16_chs(a); in float16_maybe_ah_chs()
295 static inline float32 float32_maybe_ah_chs(float32 a, bool fpcr_ah) in float32_maybe_ah_chs() argument
297 return fpcr_ah && float32_is_any_nan(a) ? a : float32_chs(a); in float32_maybe_ah_chs()
300 static inline float64 float64_maybe_ah_chs(float64 a, bool fpcr_ah) in float64_maybe_ah_chs() argument
302 return fpcr_ah && float64_is_any_nan(a) ? a : float64_chs(a); in float64_maybe_ah_chs()