Searched refs:pi8 (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrtonum.cpp900 * @param pi8 Where to store the converted number. (optional)
902 RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8) argument
912 if (pi8)
913 *pi8 = (int8_t)i64;
934 * @param pi8 Where to store the converted number. (optional)
936 RTDECL(int) RTStrToInt8Full(const char *pszValue, unsigned uBase, int8_t *pi8) argument
946 if (pi8)
947 *pi8 = (int8_t)i64;
/vbox/include/VBox/vmm/
H A Dcfgm.h162 VMMR3DECL(int) CFGMR3QueryS8( PCFGMNODE pNode, const char *pszName, int8_t *pi8);
163 VMMR3DECL(int) CFGMR3QueryS8Def( PCFGMNODE pNode, const char *pszName, int8_t *pi8, int8_t i8Def);
H A Dssm.h1253 VMMR3DECL(int) SSMR3GetS8(PSSMHANDLE pSSM, int8_t *pi8);
/vbox/include/iprt/
H A Dasm.h276 * @param pi8 Pointer to the 8-bit variable to update.
277 * @param i8 The 8-bit value to assign to *pi8.
279 DECLINLINE(int8_t) ASMAtomicXchgS8(volatile int8_t *pi8, int8_t i8) argument
281 return (int8_t)ASMAtomicXchgU8((volatile uint8_t *)pi8, (uint8_t)i8);
290 * @param f The 8-bit value to assign to *pi8.
699 * @param pi8 Pointer to the value to update.
700 * @param i8New The new value to assigned to *pi8.
701 * @param i8Old The old value to *pi8 compare with.
703 DECLINLINE(bool) ASMAtomicCmpXchgS8(volatile int8_t *pi8, const int8_t i8New, const int8_t i8Old) argument
705 return ASMAtomicCmpXchgU8((volatile uint8_t *)pi8, (cons
1431 ASMAtomicReadS8(volatile int8_t *pi8) argument
1444 ASMAtomicUoReadS8(volatile int8_t *pi8) argument
2012 ASMAtomicWriteS8(volatile int8_t *pi8, int8_t i8) argument
2024 ASMAtomicUoWriteS8(volatile int8_t *pi8, int8_t i8) argument
[all...]
H A Dstring.h2965 * @param pi8 Where to store the converted number. (optional)
2967 RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8);
2984 * @param pi8 Where to store the converted number. (optional)
2986 RTDECL(int) RTStrToInt8Full(const char *pszValue, unsigned uBase, int8_t *pi8);
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp2658 * @param pi8 Where to store the value.
2660 VMMR3DECL(int) CFGMR3QueryS8(PCFGMNODE pNode, const char *pszName, int8_t *pi8) argument
2668 *pi8 = (int8_t)u64;
2682 * @param pi8 Where to store the value. Set to default on failure.
2685 VMMR3DECL(int) CFGMR3QueryS8Def(PCFGMNODE pNode, const char *pszName, int8_t *pi8, int8_t i8Def) argument
2693 *pi8 = (int8_t)u64;
2698 *pi8 = i8Def;
H A DSSM.cpp6960 * @param pi8 Where to store the item.
6962 VMMR3DECL(int) SSMR3GetS8(PSSMHANDLE pSSM, int8_t *pi8)
6966 return ssmR3DataRead(pSSM, pi8, sizeof(*pi8));
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAll.cpp1225 * @param pi8 Where to return the signed byte.
1227 DECLINLINE(VBOXSTRICTRC) iemOpcodeGetNextS8(PIEMCPU pIemCpu, int8_t *pi8) argument
1229 return iemOpcodeGetNextU8(pIemCpu, (uint8_t *)pi8);
1237 * @param pi8 Where to return the signed byte.

Completed in 129 milliseconds