Lines Matching defs:aho
1648 reg_ac_data *aho;
1673 aho = (reg_ac_data *) PerlMemShared_calloc( 1, sizeof(reg_ac_data) );
1674 RExC_rxi->data->data[ data_slot ] = (void*)aho;
1675 aho->trie=trie_offset;
1676 aho->states=(reg_trie_state *)PerlMemShared_malloc( numstates * sizeof(reg_trie_state) );
1677 Copy( trie->states, aho->states, numstates, reg_trie_state );
1679 aho->fail = (U32 *) PerlMemShared_calloc( numstates, sizeof(U32) );
1680 aho->refcount = 1;
1681 fail = aho->fail;
1705 fail_base = aho->states[ fail_state ].trans.base;
1710 if ( !aho->states[ ch_state ].wordnum && aho->states[ fail_state ].wordnum )
1712 aho->states[ ch_state ].wordnum = aho->states[ fail_state ].wordnum;