Lines Matching defs:entries
43 // Amount of entries database should allocate for its entries upon creation.
424 std::vector<ConversionDatabaseEntry> entries;
426 // Amount of entries allocated in the "entries" array so far.
429 // Amount of entries added to the "entries" array so far.
453 if (!entries.empty())
456 entries.resize(N_START_CONVERSION_DATABASE_ENTRIES);
460 if (entries.empty())
461 TCU_FAIL("Out of memory while pre-allocating space for conversion database entries");
463 deMemset(&entries[0], DE_NULL, N_START_CONVERSION_DATABASE_ENTRIES * sizeof(ConversionDatabaseEntry));
465 // Add all predefined entries that the test implementation is aware of
2912 ConversionDatabaseEntry& entry_ptr = entries[n];
2935 entries.resize(n_entries_allocated);
2936 if (entries.empty())
2941 ConversionDatabaseEntry& entry_ptr = entries[n_entries_added];
6743 // There may be many entries for a single source internal format + type pair, so
8283 ConversionDatabaseEntry& entry_ptr = m_conversion_database->entries[n_entry];