Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/2.0/src/
H A Dscreenregion.cpp257 if (alignedHeight_ % ALIGNEDBITS != 0) { in SetAlignedHeight()
258 alignedHeight_ = ((alignedHeight_ / ALIGNEDBITS) + 1) * ALIGNEDBITS; in SetAlignedHeight()
/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/screensinkprocessor/decoder/src/
H A Dimage_sink_decoder.cpp53 if (alignedHeight_ % ALIGNEDBITS != 0) { in ConfigureDecoder()
54 alignedHeight_ = ((alignedHeight_ / ALIGNEDBITS) + 1) * ALIGNEDBITS; in ConfigureDecoder()
/ohos5.0/foundation/distributedhardware/distributed_screen/common/include/
H A Ddscreen_constants.h117 constexpr uint32_t ALIGNEDBITS = 32; variable