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

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
packed-cache_test.cc 37 static const int kHashbits = PackedCache<64, uint64>::kHashbits;
51 cache.Put(1 << kHashbits, 22);
54 CHECK_EQ(cache.GetOrDefault(1 << kHashbits, 1), 22);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
packed-cache_test.cc 37 static const int kHashbits = PackedCache<64, uint64>::kHashbits;
51 cache.Put(1 << kHashbits, 22);
54 CHECK_EQ(cache.GetOrDefault(1 << kHashbits, 1), 22);
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h 44 // kKeybits - kHashbits, and the values are bit strings of length kValuebits.
56 // kHashbits controls the size of the cache. The best value for
57 // kHashbits will of course depend on the application. Perhaps try
58 // tuning the value of kHashbits by measuring different values on your
65 // for a cache entry is (kKeybits - kHashbits) + kValuebits. Suppose
67 // chose kHashbits >= 11 so that cache entries fit in a uint32.
93 // 2^kHashbits - 1.
102 // This is a direct-mapped cache with 2^kHashbits entries;
107 // a uint16 for each entry if kHashbits >= 11.
127 // the table is controlled by kHashbits, and the type of each entry i
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h 44 // kKeybits - kHashbits, and the values are bit strings of length kValuebits.
56 // kHashbits controls the size of the cache. The best value for
57 // kHashbits will of course depend on the application. Perhaps try
58 // tuning the value of kHashbits by measuring different values on your
65 // for a cache entry is (kKeybits - kHashbits) + kValuebits. Suppose
67 // chose kHashbits >= 11 so that cache entries fit in a uint32.
93 // 2^kHashbits - 1.
102 // This is a direct-mapped cache with 2^kHashbits entries; the hash
107 // entry if kHashbits >= 11.
131 // the table is controlled by kHashbits, and the type of each entry i
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h 44 // kKeybits - kHashbits, and the values are bit strings of length kValuebits.
56 // kHashbits controls the size of the cache. The best value for
57 // kHashbits will of course depend on the application. Perhaps try
58 // tuning the value of kHashbits by measuring different values on your
65 // for a cache entry is (kKeybits - kHashbits) + kValuebits. Suppose
67 // chose kHashbits >= 11 so that cache entries fit in a uint32.
93 // 2^kHashbits - 1.
102 // This is a direct-mapped cache with 2^kHashbits entries; the hash
107 // entry if kHashbits >= 11.
131 // the table is controlled by kHashbits, and the type of each entry i
    [all...]

Completed in 236 milliseconds