Home
last modified time | relevance | path

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 DBlockInfo.java30 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 DBlockFileReader.java46 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 DBlockInfoTest.java35 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 DSuffixTableExtraInfoTest.java21 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 DBlockInfoDumper.java19 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 DBlockFileDumper.java23 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 DBlockFileWriter.java20 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 DBlockWriter.java20 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 DBlockFileTest.java28 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 DSuffixTableExtraInfo.java19 import com.android.timezone.location.storage.block.read.BlockInfo;
60 TzS2RangeFileFormat fileFormat, BlockInfo blockInfo) { in create()
H A DTzS2RangeFileReader.java21 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 Dssa_liveness_analysis.h35 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 Dssa_liveness_analysis.cc92 new (allocator_) BlockInfo(allocator_, *block, number_of_ssa_values_); in ComputeLiveness()