Home
last modified time | relevance | path

Searched refs:value_arg (Results 1 – 6 of 6) sorted by relevance

/aosp12/art/libdexfile/dex/
H A Ddex_file.cc632 uint8_t value_arg = value_type >> kEncodedValueArgShift; in Next() local
633 size_t width = value_arg + 1; // assume and correct later in Next()
637 jval_.i = (value_arg != 0) ? 1 : 0; in Next()
641 jval_.i = DexFile::ReadSignedInt(ptr_, value_arg); in Next()
645 jval_.i = DexFile::ReadSignedInt(ptr_, value_arg); in Next()
649 jval_.i = DexFile::ReadUnsignedInt(ptr_, value_arg, false); in Next()
653 jval_.i = DexFile::ReadSignedInt(ptr_, value_arg); in Next()
656 jval_.j = DexFile::ReadSignedLong(ptr_, value_arg); in Next()
659 jval_.i = DexFile::ReadUnsignedInt(ptr_, value_arg, true); in Next()
662 jval_.j = DexFile::ReadUnsignedLong(ptr_, value_arg, true); in Next()
[all …]
H A Ddex_file_verifier.cc965 if (UNLIKELY(value_arg > 1)) { in CheckEncodedValue()
969 ptr_ += value_arg + 1; in CheckEncodedValue()
973 if (UNLIKELY(value_arg > 3)) { in CheckEncodedValue()
977 ptr_ += value_arg + 1; in CheckEncodedValue()
981 ptr_ += value_arg + 1; in CheckEncodedValue()
984 if (UNLIKELY(value_arg > 3)) { in CheckEncodedValue()
995 if (UNLIKELY(value_arg > 3)) { in CheckEncodedValue()
1007 if (UNLIKELY(value_arg > 3)) { in CheckEncodedValue()
1018 if (UNLIKELY(value_arg > 3)) { in CheckEncodedValue()
1053 if (UNLIKELY(value_arg > 1)) { in CheckEncodedValue()
[all …]
/aosp12/art/runtime/dex/
H A Ddex_file_annotations.cc210 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in SkipAnnotationValue() local
211 int32_t width = value_arg + 1; in SkipAnnotationValue()
429 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in ProcessAnnotationValue() local
430 int32_t width = value_arg + 1; in ProcessAnnotationValue()
436 static_cast<int8_t>(DexFile::ReadSignedInt(annotation, value_arg))); in ProcessAnnotationValue()
466 annotation_value->value_.SetZ(value_arg != 0); in ProcessAnnotationValue()
471 uint32_t index = DexFile::ReadUnsignedInt(annotation, value_arg, false); in ProcessAnnotationValue()
486 uint32_t index = DexFile::ReadUnsignedInt(annotation, value_arg, false); in ProcessAnnotationValue()
512 uint32_t index = DexFile::ReadUnsignedInt(annotation, value_arg, false); in ProcessAnnotationValue()
543 uint32_t index = DexFile::ReadUnsignedInt(annotation, value_arg, false); in ProcessAnnotationValue()
[all …]
/aosp12/art/runtime/mirror/
H A Dstring.cc142 const uint8_t* value_arg = h_arg->GetValueCompressed(); in DoConcat() local
144 new_value[i + length_this] = value_arg[i]; in DoConcat()
/aosp12/art/dexlayout/
H A Ddex_writer.h228 void WriteEncodedValueHeader(Stream* stream, int8_t value_type, size_t value_arg);
H A Ddex_writer.cc186 void DexWriter::WriteEncodedValueHeader(Stream* stream, int8_t value_type, size_t value_arg) { in WriteEncodedValueHeader() argument
187 uint8_t buffer[1] = { static_cast<uint8_t>((value_arg << 5) | value_type) }; in WriteEncodedValueHeader()