18 lines
		
	
	
		
			632 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			632 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 Dynamic32Structure extends Elf.DynamicStructure {
 | 
						|
    public Dynamic32Structure(ElfParser elfParser, Elf.Header header, long j, int i) throws IOException {
 | 
						|
        ByteBuffer allocate = ByteBuffer.allocate(4);
 | 
						|
        allocate.order(header.a ? ByteOrder.BIG_ENDIAN : ByteOrder.LITTLE_ENDIAN);
 | 
						|
        long j2 = j + (i * 8);
 | 
						|
        this.a = elfParser.e(allocate, j2);
 | 
						|
        this.b = elfParser.e(allocate, j2 + 4);
 | 
						|
    }
 | 
						|
}
 |