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:LDT_ENTRY_SIZE
(Results
1 - 14
of
14
) sorted by relevance
/kernel/linux/linux-5.10/arch/x86/kernel/
H
A
D
ldt.c
35
#define LDT_SLOT_STRIDE (LDT_ENTRIES *
LDT_ENTRY_SIZE
)
161
BUILD_BUG_ON(
LDT_ENTRY_SIZE
!= sizeof(struct desc_struct));
in alloc_ldt_struct()
162
alloc_size = num_entries *
LDT_ENTRY_SIZE
;
in alloc_ldt_struct()
309
nr_pages = DIV_ROUND_UP(ldt->nr_entries *
LDT_ENTRY_SIZE
, PAGE_SIZE);
in map_ldt_struct()
361
nr_pages = DIV_ROUND_UP(ldt->nr_entries *
LDT_ENTRY_SIZE
, PAGE_SIZE);
in unmap_ldt_struct()
432
if (ldt->nr_entries *
LDT_ENTRY_SIZE
> PAGE_SIZE)
in free_ldt_struct()
462
new_ldt->nr_entries *
LDT_ENTRY_SIZE
);
in ldt_dup_context()
507
if (bytecount >
LDT_ENTRY_SIZE
* LDT_ENTRIES)
in read_ldt()
508
bytecount =
LDT_ENTRY_SIZE
* LDT_ENTRIES;
in read_ldt()
510
entries_size = mm->context.ldt->nr_entries *
LDT_ENTRY_SIZE
;
in read_ldt()
[all...]
/kernel/linux/linux-6.6/arch/x86/kernel/
H
A
D
ldt.c
35
#define LDT_SLOT_STRIDE (LDT_ENTRIES *
LDT_ENTRY_SIZE
)
161
BUILD_BUG_ON(
LDT_ENTRY_SIZE
!= sizeof(struct desc_struct));
in alloc_ldt_struct()
162
alloc_size = num_entries *
LDT_ENTRY_SIZE
;
in alloc_ldt_struct()
309
nr_pages = DIV_ROUND_UP(ldt->nr_entries *
LDT_ENTRY_SIZE
, PAGE_SIZE);
in map_ldt_struct()
361
nr_pages = DIV_ROUND_UP(ldt->nr_entries *
LDT_ENTRY_SIZE
, PAGE_SIZE);
in unmap_ldt_struct()
440
if (ldt->nr_entries *
LDT_ENTRY_SIZE
> PAGE_SIZE)
in free_ldt_struct()
470
new_ldt->nr_entries *
LDT_ENTRY_SIZE
);
in ldt_dup_context()
515
if (bytecount >
LDT_ENTRY_SIZE
* LDT_ENTRIES)
in read_ldt()
516
bytecount =
LDT_ENTRY_SIZE
* LDT_ENTRIES;
in read_ldt()
518
entries_size = mm->context.ldt->nr_entries *
LDT_ENTRY_SIZE
;
in read_ldt()
[all...]
/kernel/linux/linux-5.10/arch/x86/um/asm/
H
A
D
mm_context.h
17
((LDT_ENTRIES *
LDT_ENTRY_SIZE
)/PAGE_SIZE)
19
(PAGE_SIZE/
LDT_ENTRY_SIZE
)
21
((LDT_PAGES_MAX*sizeof(void *))/
LDT_ENTRY_SIZE
)
/kernel/linux/linux-6.6/arch/x86/um/asm/
H
A
D
mm_context.h
15
((LDT_ENTRIES *
LDT_ENTRY_SIZE
)/PAGE_SIZE)
17
(PAGE_SIZE/
LDT_ENTRY_SIZE
)
19
((LDT_PAGES_MAX*sizeof(void *))/
LDT_ENTRY_SIZE
)
/kernel/linux/linux-5.10/arch/x86/um/
H
A
D
ldt.c
64
if (bytecount >
LDT_ENTRY_SIZE
*LDT_ENTRIES)
in read_ldt()
65
bytecount =
LDT_ENTRY_SIZE
*LDT_ENTRIES;
in read_ldt()
70
size =
LDT_ENTRY_SIZE
*LDT_DIRECT_ENTRIES;
in read_ldt()
108
if (bytecount > 5*
LDT_ENTRY_SIZE
)
in read_default_ldt()
109
bytecount = 5*
LDT_ENTRY_SIZE
;
in read_default_ldt()
272
for (i=0, size=0; i<ret/
LDT_ENTRY_SIZE
; i++) {
in ldt_get_host_info()
290
for (i=0, k=0; i<ret/
LDT_ENTRY_SIZE
; i++) {
in ldt_get_host_info()
/kernel/linux/linux-6.6/arch/x86/um/
H
A
D
ldt.c
64
if (bytecount >
LDT_ENTRY_SIZE
*LDT_ENTRIES)
in read_ldt()
65
bytecount =
LDT_ENTRY_SIZE
*LDT_ENTRIES;
in read_ldt()
70
size =
LDT_ENTRY_SIZE
*LDT_DIRECT_ENTRIES;
in read_ldt()
108
if (bytecount > 5*
LDT_ENTRY_SIZE
)
in read_default_ldt()
109
bytecount = 5*
LDT_ENTRY_SIZE
;
in read_default_ldt()
272
for (i=0, size=0; i<ret/
LDT_ENTRY_SIZE
; i++) {
in ldt_get_host_info()
290
for (i=0, k=0; i<ret/
LDT_ENTRY_SIZE
; i++) {
in ldt_get_host_info()
/kernel/linux/linux-5.10/arch/x86/include/uapi/asm/
H
A
D
ldt.h
13
#define
LDT_ENTRY_SIZE
8
macro
/kernel/linux/linux-6.6/arch/x86/include/uapi/asm/
H
A
D
ldt.h
13
#define
LDT_ENTRY_SIZE
8
macro
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-x86/asm/
H
A
D
ldt.h
22
#define
LDT_ENTRY_SIZE
8
macro
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-x86/asm/
H
A
D
ldt.h
22
#define
LDT_ENTRY_SIZE
8
macro
/kernel/linux/linux-5.10/arch/x86/include/asm/
H
A
D
desc.h
200
entries *
LDT_ENTRY_SIZE
- 1);
in native_set_ldt()
/kernel/linux/linux-6.6/arch/x86/include/asm/
H
A
D
desc.h
201
entries *
LDT_ENTRY_SIZE
- 1);
in native_set_ldt()
/kernel/linux/linux-5.10/arch/x86/xen/
H
A
D
enlighten_pv.c
394
const unsigned entries_per_page = PAGE_SIZE /
LDT_ENTRY_SIZE
;
in xen_alloc_ldt()
414
const unsigned entries_per_page = PAGE_SIZE /
LDT_ENTRY_SIZE
;
in xen_free_ldt()
/kernel/linux/linux-6.6/arch/x86/xen/
H
A
D
enlighten_pv.c
460
const unsigned entries_per_page = PAGE_SIZE /
LDT_ENTRY_SIZE
;
in xen_alloc_ldt()
480
const unsigned entries_per_page = PAGE_SIZE /
LDT_ENTRY_SIZE
;
in xen_free_ldt()
Completed in 9 milliseconds