Home
last modified time | relevance | path

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

/dports/databases/hbase/hbase-1.2.1/hbase-prefix-tree/src/main/java/org/apache/hadoop/hbase/codec/prefixtree/
H A DPrefixTreeBlockMeta.java76 protected int numTimestampBytes; field in PrefixTreeBlockMeta
151 numBytes += UVIntTool.numBytes(numTimestampBytes); in calculateNumMetaBytes()
193 UVIntTool.writeBytes(numTimestampBytes, os); in writeVariableBytesToOutputStream()
234 numTimestampBytes = UVIntTool.getInt(is); in readVariableBytesFromInputStream()
286 numTimestampBytes = UVIntTool.getInt(bytes, position); in readVariableBytesFromArray()
287 position += UVIntTool.numBytes(numTimestampBytes); in readVariableBytesFromArray()
450 if (numTimestampBytes != other.numTimestampBytes) in equals()
507 result = prime * result + numTimestampBytes; in hashCode()
547 builder.append(numTimestampBytes); in toString()
721 return numTimestampBytes; in getNumTimestampBytes()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-prefix-tree/src/main/java/org/apache/hadoop/hbase/codec/prefixtree/encode/
H A DPrefixTreeEncoder.java419 int numTimestampBytes = timestampEncoder.getOutputArrayLength(); in compileTimestamps() local
420 totalBytes += numTimestampBytes; in compileTimestamps()