Home
last modified time | relevance | path

Searched refs:digitp (Results 1 – 25 of 247) sorted by relevance

12345678910

/dports/security/openvas/openvas-scanner-21.4.3/nasl/
H A Dnasl_isotime.c81 #define digitp(p) (*(p) >= '0' && *(p) <= '9') macro
131 if (!digitp (s)) in check_isotime()
136 if (!digitp (s)) in check_isotime()
154 if (!digitp (s)) in isotime_p()
159 if (!digitp (s)) in isotime_p()
180 if (!digitp (s)) in isotime_human_p()
185 if (!digitp (s) || !digitp (s + 1) || s[2] != '-') in isotime_human_p()
191 if (!digitp (s) || !digitp (s + 1)) in isotime_human_p()
204 if (!digitp (s) || !digitp (s + 1)) in isotime_human_p()
215 if (!digitp (s) || !digitp (s + 1)) in isotime_human_p()
[all …]
/dports/security/gnupg/gnupg-2.3.3/common/
H A Dgettime.c190 if( !digitp (string+5) || !digitp(string+6) ) in scan_isodatestr()
192 if( !digitp(string+8) || !digitp(string+9) ) in scan_isodatestr()
221 if (!digitp (s)) in isotime_p()
226 if (!digitp (s)) in isotime_p()
252 if (!digitp (s)) in isotime_human_p()
257 if (!digitp (s) || !digitp (s+1) || s[2] != '-') in isotime_human_p()
263 if (!digitp (s) || !digitp (s+1)) in isotime_human_p()
278 if (!digitp (s) || !digitp (s+1)) in isotime_human_p()
289 if (!digitp (s) || !digitp (s+1)) in isotime_human_p()
300 if (!digitp (s) || !digitp (s+1)) in isotime_human_p()
[all …]
/dports/multimedia/gstreamer1/gstreamer-1.16.2/gst/printf/
H A Dvasnprintf.c412 const char *digitp = dp->width_start; in vasnprintf() local
415 width = width * 10 + (*digitp++ - '0'); in vasnprintf()
416 while (digitp != dp->width_end); in vasnprintf()
430 const char *digitp = dp->precision_start + 1; in vasnprintf() local
433 while (digitp != dp->precision_end) in vasnprintf()
434 precision = precision * 10 + (*digitp++ - '0'); in vasnprintf()
832 const char *digitp = dp->width_start; in vasnprintf() local
835 width = width * 10 + (*digitp++ - '0'); in vasnprintf()
836 while (digitp != dp->width_end); in vasnprintf()
850 const char *digitp = dp->precision_start + 1; in vasnprintf() local
[all …]
/dports/security/gnupg1/gnupg-1.4.23/util/
H A Dmiscutil.c70 if( !digitp(string+i) ) in scan_isodatestr()
72 if( !digitp(string+5) || !digitp(string+6) ) in scan_isodatestr()
74 if( !digitp(string+8) || !digitp(string+9) ) in scan_isodatestr()
182 if (!digitp (s)) in isotime2seconds()
187 if (!digitp (s)) in isotime2seconds()
/dports/net/c3270/suite3270-4.0/Common/
H A Dmodel.c59 char *digitp = NULL; in canonical_model_x() local
69 (digitp = strchr("2345", res[0])) == NULL) || in canonical_model_x()
74 (digitp = strchr("2345", res[5])) == NULL)) || in canonical_model_x()
82 *model = *digitp - '0'; in canonical_model_x()
85 return xs_buffer("327%c-%c%s", *colorp, *digitp, extended? "-E": ""); in canonical_model_x()
/dports/x11/x3270/suite3270-4.0/Common/
H A Dmodel.c59 char *digitp = NULL; in canonical_model_x() local
69 (digitp = strchr("2345", res[0])) == NULL) || in canonical_model_x()
74 (digitp = strchr("2345", res[5])) == NULL)) || in canonical_model_x()
82 *model = *digitp - '0'; in canonical_model_x()
85 return xs_buffer("327%c-%c%s", *colorp, *digitp, extended? "-E": ""); in canonical_model_x()
/dports/security/libksba/libksba-1.6.0/src/
H A Dtime.c60 for (s=buffer, n=0; n < length && digitp (s); n++, s++) in init_stringbuf()
111 if (!digitp (s))
116 if (!digitp (s))
H A Dversion.c43 if (*s == '0' && digitp (s+1)) in parse_version_number()
45 for (; digitp (s); s++) in parse_version_number()
/dports/security/libgpg-error/libgpg-error-1.43/src/
H A Dversion.c31 #define digitp(a) ((a) >= '0' && (a) <= '9') macro
59 if (*s == '0' && digitp (s[1])) in parse_version_number()
61 for (; digitp (*s); s++) in parse_version_number()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/libgpg-error/src/
H A Dversion.c31 #define digitp(a) ((a) >= '0' && (a) <= '9') macro
59 if (*s == '0' && digitp (s[1])) in parse_version_number()
61 for (; digitp (*s); s++) in parse_version_number()
/dports/devel/g-wrap/g-wrap-1.9.15/lib/
H A Dvasnprintf.c349 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
352 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
353 while (digitp != dp->width_end); in VASNPRINTF()
379 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
382 while (digitp != dp->precision_end) in VASNPRINTF()
383 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
815 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
818 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
819 while (digitp != dp->width_end); in VASNPRINTF()
837 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
[all …]
/dports/net/jwhois/jwhois-4.0/gl/
H A Dvasnprintf.c317 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
320 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->width_end); in VASNPRINTF()
347 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
350 while (digitp != dp->precision_end) in VASNPRINTF()
351 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
790 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
793 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
794 while (digitp != dp->width_end); in VASNPRINTF()
812 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
[all …]
/dports/security/libksba/libksba-1.6.0/tests/
H A Dt-common.h25 #define digitp(p) (*(p) >= '0' && *(p) <= '9') macro
117 else if (!digitp (p)) in print_sexp()
184 else if (!digitp (p)) in print_sexp_hex()
/dports/security/libassuan/libassuan-2.5.5/src/
H A Dassuan.c33 #define digitp(a) ((a) >= '0' && (a) <= '9') macro
212 if (*s == '0' && digitp (s[1])) in parse_version_number()
214 for (; digitp (*s); s++) in parse_version_number()
/dports/security/dirmngr/dirmngr-1.1.0/src/
H A Dutil.h76 #define digitp(p) (*(p) >= '0' && *(p) <= '9') macro
77 #define hexdigitp(a) (digitp (a) \
/dports/x11-clocks/xdaliclock/xdaliclock-2.44/X11/
H A Dxdaliclock.c510 #define digitp(x) (('0' <= (x)) && ((x) <= '9')) in hack_version() macro
519 else if (digitp (src[0]) && digitp (src[1]) && digitp (src[2]) && in hack_version()
520 digitp (src[3]) && src[4] == ',') in hack_version()
/dports/games/ltris/ltris-1.2.1/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/games/lpairs/lpairs-1.0.5/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/games/lbreakout2/lbreakout2-2.6.5/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/japanese/scim-tables/scim-tables-0.5.10/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/japanese/scim-canna/scim-canna-1.0.0/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/audio/madplay/madplay-0.15.2b/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/chinese/scim-tables/scim-tables-0.5.10/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/lang/mdk/mdk-1.3.0/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()
/dports/textproc/scim-input-pad/scim-input-pad-0.1.3.1/intl/
H A Dvasnprintf.c294 const CHAR_T *digitp = dp->width_start; in VASNPRINTF() local
297 width = xsum (xtimes (width, 10), *digitp++ - '0'); in VASNPRINTF()
298 while (digitp != dp->width_end); in VASNPRINTF()
316 const CHAR_T *digitp = dp->precision_start + 1; in VASNPRINTF() local
320 precision = xsum (xtimes (precision, 10), *digitp++ - '0'); in VASNPRINTF()
321 while (digitp != dp->precision_end); in VASNPRINTF()

12345678910