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:hashmap_p
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-property-hashmap.c
122
ecma_property_hashmap_t *
hashmap_p
= (ecma_property_hashmap_t *) jmem_heap_alloc_block_null_on_error (total_size);
in ecma_property_hashmap_create()
local
124
if (
hashmap_p
== NULL)
in ecma_property_hashmap_create()
129
memset (
hashmap_p
, 0, total_size);
in ecma_property_hashmap_create()
131
hashmap_p
->header.types[0] = ECMA_PROPERTY_TYPE_HASHMAP;
in ecma_property_hashmap_create()
132
hashmap_p
->header.next_property_cp = object_p->u1.property_list_cp;
in ecma_property_hashmap_create()
133
hashmap_p
->max_property_count = max_property_count;
in ecma_property_hashmap_create()
134
hashmap_p
->null_count = max_property_count - named_property_count;
in ecma_property_hashmap_create()
135
hashmap_p
->unused_count = max_property_count - named_property_count;
in ecma_property_hashmap_create()
137
jmem_cpointer_t *pair_list_p = (jmem_cpointer_t *) (
hashmap_p
+ 1);
in ecma_property_hashmap_create()
142
ECMA_SET_NON_NULL_POINTER (object_p->u1.property_list_cp,
hashmap_p
);
in ecma_property_hashmap_create()
209
ecma_property_hashmap_t *
hashmap_p
= (ecma_property_hashmap_t *) property_p;
ecma_property_hashmap_free()
local
228
ecma_property_hashmap_t *
hashmap_p
= ECMA_GET_NON_NULL_POINTER (ecma_property_hashmap_t,
ecma_property_hashmap_insert()
local
302
ecma_property_hashmap_t *
hashmap_p
= ECMA_GET_NON_NULL_POINTER (ecma_property_hashmap_t,
ecma_property_hashmap_delete()
local
371
ecma_property_hashmap_find(ecma_property_hashmap_t *
hashmap_p
, ecma_string_t *name_p, jmem_cpointer_t *property_real_name_cp)
ecma_property_hashmap_find()
argument
[all...]
H
A
D
ecma-property-hashmap.h
75
ecma_property_t *ecma_property_hashmap_find (ecma_property_hashmap_t *
hashmap_p
, ecma_string_t *name_p,
Completed in 1 milliseconds