Home
last modified time | relevance | path

Searched refs:DEFAULT_BLOCK_SIZE (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Python/
Dpyarena.c13 #define DEFAULT_BLOCK_SIZE 8192 macro
112 size < DEFAULT_BLOCK_SIZE ? in block_alloc()
113 DEFAULT_BLOCK_SIZE : size); in block_alloc()
134 arena->a_head = block_new(DEFAULT_BLOCK_SIZE); in PyArena_New()
150 arena->total_block_size = DEFAULT_BLOCK_SIZE; in PyArena_New()
195 if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE) in PyArena_Malloc()
Dcompile.c34 #define DEFAULT_BLOCK_SIZE 16 macro
804 sizeof(struct instr) * DEFAULT_BLOCK_SIZE); in compiler_next_instr()
809 b->b_ialloc = DEFAULT_BLOCK_SIZE; in compiler_next_instr()
811 sizeof(struct instr) * DEFAULT_BLOCK_SIZE); in compiler_next_instr()
/external/python/cpython2/Python/
Dpyarena.c14 #define DEFAULT_BLOCK_SIZE 8192 macro
115 size < DEFAULT_BLOCK_SIZE ? in block_alloc()
116 DEFAULT_BLOCK_SIZE : size); in block_alloc()
137 arena->a_head = block_new(DEFAULT_BLOCK_SIZE); in PyArena_New()
153 arena->total_block_size = DEFAULT_BLOCK_SIZE; in PyArena_New()
198 if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE) in PyArena_Malloc()
Dcompile.c37 #define DEFAULT_BLOCK_SIZE 16 macro
625 sizeof(struct instr) * DEFAULT_BLOCK_SIZE); in compiler_next_instr()
630 b->b_ialloc = DEFAULT_BLOCK_SIZE; in compiler_next_instr()
632 sizeof(struct instr) * DEFAULT_BLOCK_SIZE); in compiler_next_instr()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/snappy/
DSnappyRoundtripTest.java38 …SnappyCompressorOutputStream.createParameterBuilder(SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE) in roundTripTest()
93 …SnappyCompressorOutputStream.createParameterBuilder(SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE) in blaTarRoundtripTunedForSpeed()
102 …SnappyCompressorOutputStream.createParameterBuilder(SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE) in blaTarRoundtripTunedForCompressionRatio()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
DSnappyCompressorInputStream.java47 public static final int DEFAULT_BLOCK_SIZE = 32768; field in SnappyCompressorInputStream
69 this(is, DEFAULT_BLOCK_SIZE); in SnappyCompressorInputStream()
DFramedSnappyCompressorOutputStream.java62 …SnappyCompressorOutputStream.createParameterBuilder(SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE) in FramedSnappyCompressorOutputStream()
DSnappyCompressorOutputStream.java72 this(os, uncompressedSize, SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE); in SnappyCompressorOutputStream()
DFramedSnappyCompressorInputStream.java113 this(in, SnappyCompressorInputStream.DEFAULT_BLOCK_SIZE, dialect); in FramedSnappyCompressorInputStream()