Searched defs:max_frames (Results 1 - 6 of 6) sorted by relevance

/external/srec/srec/crec/
H A Dsrec_initialize.c79 int max_frames,
112 rec->max_frames = (frameID)max_frames;
113 rec->best_model_cost_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.best_model_cost_for_frame");
114 rec->word_lattice = allocate_word_lattice((frameID)max_frames);
147 int max_frames,
157 if (check_parameter_range(max_frames, 1, MAXframeID, "max_frames"))
187 rec->cost_offset_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.current_best_costs");
188 rec->accumulated_cost_offset = (bigcostdata*)CALLOC_CLR(max_frames, sizeo
72 allocate_recognition1(srec *rec, int viterbi_prune_thresh, int max_hmm_tokens, int max_fsmnode_tokens, int max_word_tokens, int max_altword_tokens, int num_wordends_per_frame, int max_frames, int max_model_states) argument
138 allocate_recognition(multi_srec *rec, int viterbi_prune_thresh, int max_hmm_tokens, int max_fsmnode_tokens, int max_word_tokens, int max_altword_tokens, int num_wordends_per_frame, int max_fsm_nodes, int max_fsm_arcs, int max_frames, int max_model_states, int max_searches) argument
[all...]
H A Dword_lattice.c54 srec_word_lattice *allocate_word_lattice(frameID max_frames) argument
59 wl->max_frames = max_frames;
60 wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.words");
62 wl->whether_sorted = (asr_int16_t*)CALLOC_CLR(max_frames, sizeof(asr_int16_t), "search.word_lattice.sflag");
77 for (ifr = 0; ifr < wl->max_frames; ifr++)
103 if (frame >= wl->max_frames)
543 ASSERT(frame < wl->max_frames);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.cc104 AddressInfo *frames, uptr max_frames) {
120 CHECK_GT(max_frames, 0);
121 for (frame_id = 0; frame_id < max_frames; frame_id++) {
217 uptr SymbolizeCode(uptr addr, AddressInfo *frames, uptr max_frames) { argument
218 if (max_frames == 0)
233 addr, module_name, module_offset, frames, max_frames);
305 uptr SymbolizeCode(uptr address, AddressInfo *frames, uptr max_frames) { argument
306 return symbolizer.SymbolizeCode(address, frames, max_frames);
103 SymbolizeCode(uptr addr, const char *module_name, uptr module_offset, AddressInfo *frames, uptr max_frames) argument
/external/libvpx/vp8/encoder/
H A Dtemporal_filter.c491 int max_frames = cpi->active_arnr_frames; local
508 if (frames_to_blur_backward >= max_frames)
509 frames_to_blur_backward = max_frames - 1;
520 if (frames_to_blur_forward >= max_frames)
521 frames_to_blur_forward = max_frames - 1;
539 // When max_frames is even we have 1 more frame backward than forward
540 if (frames_to_blur_forward > (max_frames - 1) / 2)
541 frames_to_blur_forward = ((max_frames - 1) / 2);
543 if (frames_to_blur_backward > (max_frames / 2))
544 frames_to_blur_backward = (max_frames /
[all...]
/external/srec/srec/include/
H A Dsrec.h130 frameID max_frames; member in struct:__anon13050
263 frameID max_frames; member in struct:srec_t
298 frameID max_frames; member in struct:__anon13051
299 costdata* cost_offset_for_frame; /* size max_frames, keeps track of
H A Dsimapi.h293 int max_frames; /* max number of frames in for searching */ member in struct:__anon13044

Completed in 185 milliseconds