Lines Matching full:uint64
197 // ValidateFn(uint64). However, for easier storage, we strip off this
271 else if (strcmp(type, "uint64") == 0) type_ = FV_UINT64;
282 case FV_UINT64: delete reinterpret_cast<uint64*>(value_buffer_); break;
337 const uint64 r = strtouint64(value, &end, base);
339 SET_VALUE_AS(uint64, r);
367 snprintf(intbuf, sizeof(intbuf), "%"PRIu64, VALUE_AS(uint64));
393 return reinterpret_cast<bool (*)(const char*, uint64)>(
394 validate_fn_proto)(flagname, VALUE_AS(uint64));
412 case FV_UINT64: return "uint64";
426 case FV_UINT64: return VALUE_AS(uint64) == OTHER_VALUE_AS(x, uint64);
438 case FV_UINT64: return new FlagValue(new uint64uint64");
451 case FV_UINT64: SET_VALUE_AS(uint64, OTHER_VALUE_AS(x, uint64)); break;
1779 uint64 Uint64FromEnv(const char *v, uint64 dflt) {
1780 return GetFromEnv(v, "uint64", dflt);
1815 bool RegisterFlagValidator(const uint64* flag,
1816 bool (*validate_fn)(const char*, uint64)) {