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_tasks
(Results
1 - 2
of
2
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
frame_thread_encoder.c
58
unsigned
max_tasks
;
member
97
c->next_task_index = (c->next_task_index + 1) % c->
max_tasks
;
in worker()
203
c->
max_tasks
= avctx->thread_count + 2;
in ff_frame_thread_encoder_init()
204
for (unsigned j = 0; j < c->
max_tasks
; j++) {
in ff_frame_thread_encoder_init()
274
for (unsigned i = 0; i < c->
max_tasks
; i++) {
in ff_frame_thread_encoder_free()
295
c->task_index = (c->task_index + 1) % c->
max_tasks
;
in ff_thread_video_encode_frame()
306
(c->task_index - c->finished_task_index + c->
max_tasks
) % c->
max_tasks
<= avctx->thread_count)) {
in ff_thread_video_encode_frame()
320
c->finished_task_index = (c->finished_task_index + 1) % c->
max_tasks
;
in ff_thread_video_encode_frame()
/third_party/python/Lib/concurrent/futures/
H
A
D
process.py
220
def _process_worker(call_queue, result_queue, initializer, initargs,
max_tasks
=None):
250
if
max_tasks
is not None:
252
if num_tasks >=
max_tasks
:
Completed in 3 milliseconds