| 184 | }; |
| 185 | |
| 186 | UINT32 |
| 187 | GetCrc32 ( |
| 188 | UINT8 *Buffer, |
| 189 | UINTN Size |
| 190 | ) |
| 191 | { |
| 192 | UINT32 x = 0; |
| 193 | UINT32 *Fake = (UINT32*)Buffer; |
| 194 | if (!Fake) return 0; |
| 195 | Size >>= 2; |
| 196 | while (Size--) x+= *Fake++; |
| 197 | return x; |
| 198 | } |
| 199 | |
| 200 | ACPI_NAME_LIST * |
| 201 | ParseACPIName(const XString8& String) |
no outgoing calls
no test coverage detected