Lines Matching refs:formatdef
35 } formatdef; typedef
300 _range_error(const formatdef *f, int is_unsigned) in _range_error()
350 nu_char(const char *p, const formatdef *f) in nu_char()
356 nu_byte(const char *p, const formatdef *f) in nu_byte()
362 nu_ubyte(const char *p, const formatdef *f) in nu_ubyte()
368 nu_short(const char *p, const formatdef *f) in nu_short()
376 nu_ushort(const char *p, const formatdef *f) in nu_ushort()
384 nu_int(const char *p, const formatdef *f) in nu_int()
392 nu_uint(const char *p, const formatdef *f) in nu_uint()
406 nu_long(const char *p, const formatdef *f) in nu_long()
414 nu_ulong(const char *p, const formatdef *f) in nu_ulong()
429 nu_longlong(const char *p, const formatdef *f) in nu_longlong()
439 nu_ulonglong(const char *p, const formatdef *f) in nu_ulonglong()
451 nu_bool(const char *p, const formatdef *f) in nu_bool()
460 nu_float(const char *p, const formatdef *f) in nu_float()
468 nu_double(const char *p, const formatdef *f) in nu_double()
476 nu_void_p(const char *p, const formatdef *f) in nu_void_p()
484 np_byte(char *p, PyObject *v, const formatdef *f) in np_byte()
499 np_ubyte(char *p, PyObject *v, const formatdef *f) in np_ubyte()
514 np_char(char *p, PyObject *v, const formatdef *f) in np_char()
526 np_short(char *p, PyObject *v, const formatdef *f) in np_short()
544 np_ushort(char *p, PyObject *v, const formatdef *f) in np_ushort()
561 np_int(char *p, PyObject *v, const formatdef *f) in np_int()
577 np_uint(char *p, PyObject *v, const formatdef *f) in np_uint()
593 np_long(char *p, PyObject *v, const formatdef *f) in np_long()
603 np_ulong(char *p, PyObject *v, const formatdef *f) in np_ulong()
615 np_longlong(char *p, PyObject *v, const formatdef *f) in np_longlong()
625 np_ulonglong(char *p, PyObject *v, const formatdef *f) in np_ulonglong()
637 np_bool(char *p, PyObject *v, const formatdef *f) in np_bool()
650 np_float(char *p, PyObject *v, const formatdef *f) in np_float()
663 np_double(char *p, PyObject *v, const formatdef *f) in np_double()
676 np_void_p(char *p, PyObject *v, const formatdef *f) in np_void_p()
692 static formatdef native_table[] = {
719 bu_int(const char *p, const formatdef *f) in bu_int()
734 bu_uint(const char *p, const formatdef *f) in bu_uint()
748 bu_longlong(const char *p, const formatdef *f) in bu_longlong()
772 bu_ulonglong(const char *p, const formatdef *f) in bu_ulonglong()
793 bu_float(const char *p, const formatdef *f) in bu_float()
799 bu_double(const char *p, const formatdef *f) in bu_double()
805 bu_bool(const char *p, const formatdef *f) in bu_bool()
813 bp_int(char *p, PyObject *v, const formatdef *f) in bp_int()
837 bp_uint(char *p, PyObject *v, const formatdef *f) in bp_uint()
859 bp_longlong(char *p, PyObject *v, const formatdef *f) in bp_longlong()
875 bp_ulonglong(char *p, PyObject *v, const formatdef *f) in bp_ulonglong()
891 bp_float(char *p, PyObject *v, const formatdef *f) in bp_float()
903 bp_double(char *p, PyObject *v, const formatdef *f) in bp_double()
915 bp_bool(char *p, PyObject *v, const formatdef *f) in bp_bool()
925 static formatdef bigendian_table[] = {
949 lu_int(const char *p, const formatdef *f) in lu_int()
964 lu_uint(const char *p, const formatdef *f) in lu_uint()
978 lu_longlong(const char *p, const formatdef *f) in lu_longlong()
1002 lu_ulonglong(const char *p, const formatdef *f) in lu_ulonglong()
1023 lu_float(const char *p, const formatdef *f) in lu_float()
1029 lu_double(const char *p, const formatdef *f) in lu_double()
1035 lp_int(char *p, PyObject *v, const formatdef *f) in lp_int()
1059 lp_uint(char *p, PyObject *v, const formatdef *f) in lp_uint()
1081 lp_longlong(char *p, PyObject *v, const formatdef *f) in lp_longlong()
1097 lp_ulonglong(char *p, PyObject *v, const formatdef *f) in lp_ulonglong()
1113 lp_float(char *p, PyObject *v, const formatdef *f) in lp_float()
1125 lp_double(char *p, PyObject *v, const formatdef *f) in lp_double()
1136 static formatdef lilendian_table[] = {
1159 static const formatdef *
1188 static const formatdef *
1189 getentry(int c, const formatdef *f) in getentry()
1204 align(Py_ssize_t size, char c, const formatdef *e) in align()
1225 const formatdef *f; in prepare_s()
1226 const formatdef *e; in prepare_s()
1425 const formatdef *e = code->fmtdef; in s_unpack_internal()
1568 const formatdef *e = code->fmtdef; in s_pack_internal()
2046 formatdef *native = native_table; in init_struct()
2047 formatdef *other, *ptr; in init_struct()