HomeSort by relevance Sort by last modified time
    Searched defs:value_arg (Results 1 - 3 of 3) sorted by null

  /art/runtime/
dex_file_annotations.cc 183 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; local
184 int32_t width = value_arg + 1;
392 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; local
393 int32_t width = value_arg + 1;
399 static_cast<int8_t>(DexFile::ReadSignedInt(annotation, value_arg)));
404 static_cast<int16_t>(DexFile::ReadSignedInt(annotation, value_arg)));
409 static_cast<uint16_t>(DexFile::ReadUnsignedInt(annotation, value_arg, false)));
413 annotation_value->value_.SetI(DexFile::ReadSignedInt(annotation, value_arg));
417 annotation_value->value_.SetJ(DexFile::ReadSignedLong(annotation, value_arg));
421 annotation_value->value_.SetI(DexFile::ReadUnsignedInt(annotation, value_arg, true))
    [all...]
dex_file.cc 1458 uint8_t value_arg = value_type >> kEncodedValueArgShift; local
    [all...]
dex_file_verifier.cc 748 uint32_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; local
752 if (UNLIKELY(value_arg != 0)) {
753 ErrorStringPrintf("Bad encoded_value byte size %x", value_arg);
760 if (UNLIKELY(value_arg > 1)) {
761 ErrorStringPrintf("Bad encoded_value char/short size %x", value_arg);
764 ptr_ += value_arg + 1;
768 if (UNLIKELY(value_arg > 3)) {
769 ErrorStringPrintf("Bad encoded_value int/float size %x", value_arg);
772 ptr_ += value_arg + 1;
776 ptr_ += value_arg + 1
    [all...]

Completed in 82 milliseconds