#include <sent/stddefs.h>
#include <sent/htk_hmm.h>
rdhmmdef_var.cのインクルード依存関係図
関数 | |
static HTK_HMM_Var * | var_new () |
void | var_add (HTK_HMM_INFO *hmm, HTK_HMM_Var *new) |
static HTK_HMM_Var * | var_lookup (HTK_HMM_INFO *hmm, char *keyname) |
static HTK_HMM_Var * | var_read (FILE *fp) |
Read one new data and returns the pointer. | |
HTK_HMM_Var * | get_var_data (FILE *fp, HTK_HMM_INFO *hmm) |
Return a pointer to the data located at the current point. | |
void | def_var_macro (char *name, FILE *fp, HTK_HMM_INFO *hmm) |
変数 | |
char * | rdhmmdef_token |
Current token. |
rdhmmdef_var.c で定義されています。
|
Allocate a new data area and return it.
rdhmmdef_var.c の 37 行で定義されています。 参照元 var_read(). |
|
Add a new data to the global structure.
rdhmmdef_var.c の 58 行で定義されています。 参照元 def_var_macro(), get_var_data(), と rd_var(). |
|
Look up a data macro by the name.
rdhmmdef_var.c の 92 行で定義されています。 参照元 get_var_data(). |
|
Read one new data and returns the pointer. If a sub-component of this data is directly defined at here, they will be read from here and assigned to this data. If a sub-component is not defined here but a macro name referencing to the component previously defined in other place, the data will be searched by the macro name and the pointer to the found component will be assigned to this model.
rdhmmdef_var.c の 118 行で定義されています。 参照元 def_var_macro(), と get_var_data(). |
|
Return a pointer to the data located at the current point. If the current point is a macro reference, the pointer to the already defined data will be searched and returned. Otherwise, the definition of the data will be read from the current point and pointer to the newly allocated data will be returned.
rdhmmdef_var.c の 161 行で定義されています。 参照元 dens_read(). |
|
Read a new data and store it as a macro.
rdhmmdef_var.c の 196 行で定義されています。 参照元 rdhmmdef(). |