Home
last modified time | relevance | path

Searched refs:z0Ptr (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/include/fpu/
H A Dsoftfloat-macros.h190 uint64_t a0, uint64_t a1, int count, uint64_t *z0Ptr, uint64_t *z1Ptr) in shift64ExtraRightJamming() argument
213 *z0Ptr = z0; in shift64ExtraRightJamming()
227 uint64_t a0, uint64_t a1, int count, uint64_t *z0Ptr, uint64_t *z1Ptr) in shift128Right() argument
245 *z0Ptr = z0; in shift128Right()
262 uint64_t a0, uint64_t a1, int count, uint64_t *z0Ptr, uint64_t *z1Ptr) in shift128RightJamming() argument
288 *z0Ptr = z0; in shift128RightJamming()
317 uint64_t *z0Ptr, in shift128ExtraRightJamming() argument
358 *z0Ptr = z0; in shift128ExtraRightJamming()
370 uint64_t *z0Ptr, uint64_t *z1Ptr) in shortShift128Left() argument
373 *z0Ptr = count == 0 ? a0 : (a0 << count) | (a1 >> (-count & 63)); in shortShift128Left()
[all …]
/openbmc/linux/arch/arm/nwfpe/
H A Dsoftfloat-macros89 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'. The
99 `z0Ptr'. The fractional part of the result may be slightly corrupted as
105 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
128 *z0Ptr = z0;
138 which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
143 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
161 *z0Ptr = z0;
174 the locations pointed to by `z0Ptr' and `z1Ptr'.
179 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
205 *z0Ptr = z0;
[all …]
/openbmc/linux/arch/sh/kernel/cpu/sh4/
H A Dsoftfloat.c90 void add128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr,
92 void sub128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr,
94 void mul64To128(bits64 a, bits64 b, bits64 * z0Ptr, bits64 * z1Ptr);
638 void add128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, in add128() argument
645 *z0Ptr = a0 + b0 + (z1 < a1); in add128()
649 sub128(bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 * z0Ptr, in sub128() argument
653 *z0Ptr = a0 - b0 - (a1 < b1); in sub128()
682 void mul64To128(bits64 a, bits64 b, bits64 * z0Ptr, bits64 * z1Ptr) in mul64To128() argument
701 *z0Ptr = z0; in mul64To128()