Searched refs:context (Results 1 – 4 of 4) sorted by relevance
/posix/ |
A D | regex_internal.h | 510 #define NOT_SATISFY_PREV_CONSTRAINT(constraint,context) \ argument 511 ((((constraint) & PREV_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \ 512 || ((constraint & PREV_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \ 513 || ((constraint & PREV_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context))\ 514 || ((constraint & PREV_BEGBUF_CONSTRAINT) && !IS_BEGBUF_CONTEXT (context))) 516 #define NOT_SATISFY_NEXT_CONSTRAINT(constraint,context) \ argument 517 ((((constraint) & NEXT_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \ 518 || (((constraint) & NEXT_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \ 519 || (((constraint) & NEXT_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context)) \ 520 || (((constraint) & NEXT_ENDBUF_CONSTRAINT) && !IS_ENDBUF_CONTEXT (context))) [all …]
|
A D | regexec.c | 1007 unsigned int context; in acquire_init_state_context() local 1013 else if (IS_BEGBUF_CONTEXT (context) && IS_NEWLINE_CONTEXT (context)) in acquire_init_state_context() 1022 context); in acquire_init_state_context() 1197 unsigned int context; in check_halt_state_context() local 2246 unsigned int context; in transit_state() local 2247 context in transit_state() 2287 unsigned int context; in merge_state_with_log() local 2417 unsigned int context; 2473 context)) in transit_state_mb() 2579 context); in transit_state_bkref() [all …]
|
A D | regex_internal.c | 29 unsigned int context, 1466 calc_state_hash (const re_node_set *nodes, unsigned int context) in calc_state_hash() argument 1468 re_hashval_t hash = nodes->nelem + context; in calc_state_hash() 1535 const re_node_set *nodes, unsigned int context) in re_acquire_state_context() argument 1550 hash = calc_state_hash (nodes, context); in re_acquire_state_context() 1557 && state->context == context in re_acquire_state_context() 1562 new_state = create_cd_newstate (dfa, nodes, context, hash); in re_acquire_state_context() 1681 unsigned int context, re_hashval_t hash) in create_cd_newstate() argument 1697 newstate->context = context; in create_cd_newstate() 1739 if (NOT_SATISFY_PREV_CONSTRAINT (constraint,context)) in create_cd_newstate()
|
A D | tst-regex.input | 12199 * sysdeps/generic/sys/ucontext.h: Stub context file.
|
Completed in 29 milliseconds