Home
last modified time | relevance | path

Searched refs:string_start (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/ipfilter/tools/
H A Dlex_var.h9 extern long string_start;
15 if (pos >= string_start && pos <= string_end) { \
16 buf[0] = string_val[pos - string_start]; \
38 # define input() (((pos >= string_start) && (pos < string_end)) ? \
39 yysptr = yysbuf, string_val[pos++ - string_start] : \
47 # define lex_input() (((pos >= string_start) && (pos < string_end)) ? \
48 yysptr = yysbuf, string_val[pos++ - string_start] : \
/freebsd-13.1/sbin/ipf/libipf/
H A Dresetlexer.c13 long string_start = -1; variable
21 string_start = -1; in resetlexer()
/freebsd-13.1/sbin/ipf/common/
H A Dlexer.c33 extern int string_start;
78 if (pos >= string_start && pos <= string_end) { in yygetc()
79 c = string_val[pos - string_start]; in yygetc()
572 string_start, string_end, pos, rval, yysavedepth); in yylex()
/freebsd-13.1/contrib/libcbor/src/cbor/
H A Dcallbacks.h76 cbor_simple_callback string_start; member
H A Dcallbacks.c90 .string_start = cbor_null_string_start_callback,
H A Dstreaming.c344 callbacks->string_start(context); in cbor_stream_decode()
/freebsd-13.1/contrib/libcbor/src/
H A Dcbor.c30 .string_start = &cbor_builder_string_start_callback, in cbor_load()