/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-helpers-conversion.c | 1030 lit_utf8_byte_t *dst_p; in ecma_number_to_utf8_string() local 1035 dst_p = lit_copy_magic_string_to_buffer (LIT_MAGIC_STRING_NAN, buffer_p, buffer_size); in ecma_number_to_utf8_string() 1036 return (lit_utf8_size_t) (dst_p - buffer_p); in ecma_number_to_utf8_string() 1047 dst_p = buffer_p; in ecma_number_to_utf8_string() 1052 *dst_p++ = LIT_CHAR_MINUS; in ecma_number_to_utf8_string() 1059 dst_p = lit_copy_magic_string_to_buffer (LIT_MAGIC_STRING_INFINITY_UL, dst_p, in ecma_number_to_utf8_string() 1060 (lit_utf8_size_t) (buffer_p + buffer_size - dst_p)); in ecma_number_to_utf8_string() 1061 JERRY_ASSERT (dst_p <= buffer_p + buffer_size); in ecma_number_to_utf8_string() 1062 return (lit_utf8_size_t) (dst_p - buffer_p); in ecma_number_to_utf8_string() 1072 …dst_p += ecma_uint32_to_utf8_string (num_uint32, dst_p, (lit_utf8_size_t) (buffer_p + buffer_size … in ecma_number_to_utf8_string() [all …]
|
D | ecma-helpers-errol.c | 198 lit_utf8_byte_t *dst_p = buffer_p; in ecma_errol0_dtoa() local 221 *dst_p++ = (lit_utf8_byte_t) ('0' + high_digit); in ecma_errol0_dtoa() 231 *dst_p++ = (lit_utf8_byte_t) ('0' + (uint8_t) mdig); in ecma_errol0_dtoa() 235 return (lit_utf8_size_t) (dst_p - buffer_p); in ecma_errol0_dtoa()
|
/third_party/jerryscript/jerry-core/lit/ |
D | lit-char-helpers.c | 345 lit_code_point_to_cesu8_bytes (uint8_t *dst_p, /**< destination buffer */ in lit_code_point_to_cesu8_bytes() argument 351 dst_p[0] = (uint8_t) code_point; in lit_code_point_to_cesu8_bytes() 358 dst_p[0] = (uint8_t) (LIT_UTF8_2_BYTE_MARKER | ((code_point >> 6) & LIT_UTF8_LAST_5_BITS_MASK)); in lit_code_point_to_cesu8_bytes() 359 dst_p[1] = (uint8_t) (LIT_UTF8_EXTRA_BYTE_MARKER | (code_point & LIT_UTF8_LAST_6_BITS_MASK)); in lit_code_point_to_cesu8_bytes() 366 … dst_p[0] = (uint8_t) (LIT_UTF8_3_BYTE_MARKER | ((code_point >> 12) & LIT_UTF8_LAST_4_BITS_MASK)); in lit_code_point_to_cesu8_bytes() 367 …dst_p[1] = (uint8_t) (LIT_UTF8_EXTRA_BYTE_MARKER | ((code_point >> 6) & LIT_UTF8_LAST_6_BITS_MASK)… in lit_code_point_to_cesu8_bytes() 368 dst_p[2] = (uint8_t) (LIT_UTF8_EXTRA_BYTE_MARKER | (code_point & LIT_UTF8_LAST_6_BITS_MASK)); in lit_code_point_to_cesu8_bytes() 376 dst_p[0] = (uint8_t) (LIT_UTF8_3_BYTE_MARKER | 0xd); in lit_code_point_to_cesu8_bytes() 377 …dst_p[1] = (uint8_t) (LIT_UTF8_EXTRA_BYTE_MARKER | 0x20 | ((code_point >> 16) & LIT_UTF8_LAST_4_BI… in lit_code_point_to_cesu8_bytes() 378 …dst_p[2] = (uint8_t) (LIT_UTF8_EXTRA_BYTE_MARKER | ((code_point >> 10) & LIT_UTF8_LAST_6_BITS_MASK… in lit_code_point_to_cesu8_bytes() [all …]
|
D | lit-char-helpers.h | 217 size_t lit_code_point_to_cesu8_bytes (uint8_t *dst_p, lit_code_point_t code_point); 219 void lit_four_byte_utf8_char_to_cesu8 (uint8_t *dst_p, const uint8_t *source_p);
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-typedarray-object.c | 165 ecma_typedarray_set_int8_element (lit_utf8_byte_t *dst_p, /**< the location in the internal arraybu… in ecma_typedarray_set_int8_element() argument 169 *dst_p = (lit_utf8_byte_t) num; in ecma_typedarray_set_int8_element() 176 ecma_typedarray_set_uint8_element (lit_utf8_byte_t *dst_p, /**< the location in the internal arrayb… in ecma_typedarray_set_uint8_element() argument 180 *dst_p = (lit_utf8_byte_t) num; in ecma_typedarray_set_uint8_element() 187 ecma_typedarray_set_uint8_clamped_element (lit_utf8_byte_t *dst_p, /**< the location in the interna… in ecma_typedarray_set_uint8_clamped_element() argument 211 *dst_p = (lit_utf8_byte_t) clamped; in ecma_typedarray_set_uint8_clamped_element() 218 ecma_typedarray_set_int16_element (lit_utf8_byte_t *dst_p, /**< the location in the internal arrayb… in ecma_typedarray_set_int16_element() argument 222 memcpy (dst_p, &num, sizeof (int16_t)); in ecma_typedarray_set_int16_element() 229 ecma_typedarray_set_uint16_element (lit_utf8_byte_t *dst_p, /**< the location in the internal array… in ecma_typedarray_set_uint16_element() argument 233 memcpy (dst_p, &num, sizeof (uint16_t)); in ecma_typedarray_set_uint16_element() [all …]
|
D | ecma-typedarray-object.h | 36 void ecma_set_typedarray_element (lit_utf8_byte_t *dst_p,
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-parser.c | 924 uint8_t *dst_p; in parser_post_processing() local 1355 dst_p = byte_code_p; in parser_post_processing() 1373 opcode_p = dst_p; in parser_post_processing() 1393 *dst_p++ = (uint8_t) opcode; in parser_post_processing() 1401 uint32_t bp_offset = (uint32_t) (((uint8_t *) dst_p) - ((uint8_t *) compiled_code_p) - 1); in parser_post_processing() 1415 *dst_p++ = (uint8_t) ext_opcode; in parser_post_processing() 1428 *dst_p++ = last_byte; in parser_post_processing() 1448 uint8_t *opcode_pos_p = dst_p - 1; in parser_post_processing() 1449 *dst_p++ = (uint8_t) first_byte; in parser_post_processing() 1455 *dst_p++ = page_p->bytes[offset]; in parser_post_processing() [all …]
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry-snapshot.c | 1312 uint8_t *dst_p = ((uint8_t *) out_buffer_p) + sizeof (jerry_snapshot_header_t); in jerry_merge_snapshots() local 1313 dst_p += JERRY_ALIGNUP ((number_of_funcs - 1) * sizeof (uint32_t), JMEM_ALIGNMENT); in jerry_merge_snapshots() 1321 memcpy (dst_p, in jerry_merge_snapshots() 1326 update_literal_offsets (dst_p, in jerry_merge_snapshots() 1327 dst_p + current_header_p->lit_table_offset - start_offset, in jerry_merge_snapshots() 1331 uint32_t current_offset = (uint32_t) (dst_p - (uint8_t *) out_buffer_p) - start_offset; in jerry_merge_snapshots() 1339 dst_p += current_header_p->lit_table_offset - start_offset; in jerry_merge_snapshots() 1342 JERRY_ASSERT ((uint32_t) (dst_p - (uint8_t *) out_buffer_p) == header_p->lit_table_offset); in jerry_merge_snapshots()
|
/third_party/boost/libs/python/src/object/ |
D | inheritance.cpp | 397 index_entry* dst_p = seek_type(dst_t); in convert_type() local 398 if (dst_p == 0) in convert_type() 429 , tuples::get<kvertex>(*dst_p)); in convert_type()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_split_vars.c | 666 nir_deref_instr *dst_p, *src_p; in emit_split_copies() local 668 while ((dst_p = dst_path->path[dst_level + 1])) { in emit_split_copies() 669 if (dst_p->deref_type == nir_deref_type_array_wildcard) in emit_split_copies() 672 dst = nir_build_deref_follower(b, dst, dst_p); in emit_split_copies() 684 if (src_p == NULL || dst_p == NULL) { in emit_split_copies() 685 assert(src_p == NULL && dst_p == NULL); in emit_split_copies() 688 assert(dst_p->deref_type == nir_deref_type_array_wildcard && in emit_split_copies()
|
/third_party/ffmpeg/libavformat/ |
D | avisynth.c | 653 unsigned char *dst_p; in avisynth_read_packet_video() local 692 dst_p = pkt->data; in avisynth_read_packet_video() 709 avs_library.avs_bit_blt(avs->env, dst_p, rowsize, src_p, pitch, in avisynth_read_packet_video() 711 dst_p += rowsize * planeheight; in avisynth_read_packet_video()
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | example.c | 1164 static void replace_asm_arg(char **dst_p, struct asm_arg *arg) in replace_asm_arg() argument 1166 char *dst = *dst_p; in replace_asm_arg() 1170 *dst_p = dst + len; in replace_asm_arg() 1173 static void replace_asm_percent(const char **src_p, char **dst_p, struct asm_arg *args, int nr) in replace_asm_percent() argument 1184 replace_asm_arg(dst_p, args+index); in replace_asm_percent() 1191 static void replace_asm_named(const char **src_p, char **dst_p, struct asm_arg *args, int nr) in replace_asm_named() argument 1212 replace_asm_arg(dst_p, args+i); in replace_asm_named()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_nnedi.c | 404 float *dst_p = dst; in predictor() local 443 dst_p[i] = mstd[3] * (use_q2 ? 0.5f : 1.f); in predictor() 525 float *dst_p = dst; in interpolation() local 539 dst_p[i] = accum; in interpolation()
|
/third_party/grpc/src/core/ext/transport/cronet/transport/ |
D | cronet_transport.cc | 1289 uint8_t* dst_p = GRPC_SLICE_START_PTR(read_data_slice); in execute_stream_op() local 1290 memcpy(dst_p, stream_state->rs.read_buffer, in execute_stream_op()
|