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:VSOCK_HASH_SIZE
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/include/net/
H
A
D
af_vsock.h
19
#define
VSOCK_HASH_SIZE
251
macro
20
extern struct list_head vsock_bind_table[
VSOCK_HASH_SIZE
+ 1];
21
extern struct list_head vsock_connected_table[
VSOCK_HASH_SIZE
];
/kernel/linux/linux-6.6/include/net/
H
A
D
af_vsock.h
20
#define
VSOCK_HASH_SIZE
251
macro
21
extern struct list_head vsock_bind_table[
VSOCK_HASH_SIZE
+ 1];
22
extern struct list_head vsock_connected_table[
VSOCK_HASH_SIZE
];
/kernel/linux/linux-5.10/net/vmw_vsock/
H
A
D
af_vsock.c
154
*
VSOCK_HASH_SIZE
+ 1 so that vsock_bind_table[0] through
155
* vsock_bind_table[
VSOCK_HASH_SIZE
- 1] are for bound sockets and
156
* vsock_bind_table[
VSOCK_HASH_SIZE
] is for unbound sockets. The hash function
157
* mods with
VSOCK_HASH_SIZE
to ensure this.
161
#define VSOCK_HASH(addr) ((addr)->svm_port %
VSOCK_HASH_SIZE
)
163
#define vsock_unbound_sockets (&vsock_bind_table[
VSOCK_HASH_SIZE
])
167
(((src)->svm_cid ^ (dst)->svm_port) %
VSOCK_HASH_SIZE
)
173
struct list_head vsock_bind_table[
VSOCK_HASH_SIZE
+ 1];
175
struct list_head vsock_connected_table[
VSOCK_HASH_SIZE
];
/kernel/linux/linux-6.6/net/vmw_vsock/
H
A
D
af_vsock.c
160
*
VSOCK_HASH_SIZE
+ 1 so that vsock_bind_table[0] through
161
* vsock_bind_table[
VSOCK_HASH_SIZE
- 1] are for bound sockets and
162
* vsock_bind_table[
VSOCK_HASH_SIZE
] is for unbound sockets. The hash function
163
* mods with
VSOCK_HASH_SIZE
to ensure this.
167
#define VSOCK_HASH(addr) ((addr)->svm_port %
VSOCK_HASH_SIZE
)
169
#define vsock_unbound_sockets (&vsock_bind_table[
VSOCK_HASH_SIZE
])
173
(((src)->svm_cid ^ (dst)->svm_port) %
VSOCK_HASH_SIZE
)
179
struct list_head vsock_bind_table[
VSOCK_HASH_SIZE
+ 1];
181
struct list_head vsock_connected_table[
VSOCK_HASH_SIZE
];
Completed in 6 milliseconds