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:slab_objects
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/
H
A
D
i915_gem_object.c
39
struct kmem_cache *
slab_objects
;
member
44
return kmem_cache_zalloc(global.
slab_objects
, GFP_KERNEL);
in i915_gem_object_alloc()
49
return kmem_cache_free(global.
slab_objects
, obj);
in i915_gem_object_free()
382
kmem_cache_shrink(global.
slab_objects
);
in i915_global_objects_shrink()
387
kmem_cache_destroy(global.
slab_objects
);
in i915_global_objects_exit()
397
global.
slab_objects
=
in i915_global_objects_init()
399
if (!global.
slab_objects
)
in i915_global_objects_init()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gem/
H
A
D
i915_gem_object.c
44
static struct kmem_cache *
slab_objects
;
variable
79
obj = kmem_cache_zalloc(
slab_objects
, GFP_KERNEL);
in i915_gem_object_alloc()
89
return kmem_cache_free(
slab_objects
, obj);
in i915_gem_object_free()
877
kmem_cache_destroy(
slab_objects
);
in i915_objects_module_exit()
882
slab_objects
= KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
in i915_objects_module_init()
883
if (!
slab_objects
)
in i915_objects_module_init()
/kernel/linux/linux-6.6/scripts/gdb/linux/
H
A
D
slab.py
46
def for_each_object(cache, addr,
slab_objects
):
50
while p < addr + (
slab_objects
* cache['size']):
Completed in 5 milliseconds