Lines Matching defs:stride_in_bytes

10966     int   stride_in_bytes;
12258 int pw, int ph, int stride_in_bytes, int padding, struct nk_allocator *alloc)
12278 spc->stride_in_bytes = (stride_in_bytes != 0) ? stride_in_bytes : pw;
12305 nk_tt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes,
12364 pixels += stride_in_bytes;
12368 nk_tt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes,
12387 total += (unsigned int)(pixels[i*stride_in_bytes] - buffer[i & NK_TT__OVER_MASK]);
12388 buffer[(i+kernel_width) & NK_TT__OVER_MASK] = pixels[i*stride_in_bytes];
12389 pixels[i*stride_in_bytes] = (unsigned char) (total / 2);
12394 total += (unsigned int)(pixels[i*stride_in_bytes] - buffer[i & NK_TT__OVER_MASK]);
12395 buffer[(i+kernel_width) & NK_TT__OVER_MASK] = pixels[i*stride_in_bytes];
12396 pixels[i*stride_in_bytes] = (unsigned char) (total / 3);
12401 total += (unsigned int)(pixels[i*stride_in_bytes] - buffer[i & NK_TT__OVER_MASK]);
12402 buffer[(i+kernel_width) & NK_TT__OVER_MASK] = pixels[i*stride_in_bytes];
12403 pixels[i*stride_in_bytes] = (unsigned char) (total / 4);
12408 total += (unsigned int)(pixels[i*stride_in_bytes] - buffer[i & NK_TT__OVER_MASK]);
12409 buffer[(i+kernel_width) & NK_TT__OVER_MASK] = pixels[i*stride_in_bytes];
12410 pixels[i*stride_in_bytes] = (unsigned char) (total / 5);
12415 total += (unsigned int)(pixels[i*stride_in_bytes] - buffer[i & NK_TT__OVER_MASK]);
12416 buffer[(i+kernel_width) & NK_TT__OVER_MASK] = pixels[i*stride_in_bytes];
12417 pixels[i*stride_in_bytes] = (unsigned char) (total / (unsigned int)kernel_width);
12423 NK_ASSERT(pixels[i*stride_in_bytes] == 0);
12425 pixels[i*stride_in_bytes] = (unsigned char) (total / (unsigned int)kernel_width);
12523 nk_tt_MakeGlyphBitmapSubpixel(info, spc->pixels + r->x + r->y*spc->stride_in_bytes,
12525 spc->stride_in_bytes, scale * (float)spc->h_oversample,
12529 nk_tt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
12530 r->w, r->h, spc->stride_in_bytes, (int)spc->h_oversample);
12533 nk_tt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
12534 r->w, r->h, spc->stride_in_bytes, (int)spc->v_oversample);