Lines Matching refs:model
993 const WCHAR *model; member
1028 const WCHAR *model; member
1065 const WCHAR *model; member
1661 rec->model = baseboard_tagW; in fill_baseboard()
1981 rec->model = compsys_modelW; in fill_compsys()
2645 rec->model = diskdrive_modelW; in fill_diskdrive()
3657 unsigned int model, family_id = (reg0 & (0x0f << 8)) >> 8; in get_processor_model() local
3659 model = (reg0 & (0x0f << 4)) >> 4; in get_processor_model()
3660 if (family_id == 6 || family_id == 15) model |= (reg0 & (0x0f << 16)) >> 12; in get_processor_model()
3667 return model; in get_processor_model()
3706 unsigned int regs[4] = {0, 0, 0, 0}, family, model, stepping; in get_processor_caption() local
3715 model = get_processor_model( regs[0], &stepping, &family ); in get_processor_caption()
3716 swprintf( caption, fmtW, arch, family, model, stepping ); in get_processor_caption()
3722 unsigned int regs[4] = {0, 0, 0, 0}, model, stepping; in get_processor_version() local
3726 model = get_processor_model( regs[0], &stepping, NULL ); in get_processor_version()
3727 swprintf( version, fmtW, model, stepping ); in get_processor_version()