Home
last modified time | relevance | path

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

/aosp12/packages/apps/Gallery2/jni/filters/
H A Dedge.c39 int row_stride = 4 * width; in JNIFUNCF() local
42 int buf_len = 2 * row_stride; in JNIFUNCF()
56 int loc = j * row_stride + k * 4; in JNIFUNCF()
62 tmp += *(ptr + (loc - row_stride + 4 + l)); in JNIFUNCF()
64 tmp += *(ptr + (loc + row_stride + 4 + l)); in JNIFUNCF()
106 buf_row_ring += row_stride; in JNIFUNCF()
110 memcpy((dst + row_stride * (j - 1)), (buf + buf_row_ring), row_stride * sizeof(char)); in JNIFUNCF()
114 buf_row_ring += row_stride; in JNIFUNCF()
116 int second_last_row = row_stride * (height - 2); in JNIFUNCF()
120 int last_row = row_stride * (height - 1); in JNIFUNCF()
[all …]
/aosp12/packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
H A DgenJPEGStrips.cpp109 int row_stride; // physical row width in image buffer in write_JPEG_Buff() local
110 row_stride = image_width * cinfo.input_components; // JSAMPLEs per row in imageBuffer in write_JPEG_Buff()
114 row_pointer[0] = &imageBuffer[cinfo.next_scanline * row_stride]; in write_JPEG_Buff()
/aosp12/packages/apps/Camera2/jni/
H A Djpegutil.h97 int row_stride; member
229 int plane_start = startX * plane_.pixel_stride + startY * plane_.row_stride; in LoadAt()
231 int plane_end = endX * plane_.pixel_stride + endY * plane_.row_stride; in LoadAt()
234 int stride = dx * plane_.pixel_stride + dy * plane_.row_stride; in LoadAt()