Searched refs:char_cnt (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c90 static uint64_t ar_atol8(const char *p, unsigned char_cnt);
91 static uint64_t ar_atol10(const char *p, unsigned char_cnt);
589 ar_atol8(const char *p, unsigned char_cnt) argument
598 while ((*p == ' ' || *p == '\t') && char_cnt-- > 0)
603 while (*p >= '0' && digit < base && char_cnt-- > 0) {
615 ar_atol10(const char *p, unsigned char_cnt) argument
624 while ((*p == ' ' || *p == '\t') && char_cnt-- > 0)
628 while (*p >= '0' && digit < base && char_cnt-- > 0) {
H A Darchive_write_add_filter_uuencode.c276 atol8(const char *p, size_t char_cnt) argument
282 while (char_cnt-- > 0) {
H A Darchive_write_add_filter_b64encode.c285 atol8(const char *p, size_t char_cnt) argument
291 while (char_cnt-- > 0) {
H A Darchive_read_support_format_tar.c2629 tar_atol(const char *p, size_t char_cnt) argument
2636 return (tar_atol256(p, char_cnt));
2637 return (tar_atol8(p, char_cnt));
2646 tar_atol_base_n(const char *p, size_t char_cnt, int base) argument
2655 /* the pointer will not be dereferenced if char_cnt is zero
2658 while (char_cnt != 0 && (*p == ' ' || *p == '\t')) {
2660 char_cnt--;
2664 if (char_cnt != 0 && *p == '-') {
2667 char_cnt--;
2675 if (char_cnt !
2690 tar_atol8(const char *p, size_t char_cnt) argument
2696 tar_atol10(const char *p, size_t char_cnt) argument
2712 tar_atol256(const char *_p, size_t char_cnt) argument
[all...]
H A Darchive_read_support_format_cpio.c1003 atol8(const char *p, unsigned char_cnt) argument
1009 while (char_cnt-- > 0) {
1022 atol16(const char *p, unsigned char_cnt) argument
1028 while (char_cnt-- > 0) {
H A Darchive_read_support_format_xar.c1066 atol10(const char *p, size_t char_cnt) argument
1071 if (char_cnt == 0)
1076 while (digit >= 0 && digit < 10 && char_cnt-- > 0) {
1084 atol8(const char *p, size_t char_cnt) argument
1089 if (char_cnt == 0)
1093 while (char_cnt-- > 0) {
/freebsd-current/stand/libsa/
H A Dpkgfs.c566 pkg_atol8(const char *p, unsigned char_cnt) argument
585 while (digit >= 0 && digit < base && char_cnt-- > 0) {
605 pkg_atol256(const char *_p, unsigned char_cnt) argument
619 while (--char_cnt > 0) {
633 pkg_atol(const char *p, unsigned char_cnt) argument
640 return (pkg_atol256(p, char_cnt));
641 return (pkg_atol8(p, char_cnt));

Completed in 103 milliseconds