Lines Matching defs:__P
111 /// memory at \a __P and returns the lower 32 bits.
114 /// Store32(__P, (__X * __Y)[63:32])
126 /// \param __P
130 _mulx_u32(unsigned int __X, unsigned int __Y, unsigned int *__P) {
132 *__P = (unsigned int)(__res >> 32);
223 /// memory addressed by \a __P and returns the lower 64 bits.
226 /// Store64(__P, (__X * __Y)[127:64])
238 /// \param __P
243 unsigned long long *__P) {
245 *__P = (unsigned long long) (__res >> 64);