Lines Matching defs:byte
354 vm_run_eval (ecma_compiled_code_t *bytecode_data_p, /**< byte-code data */
907 * Read literal index from the byte code stream into destination.
970 * Run generic byte code.
994 /* Prepare for byte code execution. */
1026 /* Internal loop for byte code execution. */
3967 uint8_t byte;
3971 byte = *byte_code_p++;
3972 value = (value << 7) | (byte & CBC_LOWER_SEVEN_BIT_MASK);
3974 while (byte & CBC_HIGHEST_BIT_MASK);
4441 vm_run (const ecma_compiled_code_t *bytecode_header_p, /**< byte-code data header */