Searched refs:hashstats (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/tools/build/src/engine/ |
D | hash.h | 67 struct hashstats { struct 76 void hashstats_init( struct hashstats * stats ); argument 77 void hashstats_add( struct hashstats * stats, struct hash * ); 78 void hashstats_print( struct hashstats * stats, char const * name );
|
D | modules.cpp | 154 struct hashstats rules_stats[ 1 ]; 155 struct hashstats variables_stats[ 1 ]; 156 struct hashstats variable_indices_stats[ 1 ]; 157 struct hashstats imported_modules_stats[ 1 ]; 165 struct hashstats stats[ 1 ]; in module_stat() 181 static void class_module_stat( struct hashstats * stats, OBJECT * module, const char * name ) in class_module_stat()
|
D | hash.cpp | 317 struct hashstats stats[ 1 ]; in hashstat() 324 void hashstats_init( struct hashstats * stats ) in hashstats_init() 335 void hashstats_add( struct hashstats * stats, struct hash * hp ) in hashstats_add() 367 void hashstats_print( struct hashstats * stats, char const * name ) in hashstats_print()
|
/third_party/python/Python/ |
D | pyhash.c | 31 static Py_ssize_t hashstats[Py_HASH_STATS_MAX + 1] = {0}; variable 170 hashstats[(len <= Py_HASH_STATS_MAX) ? len : 0]++; in _Py_HashBytes() 212 total += hashstats[i]; in _PyHash_Fini() 213 fprintf(stderr, "%2i %8zd %8zd\n", i, hashstats[i], total); in _PyHash_Fini() 215 total += hashstats[0]; in _PyHash_Fini() 216 fprintf(stderr, "> %8zd %8zd\n", hashstats[0], total); in _PyHash_Fini()
|