OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tiles_per_row
(Results
1 - 6
of
6
) sorted by null
/external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.h
93
unsigned
tiles_per_row
[LP_MAX_TEXTURE_LEVELS];
member in struct:llvmpipe_resource
lp_tile_image.c
134
unsigned
tiles_per_row
)
148
const uint
tiles_per_row
= src_stride / (tile_w * tile_h * bpp);
local
161
uint src_offset = (jj / tile_h *
tiles_per_row
+ ii / tile_w)
181
uint src_offset = (jj / tile_h *
tiles_per_row
+ ii / tile_w)
201
uint tile_offset = ((jj / tile_h) *
tiles_per_row
+ ii / tile_w);
225
unsigned
tiles_per_row
)
238
const uint
tiles_per_row
= dst_stride / (tile_w * tile_h * bpp);
local
252
uint dst_offset = (jj / tile_h *
tiles_per_row
+ ii / tile_w)
272
uint dst_offset = (jj / tile_h *
tiles_per_row
+ ii / tile_w)
290
uint tile_offset = ((jj / tile_h) *
tiles_per_row
+ ii / tile_w)
[
all
...]
/external/webp/src/dsp/
lossless.c
199
const int
tiles_per_row
= VP8LSubSampleSize(width, transform->bits_);
local
201
transform->data_ + (y >> transform->bits_) *
tiles_per_row
;
230
pred_mode_base +=
tiles_per_row
;
288
const int
tiles_per_row
= VP8LSubSampleSize(width, transform->bits_);
local
291
transform->data_ + (y >> transform->bits_) *
tiles_per_row
;
309
if ((y & mask) == 0) pred_row +=
tiles_per_row
;
lossless_enc.c
623
const int
tiles_per_row
= VP8LSubSampleSize(width, bits);
local
652
(modes[(y >> bits) *
tiles_per_row
+ (x >> bits)] >> 8) & 0xff;
677
const int
tiles_per_row
= VP8LSubSampleSize(width, bits);
local
685
for (i = 0; i <
tiles_per_row
* tiles_per_col; ++i) {
701
for (tile_x = 0; tile_x <
tiles_per_row
; ++tile_x) {
704
image[tile_y *
tiles_per_row
+ tile_x] = ARGB_BLACK | (pred << 8);
[
all
...]
/external/opencv3/3rdparty/libwebp/dsp/
lossless.c
617
const int
tiles_per_row
= VP8LSubSampleSize(width, bits);
local
635
for (tile_x = 0; tile_x <
tiles_per_row
; ++tile_x) {
645
image[tile_y *
tiles_per_row
+ tile_x] = 0xff000000u | (pred << 8);
687
const int
tiles_per_row
= VP8LSubSampleSize(width, transform->bits_);
local
689
transform->data_ + (y >> transform->bits_) *
tiles_per_row
;
713
pred_mode_base +=
tiles_per_row
;
1077
const int
tiles_per_row
= VP8LSubSampleSize(width, transform->bits_);
local
[
all
...]
/external/webp/src/enc/
vp8l.c
1319
const int
tiles_per_row
= VP8LSubSampleSize(width, pred_bits);
local
[
all
...]
Completed in 153 milliseconds