Home | History | Annotate | Download | only in src

Lines Matching refs:state

100     state = pointer to pointer of state data of type lpcState
117 This function initializes the state data for the LPC module.
135 if (state == (lpcState **) NULL){
139 *state = NULL;
143 // fprintf(stderr, "lpc_init: can not malloc state structure\n");
157 *state = s;
179 [State any special notes, constraints or cautions for users of this function]
183 Word16 lpc_init(lpcState **state)
187 if (state == (lpcState **) NULL)
192 *state = NULL;
197 /* fprintf(stderr, "lpc_init: can not malloc state structure\n"); */
211 *state = s;
223 state = pointer to pointer of state data of type lpcState
240 This function resets the state data for the LPC module.
255 if (state == (lpcState *) NULL){
260 Levinson_reset(state->levinsonSt);
282 [State any special notes, constraints or cautions for users of this function]
286 Word16 lpc_reset(lpcState *state)
289 if (state == (lpcState *) NULL)
295 Levinson_reset(state->levinsonSt);
307 state = pointer to pointer of state data of type lpcState
324 This function frees the state data for the LPC module.
340 if (state == NULL || *state == NULL)
343 Levinson_exit(&(*state)->levinsonSt);
346 free(*state);
347 *state = NULL;
370 [State any special notes, constraints or cautions for users of this function]
374 void lpc_exit(lpcState **state)
376 if (state == NULL || *state == NULL)
379 Levinson_exit(&(*state)->levinsonSt);
382 free(*state);
383 *state = NULL;
396 state = pointer to state data of type lpcState
483 [State any special notes, constraints or cautions for users of this function]
488 lpcState *st, /* i/o: State struct */