Home | History | Annotate | Download | only in utilities

Lines Matching defs:Base

25  * base code distributed originally by Intel ("Original Intel Code") to copy,
165 * 1) A standard strtoul() function that supports 64-bit integers, base
235 UINT32 Base = 10; /* Default is decimal */
256 * 1) Check for a hex constant. A "0x" prefix indicates base 16.
260 Base = 16;
269 Base = 8;
286 * Perform the base 8, 10, or 16 conversion. A 64-bit numeric overflow
289 switch (Base)
330 * Base is always 16, either with or without the 0x prefix. Decimal and
418 * Base is either 10 (default) or 16 (with 0x prefix). Octal (base 8) strings
459 UINT32 Base = 10; /* Default is decimal */
476 Base = 16;
489 switch (Base)