Home
last modified time | relevance | path

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

/Linux-v6.6/arch/arm/nwfpe/
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 …]
/Linux-v6.6/arch/sh/kernel/cpu/sh4/
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()