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:wqi_size
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/uc/
H
A
D
intel_guc_submission.c
175
const size_t
wqi_size
= sizeof(struct guc_wq_item);
in guc_wq_item_append()
local
176
const u32 wqi_len =
wqi_size
/ sizeof(u32) - 1;
in guc_wq_item_append()
190
BUILD_BUG_ON(
wqi_size
!= 16);
in guc_wq_item_append()
198
GUC_WQ_SIZE) <
wqi_size
);
in guc_wq_item_append()
199
GEM_BUG_ON(wq_off & (
wqi_size
- 1));
in guc_wq_item_append()
214
WRITE_ONCE(desc->tail, (wq_off +
wqi_size
) & (GUC_WQ_SIZE - 1));
in guc_wq_item_append()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/uc/
H
A
D
intel_guc_submission.c
488
static u32 *get_wq_pointer(struct intel_context *ce, u32
wqi_size
)
in get_wq_pointer()
argument
497
if (
wqi_size
> AVAILABLE_SPACE) {
in get_wq_pointer()
500
if (
wqi_size
> AVAILABLE_SPACE)
in get_wq_pointer()
805
static void write_wqi(struct intel_context *ce, u32
wqi_size
)
in write_wqi()
argument
814
ce->parallel.guc.wqi_tail = (ce->parallel.guc.wqi_tail +
wqi_size
) &
in write_wqi()
840
unsigned int
wqi_size
= (ce->parallel.number_children + 4) *
in __guc_wq_item_append()
local
843
u32 len_dw = (
wqi_size
/ sizeof(u32)) - 1;
in __guc_wq_item_append()
853
if (
wqi_size
> wq_space_until_wrap(ce)) {
in __guc_wq_item_append()
859
wqi = get_wq_pointer(ce,
wqi_size
);
in __guc_wq_item_append()
874
write_wqi(ce,
wqi_size
);
in __guc_wq_item_append()
[all...]
Completed in 6 milliseconds