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:vbits
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Python/
H
A
D
ast_opt.c
156
size_t
vbits
= _PyLong_NumBits(v);
in safe_multiply()
local
158
if (
vbits
== (size_t)-1 || wbits == (size_t)-1) {
in safe_multiply()
161
if (
vbits
+ wbits > MAX_INT_SIZE) {
in safe_multiply()
202
size_t
vbits
= _PyLong_NumBits(v);
in safe_power()
local
204
if (
vbits
== (size_t)-1 || wbits == (size_t)-1) {
in safe_power()
207
if (
vbits
> MAX_INT_SIZE / wbits) {
in safe_power()
219
size_t
vbits
= _PyLong_NumBits(v);
in safe_lshift()
local
221
if (
vbits
== (size_t)-1 || wbits == (size_t)-1) {
in safe_lshift()
224
if (wbits > MAX_INT_SIZE ||
vbits
> MAX_INT_SIZE - wbits) {
in safe_lshift()
/third_party/node/deps/openssl/openssl/crypto/bn/
H
A
D
bn_gf2m.c
625
int
vbits
= BN_num_bits(v); /* v is copy of p */
in BN_GF2m_mod_inv_vartime()
local
680
if (ubits <
vbits
) {
in BN_GF2m_mod_inv_vartime()
682
ubits =
vbits
;
in BN_GF2m_mod_inv_vartime()
683
vbits
= i;
in BN_GF2m_mod_inv_vartime()
699
if (ubits ==
vbits
) {
in BN_GF2m_mod_inv_vartime()
/third_party/openssl/crypto/bn/
H
A
D
bn_gf2m.c
626
int
vbits
= BN_num_bits(v); /* v is copy of p */
in BN_GF2m_mod_inv_vartime()
local
681
if (ubits <
vbits
) {
in BN_GF2m_mod_inv_vartime()
683
ubits =
vbits
;
in BN_GF2m_mod_inv_vartime()
684
vbits
= i;
in BN_GF2m_mod_inv_vartime()
700
if (ubits ==
vbits
) {
in BN_GF2m_mod_inv_vartime()
/third_party/ffmpeg/libavfilter/
H
A
D
af_hdcd.c
1267
static int hdcd_envelope(int32_t *samples, int count, int stride, int
vbits
, int gain, int target_gain, int extend)
in hdcd_envelope()
argument
1274
if (
vbits
!= 16) {
in hdcd_envelope()
1275
pe_level = (1 << (
vbits
- 1)) - (0x8000 - PEAK_EXT_LEVEL);
in hdcd_envelope()
1276
shft = 32 -
vbits
- 1;
in hdcd_envelope()
Completed in 10 milliseconds