Home
last modified time | relevance | path

Searched refs:HIGH_BIT_BAU_SIZE (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_mem/memory_manager/include/
Dhmm_intrnl.h28 #define HIGH_BIT_BAU_SIZE \ macro
77 (((head_record *) (HEAD_PTR))->block_size & ~HIGH_BIT_BAU_SIZE)
82 (((head_record *) (HEAD_PTR))->previous_block_size & ~HIGH_BIT_BAU_SIZE)
88 h_ptr->previous_block_size &= HIGH_BIT_BAU_SIZE; \
104 HIGH_BIT_BAU_SIZE) == 0)
108 h_ptr->block_size &= ~HIGH_BIT_BAU_SIZE; \
109 h_ptr->previous_block_size &= ~HIGH_BIT_BAU_SIZE; }
115 h_ptr->block_size |= HIGH_BIT_BAU_SIZE; }
/external/libvpx/libvpx/vpx_mem/memory_manager/
Dhmm_base.c371 HIGH_BIT_BAU_SIZE) ? \
373 HIGH_BIT_BAU_SIZE ? 0 : -1) : 1)
382 p->block_size |= HIGH_BIT_BAU_SIZE; \
384 p->block_size &= ~HIGH_BIT_BAU_SIZE; \
386 p->previous_block_size |= HIGH_BIT_BAU_SIZE; \
388 p->previous_block_size &= ~HIGH_BIT_BAU_SIZE; \
Dhmm_shrink.c87 last_block->previous_block_size &= ~HIGH_BIT_BAU_SIZE; in U()