Home
last modified time | relevance | path

Searched refs:all_blocks (Results 1 – 7 of 7) sorted by relevance

/external/webp/src/utils/
Dutils.c64 static MemBlock* all_blocks = NULL; variable
80 while (all_blocks != NULL) { in PrintMemInfo()
81 MemBlock* b = all_blocks; in PrintMemInfo()
82 all_blocks = b->next_; in PrintMemInfo()
117 b->next_ = all_blocks; in AddMem()
118 all_blocks = b; in AddMem()
137 MemBlock** b = &all_blocks; in SubMem()
/external/harfbuzz_ng/src/
Dgen-arabic-table.py74 all_blocks = set([blocks[u] for u in uu])
103 if block in all_blocks:
/external/pdfium/third_party/freetype/src/base/
Dftdbgmem.c64 FT_Long all_blocks; /* total number of blocks allocated */ member
486 node->all_blocks = 0; in ft_mem_table_get_source()
555 source->all_blocks++; in ft_mem_table_set()
/external/freetype/src/base/
Dftdbgmem.c64 FT_Long all_blocks; /* total number of blocks allocated */ member
488 node->all_blocks = 0; in ft_mem_table_get_source()
557 source->all_blocks++; in ft_mem_table_set()
/external/v8/test/cctest/compiler/
Dtest-schedule.cc27 CHECK_EQ(schedule.start(), *(schedule.all_blocks().begin())); in TEST()
Dtest-scheduler.cc143 Schedule::BasicBlocks blocks(schedule.all_blocks()); in TEST()
/external/v8/src/compiler/
Dschedule.h190 BasicBlocks all_blocks() { return BasicBlocks(&all_blocks_); } in all_blocks() function