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:gapsize
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-5.10/arch/x86/kernel/
H
A
D
e820.c
621
static int __init e820_search_gap(unsigned long *gapstart, unsigned long *
gapsize
)
in e820_search_gap()
argument
638
if (gap >= *
gapsize
) {
in e820_search_gap()
639
*
gapsize
= gap;
in e820_search_gap()
660
unsigned long gapstart,
gapsize
;
in e820__setup_pci_gap()
local
663
gapsize
= 0x400000;
in e820__setup_pci_gap()
664
found = e820_search_gap(&gapstart, &
gapsize
);
in e820__setup_pci_gap()
682
gapstart, gapstart +
gapsize
- 1);
in e820__setup_pci_gap()
/kernel/linux/linux-6.6/arch/x86/kernel/
H
A
D
e820.c
621
static int __init e820_search_gap(unsigned long *gapstart, unsigned long *
gapsize
)
in e820_search_gap()
argument
638
if (gap >= *
gapsize
) {
in e820_search_gap()
639
*
gapsize
= gap;
in e820_search_gap()
660
unsigned long gapstart,
gapsize
;
in e820__setup_pci_gap()
local
663
gapsize
= 0x400000;
in e820__setup_pci_gap()
664
found = e820_search_gap(&gapstart, &
gapsize
);
in e820__setup_pci_gap()
682
gapstart, gapstart +
gapsize
- 1);
in e820__setup_pci_gap()
/kernel/liteos_m/kernel/src/mm/
H
A
D
los_memory.c
173
#define OS_MEM_GET_ALIGNED_GAPSIZE(
gapsize
) \
174
((
gapsize
) & ~OS_MEM_GAPSIZE_ALIGNED_FLAG)
175
#define OS_MEM_GET_GAPSIZE_ALIGNED_FLAG(
gapsize
) \
176
((
gapsize
) & OS_MEM_GAPSIZE_ALIGNED_FLAG)
177
#define OS_MEM_SET_GAPSIZE_ALIGNED_FLAG(
gapsize
) \
178
(
gapsize
) = ((
gapsize
) | OS_MEM_GAPSIZE_ALIGNED_FLAG)
179
#define OS_MEM_GET_GAPSIZE_USED_FLAG(
gapsize
) \
180
((
gapsize
) & OS_MEM_GAPSIZE_USED_FLAG)
181
#define OS_MEM_GAPSIZE_CHECK(
gapsize
) \
[all...]
Completed in 6 milliseconds