Lines Matching refs:row
127 uint8_t * row = image->data + (y * image->stride);
128 row[x << 2] = pixel >> 24;
129 row[(x << 2) + 1] = pixel >> 16;
130 row[(x << 2) + 2] = pixel >> 8;
131 row[(x << 2) + 3] = pixel;
140 uint8_t * row = image->data + (y * image->stride);
141 row[x << 2] = pixel;
142 row[(x << 2) + 1] = pixel >> 8;
143 row[(x << 2) + 2] = pixel >> 16;
144 row[(x << 2) + 3] = pixel >> 24;
152 uint8_t * row = image->data + (y * image->stride);
153 uint32_t pixel = row[x << 2] << 24;
154 pixel |= row[(x << 2) + 1] << 16;
155 pixel |= row[(x << 2) + 2] << 8;
156 return pixel | row[(x << 2) + 3];
164 uint8_t * row = image->data + (y * image->stride);
165 uint32_t pixel = row[x << 2];
166 pixel |= row[(x << 2) + 1] << 8;
167 pixel |= row[(x << 2) + 2] << 16;
168 return pixel | row[(x << 2) + 3] << 24;