Home
last modified time | relevance | path

Searched refs:IS_EOF (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/conf/
H A Dconf_def.c53 #define scan_esc(conf, p) (((IS_EOF((conf), (p)[1])) ? ((p) + 1) : ((p) + 2)))
350 if (IS_EOF(conf, *s)) in def_load_bio()
634 if (IS_EOF(conf, *p)) in clear_comments()
658 while (!IS_EOF(conf, *from) && (*from != q)) { in str_copy()
661 if (IS_EOF(conf, *from)) in str_copy()
671 while (!IS_EOF(conf, *from)) { in str_copy()
686 if (IS_EOF(conf, v)) in str_copy()
697 } else if (IS_EOF(conf, *from)) in str_copy()
917 while (IS_WS(conf, *p) && (!IS_EOF(conf, *p))) in eat_ws()
926 while (!IS_EOF(conf, *p)) in trim_ws()
[all …]
H A Dconf_def.h32 #define IS_EOF(conf,c) is_keytype(conf, c, CONF_EOF) macro