Home
last modified time | relevance | path

Searched refs:number_of_funcs (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/api/
Djerry-snapshot.c795 header.number_of_funcs = 1; in jerry_generate_snapshot_with_args()
946 if (func_index >= header_p->number_of_funcs) in jerry_snapshot_result()
1229 uint32_t number_of_funcs = 0; in jerry_merge_snapshots() local
1267 JERRY_ASSERT (header_p->number_of_funcs > 0); in jerry_merge_snapshots()
1269 number_of_funcs += header_p->number_of_funcs; in jerry_merge_snapshots()
1278 JERRY_ASSERT (number_of_funcs > 0); in jerry_merge_snapshots()
1280 functions_size += JERRY_ALIGNUP ((number_of_funcs - 1) * sizeof (uint32_t), JMEM_ALIGNMENT); in jerry_merge_snapshots()
1295 header_p->number_of_funcs = number_of_funcs; in jerry_merge_snapshots()
1313 dst_p += JERRY_ALIGNUP ((number_of_funcs - 1) * sizeof (uint32_t), JMEM_ALIGNMENT); in jerry_merge_snapshots()
1333 for (uint32_t j = 0; j < current_header_p->number_of_funcs; j++) in jerry_merge_snapshots()
Djerry-snapshot.h32 uint32_t number_of_funcs; /**< number of primary ECMAScript functions */ member