Home
last modified time | relevance | path

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

/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_utils.cpp73 constexpr uint8_t MOVE_BITS_24 = 24; member
646 data = (bytes[offset] << MOVE_BITS_24) | (bytes[offset + NUM_1] << MOVE_BITS_16) | in BytesToUint32()
649 data = (bytes[offset + NUM_3] << MOVE_BITS_24) | (bytes[offset + NUM_2] << MOVE_BITS_16) | in BytesToUint32()
664 data = (bytes[offset] << MOVE_BITS_24) | (bytes[offset + NUM_1] << MOVE_BITS_16) | in BytesToInt32()
667 data = (bytes[offset + NUM_3] << MOVE_BITS_24) | (bytes[offset + NUM_2] << MOVE_BITS_16) | in BytesToInt32()
701 uint8_t BYTE_ONE = (data >> MOVE_BITS_24) & 0xFF; in Uint32ToBytes()

Completed in 2 milliseconds