Searched refs:BlockInfo (Results 1 – 13 of 13) sorted by relevance
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/block/read/ |
H A D | BlockInfo.java | 30 public final class BlockInfo { class 45 public BlockInfo(int id, int type, long blockStartByteOffset, long blockSizeBytes, in BlockInfo() method in BlockInfo 90 BlockInfo blockInfo = (BlockInfo) o; in equals() 120 void visit(BlockInfo blockInfo) throws VisitException; in visit()
|
H A D | BlockFileReader.java | 46 private BlockInfo[] mBlockInfos; 110 mBlockInfos = new BlockInfo[blockCount]; in open() 123 mBlockInfos[i] = new BlockInfo(i, blockType, blockStartByteOffset, in open() 138 public BlockInfo getBlockInfo(int blockId) { in getBlockInfo() 147 BlockInfo blockInfo = mBlockInfos[blockId]; in getBlock() 214 void visitBlockInfo(BlockInfo blockInfo) throws VisitException; in visitBlockInfo()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/block/read/ |
H A D | BlockInfoTest.java | 35 BlockInfo blockInfo = new BlockInfo(id, type, startOffset, size, extraBytes); in visit() 36 BlockInfo.BlockInfoVisitor mockVisitor = mock(BlockInfo.BlockInfoVisitor.class); in visit()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/tzs2range/ |
H A D | SuffixTableExtraInfoTest.java | 21 import com.android.timezone.location.storage.block.read.BlockInfo; 39 BlockInfo blockInfo = createBlockInfo(readBack); in create_emptyBlock() 71 BlockInfo blockInfo = createBlockInfo(readBack); in create_nonEmptyBlock() 84 private static BlockInfo createBlockInfo(BlockWriter.ReadBack readBack) { in createBlockInfo() 87 return new BlockInfo( in createBlockInfo()
|
/aosp12/packages/modules/GeoTZ/s2storage/tools/src/java/com/android/timezone/location/tools/dump/ |
H A D | BlockInfoDumper.java | 19 import com.android.timezone.location.storage.block.read.BlockInfo; 25 public final class BlockInfoDumper extends SingleFileDumper implements BlockInfo.BlockInfoVisitor { 31 public void visit(BlockInfo blockInfo) throws VisitException { in visit()
|
H A D | BlockFileDumper.java | 23 import com.android.timezone.location.storage.block.read.BlockInfo; 51 public void visitBlockInfo(BlockInfo blockInfo) throws VisitException { in visitBlockInfo()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/write/java/com/android/timezone/location/storage/block/write/ |
H A D | BlockFileWriter.java | 20 import com.android.timezone.location.storage.block.read.BlockInfo; 40 private final List<BlockInfo> mBlockInfos = new ArrayList<>(); 98 BlockInfo blockInfo = new BlockInfo( in addBlock() 134 for (BlockInfo blockInfo : mBlockInfos) { in writeHeaderAndAppendTempFile()
|
H A D | BlockWriter.java | 20 import com.android.timezone.location.storage.block.read.BlockInfo;
|
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/block/ |
H A D | BlockFileTest.java | 28 import com.android.timezone.location.storage.block.read.BlockInfo; 69 BlockInfo block1Info = bfr.getBlockInfo(0); in testReadWrite() 82 BlockInfo block2Info = bfr.getBlockInfo(1); in testReadWrite() 140 BlockInfo blockInfo1111 = bfr.getBlockInfo(0); in visit() 141 BlockInfo blockInfo2222 = bfr.getBlockInfo(1); in visit()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/tzs2range/read/ |
H A D | SuffixTableExtraInfo.java | 19 import com.android.timezone.location.storage.block.read.BlockInfo; 60 TzS2RangeFileFormat fileFormat, BlockInfo blockInfo) { in create()
|
H A D | TzS2RangeFileReader.java | 21 import com.android.timezone.location.storage.block.read.BlockInfo; 71 BlockInfo firstBlockInfo = mBlockFileReader.getBlockInfo(headerBlockId); in initialize() 93 BlockInfo blockInfo = mBlockFileReader.getBlockInfo(blockId); in initialize()
|
/aosp12/art/compiler/optimizing/ |
H A D | ssa_liveness_analysis.h | 35 class BlockInfo : public ArenaObject<kArenaAllocSsaLiveness> { 37 BlockInfo(ScopedArenaAllocator* allocator, const HBasicBlock& block, size_t number_of_ssa_values) in BlockInfo() function 56 DISALLOW_COPY_AND_ASSIGN(BlockInfo); 1319 ScopedArenaVector<BlockInfo*> block_infos_;
|
H A D | ssa_liveness_analysis.cc | 92 new (allocator_) BlockInfo(allocator_, *block, number_of_ssa_values_); in ComputeLiveness()
|