OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:digit_val
(Results
1 - 4
of
4
) sorted by null
/system/core/sh/
syntax.h
77
#define
digit_val
(c) ((c) - '0')
macro
output.c
337
width = 10 * width +
digit_val
(*f++);
347
prec = 10 * prec +
digit_val
(*f++);
parser.c
624
n->ndup.dupfd =
digit_val
(text[0]);
1248
np->nfile.fd =
digit_val
(fd);
[
all
...]
/external/icu4c/i18n/
tzfmt.cpp
99
#define
DIGIT_VAL
(c) (0x0030 <= (c) && (c) <= 0x0039 ? (c) - 0x0030 : -1)
[
all
...]
Completed in 244 milliseconds