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:tile_count_x
(Results
1 - 3
of
3
) sorted by relevance
/third_party/mesa3d/src/panfrost/lib/
H
A
D
pan_tiler.c
235
unsigned
tile_count_x
= aligned_width / tile_width;
in pan_tile_count()
local
238
return
tile_count_x
* tile_count_y;
in pan_tile_count()
H
A
D
pan_layout.c
210
unsigned
tile_count_x
= DIV_ROUND_UP(width, CHECKSUM_TILE_WIDTH);
in panfrost_compute_checksum_size()
local
213
slice->crc.stride =
tile_count_x
* CHECKSUM_BYTES_PER_TILE;
in panfrost_compute_checksum_size()
/third_party/ffmpeg/libavcodec/
H
A
D
tiff.c
960
int
tile_count_x
, tile_count_y;
in dng_decode_tiles()
local
974
tile_count_x
= (s->width + s->tile_width - 1) / s->tile_width;
in dng_decode_tiles()
978
for (tile_idx = 0; tile_idx <
tile_count_x
* tile_count_y; tile_idx++) {
in dng_decode_tiles()
979
tile_x = tile_idx %
tile_count_x
;
in dng_decode_tiles()
980
tile_y = tile_idx /
tile_count_x
;
in dng_decode_tiles()
982
if (has_width_leftover && tile_x ==
tile_count_x
- 1) // If on the right-most tile
in dng_decode_tiles()
1013
if (tile_x ==
tile_count_x
- 1) { // If on the right edge
in dng_decode_tiles()
Completed in 5 milliseconds