D | word_lattice.c | 56 srec_word_lattice *wl; in allocate_word_lattice() local 58 wl = (srec_word_lattice*) CALLOC_CLR(1, sizeof(srec_word_lattice), "search.word_lattice.base"); in allocate_word_lattice() 59 wl->max_frames = max_frames; in allocate_word_lattice() 60 …wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.wo… in allocate_word_lattice() 62 …wl->whether_sorted = (asr_int16_t*)CALLOC_CLR(max_frames, sizeof(asr_int16_t), "search.word_latti… in allocate_word_lattice() 64 return wl; in allocate_word_lattice() 67 void destroy_word_lattice(srec_word_lattice* wl) in destroy_word_lattice() argument 69 FREE(wl->words_for_frame); in destroy_word_lattice() 70 FREE(wl->whether_sorted); in destroy_word_lattice() 71 FREE(wl); in destroy_word_lattice() [all …]
|