Lines Matching defs:stride
4654 stbi__uint32 i,j,stride = x*out_n*bytes;
4677 stbi_uc *cur = a->out + stride*j;
4690 prior = cur - stride; // bugfix: need to compute this after 'cur +=' computation above
4766 cur = a->out + stride*j; // start at the beginning of the row again
4779 stbi_uc *cur = a->out + stride*j;
4780 stbi_uc *in = a->out + stride*j + x*out_n - img_width_bytes;
4829 cur = a->out + stride*j;
6970 int stride;
6990 stride = g.w * g.h * 4;
6993 void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride );
7001 out_size = layers * stride;
7012 out = (stbi_uc*)stbi__malloc( layers * stride );
7018 out_size = layers * stride;
7026 memcpy( out + ((layers - 1) * stride), u, stride );
7028 two_back = out + (layers - 2) * stride;