OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_digit
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/bsd/openpam/dist/lib/libpam/
openpam_ctype.h
38
#define
is_digit
(ch) \
macro
94
(
is_digit
(ch) || is_letter(ch) || \
/src/games/rogue/
message.c
354
is_digit
(int ch)
function
/src/bin/sh/
syntax.h
82
#define
is_digit
(c) ((unsigned)((c) - '0') <= 9)
macro
/src/external/gpl3/gcc/dist/contrib/unicode/from_glibc/
unicode_utils.py
287
def
is_digit
(code_point):
function
349
return (
is_digit
(code_point)
389
and not
is_digit
(code_point))
459
if (is_alpha(code_point) and
is_digit
(code_point)):
471
if (is_space(code_point) and
is_digit
(code_point)):
483
if (is_cntrl(code_point) and
is_digit
(code_point)):
501
if (is_punct(code_point) and
is_digit
(code_point)):
/src/external/gpl3/gcc.old/dist/contrib/unicode/from_glibc/
unicode_utils.py
287
def
is_digit
(code_point):
function
349
return (
is_digit
(code_point)
389
and not
is_digit
(code_point))
459
if (is_alpha(code_point) and
is_digit
(code_point)):
471
if (is_space(code_point) and
is_digit
(code_point)):
483
if (is_cntrl(code_point) and
is_digit
(code_point)):
501
if (is_punct(code_point) and
is_digit
(code_point)):
/src/lib/libc/stdio/
vsnprintf_ss.c
73
#define
is_digit
(c) ((unsigned)to_digit(c) <= 9)
macro
220
while (
is_digit
(ch)) {
240
} while (
is_digit
(ch));
vfwprintf.c
252
#define
is_digit
(c) ((unsigned)to_digit(c) <= 9)
macro
800
while (
is_digit
(*cp)) { \
939
while (
is_digit
(ch)) {
958
} while (
is_digit
(ch));
1609
while (
is_digit
(*cp)) { \
1659
while (
is_digit
(ch)) {
1671
} while (
is_digit
(ch));
/src/external/bsd/wpa/dist/src/ap/
taxonomy.c
36
int
is_digit
= s >= '0' && s <= '9';
local
38
if (is_lower || is_upper ||
is_digit
) {
/src/lib/libc/time/
zdump.c
98
is_digit
(char c)
function
377
while (is_alpha(*cp) ||
is_digit
(*cp) || *cp == '-' || *cp == '+')
localtime.c
1416
is_digit
(char c)
function
1432
while ((c = *strp) != '\0' && !
is_digit
(c) && c != ',' && c != '-' &&
1471
if (strp == NULL || !
is_digit
(c = *strp)) {
1483
} while (
is_digit
(c));
1594
} else if (
is_digit
(*strp)) {
zic.c
309
is_digit
(char c)
function
2079
ok =
is_digit
(xr);
4191
while (is_alpha(*cp) ||
is_digit
(*cp)
/src/sys/kern/
subr_prf.c
1186
#define
is_digit
(c) ((unsigned)to_digit(c) <= 9)
macro
1343
while (
is_digit
(ch)) {
1363
} while (
is_digit
(ch));
/src/external/gpl2/groff/dist/src/devices/grohtml/
post-html.cpp
129
*
is_digit
- returns TRUE if character, ch, is a digit.
132
static int
is_digit
(char ch)
function
2517
||
is_digit
(header.header_buffer[i]))) ; i++) {
Completed in 45 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026