Home
last modified time | relevance | path

Searched refs:SIZE_BITS (Results 1 – 4 of 4) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/
DBlockLZ4CompressorInputStream.java37 static final int SIZE_BITS = 4; field in BlockLZ4CompressorInputStream
38 static final int BACK_REFERENCE_SIZE_MASK = (1 << SIZE_BITS) - 1;
39 static final int LITERAL_SIZE_MASK = BACK_REFERENCE_SIZE_MASK << SIZE_BITS;
99 long literalSizePart = (nextBlock & LITERAL_SIZE_MASK) >> SIZE_BITS; in readSizes()
DBlockLZ4CompressorOutputStream.java482 return (l << BlockLZ4CompressorInputStream.SIZE_BITS) | br; in lengths()
/external/u-boot/common/
Ddlmalloc.c394 #define SIZE_BITS (PREV_INUSE|IS_MMAPPED) macro
459 #define chunksize(p) ((p)->size & ~(SIZE_BITS))
Ddlmalloc.src1313 #define SIZE_BITS (PREV_INUSE|IS_MMAPPED)
1378 #define chunksize(p) ((p)->size & ~(SIZE_BITS))