Searched defs:ATOI2 (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/bin/date/
H A Ddate.c138 #define ATOI2(ar) ((ar) += 2, ((ar)[-2] - '0') * 10 + ((ar)[-1] - '0')) macro
/openbsd-current/usr.bin/touch/
H A Dtouch.c157 #define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0')) macro
[all...]
/openbsd-current/games/pom/
H A Dpom.c195 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2; macro
/openbsd-current/bin/pax/
H A Dsel_subs.c71 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2; macro
/openbsd-current/usr.bin/last/
H A Dlast.c51 #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2; macro
[all...]
/openbsd-current/sbin/shutdown/
H A Dshutdown.c492 #define ATOI2(p) (p[0] - '0') * 10 + (p[1] - '0'); p += 2; macro
/openbsd-current/usr.bin/at/
H A Dat.c746 #define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0')) macro

Completed in 612 milliseconds