Home
last modified time | relevance | path

Searched refs:jerry_port_get_current_time (Results 1 – 18 of 18) sorted by relevance

/third_party/jerryscript/targets/esp8266/user/
Djerry_port.c57 jerry_port_get_current_time (void) in jerry_port_get_current_time() function
Djerry_run.c29 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; in js_entry()
/third_party/jerryscript/tests/unit-core/
Dtest-common.h52 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; \
/third_party/jerryscript/targets/zephyr/src/
Djerry-port.c55 jerry_port_get_current_time (void) in jerry_port_get_current_time() function
Dmain-zephyr.c82 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; in main()
/third_party/jerryscript/targets/curie_bsp/source/
Dcurie-bsp-port.c66 double jerry_port_get_current_time (void) in jerry_port_get_current_time() function
/third_party/jerryscript/jerry-core/include/
Djerryscript-port.h158 double jerry_port_get_current_time (void);
/third_party/jerryscript/targets/mbedos5/source/
Djerry_port_mbed.c65 jerry_port_get_current_time (void) in jerry_port_get_current_time() function
/third_party/jerryscript/targets/riot-stm32f4/source/
Dmain-riotos.c101 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; in main()
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-launcher/source/
Dlauncher.cpp71 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; in jsmbed_js_init()
/third_party/jerryscript/docs/
D05.PORT-API.md201 double jerry_port_get_current_time (void);
319 * Default implementation of jerry_port_get_current_time.
321 double jerry_port_get_current_time (void)
331 } /* jerry_port_get_current_time */
D03.API-EXAMPLE.md1073 A recommended method is using `jerry_port_get_current_time()` or something based on a constantly ch…
1087 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () };
/third_party/jerryscript/jerry-main/
Dmain-unix-test.c79 } now = { .d = jerry_port_get_current_time () }; in main()
Dmain-unix.c480 } now = { .d = jerry_port_get_current_time () }; in main()
/third_party/jerryscript/jerry-port/default/
Ddefault-date.c120 double jerry_port_get_current_time (void) in jerry_port_get_current_time() function
/third_party/jerryscript/targets/nuttx-stm32f4/
Djerry_port.c183 jerry_port_get_current_time (void) in jerry_port_get_current_time() function
/third_party/jerryscript/targets/curie_bsp/jerry_app/quark/
Dmain.c139 union { double d; unsigned u; } now = { .d = jerry_port_get_current_time () }; in jerry_start()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-date.c693 return ecma_make_number_value (floor (DOUBLE_TO_ECMA_NUMBER_T (jerry_port_get_current_time ()))); in ecma_builtin_date_now()