Lines Matching refs:uint8_t

29     (uint8_t)SerializedObjectSpace::OLD_SPACE:                            \
30 case (uint8_t)SerializedObjectSpace::NON_MOVABLE_SPACE: \
31 case (uint8_t)SerializedObjectSpace::MACHINE_CODE_SPACE: \
32 case (uint8_t)SerializedObjectSpace::HUGE_SPACE: \
33 case (uint8_t)SerializedObjectSpace::SHARED_OLD_SPACE: \
34 case (uint8_t)SerializedObjectSpace::SHARED_NON_MOVABLE_SPACE: \
35 case (uint8_t)SerializedObjectSpace::SHARED_HUGE_SPACE
69 uint8_t encodeFlag = data_->ReadUint8(position_);
114 uint8_t encodeFlag = data_->ReadUint8(position_);
147 uint8_t type = info->errorType_;
148 base::ErrorType errorType = base::ErrorType(type - static_cast<uint8_t>(JSType::JS_ERROR_FIRST));
249 size_t BaseDeserializer::ReadSingleEncodeData(uint8_t encodeFlag, uintptr_t objAddr, size_t fieldOffset, bool isRoot)
259 case (uint8_t)EncodeFlag::REFERENCE: {
267 case (uint8_t)EncodeFlag::WEAK: {
273 case (uint8_t)EncodeFlag::PRIMITIVE: {
278 case (uint8_t)EncodeFlag::MULTI_RAW_DATA: {
284 case (uint8_t)EncodeFlag::ROOT_OBJECT: {
294 case (uint8_t)EncodeFlag::OBJECT_PROTO: {
295 uint8_t type = data_->ReadUint8(position_);
304 case (uint8_t)EncodeFlag::TRANSFER_ARRAY_BUFFER: {
309 case (uint8_t)EncodeFlag::SHARED_ARRAY_BUFFER: {
314 case (uint8_t)EncodeFlag::ARRAY_BUFFER:
315 case (uint8_t)EncodeFlag::SENDABLE_ARRAY_BUFFER:
316 case (uint8_t)EncodeFlag::JS_REG_EXP: {
326 case (uint8_t)EncodeFlag::NATIVE_BINDING_OBJECT: {
337 case (uint8_t)EncodeFlag::JS_ERROR: {
339 uint8_t type = data_->ReadUint8(position_);
340 ASSERT(type >= static_cast<uint8_t>(JSType::JS_ERROR_FIRST)
341 && type <= static_cast<uint8_t>(JSType::JS_ERROR_LAST));
343 uint8_t flag = data_->ReadUint8(position_);
350 case (uint8_t)EncodeFlag::SHARED_OBJECT: {
451 JSTaggedType BaseDeserializer::RelocateObjectProtoAddr(uint8_t objectType)
455 case (uint8_t)JSType::JS_OBJECT:
457 case (uint8_t)JSType::JS_ERROR:
459 case (uint8_t)JSType::JS_EVAL_ERROR:
461 case (uint8_t)JSType::JS_RANGE_ERROR:
463 case (uint8_t)JSType::JS_REFERENCE_ERROR:
465 case (uint8_t)JSType::JS_TYPE_ERROR:
467 case (uint8_t)JSType::JS_AGGREGATE_ERROR:
469 case (uint8_t)JSType::JS_URI_ERROR:
471 case (uint8_t)JSType::JS_SYNTAX_ERROR:
473 case (uint8_t)JSType::JS_OOM_ERROR:
475 case (uint8_t)JSType::JS_TERMINATION_ERROR:
477 case (uint8_t)JSType::JS_DATE:
479 case (uint8_t)JSType::JS_ARRAY:
481 case (uint8_t)JSType::JS_SHARED_ARRAY:
483 case (uint8_t)JSType::JS_MAP:
485 case (uint8_t)JSType::JS_SHARED_MAP:
487 case (uint8_t)JSType::JS_SET:
489 case (uint8_t)JSType::JS_SHARED_SET:
491 case (uint8_t)JSType::JS_SENDABLE_ARRAY_BUFFER:
493 case (uint8_t)JSType::JS_REG_EXP:
495 case (uint8_t)JSType::JS_INT8_ARRAY:
497 case (uint8_t)JSType::JS_UINT8_ARRAY:
499 case (uint8_t)JSType::JS_UINT8_CLAMPED_ARRAY:
501 case (uint8_t)JSType::JS_INT16_ARRAY:
503 case (uint8_t)JSType::JS_UINT16_ARRAY:
505 case (uint8_t)JSType::JS_INT32_ARRAY:
507 case (uint8_t)JSType::JS_UINT32_ARRAY:
509 case (uint8_t)JSType::JS_FLOAT32_ARRAY:
511 case (uint8_t)JSType::JS_FLOAT64_ARRAY:
513 case (uint8_t)JSType::JS_BIGINT64_ARRAY:
515 case (uint8_t)JSType::JS_BIGUINT64_ARRAY:
517 case (uint8_t)JSType::JS_SHARED_INT8_ARRAY:
519 case (uint8_t)JSType::JS_SHARED_UINT8_ARRAY:
521 case (uint8_t)JSType::JS_SHARED_UINT8_CLAMPED_ARRAY:
523 case (uint8_t)JSType::JS_SHARED_INT16_ARRAY:
525 case (uint8_t)JSType::JS_SHARED_UINT16_ARRAY:
527 case (uint8_t)JSType::JS_SHARED_INT32_ARRAY:
529 case (uint8_t)JSType::JS_SHARED_UINT32_ARRAY:
531 case (uint8_t)JSType::JS_SHARED_FLOAT32_ARRAY:
533 case (uint8_t)JSType::JS_SHARED_FLOAT64_ARRAY:
535 case (uint8_t)JSType::JS_SHARED_BIGINT64_ARRAY:
537 case (uint8_t)JSType::JS_SHARED_BIGUINT64_ARRAY:
539 case (uint8_t)JSType::JS_ARRAY_BUFFER:
541 case (uint8_t)JSType::JS_SHARED_ARRAY_BUFFER:
543 case (uint8_t)JSType::JS_ASYNC_FUNCTION:
545 case (uint8_t)JSType::JS_SHARED_ASYNC_FUNCTION:
547 case (uint8_t)JSType::BIGINT: