Home
last modified time | relevance | path

Searched refs:numRowBytes (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.java73 protected int numRowBytes; field in PrefixTreeBlockMeta
147 numBytes += UVIntTool.numBytes(numRowBytes); in calculateNumMetaBytes()
189 UVIntTool.writeBytes(numRowBytes, os); in writeVariableBytesToOutputStream()
230 numRowBytes = UVIntTool.getInt(is); in readVariableBytesFromInputStream()
279 position += UVIntTool.numBytes(numRowBytes); in readVariableBytesFromArray()
448 if (numRowBytes != other.numRowBytes) in equals()
506 result = prime * result + numRowBytes; in hashCode()
541 builder.append(numRowBytes); in toString()
713 return numRowBytes; in getNumRowBytes()
716 public void setNumRowBytes(int numRowBytes) { in setNumRowBytes() argument
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-prefix-tree/src/main/java/org/apache/hadoop/hbase/codec/prefixtree/encode/
H A DPrefixTreeEncoder.java459 int numRowBytes = rowWriter.getNumBytes(); in compileRows() local
460 blockMeta.setNumRowBytes(numRowBytes); in compileRows()
462 totalBytes += numRowBytes; in compileRows()