Lines Matching +full:manufacturer +full:- +full:id

8 //      http://www.apache.org/licenses/LICENSE-2.0
46 else if (it->first == processorFamily2Indicator) in family()
56 processor::family(it2->second); in family()
62 processor::family(it->second); in family()
67 void Cpu::manufacturer(const uint8_t positionNum, const uint8_t structLen, in manufacturer() function in phosphor::smbios::Cpu
72 asset::manufacturer(result); in manufacturer()
152 socket(cpuInfo->socketDesignation, cpuInfo->length, dataIn); // offset 4h in infoUpdate()
156 if ((cpuInfo->status & socketPopulatedMask) == 0) in infoUpdate()
164 if ((cpuInfo->status & statusMask) == 1) in infoUpdate()
174 family(cpuInfo->family, cpuInfo->family2); // offset 6h and 28h in infoUpdate()
175 manufacturer(cpuInfo->manufacturer, cpuInfo->length, in infoUpdate()
177 id(cpuInfo->id); // offset 8h in infoUpdate()
181 familyTable.find(cpuInfo->family); in infoUpdate()
184 std::string familyStr = it->second; in infoUpdate()
189 // Processor ID field in infoUpdate()
198 uint16_t cpuStep = cpuInfo->id & 0xf; in infoUpdate()
199 uint16_t cpuModel = (cpuInfo->id & 0xf0) >> 4; in infoUpdate()
200 uint16_t cpuFamily = (cpuInfo->id & 0xf00) >> 8; in infoUpdate()
201 uint16_t cpuXModel = (cpuInfo->id & 0xf0000) >> 16; in infoUpdate()
202 uint16_t cpuXFamily = (cpuInfo->id & 0xff00000) >> 20; in infoUpdate()
223 version(cpuInfo->version, cpuInfo->length, dataIn); // offset 10h in infoUpdate()
224 maxSpeedInMhz(cpuInfo->maxSpeed); // offset 14h in infoUpdate()
225 serialNumber(cpuInfo->serialNum, cpuInfo->length, in infoUpdate()
227 partNumber(cpuInfo->partNum, cpuInfo->length, in infoUpdate()
229 if (cpuInfo->coreCount < maxOldVersionCount) // offset 23h or 2Ah in infoUpdate()
231 coreCount(cpuInfo->coreCount); in infoUpdate()
235 coreCount(cpuInfo->coreCount2); in infoUpdate()
238 if (cpuInfo->threadCount < maxOldVersionCount) // offset 25h or 2Eh) in infoUpdate()
240 threadCount(cpuInfo->threadCount); in infoUpdate()
244 threadCount(cpuInfo->threadCount2); in infoUpdate()
247 characteristics(cpuInfo->characteristics); // offset 26h in infoUpdate()