Searched refs:codep (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DZoneProc.c79 /** Get first 4 characters of codep as a 32-bit integer.
81 The first character of codep becomes the MSB of the resultant integer.
84 detzcode(const char * const codep) argument
96 result = (SIGN_EXTEND_CHAR(codep[0]) << 24) \
97 | (codep[1] & 0xff) << 16 \
98 | (codep[2] & 0xff) << 8
99 | (codep[3] & 0xff);

Completed in 44 milliseconds