Searched refs:destination_p (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-ws.c | 117 uint8_t *destination_p, /**< destination buffer */ in jerryx_to_base64() argument 123 destination_p[0] = jerryx_to_base64_character (value); in jerryx_to_base64() 126 destination_p[1] = jerryx_to_base64_character (value); in jerryx_to_base64() 129 destination_p[2] = jerryx_to_base64_character (value); in jerryx_to_base64() 132 destination_p[3] = jerryx_to_base64_character (value); in jerryx_to_base64() 135 destination_p += 4; in jerryx_to_base64()
|
D | debugger-sha1.c | 314 uint8_t destination_p[20]) /**< result */ in jerryx_sha1_finish() 341 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[0], destination_p, 0); in jerryx_sha1_finish() 342 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[1], destination_p, 4); in jerryx_sha1_finish() 343 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[2], destination_p, 8); in jerryx_sha1_finish() 344 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[3], destination_p, 12); in jerryx_sha1_finish() 345 JERRYX_SHA1_PUT_UINT32_BE (sha1_context_p->state[4], destination_p, 16); in jerryx_sha1_finish() 359 uint8_t destination_p[20]) /**< result */ in jerryx_debugger_compute_sha1() 366 jerryx_sha1_finish (&sha1_context, destination_p); in jerryx_debugger_compute_sha1()
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-literal-storage.c | 471 uint8_t *destination_p = (uint8_t *) (buffer_p + (*in_out_buffer_offset_p / sizeof (uint32_t))); in ecma_save_literals_for_snapshot() local 493 memcpy (destination_p, &num, sizeof (ecma_number_t)); in ecma_save_literals_for_snapshot() 502 *(uint16_t *) destination_p = (uint16_t) length; in ecma_save_literals_for_snapshot() 504 ecma_string_to_utf8_bytes (string_p, destination_p + sizeof (uint16_t), length); in ecma_save_literals_for_snapshot() 510 destination_p += length; in ecma_save_literals_for_snapshot()
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-lexer.c | 2059 lexer_convert_ident_to_cesu8 (uint8_t *destination_p, /**< destination string */ in lexer_convert_ident_to_cesu8() argument 2063 const uint8_t *destination_end_p = destination_p + length; in lexer_convert_ident_to_cesu8() 2072 destination_p += lit_code_point_to_cesu8_bytes (destination_p, in lexer_convert_ident_to_cesu8() 2080 lit_four_byte_utf8_char_to_cesu8 (destination_p, source_p); in lexer_convert_ident_to_cesu8() 2082 destination_p += 6; in lexer_convert_ident_to_cesu8() 2088 *destination_p++ = *source_p++; in lexer_convert_ident_to_cesu8() 2090 while (destination_p < destination_end_p); in lexer_convert_ident_to_cesu8() 2128 uint8_t *destination_p = destination_start_p; in lexer_convert_literal_to_chars() local 2202 destination_p += lit_code_point_to_cesu8_bytes (destination_p, octal_number); in lexer_convert_literal_to_chars() 2220 *destination_p++ = (uint8_t) octal_number; in lexer_convert_literal_to_chars() [all …]
|
D | js-scanner-util.c | 1312 uint8_t *destination_p = (uint8_t *) scanner_malloc (context_p, literal_p->length); in scanner_scope_find_let_declaration() local 1314 lexer_convert_ident_to_cesu8 (destination_p, literal_p->char_p, literal_p->length); in scanner_scope_find_let_declaration() 1316 name_p = ecma_new_ecma_string_from_utf8 (destination_p, literal_p->length); in scanner_scope_find_let_declaration() 1317 scanner_free (destination_p, literal_p->length); in scanner_scope_find_let_declaration()
|
D | js-parser-internal.h | 702 void lexer_convert_ident_to_cesu8 (uint8_t *destination_p, const uint8_t *source_p, prop_length_t l…
|