OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:byte_x
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_span.c
79
uint32_t
byte_x
= x % tile_width;
local
84
+ 512 * (
byte_x
/ 8)
87
+ 16 * ((
byte_x
/ 4) % 2)
89
+ 4 * ((
byte_x
/ 2) % 2)
91
+ 1 * (
byte_x
% 2);
95
if (((
byte_x
/ 8) % 2) == 1) {
/external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c
79
uint32_t
byte_x
= x % tile_width;
local
84
+ 512 * (
byte_x
/ 8)
87
+ 16 * ((
byte_x
/ 4) % 2)
89
+ 4 * ((
byte_x
/ 2) % 2)
91
+ 1 * (
byte_x
% 2);
95
if (((
byte_x
/ 8) % 2) == 1) {
Completed in 67 milliseconds