Home
last modified time | relevance | path

Searched refs:pqc_items (Results 1 – 4 of 4) sorted by relevance

/dports/devel/hyperscan/hyperscan-5.4.0/chimera/
H A Dch_runtime.c51 char PQ_COMP(PQ_T *pqc_items, int a, int b) { in PQ_COMP() argument
52 if ((pqc_items)[a].to != (pqc_items)[b].to) { in PQ_COMP()
53 return (pqc_items)[a].to < (pqc_items)[b].to; in PQ_COMP()
54 } else if ((pqc_items)[a].from != (pqc_items)[b].from) { in PQ_COMP()
55 return (pqc_items)[a].from < (pqc_items)[b].from; in PQ_COMP()
57 return (pqc_items)[a].id < (pqc_items)[b].id; in PQ_COMP()
62 char PQ_COMP_B(PQ_T *pqc_items, int a, PQ_T b_fixed) { in PQ_COMP_B() argument
63 if ((pqc_items)[a].to != (b_fixed).to) { in PQ_COMP_B()
64 return (pqc_items)[a].to < (b_fixed).to; in PQ_COMP_B()
66 return (pqc_items)[a].from < (b_fixed).from; in PQ_COMP_B()
[all …]
/dports/devel/hyperscan/hyperscan-5.4.0/unit/internal/
H A Dpqueue.cpp35 #define PQ_COMP(pqc_items, pqc_i, pqc_j) (pqc_items[pqc_i] > pqc_items[pqc_j]) argument
36 #define PQ_COMP_B(pqc_items, pqc_i, pqc_jj) (pqc_items[pqc_i] > pqc_jj) argument
/dports/devel/hyperscan/hyperscan-5.4.0/src/rose/
H A Dcatchup.c45 #define PQ_COMP(pqc_items, a, b) ((pqc_items)[a].loc < (pqc_items)[b].loc) argument
46 #define PQ_COMP_B(pqc_items, a, b_fixed) ((pqc_items)[a].loc < (b_fixed).loc) argument
/dports/devel/hyperscan/hyperscan-5.4.0/src/nfa/
H A Dmpv.c50 #define PQ_COMP(pqc_items, a, b) \ argument
51 ((pqc_items)[a].trigger_loc < (pqc_items)[b].trigger_loc)
52 #define PQ_COMP_B(pqc_items, a, b_fixed) \ argument
53 ((pqc_items)[a].trigger_loc < (b_fixed).trigger_loc)