/external/srec/config/en.us/ |
D | baseline.par | 2 # default models 3 cmdline.modelfiles = models/generic_f.swimdl models/generic_m.swimdl 4 cmdline.arbfile = models/generic.swiarb 6 cmdline.lda = models/generic11.lda 8 cmdline.modelfiles11 = models/generic11_f.swimdl models/generic11_m.swimdl 9 cmdline.modelfiles8 = models/generic8_f.swimdl models/generic8_m.swimdl 10 cmdline.lda11 = models/generic11.lda 11 cmdline.lda8 = models/generic8.lda
|
D | baseline8k.par | 2 # default models 3 cmdline.modelfiles = models/generic8_f.swimdl models/generic8_m.swimdl 4 cmdline.arbfile = models/generic.swiarb 6 cmdline.lda = models/generic8.lda 8 cmdline.modelfiles11 = models/generic11_f.swimdl models/generic11_m.swimdl 9 cmdline.modelfiles8 = models/generic8_f.swimdl models/generic8_m.swimdl 10 cmdline.lda11 = models/generic11.lda 11 cmdline.lda8 = models/generic8.lda
|
D | baseline11k.par | 2 # default models 3 cmdline.modelfiles = models/generic11_f.swimdl models/generic11_m.swimdl 4 cmdline.arbfile = models/generic.swiarb 6 cmdline.lda = models/generic11.lda 8 cmdline.modelfiles11 = models/generic11_f.swimdl models/generic11_m.swimdl 9 cmdline.modelfiles8 = models/generic8_f.swimdl models/generic8_m.swimdl 10 cmdline.lda11 = models/generic11.lda 11 cmdline.lda8 = models/generic8.lda
|
D | Android.mk | 13 models/generic.swiarb \ 14 models/generic11.lda \ 15 models/generic11_f.swimdl \ 16 models/generic11_m.swimdl \ 17 models/generic8.lda \ 18 models/generic8_f.swimdl \ 19 models/generic8_m.swimdl \
|
/external/srec/srec/Grammar/src/ |
D | SR_GrammarImpl.c | 198 SR_AcousticModels* models; in SR_Grammar_AddWordToSlot() 199 impl->recognizer->getModels( impl->recognizer, &models); in SR_Grammar_AddWordToSlot() 200 ca_arbdata = models->GetArbdata(models); in SR_Grammar_AddWordToSlot() 601 SR_AcousticModels* models = NULL; in SR_Grammar_SetupRecognizer() local 611 rc = recognizer->getModels( recognizer, &models); in SR_Grammar_SetupRecognizer() 612 if(rc != ESR_SUCCESS || models == NULL) { in SR_Grammar_SetupRecognizer() 617 ca_arbdata = (CA_Arbdata*)(models->getArbdata( models)); in SR_Grammar_SetupRecognizer()
|
/external/qemu/docs/ |
D | AUDIO.TXT | 6 QEMUSoundCard: models a given emulated sound card 7 SWVoiceOut: models an audio output from a QEMUSoundCard 8 SWVoiceIn: models an audio input from a QEMUSoundCard 10 HWVoiceOut: models an audio output (backend) on the host. 11 HWVoiceIn: models an audio input (backend) on the host.
|
/external/srec/srec/crec/ |
D | comp_stats.c | 53 init_cs_clock(&c.models); in init_comp_stats() 85 print_cs_clock(&cs->models, cs->total_time, fp, " Models", "Models"); in dump_comp_stats()
|
D | srec.c | 2177 start_cs_clock(&comp_stats->models); in srec_viterbi_part1() 2194 end_cs_clock(&comp_stats->models, num_models_computed); in srec_viterbi_part1()
|
/external/srec/srec/Recognizer/src/ |
D | RecognizerImpl.c | 674 impl->models = NULL; in SR_RecognizerCreate() 988 if (impl->models == NULL) in SR_RecognizerStartImpl() 1074 modelsImpl = (SR_AcousticModelsImpl*) impl->models; in SR_RecognizerStopImpl() 1287 SR_AcousticModels* models; in SR_RecognizerSetupImpl() local 1297 CHKLOG(rc, SR_AcousticModelsLoad ( filenames, &models )); in SR_RecognizerSetupImpl() 1299 if (models == NULL) in SR_RecognizerSetupImpl() 1304 modelsImpl = (SR_AcousticModelsImpl*) models; in SR_RecognizerSetupImpl() 1308 CHKLOG(rc, SR_AcousticModelsGetCount(models, &size)); in SR_RecognizerSetupImpl() 1325 recogImpl->models = models; in SR_RecognizerSetupImpl() 1326 CHKLOG(rc, modelsImpl->setupPattern(recogImpl->models, self)); in SR_RecognizerSetupImpl() [all …]
|
/external/srec/srec/Recognizer/include/ |
D | SR_RecognizerImpl.h | 195 SR_AcousticModels* models; member 463 SR_AcousticModels** models);
|
/external/qemu/ |
D | net-android.c | 2115 const char *models[2]; in qemu_check_nic_model() local 2117 models[0] = model; in qemu_check_nic_model() 2118 models[1] = NULL; in qemu_check_nic_model() 2120 qemu_check_nic_model_list(nd, models, model); in qemu_check_nic_model() 2123 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models, in qemu_check_nic_model_list() argument 2132 for (i = 0 ; models[i]; i++) in qemu_check_nic_model_list() 2133 if (strcmp(nd->model, models[i]) == 0) in qemu_check_nic_model_list() 2141 for (i = 0 ; models[i]; i++) in qemu_check_nic_model_list() 2142 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n'); in qemu_check_nic_model_list()
|
D | net.c | 2053 const char *models[2]; in qemu_check_nic_model() local 2055 models[0] = model; in qemu_check_nic_model() 2056 models[1] = NULL; in qemu_check_nic_model() 2058 qemu_check_nic_model_list(nd, models, model); in qemu_check_nic_model() 2061 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models, in qemu_check_nic_model_list() argument 2070 for (i = 0 ; models[i]; i++) in qemu_check_nic_model_list() 2071 if (strcmp(nd->model, models[i]) == 0) in qemu_check_nic_model_list() 2079 for (i = 0 ; models[i]; i++) in qemu_check_nic_model_list() 2080 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n'); in qemu_check_nic_model_list()
|
D | net.h | 76 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
|
D | qemu-options.hx | 776 Qemu can emulate several different models of network card. 1475 Use @code{-watchdog ?} to list available hardware models. Only one
|
/external/srec/srec/include/ |
D | comp_stats.h | 80 CS_CLOCK models; member
|
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Borland.old/ |
D | Borland-2.4 | 295 # feel like experimenting with other models, post your success stories to
|
/external/jpeg/ |
D | install.doc | 748 models (i.e., data pointers are 16 bits unless explicitly declared "far"; 795 None of the above comments about memory models apply if you are using a 904 sections above for more info about memory models.) In the 16-bit memory 905 models only, you'll need to put 909 jmemnobs.c works without modification in large or flat memory models, but to
|
D | libjpeg.doc | 2970 memory models (i.e., data pointers are 16 bits unless explicitly declared
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebNetscapePluginView.mm | 2056 // Supported drawing models: 2068 // Unsupported (or unknown) drawing models: 2084 // Supported event models: 2092 // Unsupported (or unknown) event models:
|
/external/zlib/ |
D | ChangeLog | 242 - Use far memory allocators in small 16-bit memory models for 630 small and medium models; this makes the library incompatible with previous 631 versions for these models. (No effect in large model or on other systems.)
|
/external/libpng/ |
D | README | 79 and medium memory models. You should also note that zlib is a
|
/external/webkit/WebKit/mac/ |
D | ChangeLog-2007-10-14 | 567 cache models simply by using the largest one that pertains at a 18977 …that use the new drawing models are only allowed to draw when the web page draws. I might consider 21580 Added to the Netscape Plugin API the concept of "plugin drawing models". The drawing model
|
/external/webkit/WebKit/qt/ |
D | ChangeLog | 2758 models.
|
/external/bison/doc/ |
D | bison.texinfo | 986 This models a problematic part of the C++ grammar---the ambiguity between
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 11016 Added to the Netscape Plugin API the concept of "plugin drawing models". The drawing model 11030 Added NPDrawingModel enumeration. Currently the only drawing models are QuickDraw and
|