HomeSort by relevance Sort by last modified time
    Searched refs:dataLogF (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.cpp 55 dataLogF("\nWTF::HashTable statistics\n\n");
56 dataLogF("%d accesses\n", numAccesses);
57 dataLogF("%d total collisions, average %.2f probes per access\n", numCollisions, 1.0 * (numAccesses + numCollisions) / numAccesses);
58 dataLogF("longest collision chain: %d\n", maxCollisions);
60 dataLogF(" %d lookups with exactly %d collisions (%.2f%% , %.2f%% with this many or more)\n", collisionGraph[i], i, 100.0 * (collisionGraph[i] - collisionGraph[i+1]) / numAccesses, 100.0 * collisionGraph[i] / numAccesses);
62 dataLogF("%d rehashes\n", numRehashes);
63 dataLogF("%d reinserts\n", numReinserts);
DataLog.cpp 95 void dataLogF(const char* format, ...)
DataLog.h 40 void dataLogF(const char* format, ...) WTF_ATTRIBUTE_PRINTF(1, 2);
124 using WTF::dataLogF;
HashTable.h 392 dataLogF("\nWTF::HashTable::Stats dump\n\n");
393 dataLogF("%d accesses\n", numAccesses);
394 dataLogF("%d total collisions, average %.2f probes per access\n", numCollisions, 1.0 * (numAccesses + numCollisions) / numAccesses);
395 dataLogF("longest collision chain: %d\n", maxCollisions);
397 dataLogF(" %d lookups with exactly %d collisions (%.2f%% , %.2f%% with this many or more)\n", collisionGraph[i], i, 100.0 * (collisionGraph[i] - collisionGraph[i+1]) / numAccesses, 100.0 * collisionGraph[i] / numAccesses);
399 dataLogF("%d rehashes\n", numRehashes);
400 dataLogF("%d reinserts\n", numReinserts);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBuffer.cpp 119 dataLogF("---- Shared Buffer Stats ----\n");
122 dataLogF("Buffer size=%8u %s\n", buffers[i]->size(), snippet.data());
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 155 dataLogF("%8u copies (%s) of length %8u %s\n", m_numberOfCopies, status, m_length, m_snippet.data());
236 dataLogF("String stats for process id %d:\n", getCurrentProcessID());
241 dataLogF("%8u (%5.2f%%) 8 bit %12llu chars %12llu bytes avg length %6.1f\n", m_number8BitStrings, percent8Bit, m_total8BitData, m_total8BitData, average8bitLength);
245 dataLogF("%8u (%5.2f%%) 16 bit %12llu chars %12llu bytes avg length %6.1f\n", m_number16BitStrings, percent16Bit, m_total16BitData, m_total16BitData * 2, average16bitLength);
249 dataLogF("%8u Total %12llu chars %12llu bytes avg length %6.1f\n", m_totalNumberStrings, totalNumberCharacters, totalDataBytes, averageLength);
252 dataLogF(" Total savings %12llu bytes (%5.2f%%)\n", totalSavedBytes, percentSavings);
256 dataLogF(" StringImpl overheader: %8u (%5.2f%%)\n", totalOverhead, overheadPercent);
    [all...]
WTFString.cpp     [all...]

Completed in 234 milliseconds