Home
last modified time | relevance | path

Searched refs:jerry_snapshot_header_t (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/api/
Djerry-snapshot.c158 …t_offset = (uint32_t) (globals_p->snapshot_buffer_write_offset - sizeof (jerry_snapshot_header_t)); in snapshot_add_compiled_code()
343 …t_offset = (uint32_t) (globals_p->snapshot_buffer_write_offset - sizeof (jerry_snapshot_header_t)); in static_snapshot_add_compiled_code()
753 const uint32_t aligned_header_size = JERRY_ALIGNUP (sizeof (jerry_snapshot_header_t), in jerry_generate_snapshot_with_args()
790 jerry_snapshot_header_t header; in jerry_generate_snapshot_with_args()
924 if (snapshot_size <= sizeof (jerry_snapshot_header_t)) in jerry_snapshot_result()
930 const jerry_snapshot_header_t *header_p = (const jerry_snapshot_header_t *) snapshot_data_p; in jerry_snapshot_result()
1231 size_t functions_size = sizeof (jerry_snapshot_header_t); in jerry_merge_snapshots()
1243 if (inp_buffer_sizes_p[i] < sizeof (jerry_snapshot_header_t)) in jerry_merge_snapshots()
1250 const jerry_snapshot_header_t *header_p = (const jerry_snapshot_header_t *) inp_buffers_p[i]; in jerry_merge_snapshots()
1289 jerry_snapshot_header_t *header_p = (jerry_snapshot_header_t *) out_buffer_p; in jerry_merge_snapshots()
[all …]
Djerry-snapshot.h34 } jerry_snapshot_header_t; typedef
Dgenerate-bytecode.c359 const jerry_snapshot_header_t* header_p = (const jerry_snapshot_header_t*) snapshot_data_p; in validate_snapshot()