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_ops
(Results
1 - 12
of
12
) sorted by relevance
/third_party/skia/third_party/externals/harfbuzz/src/
H
A
D
hb-sanitize.hh
125
max_ops
(0), max_subtables (0),
in hb_sanitize_context_t()
172
void set_max_ops (int max_ops_) {
max_ops
= max_ops_; }
in set_max_ops()
202
this->
max_ops
= HB_SANITIZE_MAX_OPS_MAX;
in start_processing()
204
this->
max_ops
= hb_clamp ((unsigned) (this->end - this->start) * HB_SANITIZE_MAX_OPS_FACTOR,
in start_processing()
238
(this->
max_ops
-= len) > 0);
in check_range()
404
mutable int
max_ops
, max_subtables;
member
H
A
D
hb-aat-layout-common.hh
575
if ((c->
max_ops
-= state_neg - min_state) <= 0)
in sanitize()
594
if ((c->
max_ops
-= max_state - state_pos + 1) <= 0)
in sanitize()
610
if ((c->
max_ops
-= num_entries - entry) <= 0)
in sanitize()
837
if (!(entry.flags & context_t::DontAdvance) || buffer->
max_ops
-- <= 0)
in drive()
H
A
D
hb-buffer.hh
99
int
max_ops
; /* Maximum allowed operations. */
member
H
A
D
hb-aat-layout-morx-table.hh
745
if (unlikely ((buffer->
max_ops
-= count) <= 0)) return;
in transition()
773
if (unlikely ((buffer->
max_ops
-= count) <= 0)) return;
in transition()
H
A
D
hb-ot-shape.cc
1166
c->buffer->
max_ops
= hb_max (c->buffer->len * HB_BUFFER_MAX_OPS_FACTOR,
in hb_ot_shape_internal()
1201
c->buffer->
max_ops
= HB_BUFFER_MAX_OPS_DEFAULT;
in hb_ot_shape_internal()
H
A
D
hb-buffer.cc
650
buffer->
max_ops
= HB_BUFFER_MAX_OPS_DEFAULT;
in hb_buffer_create()
H
A
D
hb-ot-layout-gsubgpos.hh
592
if (unlikely (nesting_level_left == 0 || !recurse_func || buffer->
max_ops
-- <= 0))
in recurse()
1381
if (unlikely (buffer->
max_ops
<= 0))
in apply_lookup()
/third_party/mbedtls/library/
H
A
D
psa_crypto_core.h
628
* \param[in]
max_ops
The maximum number of ops to be executed in a
634
void mbedtls_psa_interruptible_set_max_ops(uint32_t
max_ops
);
H
A
D
psa_crypto.c
3433
void psa_interruptible_set_max_ops(uint32_t
max_ops
)
in psa_interruptible_set_max_ops()
argument
3435
psa_interruptible_max_ops =
max_ops
;
in psa_interruptible_set_max_ops()
3755
void mbedtls_psa_interruptible_set_max_ops(uint32_t
max_ops
)
in mbedtls_psa_interruptible_set_max_ops()
argument
3764
if (
max_ops
== 0) {
in mbedtls_psa_interruptible_set_max_ops()
3765
max_ops
= 1;
in mbedtls_psa_interruptible_set_max_ops()
3768
mbedtls_ecp_set_max_ops(
max_ops
);
in mbedtls_psa_interruptible_set_max_ops()
3770
(void)
max_ops
;
in mbedtls_psa_interruptible_set_max_ops()
3898
/* Ensure
max_ops
is set to the current value (or default). */
in mbedtls_psa_sign_hash_complete()
4136
/* Ensure
max_ops
is set to the current value (or default). */
in mbedtls_psa_verify_hash_complete()
H
A
D
ecp.c
108
void mbedtls_ecp_set_max_ops(unsigned
max_ops
)
in mbedtls_ecp_set_max_ops()
argument
110
ecp_max_ops =
max_ops
;
in mbedtls_ecp_set_max_ops()
1845
* So if ECC operations are blocking for too long even with a low
max_ops
/third_party/mbedtls/include/mbedtls/
H
A
D
ecp.h
494
* \param
max_ops
Maximum number of basic operations done in a row.
508
* operations, and will do so even if
max_ops
is set to a
521
void mbedtls_ecp_set_max_ops(unsigned
max_ops
);
524
* \brief Check if restart is enabled (
max_ops
!= 0)
526
* \return \c 0 if \c
max_ops
== 0 (restart disabled)
/third_party/mbedtls/include/psa/
H
A
D
crypto.h
4275
* for \p
max_ops
means functions will block for a
4295
* \note The interpretation of \p
max_ops
is also
4327
* \param
max_ops
The maximum number of ops to be executed in a
4332
void psa_interruptible_set_max_ops(uint32_t
max_ops
);
Completed in 37 milliseconds