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:helper_buffer
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/drivers/dma-buf/heaps/
H
A
D
system_heap.c
40
struct heap_helper_buffer *
helper_buffer
;
in system_heap_allocate()
local
45
helper_buffer
= kzalloc(sizeof(*
helper_buffer
), GFP_KERNEL);
in system_heap_allocate()
46
if (!
helper_buffer
)
in system_heap_allocate()
49
init_heap_helper_buffer(
helper_buffer
, system_heap_free);
in system_heap_allocate()
50
helper_buffer
->heap = heap;
in system_heap_allocate()
51
helper_buffer
->size = len;
in system_heap_allocate()
53
helper_buffer
->pagecount = len / PAGE_SIZE;
in system_heap_allocate()
54
helper_buffer
->pages = kmalloc_array(
helper_buffer
in system_heap_allocate()
[all...]
H
A
D
cma_heap.c
49
struct heap_helper_buffer *
helper_buffer
;
in cma_heap_allocate()
local
61
helper_buffer
= kzalloc(sizeof(*
helper_buffer
), GFP_KERNEL);
in cma_heap_allocate()
62
if (!
helper_buffer
)
in cma_heap_allocate()
65
init_heap_helper_buffer(
helper_buffer
, cma_heap_free);
in cma_heap_allocate()
66
helper_buffer
->heap = heap;
in cma_heap_allocate()
67
helper_buffer
->size = len;
in cma_heap_allocate()
96
helper_buffer
->pagecount = nr_pages;
in cma_heap_allocate()
97
helper_buffer
->pages = kmalloc_array(
helper_buffer
in cma_heap_allocate()
[all...]
Completed in 1 milliseconds