Home
last modified time | relevance | path

Searched refs:patch_type (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dintrinsic_objects.h45 static uint32_t EncodePatch(PatchType patch_type, uint32_t index = 0u) {
46 DCHECK(patch_type == PatchType::kIntegerValueOfObject || index == 0u);
47 return PatchTypeField::Encode(static_cast<uint32_t>(patch_type)) | IndexField::Encode(index);
/art/compiler/linker/
Dlinker_patch.h245 LinkerPatch(size_t literal_offset, Type patch_type, const DexFile* target_dex_file) in LinkerPatch() argument
248 patch_type_(patch_type) { in LinkerPatch()