Home
last modified time | relevance | path

Searched refs:source_size (Results 1 - 20 of 20) sorted by relevance

/third_party/jerryscript/jerry-main/
H A Dmain-unix-test.c93 size_t source_size; in main() local
95 const jerry_char_t *source_p = read_file (file_name, &source_size); in main()
104 ret_value = jerry_parse (NULL, 0, source_p, source_size, JERRY_PARSE_NO_OPTS); in main()
H A Dmain-unix.c209 size_t source_size; in print_unhandled_exception() local
214 read_file (path_str_p, &source_size); in print_unhandled_exception()
220 while ((pos < source_size) && (buffer[pos] != '\0')) in print_unhandled_exception()
292 size_t source_size, /**< source code size */ in wait_for_source_callback()
299 source_size, in wait_for_source_callback()
735 size_t source_size; in main() local
736 const jerry_char_t *source_p = (jerry_char_t *) read_file (file_names[i], &source_size); in main()
744 if (!jerry_is_valid_utf8_string (source_p, (jerry_size_t) source_size)) in main()
753 source_size, in main()
289 wait_for_source_callback(const jerry_char_t *resource_name_p, size_t resource_name_size, const jerry_char_t *source_p, size_t source_size, void *user_p) wait_for_source_callback() argument
/third_party/jerryscript/targets/nuttx-stm32f4/
H A Djerry_main.c228 size_t source_size; in print_unhandled_exception() local
229 const jerry_char_t *source_p = read_file (path_str_p, &source_size); in print_unhandled_exception()
411 size_t source_size; in main() local
412 const jerry_char_t *source_p = read_file (file_names[i], &source_size); in main()
423 source_size, in main()
/third_party/jerryscript/jerry-core/include/
H A Djerryscript-snapshot.h57 const jerry_char_t *source_p, size_t source_size,
60 const jerry_char_t *source_p, size_t source_size,
H A Djerryscript-debugger.h57 size_t source_size, void *user_p);
H A Djerryscript-core.h366 const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts);
369 const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts);
371 jerry_value_t jerry_eval (const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts);
/third_party/jerryscript/targets/esp8266/user/
H A Djerry_run.c36 int js_eval (const char *source_p, const size_t source_size) in js_eval() argument
39 source_size, in js_eval()
/third_party/jerryscript/targets/esp8266/include/
H A Djerry_run.h27 int js_eval (const char *source_p, const size_t source_size);
/third_party/jerryscript/jerry-core/api/
H A Djerry-snapshot.c735 size_t source_size, /**< script source size */ in jerry_generate_snapshot_with_args()
764 source_size, in jerry_generate_snapshot_with_args()
857 size_t source_size, /**< script source size */ in jerry_generate_snapshot()
874 source_size, in jerry_generate_snapshot()
884 JERRY_UNUSED (source_size); in jerry_generate_snapshot()
1777 size_t source_size, /**< script source size */ in jerry_generate_function_snapshot()
1796 source_size, in jerry_generate_function_snapshot()
1806 JERRY_UNUSED (source_size); in jerry_generate_function_snapshot()
732 jerry_generate_snapshot_with_args(const jerry_char_t *resource_name_p, size_t resource_name_length, const jerry_char_t *source_p, size_t source_size, const jerry_char_t *args_p, size_t args_size, uint32_t generate_snapshot_opts, uint32_t *buffer_p, size_t buffer_size) jerry_generate_snapshot_with_args() argument
854 jerry_generate_snapshot(const jerry_char_t *resource_name_p, size_t resource_name_length, const jerry_char_t *source_p, size_t source_size, uint32_t generate_snapshot_opts, uint32_t *buffer_p, size_t buffer_size) jerry_generate_snapshot() argument
1774 jerry_generate_function_snapshot(const jerry_char_t *resource_name_p, size_t resource_name_length, const jerry_char_t *source_p, size_t source_size, const jerry_char_t *args_p, size_t args_size, uint32_t generate_snapshot_opts, uint32_t *buffer_p, size_t buffer_size) jerry_generate_function_snapshot() argument
H A Djerry.c449 size_t source_size, /**< script source size */ in jerry_parse()
487 source_size, in jerry_parse()
505 JERRY_UNUSED (source_size); in jerry_parse()
525 size_t source_size, /**< script source size */ in jerry_parse_function()
568 source_size, in jerry_parse_function()
588 JERRY_UNUSED (source_size); in jerry_parse_function()
645 size_t source_size, /**< length of source code */ in jerry_eval()
651 source_size, in jerry_eval()
446 jerry_parse(const jerry_char_t *resource_name_p, size_t resource_name_length, const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts) jerry_parse() argument
520 jerry_parse_function(const jerry_char_t *resource_name_p, size_t resource_name_length, const jerry_char_t *arg_list_p, size_t arg_list_size, const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts) jerry_parse_function() argument
644 jerry_eval(const jerry_char_t *source_p, size_t source_size, uint32_t parse_opts) jerry_eval() argument
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-parser.h190 const uint8_t *source_p, size_t source_size,
H A Djs-parser.c2006 size_t source_size, /**< size of the source code */ in parser_parse_source()
2097 source_p + source_size); in parser_parse_source()
2115 context.source_end_p = source_p + source_size; in parser_parse_source()
2161 context.source_end_p = source_p + source_size; in parser_parse_source()
2691 size_t source_size, /**< size of the source code */ in parser_parse_script()
2704 source_size); in parser_parse_script()
2711 source_size, in parser_parse_script()
2813 JERRY_UNUSED (source_size); in parser_parse_script()
2003 parser_parse_source(const uint8_t *arg_list_p, size_t arg_list_size, const uint8_t *source_p, size_t source_size, uint32_t parse_opts, parser_error_location_t *error_location_p) parser_parse_source() argument
2688 parser_parse_script(const uint8_t *arg_list_p, size_t arg_list_size, const uint8_t *source_p, size_t source_size, uint32_t parse_opts, ecma_compiled_code_t **bytecode_data_p) parser_parse_script() argument
/third_party/ffmpeg/libavcodec/
H A Dexrenc.c289 unsigned long actual_size, source_size; in encode_scanline_zip() local
335 source_size = tmp_size; in encode_scanline_zip()
338 scanline->tmp, source_size); in encode_scanline_zip()
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-module.c866 size_t source_size = 0; in ecma_module_parse() local
867 uint8_t *source_p = jerry_port_read_source ((const char *) module_path_p, &source_size); in ecma_module_parse()
895 source_size, in ecma_module_parse()
/third_party/python/Lib/importlib/
H A D_bootstrap_external.py675 def _validate_timestamp_pyc(data, source_mtime, source_size, name,
684 *source_size* is None or the size of the source file in bytes.
698 if (source_size is not None and
699 _unpack_uint32(data[12:16]) != (source_size & 0xFFFFFFFF)):
740 def _code_to_timestamp_pyc(code, mtime=0, source_size=0):
745 data.extend(_pack_uint32(source_size))
/third_party/python/Lib/
H A Dzipimport.py664 source_mtime, source_size = \
671 _unpack_uint32(data[12:16]) != source_size):
/third_party/python/Lib/test/test_importlib/
H A Dtest_abc.py733 self.source_size = len(self.source)
739 data.extend(self.init._pack_uint32(self.source_size))
757 return {'mtime': self.source_mtime, 'size': self.source_size}
907 data.extend(self.init._pack_uint32(self.loader.source_size))
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp1515 LOG(out << Id << ": (" << Seg.source_offset << ", " << Seg.source_size in translate()
1600 Seg.source_size)); in translate()
1602 WritePtr += Seg.source_size; in translate()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl3cTextureSwizzleTests.cpp1635 * @param source_size Size of source storage in bits
1642 glw::GLint source_size, glw::GLint output_size, void* out_expected_data_low, in calculate_expected_value()
1732 source_size -= 1; in calculate_expected_value()
1750 const float max_internal = float(calculate_max_for_size(source_size)); in calculate_expected_value()
1641 calculate_expected_value(size_t source_format_idx, size_t output_format_idx, size_t index_of_swizzled_channel, glw::GLint source_size, glw::GLint output_size, void* out_expected_data_low, void* out_expected_data_top, size_t& out_expected_data_size) calculate_expected_value() argument
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.cc4886 TNode<IntPtrT> source_size = LoadMapInstanceSizeInWords(source_map); in GenerateCloneObjectIC() local
4895 source_start, source_size, in GenerateCloneObjectIC()
4912 IntPtrAdd(TimesTaggedSize(source_size), field_offset_difference); in GenerateCloneObjectIC()

Completed in 37 milliseconds