HomeSort by relevance Sort by last modified time
    Searched refs:AlignInt (Results 1 - 3 of 3) sorted by null

  /external/webrtc/webrtc/common_video/libyuv/include/
webrtc_libyuv.h 59 int AlignInt(int value, int alignment);
  /external/webrtc/webrtc/common_video/libyuv/
webrtc_libyuv.cc 59 int AlignInt(int value, int alignment) {
65 *stride_y = AlignInt(width, k16ByteAlignment);
66 *stride_uv = AlignInt((width + 1) / 2, k16ByteAlignment);
libyuv_unittest.cc 327 EXPECT_EQ(0x400, AlignInt(value, 128)); // Low 7 bits are zero.
328 EXPECT_EQ(0x400, AlignInt(value, 64)); // Low 6 bits are zero.
329 EXPECT_EQ(0x400, AlignInt(value, 32)); // Low 5 bits are zero.

Completed in 3635 milliseconds