/external/webrtc/webrtc/test/ |
D | frame_generator_unittest.cc | 49 rtc::scoped_ptr<uint8_t[]> plane_buffer(new uint8_t[y_size]); in WriteYuvFile() 50 memset(plane_buffer.get(), y, y_size); in WriteYuvFile() 51 fwrite(plane_buffer.get(), 1, y_size, file); in WriteYuvFile() 62 ASSERT_EQ(y_size, frame->allocated_size(PlaneType::kYPlane)); in CheckFrameAndMutate() 64 for (int i = 0; i < y_size; ++i) in CheckFrameAndMutate() 86 const int y_size = kFrameWidth * kFrameHeight; member in webrtc::test::FrameGeneratorTest
|
/external/webrtc/talk/session/media/ |
D | planarfunctions_unittest.cc | 142 int y_size = height * width; in CreateFakeYuvTestingImage() local 157 v_size = u_size = y_size; in CreateFakeYuvTestingImage() 165 uint8_t* image_pointer = new uint8_t[y_size + u_size + v_size + kAlignment]; in CreateFakeYuvTestingImage() 167 u_pointer = ALIGNP(&image_pointer[y_size], kAlignment); in CreateFakeYuvTestingImage() 168 v_pointer = ALIGNP(&image_pointer[y_size + u_size], kAlignment); in CreateFakeYuvTestingImage() 504 int y_size = kHeight * kWidth; in TEST_F() local 515 uint8_t* u_output_pointer = y_output_pointer + y_size; in TEST_F() 542 int y_size = kHeight * kWidth; in TEST_F() local 553 uint8_t* u_output_pointer = y_output_pointer + y_size; in TEST_F() 590 int y_size = kHeight * kWidth; in TEST_P() local [all …]
|
/external/opencv3/3rdparty/libwebp/dec/ |
D | buffer.c | 49 const uint64_t y_size = (uint64_t)buf->y_stride * height; in CheckDecBuffer() local 53 ok &= (y_size <= buf->y_size); in CheckDecBuffer() 116 buf->y_size = (size_t)size; in AllocateBuffer()
|
D | webp.c | 546 output.u.YUVA.y_size = luma_size; in WebPDecodeYUVInto()
|
D | idec.c | 676 idec->output_.u.YUVA.y_size = luma_size; in WebPINewYUVA()
|
/external/webp/src/enc/ |
D | picture.c | 98 uint64_t y_size, uv_size, a_size, total_size; in WebPPictureAllocYUVA() local 113 y_size = (uint64_t)y_stride * height; in WebPPictureAllocYUVA() 117 total_size = y_size + a_size + 2 * uv_size; in WebPPictureAllocYUVA() 138 mem += y_size; in WebPPictureAllocYUVA()
|
/external/webp/src/dec/ |
D | buffer.c | 56 const uint64_t y_size = MIN_BUFFER_SIZE(width, height, y_stride); in CheckDecBuffer() local 60 ok &= (y_size <= buf->y_size); in CheckDecBuffer() 125 buf->y_size = (size_t)size; in AllocateBuffer()
|
D | webp.c | 587 output.u.YUVA.y_size = luma_size; in WebPDecodeYUVInto()
|
D | idec.c | 700 idec->output_.u.YUVA.y_size = luma_size; in WebPINewYUVA()
|
/external/webrtc/talk/media/base/ |
D | videoframe.cc | 86 const size_t y_size = GetHeight() * GetYPitch(); in CopyToBuffer() local 89 const size_t needed = y_size + u_size + v_size; in CopyToBuffer() 92 CopyToPlanes(buffer, buffer + y_size, buffer + y_size + u_size, in CopyToBuffer()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert_to_i420.cc | 72 int y_size = crop_width * abs_crop_height; in ConvertToI420() local 74 rotate_buffer = (uint8*)malloc(y_size + uv_size * 2); in ConvertToI420() 79 u = y + y_size; in ConvertToI420()
|
/external/webrtc/webrtc/modules/video_processing/ |
D | deflickering.cc | 126 const uint32_t y_size = height * width; in ProcessFrame() local 231 for (uint32_t i = 0; i < y_size; i++) { in ProcessFrame()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2009-12-01-LoopIVUsers.ll | 6 define void @fred(i32 %three_by_three, i8* %in, double %dt1, i32 %x_size, i32 %y_size, i8* %bp) nou… 46 store i32 %y_size, i32* %y_size_addr
|
/external/opencv3/3rdparty/libwebp/enc/ |
D | picture.c | 55 uint64_t y_size, uv_size, uv0_size, a_size, total_size; in WebPPictureAlloc() local 80 y_size = (uint64_t)y_stride * height; in WebPPictureAlloc() 84 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; in WebPPictureAlloc() 104 mem += y_size; in WebPPictureAlloc()
|
/external/opencv3/3rdparty/libwebp/webp/ |
D | decode.h | 188 size_t y_size; // luma plane size member
|
/external/webp/src/webp/ |
D | decode.h | 191 size_t y_size; // luma plane size member
|
/external/webp/include/webp/ |
D | decode.h | 191 size_t y_size; // luma plane size member
|
/external/libyuv/files/source/ |
D | convert.cc | 1755 int y_size = dst_width * abs_dst_height; in ConvertToI420() local 1757 buf = new uint8[y_size + uv_size * 2]; in ConvertToI420() 1762 u = y + y_size; in ConvertToI420()
|