Lines Matching refs:Base
807 UINT32 Base) in strtoul() argument
851 if (Base == 0) in strtoul()
857 Base = 16; in strtoul()
862 Base = 8; in strtoul()
867 Base = 10; in strtoul()
870 else if (Base < 2 || Base > 36) in strtoul()
883 if (Base == 8 && *String == '0') in strtoul()
888 if (Base == 16 && in strtoul()
917 if (index >= Base) in strtoul()
927 (UINT32) Base)) in strtoul()
934 ReturnValue *= Base; in strtoul()