Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dllex.c33 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r') macro
131 lua_assert(currIsNewline(ls)); in inclinenumber()
133 if (currIsNewline(ls) && ls->current != old) in inclinenumber()
227 if (currIsNewline(ls)) /* string starts with a newline? */ in read_long_string()
358 while (!currIsNewline(ls) && ls->current != EOZ) in llex()
414 lua_assert(!currIsNewline(ls)); in llex()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllex.c29 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r') macro
147 lua_assert(currIsNewline(ls)); in inclinenumber()
149 if (currIsNewline(ls) && ls->current != old) in inclinenumber()
269 if (currIsNewline(ls)) /* string starts with a newline? */ in read_long_string()
371 if (currIsNewline(ls)) inclinenumber(ls); in read_string()
425 while (!currIsNewline(ls) && ls->current != EOZ) in llex()