Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/lib/roken/
H A Dunvis.c92 rk_unvis(char *cp, int c, int *astate, int flag) in rk_unvis() argument
96 _DIAGASSERT(astate != NULL); in rk_unvis()
99 if (*astate == S_OCTAL2 || *astate == S_OCTAL3) { in rk_unvis()
100 *astate = S_GROUND; in rk_unvis()
103 return (*astate == S_GROUND ? UNVIS_NOCHAR : UNVIS_SYNBAD); in rk_unvis()
106 switch (*astate) { in rk_unvis()
111 *astate = S_START; in rk_unvis()
121 *astate = S_GROUND; in rk_unvis()
126 *astate = S_OCTAL2; in rk_unvis()
130 *astate = S_META; in rk_unvis()
[all …]
/freebsd/contrib/libc-vis/
H A Dunvis.c201 unvis(char *cp, int c, int *astate, int flag) in unvis() argument
215 _DIAGASSERT(astate != NULL); in unvis()
216 st = GS(*astate); in unvis()
223 *astate = SS(0, S_GROUND); in unvis()
237 *astate = SS(0, S_START); in unvis()
241 *astate = SS(0, S_HEX1); in unvis()
245 *astate = SS(0, S_AMP); in unvis()
249 *astate = SS(0, S_MIME1); in unvis()
259 *astate = SS(0, S_GROUND); in unvis()
264 *astate = SS(0, S_OCTAL2); in unvis()
[all …]
/freebsd/sys/netpfil/ipfw/
H A Dip_fw_table.c87 void *astate; /* algorithm state */ member
372 error = ta->add(tc->astate, tinfo, ptei, v, &num); in rollback_added_entries()
380 error = ta->del(tc->astate, tinfo, ptei, vv, &num); in rollback_added_entries()
657 error = ta->add(tc->astate, KIDX_TO_TI(ch, kidx), in add_table_entry()
766 error = ta->del(tc->astate, KIDX_TO_TI(ch, kidx), ptei, v, in del_table_entry()
836 if (ta->need_modify(tc->astate, ti, count, &pflags) == 0) { in check_table_space()
868 if (ta->need_modify(tc->astate, ti, count, &pflags) == 0) { in check_table_space()
879 error = ta->fill_mod(tc->astate, ti, ta_buf, &pflags); in check_table_space()
883 ta->modify(tc->astate, ti, ta_buf, pflags); in check_table_space()
1081 error = ta->find_tentry(tc->astate, kti, tent); in find_table_entry()
[all …]
H A Dip_fw_table_value.c275 void *astate; member
293 error = ta->dump_tentry(fa->astate, fa->ti, e, tent); in unref_table_value_cb()
310 struct table_algo *ta, void *astate, struct table_info *ti) in ipfw_unref_table_values() argument
319 fa.astate = astate; in ipfw_unref_table_values()
322 ta->foreach(astate, ti, unref_table_value_cb, &fa); in ipfw_unref_table_values()
H A Dip_fw_table.h172 struct table_algo *ta, void *astate, struct table_info *ti);
/freebsd/lib/libc/gen/
H A Dunvis-compat.c40 __unvis_44bsd(char *cp, int c, int *astate, int flag) in __unvis_44bsd() argument
45 return unvis(cp, c, astate, flag); in __unvis_44bsd()
/freebsd/contrib/flex/src/
H A Dnfa.c60 int astate = mkstate (SYM_EPSILON); in add_accept() local
62 accptnum[astate] = accepting_number; in add_accept()
63 (void) link_machines (mach, astate); in add_accept()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc9143 INTERCEPTOR(int, unvis, char *cp, int c, int *astate, int flag) {
9145 COMMON_INTERCEPTOR_ENTER(ctx, unvis, cp, c, astate, flag);
9146 if (astate)
9147 COMMON_INTERCEPTOR_READ_RANGE(ctx, astate, sizeof(*astate));
9148 int ret = REAL(unvis)(cp, c, astate, flag);