Lines Matching refs:one

3962     using one = char;
3969 template <typename C> static one test( decltype(&C::capacity) ) ;
8253 The state machine is realized with one label per state (prefixed with
8430 // we just parsed at least one number after a decimal point
9418 indicated with the argument @a is_array which one is expected
9530 case 0x18: // Unsigned integer (one-byte uint8_t follows)
9581 case 0x38: // Negative integer (one-byte uint8_t follows)
9631 case 0x58: // Binary data (one-byte uint8_t for n follows)
9666 case 0x78: // UTF-8 string (one-byte uint8_t for n follows)
9704 case 0x98: // array (one-byte uint8_t for n follows)
9758 case 0xB8: // map (one-byte uint8_t for n follows)
10023 case 0x78: // UTF-8 string (one-byte uint8_t for n follows)
10119 case 0x58: // Binary data (one-byte uint8_t for n follows)
17123 // If c were an exact power of ten, i.e. c = 10^k, one may determine k as
17401 const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e);
17403 auto p1 = static_cast<std::uint32_t>(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.)
17404 std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e
17466 const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2;
17482 const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e;
17546 const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e
17547 const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e
17587 const std::uint64_t ten_m = one.f;
18378 // written ("\uxxxx\uxxxx\0") for one code point
18437 // written ("\uxxxx\uxxxx\0") for one code point
18635 // account one more byte for the minus sign
20012 /// @brief create a JSON value from an existing one
20799 `from_json()`, this one is chosen.
21959 /// @brief returns an iterator to one past the last element
21968 /// @brief returns an iterator to one past the last element
21975 /// @brief returns an iterator to one past the last element
22019 /// @brief returns a const reverse iterator to one before the first
24086 // check if "value" matches the one at "path"
24163 // We now reached the end of at least one array