| 182 | |
| 183 | #ifdef HAVE_GETCPUID |
| 184 | void inline AddCPUID(CSHA512& hasher, uint32_t leaf, uint32_t subleaf, uint32_t& ax, uint32_t& bx, uint32_t& cx, uint32_t& dx) |
| 185 | { |
| 186 | GetCPUID(leaf, subleaf, ax, bx, cx, dx); |
| 187 | hasher << leaf << subleaf << ax << bx << cx << dx; |
| 188 | } |
| 189 | |
| 190 | void AddAllCPUID(CSHA512& hasher) |
| 191 | { |
no test coverage detected