Searched refs:UNPACK_SINGLE (Results 1 - 1 of 1) sorted by relevance
/third_party/python/Objects/ |
H A D | memoryobject.c | 1675 #define UNPACK_SINGLE(dest, ptr, type) \ macro 1705 case 'h': UNPACK_SINGLE(ld, ptr, short); goto convert_ld; in unpack_single() 1706 case 'i': UNPACK_SINGLE(ld, ptr, int); goto convert_ld; in unpack_single() 1707 case 'l': UNPACK_SINGLE(ld, ptr, long); goto convert_ld; in unpack_single() 1710 case '?': UNPACK_SINGLE(ld, ptr, _Bool); goto convert_bool; in unpack_single() 1713 case 'H': UNPACK_SINGLE(lu, ptr, unsigned short); goto convert_lu; in unpack_single() 1714 case 'I': UNPACK_SINGLE(lu, ptr, unsigned int); goto convert_lu; in unpack_single() 1715 case 'L': UNPACK_SINGLE(lu, ptr, unsigned long); goto convert_lu; in unpack_single() 1718 case 'q': UNPACK_SINGLE(lld, ptr, long long); goto convert_lld; in unpack_single() 1719 case 'Q': UNPACK_SINGLE(ll in unpack_single() [all...] |
Completed in 3 milliseconds