Home
last modified time | relevance | path

Searched refs:format_pair (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_struct.py167 for format_pair in ('bB', 'hH', 'iI', 'lL'):
169 signed_size = struct.calcsize(byteorder + format_pair[0])
170 unsigned_size = struct.calcsize(byteorder + format_pair[1])
/external/iproute2/misc/
Difstat.c390 static void format_pair(FILE *fp, const unsigned long long *vals, int i, int k) in format_pair() function
480 format_pair(fp, vals, 4, 6); in print_one_if()
481 format_pair(fp, vals, 5, 7); in print_one_if()
/external/python/cpython3/Lib/test/
Dtest_struct.py151 for format_pair in native_pairs:
153 signed_size = struct.calcsize(byteorder + format_pair[0])
154 unsigned_size = struct.calcsize(byteorder + format_pair[1])