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:src_format_desc
(Results
1 - 3
of
3
) sorted by relevance
/third_party/mesa3d/src/util/tests/format/
H
A
D
u_format_compatible_test.c
42
const struct util_format_description *
src_format_desc
;
in test_all()
local
43
src_format_desc
= util_format_description(src_format);
in test_all()
53
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
in test_all()
54
printf("%s -> %s\n",
src_format_desc
->short_name, dst_format_desc->short_name);
in test_all()
/third_party/mesa3d/src/util/format/
H
A
D
u_format.c
650
const struct util_format_description *
src_format_desc
;
in util_format_translate()
local
662
src_format_desc
= util_format_description(src_format);
in util_format_translate()
664
if (util_is_format_compatible(
src_format_desc
, dst_format_desc)) {
in util_format_translate()
677
assert(src_x %
src_format_desc
->block.width == 0);
in util_format_translate()
678
assert(src_y %
src_format_desc
->block.height == 0);
in util_format_translate()
681
src_row = (const uint8_t *)src + src_y*src_stride + src_x*(
src_format_desc
->block.bits/8);
in util_format_translate()
688
y_step = MAX2(dst_format_desc->block.height,
src_format_desc
->block.height);
in util_format_translate()
689
x_step = MAX2(dst_format_desc->block.width,
src_format_desc
->block.width);
in util_format_translate()
691
assert(y_step %
src_format_desc
->block.height == 0);
in util_format_translate()
694
src_step = y_step /
src_format_desc
in util_format_translate()
[all...]
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
H
A
D
Resource.cpp
626
const struct util_format_description *
src_format_desc
;
in areResourcesCompatible()
local
629
src_format_desc
= util_format_description(src_resource->format);
in areResourcesCompatible()
632
assert(
src_format_desc
->block.width == dst_format_desc->block.width);
in areResourcesCompatible()
633
assert(
src_format_desc
->block.height == dst_format_desc->block.height);
in areResourcesCompatible()
634
assert(
src_format_desc
->block.bits == dst_format_desc->block.bits);
in areResourcesCompatible()
636
return util_is_format_compatible(
src_format_desc
, dst_format_desc);
in areResourcesCompatible()
Completed in 3 milliseconds