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

/external/chromium_org/third_party/webrtc/common_video/
H A Dplane_unittest.cc63 int stride2 = plane2.stride(); local
67 EXPECT_EQ(stride2, plane1.stride());
71 EXPECT_EQ(stride2, plane2.stride());
83 int size1, size2, stride1, stride2; local
88 stride2 = plane2.stride();
93 EXPECT_EQ(stride2, plane1.stride());
/external/chromium_org/third_party/opus/src/celt/
H A Dvq.c71 int stride2=0; local
86 stride2 = 1;
88 It's basically incrementing long as (stride2+0.5)^2 < len/stride. */
89 while ((stride2*stride2+stride2)*stride + (stride>>2) < len)
90 stride2++;
99 if (stride2)
100 exp_rotation1(X+i*len, len, stride2, s, c);
104 if (stride2)
[all...]
/external/libopus/celt/
H A Dvq.c71 int stride2=0; local
86 stride2 = 1;
88 It's basically incrementing long as (stride2+0.5)^2 < len/stride. */
89 while ((stride2*stride2+stride2)*stride + (stride>>2) < len)
90 stride2++;
99 if (stride2)
100 exp_rotation1(X+i*len, len, stride2, s, c);
104 if (stride2)
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-drm/
H A Dwayland-drm.c74 int32_t offset2, int32_t stride2)
94 buffer->stride[2] = stride2;
144 int32_t offset2, int32_t stride2)
163 offset0, stride0, offset1, stride1, offset2, stride2);
69 create_buffer(struct wl_client *client, struct wl_resource *resource, uint32_t id, uint32_t name, int32_t width, int32_t height, uint32_t format, int32_t offset0, int32_t stride0, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2) argument
138 drm_create_planar_buffer(struct wl_client *client, struct wl_resource *resource, uint32_t id, uint32_t name, int32_t width, int32_t height, uint32_t format, int32_t offset0, int32_t stride0, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2) argument
/external/mesa3d/src/egl/wayland/wayland-drm/
H A Dwayland-drm.c74 int32_t offset2, int32_t stride2)
94 buffer->stride[2] = stride2;
144 int32_t offset2, int32_t stride2)
163 offset0, stride0, offset1, stride1, offset2, stride2);
69 create_buffer(struct wl_client *client, struct wl_resource *resource, uint32_t id, uint32_t name, int32_t width, int32_t height, uint32_t format, int32_t offset0, int32_t stride0, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2) argument
138 drm_create_planar_buffer(struct wl_client *client, struct wl_resource *resource, uint32_t id, uint32_t name, int32_t width, int32_t height, uint32_t format, int32_t offset0, int32_t stride0, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2) argument
/external/chromium_org/third_party/libwebp/enc/
H A Dfilter.c123 const uint8_t* src2, int stride2,
132 src2 += ymin * stride2;
133 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) {
181 const uint8_t* src2, int stride2,
186 VP8SSIMAccumulate(src1, stride1, src2, stride2, x, y, W, H, stats);
122 VP8SSIMAccumulate(const uint8_t* src1, int stride1, const uint8_t* src2, int stride2, int xo, int yo, int W, int H, DistoStats* const stats) argument
180 VP8SSIMAccumulatePlane(const uint8_t* src1, int stride1, const uint8_t* src2, int stride2, int W, int H, DistoStats* const stats) argument
H A Dvp8enci.h542 const uint8_t* src2, int stride2,
/external/webp/src/enc/
H A Dfilter.c123 const uint8_t* src2, int stride2,
132 src2 += ymin * stride2;
133 for (y = ymin; y <= ymax; ++y, src1 += stride1, src2 += stride2) {
181 const uint8_t* src2, int stride2,
186 VP8SSIMAccumulate(src1, stride1, src2, stride2, x, y, W, H, stats);
122 VP8SSIMAccumulate(const uint8_t* src1, int stride1, const uint8_t* src2, int stride2, int xo, int yo, int W, int H, DistoStats* const stats) argument
180 VP8SSIMAccumulatePlane(const uint8_t* src1, int stride1, const uint8_t* src2, int stride2, int W, int H, DistoStats* const stats) argument
H A Dvp8enci.h542 const uint8_t* src2, int stride2,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Dmfqe_sse2.asm164 ; int stride2, 3
181 mov rdi, arg(3) ; stride2
196 add rdx, rdi ; src2 + stride2
/external/libvpx/libvpx/vp8/common/x86/
H A Dmfqe_sse2.asm164 ; int stride2, 3
181 mov rdi, arg(3) ; stride2
196 add rdx, rdi ; src2 + stride2
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c488 uint32_t stride1, stride2; local
502 stride2 = img2->stride[VPX_PLANE_Y]/2;
511 *(plane2 + (i + k) * stride2 + j + l)) {
515 yloc[3] = *(plane2 + (i + k) * stride2 + j + l);
528 stride2 = img2->stride[VPX_PLANE_U]/2;
537 *(plane2 + (i + k) * stride2 + j + l)) {
541 uloc[3] = *(plane2 + (i + k) * stride2 + j + l);
554 stride2 = img2->stride[VPX_PLANE_V]/2;
563 *(plane2 + (i + k) * stride2 + j + l)) {
567 vloc[3] = *(plane2 + (i + k) * stride2
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_emit.c836 unsigned size1, size2, offset1, offset2, stride1, stride2; local
886 stride2 = 0;
890 stride2 = vb2->stride;
895 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(stride2));
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_emit.c836 unsigned size1, size2, offset1, offset2, stride1, stride2; local
886 stride2 = 0;
890 stride2 = vb2->stride;
895 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(stride2));

Completed in 604 milliseconds