18 lines
633 B
Java
18 lines
633 B
Java
package com.getkeepsafe.relinker.elf;
|
|
|
|
import com.getkeepsafe.relinker.elf.Elf;
|
|
import java.io.IOException;
|
|
import java.nio.ByteBuffer;
|
|
import java.nio.ByteOrder;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Dynamic64Structure extends Elf.DynamicStructure {
|
|
public Dynamic64Structure(ElfParser elfParser, Elf.Header header, long j, int i) throws IOException {
|
|
ByteBuffer allocate = ByteBuffer.allocate(8);
|
|
allocate.order(header.a ? ByteOrder.BIG_ENDIAN : ByteOrder.LITTLE_ENDIAN);
|
|
long j2 = j + (i * 16);
|
|
this.a = elfParser.c(allocate, j2);
|
|
this.b = elfParser.c(allocate, j2 + 8);
|
|
}
|
|
}
|