Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/c_utils/base/src/
H A Dunicode_ex.cpp76 void Utf32CodePointToUtf8(uint8_t* dstP, char32_t srcChar, size_t bytes) in Utf32CodePointToUtf8() argument
78 dstP += bytes; in Utf32CodePointToUtf8()
80 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
85 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
90 *--dstP = static_cast<uint8_t>((srcChar | UTF8_BYTE_MARK) & UTF8_BYTE_MASK); in Utf32CodePointToUtf8()
95 *--dstP = static_cast<uint8_t>(srcChar | UTF8_FIRST_BYTE_MARK[bytes]); in Utf32CodePointToUtf8()
/ohos5.0/base/update/updater/services/ui/driver/
H A Dui_rotation.cpp110 uint8_t *dstP = nullptr; in RotateBuffer() local
116 dstP = dstBuf + y * newRowBytes_ + x * pixelBytes_; in RotateBuffer()
118 *dstP++ = *srcP++; in RotateBuffer()