Livox SDK API  V2.2.0
format-inl.h File Reference
#include "format.h"
#include <string.h>
#include <cctype>
#include <cerrno>
#include <climits>
#include <cmath>
#include <cstdarg>
#include <cstddef>
#include <cstring>
#include <locale>

Go to the source code of this file.

Classes

class  fmt::v5::internal::fp
 
struct  fmt::v5::internal::gen_digits_params
 
struct  fmt::v5::internal::prettify_handler
 
struct  fmt::v5::internal::fill
 
struct  fmt::v5::internal::char_counter
 

Namespaces

 fmt
 
 fmt::v5
 
 fmt::v5::internal
 

Macros

#define FMT_TRY   try
 
#define FMT_CATCH(x)   catch (x)
 
#define FMT_SNPRINTF   snprintf
 
#define FMT_SWPRINTF   swprintf
 
#define FMT_POWERS_OF_10(factor)
 
#define FMT_FALLTHROUGH
 

Functions

fmt::internal::null strerror_r (int, char *,...)
 
fmt::internal::null strerror_s (char *, std::size_t,...)
 
template<typename Char >
Char fmt::v5::internal::thousands_sep_impl (locale_ref loc)
 
fp fmt::v5::internal::operator- (fp x, fp y)
 
fp fmt::v5::internal::operator* (fp x, fp y)
 
fp fmt::v5::internal::get_cached_power (int min_exponent, int &pow10_exponent)
 
bool fmt::v5::internal::grisu2_round (char *buf, int &size, int max_digits, uint64_t delta, uint64_t remainder, uint64_t exp, uint64_t diff, int &exp10)
 
bool fmt::v5::internal::grisu2_gen_digits (char *buf, int &size, uint32_t hi, uint64_t lo, int &exp, uint64_t delta, const fp &one, const fp &diff, int max_digits)
 
template<typename Handler >
void fmt::v5::internal::write_exponent (int exp, Handler &&h)
 
template<typename Handler >
void fmt::v5::internal::grisu2_prettify (const gen_digits_params &params, int size, int exp, Handler &&handler)
 
gen_digits_params fmt::v5::internal::process_specs (const core_format_specs &specs, int exp, buffer &buf)
 
template<typename Double >
std::enable_if< sizeof(Double)==sizeof(uint64_t), bool >::type fmt::v5::internal::grisu2_format (Double value, buffer &buf, core_format_specs specs)
 
template<typename Double >
void fmt::v5::internal::sprintf_format (Double value, internal::buffer &buf, core_format_specs spec)
 
void fmt::v5::format_system_error (internal::buffer &out, int error_code, string_view message) throw ()
 
void fmt::v5::report_system_error (int error_code, fmt::string_view message) throw ()
 
void fmt::v5::vprint (std::FILE *f, string_view format_str, format_args args)
 
void fmt::v5::vprint (std::FILE *f, wstring_view format_str, wformat_args args)
 
void fmt::v5::vprint (string_view format_str, format_args args)
 
void fmt::v5::vprint (wstring_view format_str, wformat_args args)
 

Macro Definition Documentation

#define FMT_CATCH (   x)    catch (x)

Definition at line 41 of file format-inl.h.

#define FMT_FALLTHROUGH

Definition at line 538 of file format-inl.h.

#define FMT_POWERS_OF_10 (   factor)
Value:
factor * 10, \
factor * 100, \
factor * 1000, \
factor * 10000, \
factor * 100000, \
factor * 1000000, \
factor * 10000000, \
factor * 100000000, \
factor * 1000000000

Definition at line 269 of file format-inl.h.

#define FMT_SNPRINTF   snprintf

Definition at line 70 of file format-inl.h.

#define FMT_SWPRINTF   swprintf

Definition at line 85 of file format-inl.h.

#define FMT_TRY   try

Definition at line 40 of file format-inl.h.

Function Documentation

fmt::internal::null strerror_r ( int  ,
char *  ,
  ... 
)
inline

Definition at line 58 of file format-inl.h.

fmt::internal::null strerror_s ( char *  ,
std::size_t  ,
  ... 
)
inline

Definition at line 61 of file format-inl.h.