Lines Matching defs:pau16
2817 * @param pau16 Pointer to the string buffer.
2821 DECLASM(void) ASMOutStrU16(RTIOPORT Port, uint16_t const *pau16, size_t c);
2823 DECLINLINE(void) ASMOutStrU16(RTIOPORT Port, uint16_t const *pau16, size_t c)
2827 : "+S" (pau16),
2832 __outwordstring(Port, (unsigned short *)pau16, (unsigned long)c);
2839 mov eax, [pau16]
2853 * @param pau16 Pointer to the string buffer (output).
2857 DECLASM(void) ASMInStrU16(RTIOPORT Port, uint16_t *pau16, size_t c);
2859 DECLINLINE(void) ASMInStrU16(RTIOPORT Port, uint16_t *pau16, size_t c)
2863 : "+D" (pau16),
2868 __inwordstring(Port, pau16, (unsigned long)c);
2875 mov eax, [pau16]