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:sharded_mutex
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/tools/perf/util/
H
A
D
sharded_mutex.h
15
struct
sharded_mutex
{
struct
21
struct
sharded_mutex
*sharded_mutex__new(size_t num_shards);
22
void sharded_mutex__delete(struct
sharded_mutex
*sm);
24
static inline struct mutex *sharded_mutex__get_mutex(struct
sharded_mutex
*sm, size_t hash)
in sharded_mutex__get_mutex()
H
A
D
sharded_mutex.c
2
#include "
sharded_mutex
.h"
6
struct
sharded_mutex
*sharded_mutex__new(size_t num_shards)
in sharded_mutex__new()
8
struct
sharded_mutex
*result;
in sharded_mutex__new()
27
void sharded_mutex__delete(struct
sharded_mutex
*sm)
in sharded_mutex__delete()
H
A
D
annotate.c
35
#include "util/
sharded_mutex
.h"
1304
static struct
sharded_mutex
*
sharded_mutex
;
variable
1309
sharded_mutex
= sharded_mutex__new(cpu__max_present_cpu().cpu);
in annotation__init_sharded_mutex()
1322
if (!
sharded_mutex
)
in annotation__get_mutex()
1325
return sharded_mutex__get_mutex(
sharded_mutex
, annotation__hash(notes));
in annotation__get_mutex()
Completed in 5 milliseconds