Home
last modified time | relevance | path

Searched defs:ATOI2 (Results 1 – 5 of 5) sorted by relevance

/dragonfly/bin/pax/
H A Dsel_subs.h59 #define ATOI2(s) ((((s)[0] - '0') * 10) + ((s)[1] - '0')) macro
/dragonfly/bin/date/
H A Ddate.c223 #define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0')) macro
/dragonfly/usr.bin/touch/
H A Dtouch.c225 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2; macro
/dragonfly/sbin/shutdown/
H A Dshutdown.c409 #define ATOI2(p) (p[0] - '0') * 10 + (p[1] - '0'); p += 2; macro
/dragonfly/usr.bin/at/
H A Dat.c617 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2; macro