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:JMEM_ALIGNMENT
(Results
1 - 12
of
12
) sorted by relevance
/third_party/jerryscript/jerry-core/jmem/
H
A
D
jmem-heap.c
104
JERRY_ASSERT ((uintptr_t) JERRY_HEAP_CONTEXT (area) %
JMEM_ALIGNMENT
== 0);
in jmem_heap_init()
163
const size_t required_size = ((size +
JMEM_ALIGNMENT
- 1) /
JMEM_ALIGNMENT
) *
JMEM_ALIGNMENT
;
in jmem_heap_alloc()
169
if (required_size ==
JMEM_ALIGNMENT
in jmem_heap_alloc()
176
JERRY_CONTEXT (jmem_heap_allocated_size) +=
JMEM_ALIGNMENT
;
in jmem_heap_alloc()
183
if (data_space_p->size ==
JMEM_ALIGNMENT
)
in jmem_heap_alloc()
189
JERRY_ASSERT (data_space_p->size >
JMEM_ALIGNMENT
);
in jmem_heap_alloc()
195
remaining_p->size = data_space_p->size -
JMEM_ALIGNMENT
;
in jmem_heap_alloc()
278
JERRY_ASSERT ((uintptr_t) data_space_p %
JMEM_ALIGNMENT
in jmem_heap_alloc()
[all...]
H
A
D
jmem.h
41
#define
JMEM_ALIGNMENT
(1u << JMEM_ALIGNMENT_LOG)
macro
88
* raw 32 bit
JMEM_ALIGNMENT
aligned pointers on 32 bit systems.
269
JERRY_ASSERT ((uintptr_t) tag < (uintptr_t) (
JMEM_ALIGNMENT
)); \
H
A
D
jmem-allocator.c
186
JERRY_ASSERT (uint_ptr %
JMEM_ALIGNMENT
== 0);
in jmem_compress_pointer()
222
JERRY_ASSERT (uint_ptr %
JMEM_ALIGNMENT
== 0);
in jmem_decompress_pointer()
/third_party/jerryscript/jerry-core/jcontext/
H
A
D
jcontext.c
140
#pragma data_alignment =
JMEM_ALIGNMENT
143
jmem_heap_t jerry_global_heap JERRY_ATTR_ALIGNED (
JMEM_ALIGNMENT
) JERRY_ATTR_GLOBAL_HEAP;
H
A
D
jcontext.h
125
jmem_heap_t *heap_p; /**< point to the heap aligned to
JMEM_ALIGNMENT
. */
262
#define JMEM_HEAP_AREA_SIZE (JMEM_HEAP_SIZE -
JMEM_ALIGNMENT
)
305
#define JMEM_HEAP_AREA_SIZE (JMEM_HEAP_SIZE -
JMEM_ALIGNMENT
)
/third_party/jerryscript/jerry-core/api/
H
A
D
jerry-snapshot.c
147
JERRY_ASSERT ((globals_p->snapshot_buffer_write_offset & (
JMEM_ALIGNMENT
- 1)) == 0);
in snapshot_add_compiled_code()
217
JMEM_ALIGNMENT
);
in snapshot_add_compiled_code()
223
copied_code_p->size = (uint16_t) ((pattern_size +
JMEM_ALIGNMENT
- 1) >> JMEM_ALIGNMENT_LOG);
in snapshot_add_compiled_code()
332
JERRY_ASSERT ((globals_p->snapshot_buffer_write_offset & (
JMEM_ALIGNMENT
- 1)) == 0);
in static_snapshot_add_compiled_code()
636
new_code_size = JERRY_ALIGNUP (new_code_size,
JMEM_ALIGNMENT
);
in snapshot_load_compiled_code()
754
JMEM_ALIGNMENT
);
in jerry_generate_snapshot_with_args()
1280
functions_size += JERRY_ALIGNUP ((number_of_funcs - 1) * sizeof (uint32_t),
JMEM_ALIGNMENT
);
in jerry_merge_snapshots()
1313
dst_p += JERRY_ALIGNUP ((number_of_funcs - 1) * sizeof (uint32_t),
JMEM_ALIGNMENT
);
in jerry_merge_snapshots()
H
A
D
external-context-helpers.c
12
#pragma data_alignment =
JMEM_ALIGNMENT
H
A
D
jerry.c
3498
size_t total_size = sizeof (jerry_context_t) +
JMEM_ALIGNMENT
;
in jerry_create_context()
3501
heap_size = JERRY_ALIGNUP (heap_size,
JMEM_ALIGNMENT
);
in jerry_create_context()
3512
total_size = JERRY_ALIGNUP (total_size,
JMEM_ALIGNMENT
);
in jerry_create_context()
3524
context_ptr = JERRY_ALIGNUP (context_ptr, (uintptr_t)
JMEM_ALIGNMENT
);
in jerry_create_context()
/third_party/jerryscript/jerry-core/parser/regexp/
H
A
D
re-compiler.c
142
/* Align bytecode size to
JMEM_ALIGNMENT
so that it can be stored in the bytecode header. */
in re_compile_bytecode()
143
const uint32_t final_size = JERRY_ALIGNUP (re_ctx.bytecode_size,
JMEM_ALIGNMENT
);
in re_compile_bytecode()
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-arraybuffer-object.c
139
const uint32_t maximum_size_in_byte = UINT32_MAX - sizeof (ecma_extended_object_t) -
JMEM_ALIGNMENT
+ 1;
in ecma_op_create_arraybuffer_object()
H
A
D
ecma-typedarray-object.c
517
if (byte_length > UINT32_MAX - sizeof (ecma_extended_object_t) -
JMEM_ALIGNMENT
+ 1)
in ecma_typedarray_create_object_with_length()
/third_party/jerryscript/jerry-core/parser/js/
H
A
D
js-parser.c
1218
total_size = JERRY_ALIGNUP (total_size,
JMEM_ALIGNMENT
);
in parser_post_processing()
Completed in 15 milliseconds