Home
last modified time | relevance | path

Searched refs:aTmp (Results 1 – 1 of 1) sorted by relevance

/optee_os/core/lib/qcbor/inc/qcbor/
H A DUsefulBuf.h1998 uint8_t aTmp[2]; in UsefulOutBuf_InsertUint16() local
2000 aTmp[0] = (uint8_t)((uInteger16 & 0xff00) >> 8); in UsefulOutBuf_InsertUint16()
2001 aTmp[1] = (uint8_t)(uInteger16 & 0xff); in UsefulOutBuf_InsertUint16()
2003 pBytes = aTmp; in UsefulOutBuf_InsertUint16()
2031 uint8_t aTmp[4]; in UsefulOutBuf_InsertUint32() local
2033 aTmp[0] = (uint8_t)((uInteger32 & 0xff000000) >> 24); in UsefulOutBuf_InsertUint32()
2034 aTmp[1] = (uint8_t)((uInteger32 & 0xff0000) >> 16); in UsefulOutBuf_InsertUint32()
2035 aTmp[2] = (uint8_t)((uInteger32 & 0xff00) >> 8); in UsefulOutBuf_InsertUint32()
2036 aTmp[3] = (uint8_t)(uInteger32 & 0xff); in UsefulOutBuf_InsertUint32()
2038 pBytes = aTmp; in UsefulOutBuf_InsertUint32()
[all …]