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:new_holes
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-array-object.c
267
uint32_t
new_holes
= index - old_length;
in ecma_fast_array_set_property()
local
269
if (JERRY_UNLIKELY (
new_holes
> ECMA_FAST_ARRAY_MAX_NEW_HOLES_COUNT
in ecma_fast_array_set_property()
270
|| ((old_holes >> ECMA_FAST_ARRAY_HOLE_SHIFT) +
new_holes
) > ECMA_FAST_ARRAY_MAX_HOLE_COUNT))
in ecma_fast_array_set_property()
290
ext_obj_p->u.array.u.hole_count +=
new_holes
* ECMA_FAST_ARRAY_HOLE_ONE;
in ecma_fast_array_set_property()
490
uint32_t
new_holes
= new_length - old_length;
in ecma_fast_array_set_length()
local
492
if (JERRY_UNLIKELY (
new_holes
> ECMA_FAST_ARRAY_MAX_NEW_HOLES_COUNT
in ecma_fast_array_set_length()
493
|| ((old_holes >> ECMA_FAST_ARRAY_HOLE_SHIFT) +
new_holes
) > ECMA_FAST_ARRAY_MAX_HOLE_COUNT))
in ecma_fast_array_set_length()
/third_party/rust/crates/regex/src/
H
A
D
compile.rs
798
let mut
new_holes
= vec![];
in fill_split()
variables
800
new_holes
.push(self.fill_split(hole, goto1, goto2));
in fill_split()
802
if
new_holes
.is_empty() {
in fill_split()
804
} else if
new_holes
.len() == 1 {
in fill_split()
805
new_holes
.pop().unwrap()
in fill_split()
807
Hole::Many(
new_holes
)
in fill_split()
Completed in 4 milliseconds