Searched refs:astate (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/crypto/heimdal/lib/roken/
H A Dunvis.c92 rk_unvis(char *cp, int c, int *astate, int flag) argument
96 _DIAGASSERT(astate != NULL);
99 if (*astate == S_OCTAL2 || *astate == S_OCTAL3) {
100 *astate = S_GROUND;
103 return (*astate == S_GROUND ? UNVIS_NOCHAR : UNVIS_SYNBAD);
106 switch (*astate) {
111 *astate = S_START;
121 *astate = S_GROUND;
126 *astate
[all...]
/freebsd-current/contrib/libc-vis/
H A Dunvis.c201 unvis(char *cp, int c, int *astate, int flag) argument
207 * Bottom 8 bits of astate hold the state machine state.
215 _DIAGASSERT(astate != NULL);
216 st = GS(*astate);
223 *astate = SS(0, S_GROUND);
237 *astate = SS(0, S_START);
241 *astate = SS(0, S_HEX1);
245 *astate = SS(0, S_AMP);
249 *astate = SS(0, S_MIME1);
259 *astate
[all...]
/freebsd-current/lib/libc/gen/
H A Dunvis-compat.c40 __unvis_44bsd(char *cp, int c, int *astate, int flag) argument
45 return unvis(cp, c, astate, flag);
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_table.c87 void *astate; /* algorithm state */ member in struct:table_config
373 error = ta->add(tc->astate, tinfo, ptei, v, &num);
381 error = ta->del(tc->astate, tinfo, ptei, vv, &num);
659 error = ta->add(tc->astate, KIDX_TO_TI(ch, kidx),
769 error = ta->del(tc->astate, KIDX_TO_TI(ch, kidx), ptei, v,
839 if (ta->need_modify(tc->astate, ti, count, &pflags) == 0) {
871 if (ta->need_modify(tc->astate, ti, count, &pflags) == 0) {
882 error = ta->fill_mod(tc->astate, ti, ta_buf, &pflags);
886 ta->modify(tc->astate, ti, ta_buf, pflags);
1138 error = ta->find_tentry(tc->astate, kt
1388 void *astate; local
[all...]
H A Dip_fw_table_value.c271 void *astate; member in struct:flush_args
289 error = ta->dump_tentry(fa->astate, fa->ti, e, tent);
306 struct table_algo *ta, void *astate, struct table_info *ti)
315 fa.astate = astate;
318 ta->foreach(astate, ti, unref_table_value_cb, &fa);
305 ipfw_unref_table_values(struct ip_fw_chain *ch, struct table_config *tc, struct table_algo *ta, void *astate, struct table_info *ti) argument
H A Dip_fw_table.h176 struct table_algo *ta, void *astate, struct table_info *ti);
/freebsd-current/contrib/flex/src/
H A Dnfa.c60 int astate = mkstate (SYM_EPSILON); local
62 accptnum[astate] = accepting_number;
63 (void) link_machines (mach, astate);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc9307 INTERCEPTOR(int, unvis, char *cp, int c, int *astate, int flag) {
9309 COMMON_INTERCEPTOR_ENTER(ctx, unvis, cp, c, astate, flag);
9310 if (astate)
9311 COMMON_INTERCEPTOR_READ_RANGE(ctx, astate, sizeof(*astate));
9312 int ret = REAL(unvis)(cp, c, astate, flag);

Completed in 165 milliseconds