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

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c85 static uint64_t ar_atol8(const char *p, unsigned char_cnt);
86 static uint64_t ar_atol10(const char *p, unsigned char_cnt);
536 ar_atol8(const char *p, unsigned char_cnt) argument
545 while ((*p == ' ' || *p == '\t') && char_cnt-- > 0)
550 while (*p >= '0' && digit < base && char_cnt-- > 0) {
562 ar_atol10(const char *p, unsigned char_cnt) argument
571 while ((*p == ' ' || *p == '\t') && char_cnt-- > 0)
575 while (*p >= '0' && digit < base && char_cnt-- > 0) {
H A Darchive_read_support_format_cpio.c695 atol8(const char *p, unsigned char_cnt) argument
701 while (char_cnt-- > 0) {
714 atol16(const char *p, unsigned char_cnt) argument
720 while (char_cnt-- > 0) {
H A Darchive_read_support_format_tar.c2000 tar_atol(const char *p, unsigned char_cnt) argument
2007 return (tar_atol256(p, char_cnt));
2008 return (tar_atol8(p, char_cnt));
2017 tar_atol8(const char *p, unsigned char_cnt) argument
2036 while (digit >= 0 && digit < base && char_cnt-- > 0) {
2053 tar_atol10(const char *p, unsigned char_cnt) argument
2072 while (digit >= 0 && digit < base && char_cnt-- > 0) {
2089 tar_atol256(const char *_p, unsigned char_cnt) argument
2103 while (--char_cnt > 0) {
H A Darchive_read_support_format_xar.c942 atol10(const char *p, size_t char_cnt) argument
949 while (digit >= 0 && digit < 10 && char_cnt-- > 0) {
957 atol8(const char *p, size_t char_cnt) argument
963 while (char_cnt-- > 0) {

Completed in 63 milliseconds