Searched defs:pi16 (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrtonum.cpp813 * @param pi16 Where to store the converted number. (optional)
815 RTDECL(int) RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16) argument
825 if (pi16)
826 *pi16 = (int16_t)i64;
847 * @param pi16 Where to store the converted number. (optional)
849 RTDECL(int) RTStrToInt16Full(const char *pszValue, unsigned uBase, int16_t *pi16) argument
859 if (pi16)
860 *pi16 = (int16_t)i64;
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp2558 * @param pi16 Where to store the value.
2560 VMMR3DECL(int) CFGMR3QueryS16(PCFGMNODE pNode, const char *pszName, int16_t *pi16) argument
2568 *pi16 = (int16_t)u64;
2582 * @param pi16 Where to store the value. Set to default on failure.
2585 VMMR3DECL(int) CFGMR3QueryS16Def(PCFGMNODE pNode, const char *pszName, int16_t *pi16, int16_t i16Def) argument
2593 *pi16 = (int16_t)u64;
2598 *pi16 = i16Def;
/vbox/include/iprt/
H A Dasm.h345 * @param pi16 Pointer to the 16-bit variable to update.
346 * @param i16 The 16-bit value to assign to *pi16.
348 DECLINLINE(int16_t) ASMAtomicXchgS16(volatile int16_t *pi16, int16_t i16) argument
350 return (int16_t)ASMAtomicXchgU16((volatile uint16_t *)pi16, (uint16_t)i16);
1480 * @returns Current *pi16 value
1481 * @param pi16 Pointer to the 16-bit variable to read.
1483 DECLINLINE(int16_t) ASMAtomicReadS16(volatile int16_t *pi16) argument
1486 Assert(!((uintptr_t)pi16 & 1));
1487 return *pi16;
1494 * @returns Current *pi16 valu
1497 ASMAtomicUoReadS16(volatile int16_t *pi16) argument
2061 ASMAtomicWriteS16(volatile int16_t *pi16, int16_t i16) argument
2073 ASMAtomicUoWriteS16(volatile int16_t *pi16, int16_t i16) argument
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAll.cpp1583 * @param pi16 Where to return the signed word.
1585 DECLINLINE(VBOXSTRICTRC) iemOpcodeGetNextS16(PIEMCPU pIemCpu, int16_t *pi16) argument
1587 return iemOpcodeGetNextU16(pIemCpu, (uint16_t *)pi16);
1595 * @param pi16 Where to return the signed word.

Completed in 83 milliseconds