Home | History | Annotate | Download | only in compiler

Lines Matching refs:entries

29   GcMapBuilder(std::vector<uint8_t>* table, size_t entries, uint32_t max_native_offset,
31 : entries_(entries), references_width_(entries != 0u ? references_width : 0u),
32 native_offset_width_(entries != 0 && max_native_offset != 0
35 in_use_(entries), table_(table) {
37 table->resize((EntryWidth() * entries) + sizeof(uint32_t));
43 CHECK_LT(entries, 1U << 16);
44 (*table)[2] = entries & 0xFF;
45 (*table)[3] = (entries >> 8) & 0xFF;
89 // Number of entries in the table.
95 // Entries that are in use.