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:N_THREADS
(Results
1 - 8
of
8
) sorted by relevance
/third_party/pulseaudio/src/tests/
H
A
D
once-test.c
51
#define
N_THREADS
100
macro
90
pa_thread* threads[
N_THREADS
];
in START_TEST()
93
fail_unless(pthread_barrier_init(&barrier, NULL,
N_THREADS
) == 0);
in START_TEST()
99
for (i = 0; i <
N_THREADS
; i++)
in START_TEST()
102
for (i = 0; i <
N_THREADS
; i++)
in START_TEST()
108
for (i = 0; i <
N_THREADS
; i++) {
in START_TEST()
/third_party/rust/crates/once_cell/examples/
H
A
D
bench.rs
5
const
N_THREADS
: usize = 32;
consts
13
(0..
N_THREADS
).map(|i| std::thread::spawn(move || thread_main(i))).collect::<Vec<_>>();
in main()
26
assert!(value <
N_THREADS
)
in thread_main()
H
A
D
bench_vs_lazy_static.rs
4
const
N_THREADS
: usize = 32;
consts
16
let threads = (0..
N_THREADS
)
in main()
26
let threads = (0..
N_THREADS
)
in main()
H
A
D
test_synchronization.rs
12
const
N_THREADS
: usize = 32;
consts
22
(0..
N_THREADS
).map(|i| std::thread::spawn(move || thread_main(i))).collect::<Vec<_>>();
in main()
H
A
D
bench_acquire.rs
8
const
N_THREADS
: usize = 16;
consts
17
(0..
N_THREADS
).map(|i| std::thread::spawn(move || thread_main(i))).collect::<Vec<_>>();
in main()
/third_party/node/deps/v8/third_party/wasm-api/example/
H
A
D
threads.cc
8
const int
N_THREADS
= 10;
variable
106
std::thread threads[
N_THREADS
];
in main()
107
for (int i = 0; i <
N_THREADS
; ++i) {
in main()
115
for (int i = 0; i <
N_THREADS
; ++i) {
in main()
H
A
D
threads.c
12
const int
N_THREADS
= 10;
variable
134
pthread_t threads[
N_THREADS
];
in main()
135
for (int i = 0; i <
N_THREADS
; i++) {
in main()
144
for (int i = 0; i <
N_THREADS
; i++) {
in main()
/third_party/python/Lib/test/
H
A
D
test_gc.py
439
N_THREADS
= 2
484
for i in range(
N_THREADS
):
Completed in 4 milliseconds