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:max_jobs
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/util/
H
A
D
u_queue.c
283
assert(queue->num_queued >= 0 && queue->num_queued <= queue->
max_jobs
);
in util_queue_thread_func()
297
queue->read_idx = (queue->read_idx + 1) % queue->
max_jobs
;
in util_queue_thread_func()
318
i = (i + 1) % queue->
max_jobs
) {
in util_queue_thread_func()
400
unsigned
max_jobs
,
in util_queue_init()
438
queue->
max_jobs
=
max_jobs
;
in util_queue_init()
449
calloc(
max_jobs
, sizeof(struct util_queue_job));
in util_queue_init()
566
assert(queue->num_queued >= 0 && queue->num_queued <= queue->
max_jobs
);
in util_queue_add_job()
576
if (queue->num_queued == queue->
max_jobs
) {
in util_queue_add_job()
582
unsigned new_max_jobs = queue->
max_jobs
in util_queue_add_job()
398
util_queue_init(struct util_queue *queue, const char *name, unsigned
max_jobs
, unsigned num_threads, unsigned flags, void *global_data)
util_queue_init()
argument
[all...]
H
A
D
u_queue.h
217
int
max_jobs
;
member
229
unsigned
max_jobs
,
/third_party/ltp/include/lapi/syscalls/
H
A
D
regen.sh
7
max_jobs
=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
8
: ${
max_jobs
:=1}
100
if [ ${jobs} -ge ${
max_jobs
} ] ; then
/third_party/skia/third_party/externals/angle2/src/tests/
H
A
D
capture_replay_tests.py
822
worker_count = min(multiprocessing.cpu_count() - 1, args.
max_jobs
)
Completed in 4 milliseconds