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:uint32_number
(Results
1 - 4
of
4
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-helpers-string.c
528
ecma_new_non_direct_string_from_uint32 (uint32_t
uint32_number
) /**< uint32 value of the string */
in ecma_new_non_direct_string_from_uint32()
argument
530
JERRY_ASSERT (
uint32_number
> ECMA_DIRECT_STRING_MAX_IMM);
in ecma_new_non_direct_string_from_uint32()
535
string_p->u.
uint32_number
=
uint32_number
;
in ecma_new_non_direct_string_from_uint32()
546
ecma_new_ecma_string_from_uint32 (uint32_t
uint32_number
) /**< uint32 value of the string */
in ecma_new_ecma_string_from_uint32()
argument
548
if (JERRY_LIKELY (
uint32_number
<= ECMA_DIRECT_STRING_MAX_IMM))
in ecma_new_ecma_string_from_uint32()
550
return (ecma_string_t *) ECMA_CREATE_DIRECT_STRING (ECMA_DIRECT_STRING_UINT, (uintptr_t)
uint32_number
);
in ecma_new_ecma_string_from_uint32()
553
return ecma_new_non_direct_string_from_uint32 (
uint32_number
);
in ecma_new_ecma_string_from_uint32()
565
ecma_get_ecma_string_from_uint32 (uint32_t
uint32_number
) /**< input number */
in ecma_get_ecma_string_from_uint32()
argument
567
JERRY_ASSERT (
uint32_number
<
in ecma_get_ecma_string_from_uint32()
996
uint32_t
uint32_number
= (uint32_t) ECMA_GET_DIRECT_STRING_VALUE (string_p);
ecma_string_copy_to_cesu8_buffer()
local
1008
uint32_t
uint32_number
= string_p->u.
uint32_number
;
ecma_string_copy_to_cesu8_buffer()
local
1046
uint32_t
uint32_number
= (uint32_t) ECMA_GET_DIRECT_STRING_VALUE (string_p);
ecma_string_copy_to_utf8_buffer()
local
1058
uint32_t
uint32_number
= string_p->u.
uint32_number
;
ecma_string_copy_to_utf8_buffer()
local
1324
ecma_string_get_uint32_size(const uint32_t
uint32_number
)
ecma_string_get_uint32_size()
argument
1414
uint32_t
uint32_number
= (uint32_t) ECMA_GET_DIRECT_STRING_VALUE (string_p);
ecma_string_get_chars()
local
2050
uint32_t
uint32_number
= (uint32_t) ECMA_GET_DIRECT_STRING_VALUE (string_p);
ecma_string_get_ascii_size()
local
2321
uint32_t
uint32_number
= (uint32_t) ECMA_GET_DIRECT_STRING_VALUE (string_p);
ecma_string_get_char_at_pos()
local
[all...]
H
A
D
ecma-helpers-value.c
575
ecma_make_uint32_value (uint32_t
uint32_number
) /**< uint32 number to be encoded */
in ecma_make_uint32_value()
argument
577
if (
uint32_number
<= ECMA_INTEGER_NUMBER_MAX)
in ecma_make_uint32_value()
579
return ecma_make_integer_value ((ecma_integer_value_t)
uint32_number
);
in ecma_make_uint32_value()
582
return ecma_create_float_number ((ecma_number_t)
uint32_number
);
in ecma_make_uint32_value()
H
A
D
ecma-helpers.h
249
ecma_value_t ecma_make_uint32_value (uint32_t
uint32_number
);
304
ecma_string_t *ecma_new_ecma_string_from_uint32 (uint32_t
uint32_number
);
305
ecma_string_t *ecma_new_non_direct_string_from_uint32 (uint32_t
uint32_number
);
306
ecma_string_t *ecma_get_ecma_string_from_uint32 (uint32_t
uint32_number
);
H
A
D
ecma-globals.h
1447
#define ECMA_CREATE_DIRECT_UINT32_STRING(
uint32_number
) \
1448
((ecma_string_t *) ECMA_CREATE_DIRECT_STRING (ECMA_DIRECT_STRING_UINT, (uintptr_t)
uint32_number
))
1566
uint32_t
uint32_number
; /**< uint32-represented number placed locally in the descriptor */
member
Completed in 8 milliseconds