Searched refs:states (Results 26 - 50 of 81) sorted by relevance

1234

/freebsd-12-stable/contrib/nvi/regex/
H A Dengine.c79 states st; /* current states */
80 states fresh; /* states for a fresh start */
81 states tmp; /* temporary */
82 states empty; /* empty set of states */
96 static states step(struct re_guts *g, sopno start, sopno stop, states bef, int flag, RCHAR_T ch, states af
[all...]
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-pfsync.c363 const char *states[] = PFUDPS_NAMES; local
365 ND_PRINT((ndo, " %s:%s", states[src->state], states[dst->state]));
369 const char *states[] = PFOTHERS_NAMES; local
371 ND_PRINT((ndo, " %s:%s", states[src->state], states[dst->state]));
/freebsd-12-stable/contrib/libevent/test/
H A Dtest-ratelim.c106 struct client_state *states; variable in typeref:struct:client_state
344 states = calloc(cfg_n_connections, sizeof(struct client_state));
351 write_on_connectedcb, &states[i]);
426 double persec = states[i].received;
428 total_received += states[i].received;
469 free(states);
/freebsd-12-stable/sys/contrib/zstd/doc/educational_decoder/
H A Dzstd_decompress.c966 /// The combination of FSE states needed to decode sequences
1119 sequence_states_t states; local
1123 states.ll_table = ctx->ll_dtable;
1124 states.of_table = ctx->of_dtable;
1125 states.ml_table = ctx->ml_dtable;
1143 FSE_init_state(&states.ll_table, &states.ll_state, src, &bit_offset);
1144 FSE_init_state(&states.of_table, &states.of_state, src, &bit_offset);
1145 FSE_init_state(&states
1158 decode_sequence(sequence_states_t *const states, const u8 *const src, i64 *const offset) argument
[all...]
/freebsd-12-stable/sbin/pfctl/
H A Dpf_print_state.c300 const char *states[] = PFUDPS_NAMES; local
302 printf(" %s:%s\n", states[src->state], states[dst->state]);
311 const char *states[] = PFOTHERS_NAMES; local
313 printf(" %s:%s\n", states[src->state], states[dst->state]);
/freebsd-12-stable/usr.bin/bluetooth/btsockstat/
H A Dbtsockstat.c100 (((x) >= sizeof(states)/sizeof(states[0]))? "UNKNOWN" : states[(x)])
322 static char const * const states[] = { local
426 static char const * const states[] = { local
491 static char const * const states[] = { local
/freebsd-12-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c623 if (check->states & dcu_chain_state) {
637 if (check->states & dcu_complete_state) {
641 if (check->states & qcu_stitch_state) {
645 if (check->states & qcu_fetch_state) {
649 if (check->states & qcu_complete_state) {
653 return (found_states == check->states);
664 .states = dcu_chain_state
671 .states = qcu_stitch_state
/freebsd-12-stable/lib/libc/regex/
H A Dengine.c95 states st; /* current states */
96 states fresh; /* states for a fresh start */
97 states tmp; /* temporary */
98 states empty; /* empty set of states */
112 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states af
[all...]
/freebsd-12-stable/lib/libpfctl/
H A Dlibpfctl.h255 struct pfctl_statelist states; member in struct:pfctl_states
269 int pfctl_get_states(int dev, struct pfctl_states *states);
270 void pfctl_free_states(struct pfctl_states *states);
/freebsd-12-stable/contrib/byacc/
H A Dlalr.c369 Value_t *states; local
374 states = NEW2(maxrhs + 1, Value_t);
385 states[0] = state1;
401 states[length++] = stateno;
414 stateno = states[--length];
442 FREE(states);
/freebsd-12-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_qp.c905 enum mlx4_qp_state states[] = { local
912 for (i = 0; i < ARRAY_SIZE(states) - 1; i++) {
914 context->flags |= cpu_to_be32(states[i + 1] << 28);
915 if (states[i + 1] != MLX4_QP_STATE_RTR)
917 err = mlx4_qp_modify(dev, mtt, states[i], states[i + 1],
921 states[i + 1], err);
925 *qp_state = states[i + 1];
/freebsd-12-stable/share/dtrace/
H A Dtcpstate29 * The tcpstate D script shows TCP sockets transitioning between states.
/freebsd-12-stable/contrib/dialog/
H A Dbuildlist.c408 * to read the list item states back directly without putting them in the
419 const char *states,
521 /* we need at least two states */
522 if (states == 0 || strlen(states) < 2)
523 states = " *";
524 num_states = (int) strlen(states);
412 dlg_buildlist(const char *title, const char *cprompt, int height, int width, int list_height, int item_no, DIALOG_LISTITEM * items, const char *states, int order_mode, int *current_item) argument
/freebsd-12-stable/contrib/ntp/libparse/
H A Ddata_mbg.c222 } states[] = local
240 for (s = states; s->flag; s++)
/freebsd-12-stable/sys/netpfil/pf/
H A Dpf.h155 #define LCNT_STATES 0 /* states */
156 #define LCNT_SRCSTATES 1 /* max-src-states */
165 "max states per rule", \
166 "max-src-states", \
171 "overload flush states", \
229 uint32_t states; member in struct:pf_status
563 #define PFRULE_SRCTRACK 0x0020 /* track source states */
599 u_int32_t states; member in struct:pf_src_node
H A Dpf.c393 &pf_hashsize, 0, "Size of pf(4) states hashtable");
661 LIST_FOREACH(s, &ih->states, entry) {
681 printf("%s: %u states killed", __func__, killed);
707 n->states++;
775 (*sn)->states = 1;
782 (*sn)->states >= rule->max_src_states) {
843 V_pf_state_z = uma_zcreate("pf states", sizeof(struct pf_state),
847 uma_zone_set_warning(V_pf_state_z, "PF states limit reached");
941 KASSERT(LIST_EMPTY(&ih->states), ("%s: id hash not empty",
1065 TAILQ_FOREACH(si, &cur->states[id
1594 u_int32_t states; local
[all...]
/freebsd-12-stable/sys/xen/interface/
H A Dplatform.h420 XEN_GUEST_HANDLE(xen_processor_cx_t) states; /* supported c states */ member in struct:xen_processor_power
457 uint32_t state_count; /* total available performance states */
458 XEN_GUEST_HANDLE(xen_processor_px_t) states; member in struct:xen_processor_performance
/freebsd-12-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsaal_sscop.c72 static const char *const states[] = { variable
201 sscop_msigs[SSCOP_MERROR_indication], states[(S)->state])); \
210 sscop_msigs[SSCOP_MDATA_indication], states[(S)->state])); \
219 sscop_sigs[D], states[(S)->state])); \
227 sscop_sigs[D], states[(S)->state])); \
654 sscop_sigs[sig], states[sscop->state], m ? "" : "out"));
750 sscop_msigs[sig], states[sscop->state], m ? "" : "out"));
1014 if (s >= sizeof(states)/sizeof(states[0])) {
1018 return (states[
[all...]
/freebsd-12-stable/sys/netpfil/ipfw/nat64/
H A Dnat64lsn.h85 struct nat64lsn_states_chunk *states; member in union:nat64lsn_pg::__anon16413
209 uint32_t states_chunks; /* Number of states chunks per PG */
/freebsd-12-stable/lib/libiconv_modules/EUC/
H A Dcitrus_euc.c104 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
/freebsd-12-stable/lib/libiconv_modules/EUCTW/
H A Dcitrus_euctw.c96 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
/freebsd-12-stable/lib/libiconv_modules/GBK2K/
H A Dcitrus_gbk2k.c67 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
/freebsd-12-stable/lib/libiconv_modules/JOHAB/
H A Dcitrus_johab.c66 #define _CEI_TO_STATE(_cei_, _func_) (_cei_)->states.s_##_func_
/freebsd-12-stable/lib/libiconv_modules/UTF8/
H A Dcitrus_utf8.c123 #define _CEI_TO_STATE(_ei_, _func_) (_ei_)->states.s_##_func_
/freebsd-12-stable/usr.sbin/etcupdate/tests/
H A Dalways_test.sh67 # The various states of the comparison of a file between two trees.
68 states="equal first second difftype difflinks difffiles"
78 for i in $states; do
79 for j in $states; do
80 for k in $states; do

Completed in 325 milliseconds

1234