Lines Matching defs:base
111 inline bool isDigit(char c, int base)
115 if (base == 16)
133 inline int getDigitValue(char c, int base)
137 if (base == 16)
175 int base = 0;
190 ALOGD("%s Opened %s config %s\n", __func__, (bResetContent ? "base" : "optional"), name);
232 base = 0;
239 base = 10;
240 numValue = getDigitValue(c, base);
246 base = 16;
257 base = 16;
265 base = 10;
266 numValue = getDigitValue(c, base);
277 if (isDigit(c, base))
279 numValue *= base;
280 numValue += getDigitValue(c, base);
283 else if (base == 16 && (c == ':' || c == '-' || c == ' ' || c == '}'))
304 if (Is(IsStringValue) && base == 16 && i > 0)