Home
last modified time | relevance | path

Searched refs:ISEOL (Results 1 – 17 of 17) sorted by relevance

/dports/devel/vasm/vasm/syntax/std/
H A Dsyntax.c77 if (!ISEOL(s)) in eol()
109 else if(ISEOL(s)||(c==','&&par_cnt==0)) in skip_operand()
288 }else if(ISEOL(s)){ in handle_data()
731 if(ISEOL(s)) in handle_macro()
776 cond_if(ISEOL(s)); in handle_ifb()
782 cond_if(!ISEOL(s)); in handle_ifnb()
856 if(!ISEOL(s)){ in handle_bsss()
1133 if(ISEOL(s)) in parse()
1143 if(ISEOL(s)) in parse()
1147 if(ISEOL(s)) in parse()
[all …]
H A Dsyntax.h8 #define ISEOL(p) (*(p)=='\0'||*(p)==commentchar) macro
/dports/devel/vasm/vasm/syntax/madmac/
H A Dsyntax.c59 if (!ISEOL(s)) in eol()
530 if (ISEOL(s)) in handle_macro()
571 while (!ISEOL(s)) { in handle_print()
805 if (!ISEOL(s)) { in parse()
840 if (ISEOL(s)) in parse()
869 while (!ISEOL(s) && op_cnt<MAX_OPERANDS) { in parse()
H A Dsyntax.h8 #define ISEOL(p) (*(p)=='\0' || *(p)==commentchar) macro
/dports/devel/vasm/vasm/syntax/mot/
H A Dsyntax.c100 if (!ISEOL(s)) in comment_check()
111 if (!ISEOL(s)) in eol()
115 if (!ISEOL(s) && !isspace((unsigned char)*s)) in eol()
208 if (!ISEOL(*s)) { in new_setoffset_size()
441 if (!ISEOL(s)) in handle_offset()
1062 cond_if(ISEOL(s)); in handle_ifb()
1067 cond_if(!ISEOL(s)); in handle_ifnb()
1664 ((isspace((unsigned char)*d) || ISEOL(d)) || in offs_directive()
1833 if (ISEOL(s))
1840 if (ISEOL(s))
[all …]
H A Dsyntax.h11 #define ISEOL(p) (*(p)=='\0'||iscomment(p)) macro
/dports/devel/vasm/vasm/syntax/test/
H A Dsyntax.h8 #define ISEOL(p) (*(p)=='\0'||*(p)==commentchar) macro
H A Dsyntax.c35 if (!ISEOL(s)) in eol()
50 if(ISEOL(s)||(*s==','&&par_cnt==0)) in skip_operand()
/dports/devel/vasm/vasm/
H A Dparse.c143 while (!ISEOL(s) && !isspace((unsigned char)*s) && *s!=',') in parse_name()
573 while (args!=NULL && !ISEOL(args)) { in new_macro()
684 while (!ISEOL(s) && n<maxmacparams) { in execute_macro()
690 while (!ISEOL(s)) { in execute_macro()
836 while (!isspace((unsigned char )*p) && *p!=',' && !ISEOL(p)) { in start_repeat()
845 while (!ISEOL(p)); in start_repeat()
1080 if (ISEOL(s)) in read_next_line()
/dports/devel/vasm/vasm/syntax/oldstyle/
H A Dsyntax.h8 #define ISEOL(p) (*(p)=='\0' || *(p)==commentchar) macro
H A Dsyntax.c72 if (!ISEOL(s) && !isspace((unsigned char)*s)) in eol()
77 if (!ISEOL(s)) in eol()
1300 if (ISEOL(s))
1311 if (ISEOL(s))
1339 while (!ISEOL(s) && op_cnt<MAX_OPERANDS) {
/dports/net/p5-Socket-Class/Socket-Class-2.258/
H A Dsocket_class.c101 #define ISEOL(c) ((c) == '\r' || (c) == '\n') macro
123 for( ; ret > 0, ISEOL( s1[ret - 1] ); ret -- ) in Socket_error()
/dports/net/ntp/ntp-4.2.8p15/ntpdc/
H A Dntpdc.c225 #define ISEOL(c) ((c) == '\n' || (c) == '\r' || (c) == '\0') macro
1289 if (ISEOL(*cp)) in tokenize()
1293 } while (!ISSPACE(*cp) && !ISEOL(*cp)); in tokenize()
/dports/net/ntp/ntp-4.2.8p15/ntpq/
H A Dntpq.c423 #define ISEOL(c) ((c) == '\n' || (c) == '\r' || (c) == '\0') macro
1734 if (ISEOL(*cp)) in tokenize()
1746 } while (!ISEOL(*cp)); in tokenize()
1758 } while ((*cp != '\"') && !ISEOL(*cp)); in tokenize()
1766 } while ((*cp != '\"') && !ISSPACE(*cp) && !ISEOL(*cp)); in tokenize()
/dports/net/ntp/ntp-4.2.8p15/ntpd/
H A Dntp_config.c152 #define ISEOL(c) ((c) == '#' || (c) == '\n' || (c) == '\0') macro
5367 while (!ISEOL(*tokens) && (!ISSPACE(*tokens) || quoted)) in gettokens_netinfo()
5370 if (ISEOL(*tokens)) { in gettokens_netinfo()
5377 if (ISEOL(*tokens)) in gettokens_netinfo()
/dports/devel/vasm/vasm/doc/
H A Dinterface.texi949 @item #define ISEOL(x)
/dports/devel/vasm/vasm/cpus/m68k/
H A Dcpu.c5159 return ISEOL(s) ? 0 : *s; in validchar()