/third_party/jerryscript/jerry-main/ |
D | main-unix-test.c | 93 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()
|
D | main-unix.c | 209 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() argument 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()
|
/third_party/jerryscript/targets/nuttx-stm32f4/ |
D | jerry_main.c | 228 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/ |
D | jerryscript-snapshot.h | 57 const jerry_char_t *source_p, size_t source_size, 60 const jerry_char_t *source_p, size_t source_size,
|
D | jerryscript-debugger.h | 57 … size_t source_size, void *user_p);
|
D | jerryscript-core.h | 366 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/ |
D | jerry_run.c | 36 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/ |
D | jerry_run.h | 27 int js_eval (const char *source_p, const size_t source_size);
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry-snapshot.c | 735 size_t source_size, /**< script source size */ in jerry_generate_snapshot_with_args() argument 764 source_size, in jerry_generate_snapshot_with_args() 857 size_t source_size, /**< script source size */ in jerry_generate_snapshot() argument 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() argument 1796 source_size, in jerry_generate_function_snapshot() 1806 JERRY_UNUSED (source_size); in jerry_generate_function_snapshot()
|
D | jerry.c | 449 size_t source_size, /**< script source size */ in jerry_parse() argument 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() argument 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() argument 651 source_size, in jerry_eval()
|
/third_party/jerryscript/docs/ |
D | 07.DEBUGGER.md | 103 size_t source_size, void *user_p); 109 - `source_size` - size of source code 312 size_t source_size, /**< source code size */ 320 source_size,
|
D | 02.API-REFERENCE.md | 1029 size_t source_size, 1036 - `source_size` - size of the string, in bytes. 1094 size_t source_size, /**< script source size */ 1103 - `source_size` - size of the string, in bytes. 1262 size_t source_size, 1267 - `source_size` - length of the source code 7175 size_t source_size, 7184 - `source_size` - script source size, in bytes. 7264 size_t source_size, 7275 - `source_size` - script source size, in bytes.
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-parser.h | 190 const uint8_t *source_p, size_t source_size,
|
D | js-parser.c | 2006 size_t source_size, /**< size of the source code */ in parser_parse_source() argument 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() argument 2704 source_size); in parser_parse_script() 2711 source_size, in parser_parse_script() 2813 JERRY_UNUSED (source_size); in parser_parse_script()
|
/third_party/ffmpeg/libavcodec/ |
D | exrenc.c | 281 unsigned long actual_size, source_size; in encode_scanline_zip() local 327 source_size = tmp_size; in encode_scanline_zip() 330 scanline->tmp, source_size); in encode_scanline_zip()
|
/third_party/python/Lib/importlib/ |
D | _bootstrap_external.py | 618 def _validate_timestamp_pyc(data, source_mtime, source_size, name, argument 641 if (source_size is not None and 642 _unpack_uint32(data[12:16]) != (source_size & 0xFFFFFFFF)): 683 def _code_to_timestamp_pyc(code, mtime=0, source_size=0): argument 688 data.extend(_pack_uint32(source_size))
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-module.c | 857 size_t source_size = 0; in ecma_module_parse() local 858 uint8_t *source_p = jerry_port_read_source ((const char *) module_path_p, &source_size); in ecma_module_parse() 886 source_size, in ecma_module_parse()
|
/third_party/python/Lib/test/test_importlib/ |
D | test_abc.py | 733 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/python/Lib/ |
D | zipimport.py | 658 source_mtime, source_size = \ 665 _unpack_uint32(data[12:16]) != source_size):
|
/third_party/boost/boost/asio/ |
D | buffer.hpp | 2179 std::size_t source_size = source.size(); in buffer_copy_1() local 2180 std::size_t n = target_size < source_size ? target_size : source_size; in buffer_copy_1()
|
/third_party/boost/libs/asio/include/boost/asio/ |
D | buffer.hpp | 2179 std::size_t source_size = source.size(); in buffer_copy_1() local 2180 std::size_t n = target_size < source_size ? target_size : source_size; in buffer_copy_1()
|
/third_party/glib/gio/ |
D | glocalfile.c | 2423 off_t source_size; in g_local_file_move() local 2450 source_size = statbuf.st_size; in g_local_file_move() 2548 progress_callback (source_size, source_size, progress_callback_data); in g_local_file_move()
|
D | gfile.c | 3128 goffset source_size; in btrfs_reflink_with_progress() local 3136 source_size = g_file_info_get_size (info); in btrfs_reflink_with_progress() 3171 progress_callback (source_size, source_size, progress_callback_data); in btrfs_reflink_with_progress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 1515 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/ |
D | gl3cTextureSwizzleTests.cpp | 1642 glw::GLint source_size, glw::GLint output_size, void* out_expected_data_low, in calculate_expected_value() argument 1732 source_size -= 1; in calculate_expected_value() 1750 const float max_internal = float(calculate_max_for_size(source_size)); in calculate_expected_value()
|