Home
last modified time | relevance | path

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

/third_party/python/Python/
Dpyarena.c14 #define DEFAULT_BLOCK_SIZE 8192 macro
113 size < DEFAULT_BLOCK_SIZE ? in block_alloc()
114 DEFAULT_BLOCK_SIZE : size); in block_alloc()
135 arena->a_head = block_new(DEFAULT_BLOCK_SIZE); in _PyArena_New()
151 arena->total_block_size = DEFAULT_BLOCK_SIZE; in _PyArena_New()
196 if (arena->a_cur->ab_size > DEFAULT_BLOCK_SIZE) in _PyArena_Malloc()
Dcompile.c38 #define DEFAULT_BLOCK_SIZE 16 macro
894 DEFAULT_BLOCK_SIZE, sizeof(struct instr)); in compiler_next_instr()
899 b->b_ialloc = DEFAULT_BLOCK_SIZE; in compiler_next_instr()
/third_party/gstreamer/gstplugins_bad/ext/bz2/
Dgstbz2enc.c37 #define DEFAULT_BLOCK_SIZE 6 macro
253 b->block_size = DEFAULT_BLOCK_SIZE; in gst_bz2enc_init()
317 1, 9, DEFAULT_BLOCK_SIZE, in gst_bz2enc_class_init()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DCodedInputStreamTest.java57 private static final int DEFAULT_BLOCK_SIZE = 4096; field in CodedInputStreamTest
90 if (blockSize > DEFAULT_BLOCK_SIZE) { in newDecoder()
91 blockSize = DEFAULT_BLOCK_SIZE; in newDecoder()
107 if (blockSize > DEFAULT_BLOCK_SIZE) { in newDecoder()
108 blockSize = DEFAULT_BLOCK_SIZE; in newDecoder()
/third_party/ffmpeg/libavcodec/
Dshorten.c45 #define DEFAULT_BLOCK_SIZE 256 macro
416 s->blocksize = DEFAULT_BLOCK_SIZE; in read_header()
438 blocksize = get_uint(s, av_log2(DEFAULT_BLOCK_SIZE)); in read_header()