Home
last modified time | relevance | path

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

/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_utils.cpp71 constexpr uint8_t MOVE_BITS_8 = 8; member
630 data = (bytes[offset] << MOVE_BITS_8) | bytes[offset + NUM_1]; in BytesToUint16()
632 data = (bytes[offset + NUM_1] << MOVE_BITS_8) | bytes[offset]; in BytesToUint16()
647 (bytes[offset + NUM_2] << MOVE_BITS_8) | (bytes[offset + NUM_3]); in BytesToUint32()
650 (bytes[offset + NUM_1] << MOVE_BITS_8) | bytes[offset]; in BytesToUint32()
665 (bytes[offset + NUM_2] << MOVE_BITS_8) | (bytes[offset + NUM_3]); in BytesToInt32()
668 (bytes[offset + NUM_1] << MOVE_BITS_8) | bytes[offset]; in BytesToInt32()
688 uint8_t BYTE_ONE = (data >> MOVE_BITS_8) & 0xFF; in Uint16ToBytes()
703 uint8_t BYTE_THREE = (data >> MOVE_BITS_8) & 0xFF; in Uint32ToBytes()

Completed in 2 milliseconds