OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blockwidth
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_rect.c
59
int
blockwidth
= util_format_get_blockwidth(format);
local
63
assert(
blockwidth
> 0);
66
dst_x /=
blockwidth
;
68
width = (width +
blockwidth
- 1)/
blockwidth
;
70
src_x /=
blockwidth
;
104
int
blockwidth
= desc->block.width;
local
108
assert(
blockwidth
> 0);
111
dst_x /=
blockwidth
;
113
width = (width +
blockwidth
- 1)/blockwidth
[
all
...]
u_format.h
704
unsigned
blockwidth
= util_format_get_blockwidth(format);
local
705
return (x +
blockwidth
- 1) /
blockwidth
;
/external/mesa3d/src/gallium/auxiliary/util/
u_rect.c
59
int
blockwidth
= util_format_get_blockwidth(format);
local
63
assert(
blockwidth
> 0);
66
dst_x /=
blockwidth
;
68
width = (width +
blockwidth
- 1)/
blockwidth
;
70
src_x /=
blockwidth
;
104
int
blockwidth
= desc->block.width;
local
108
assert(
blockwidth
> 0);
111
dst_x /=
blockwidth
;
113
width = (width +
blockwidth
- 1)/blockwidth
[
all
...]
u_format.h
704
unsigned
blockwidth
= util_format_get_blockwidth(format);
local
705
return (x +
blockwidth
- 1) /
blockwidth
;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_util.h
214
GLuint
blockwidth
;
local
216
_mesa_get_format_block_size(format, &
blockwidth
, &blockheight);
217
return (x +
blockwidth
- 1) /
blockwidth
;
224
GLuint
blockwidth
;
local
226
_mesa_get_format_block_size(format, &
blockwidth
, &blockheight);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h
214
GLuint
blockwidth
;
local
216
_mesa_get_format_block_size(format, &
blockwidth
, &blockheight);
217
return (x +
blockwidth
- 1) /
blockwidth
;
224
GLuint
blockwidth
;
local
226
_mesa_get_format_block_size(format, &
blockwidth
, &blockheight);
Completed in 256 milliseconds