Home
last modified time | relevance | path

Searched refs:get_count (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_gc.py255 assertEqual(gc.get_count(), (0, 0, 0))
259 assertEqual(gc.get_count(), (2, 0, 0))
267 assertEqual(gc.get_count(), (0, 1, 0))
269 assertEqual(gc.get_count(), (0, 0, 1))
271 assertEqual(gc.get_count(), (0, 0, 0))
/external/llvm/test/CodeGen/ARM/
Dreadcyclecounter.ll12 define i64 @get_count() {
/external/valgrind/coregrind/m_demangle/
Dcplus-dem.c442 static int get_count (const char **, int *);
1825 if (get_count (mangled, &r)) in demangle_template_template_parm()
2244 if (!get_count (mangled, &r)) in demangle_template()
3601 get_count (const char **type, int *count) in get_count() function
3710 if (!get_count (mangled, &n) || n < 0 || n >= work -> ntypes) in do_type()
3895 if (!get_count (mangled, &n) || n < 0 || n >= work -> numb) in do_type()
4622 if (!get_count (mangled, &r)) in demangle_args()
4646 if (!get_count (mangled, &t)) in demangle_args()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp213 RAW_METHOD_DUMP(OS, get_count) in dump()
496 return PrivateGetDIAValue(Symbol, &IDiaSymbol::get_count); in getCount()
/external/python/cpython2/Doc/library/
Dgc.rst97 .. function:: get_count()
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1353 * In the :mod:`gc` module, the new :func:`get_count` function returns a 3-tuple
/external/python/cpython2/Misc/
DHISTORY1621 - The function get_count() has been added to the gc module, and gc.collect()