Lines Matching defs:pau32
2889 * @param pau32 Pointer to the string buffer.
2893 DECLASM(void) ASMOutStrU32(RTIOPORT Port, uint32_t const *pau32, size_t c);
2895 DECLINLINE(void) ASMOutStrU32(RTIOPORT Port, uint32_t const *pau32, size_t c)
2899 : "+S" (pau32),
2904 __outdwordstring(Port, (unsigned long *)pau32, (unsigned long)c);
2911 mov eax, [pau32]
2925 * @param pau32 Pointer to the string buffer (output).
2929 DECLASM(void) ASMInStrU32(RTIOPORT Port, uint32_t *pau32, size_t c);
2931 DECLINLINE(void) ASMInStrU32(RTIOPORT Port, uint32_t *pau32, size_t c)
2935 : "+D" (pau32),
2940 __indwordstring(Port, (unsigned long *)pau32, (unsigned long)c);
2947 mov eax, [pau32]