Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:TEX_TILE_SIZE
(Results
1 - 3
of
3
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/softpipe/
H
A
D
sp_tex_tile_cache.h
44
#define
TEX_TILE_SIZE
(1 << TEX_TILE_SIZE_LOG2)
macro
68
float color[
TEX_TILE_SIZE
][
TEX_TILE_SIZE
][4];
69
unsigned int colorui[
TEX_TILE_SIZE
][
TEX_TILE_SIZE
][4];
70
int colori[
TEX_TILE_SIZE
][
TEX_TILE_SIZE
][4];
139
addr.bits.x = x /
TEX_TILE_SIZE
;
in tex_tile_address()
140
addr.bits.y = y /
TEX_TILE_SIZE
;
in tex_tile_address()
H
A
D
sp_tex_tile_cache.c
53
assert((
TEX_TILE_SIZE
<< TEX_Y_BITS) >= (1 << (SP_MAX_TEXTURE_2D_LEVELS-1)));
in sp_create_tex_tile_cache()
263
addr.bits.x *
TEX_TILE_SIZE
,
in sp_find_cached_tile_tex()
264
addr.bits.y *
TEX_TILE_SIZE
,
in sp_find_cached_tile_tex()
265
TEX_TILE_SIZE
,
in sp_find_cached_tile_tex()
266
TEX_TILE_SIZE
,
in sp_find_cached_tile_tex()
H
A
D
sp_tex_sample.c
720
addr.bits.x = x * elmsize /
TEX_TILE_SIZE
;
in get_texel_buffer_no_border()
721
assert(x * elmsize /
TEX_TILE_SIZE
== addr.bits.x);
in get_texel_buffer_no_border()
723
x %=
TEX_TILE_SIZE
/ elmsize;
in get_texel_buffer_no_border()
736
addr.bits.x = x /
TEX_TILE_SIZE
;
in get_texel_2d_no_border()
737
addr.bits.y = y /
TEX_TILE_SIZE
;
in get_texel_2d_no_border()
738
y %=
TEX_TILE_SIZE
;
in get_texel_2d_no_border()
739
x %=
TEX_TILE_SIZE
;
in get_texel_2d_no_border()
923
addr.bits.x = x /
TEX_TILE_SIZE
;
in get_texel_quad_2d_no_border_single_tile()
924
addr.bits.y = y /
TEX_TILE_SIZE
;
in get_texel_quad_2d_no_border_single_tile()
925
y %=
TEX_TILE_SIZE
;
in get_texel_quad_2d_no_border_single_tile()
[all...]
Completed in 5 milliseconds