HomeSort by relevance Sort by last modified time
    Searched full:cachepos (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/randomshaders/
rsgVariableManager.cpp 363 std::vector<const ValueEntry*>::iterator cachePos = std::find(m_entryCache.begin(), m_entryCache.end(), CompareEntryVariable(variable));
365 if (cachePos != m_entryCache.end())
366 *cachePos = newEntry;
  /external/deqp/modules/gles31/functional/
es31fComputeShaderBuiltinVarTests.cpp 159 LocalSizeProgramMap::const_iterator cachePos = m_progMap.find(localSize);
160 if (cachePos != m_progMap.end())
161 return cachePos->second->getProgram();
  /external/valgrind/callgrind/
dump.c 368 int cachepos = addr % DEBUG_CACHE_SIZE; local
370 if (debug_cache_addr[cachepos] == addr) {
371 p->line = debug_cache_line[cachepos];
372 p->file = debug_cache_file[cachepos];
373 found_file_line = debug_cache_info[cachepos];
386 debug_cache_info[cachepos] = found_file_line;
387 debug_cache_addr[cachepos] = addr;
388 debug_cache_line[cachepos] = p->line;
389 debug_cache_file[cachepos] = p->file;
    [all...]

Completed in 79 milliseconds