Home
last modified time | relevance | path

Searched refs:abs_value (Results 1 - 7 of 7) sorted by relevance

/third_party/json/include/nlohmann/detail/output/
H A Dserializer.hpp742 number_unsigned_t abs_value; in dump_integer() local
749 abs_value = remove_sign(static_cast<number_integer_t>(x)); in dump_integer()
752 n_chars = 1 + count_digits(abs_value); in dump_integer()
756 abs_value = static_cast<number_unsigned_t>(x); in dump_integer()
757 n_chars = count_digits(abs_value); in dump_integer()
769 while (abs_value >= 100) in dump_integer()
771 const auto digits_index = static_cast<unsigned>((abs_value % 100)); in dump_integer()
772 abs_value /= 100; in dump_integer()
777 if (abs_value >= 10) in dump_integer()
779 const auto digits_index = static_cast<unsigned>(abs_value); in dump_integer()
[all...]
/third_party/node/deps/v8/src/numbers/
H A Dconversions.cc1134 double abs_value = value; in DoubleToFixedCString() local
1136 abs_value = -value; in DoubleToFixedCString()
1140 // If abs_value has more than kMaxDigitsBeforePoint digits before the point in DoubleToFixedCString()
1142 if (abs_value >= kFirstNonFixed) { in DoubleToFixedCString()
/third_party/node/deps/v8/src/objects/
H A Dbigint.cc807 digit_t abs_value = std::abs(static_cast<int64_t>(y_value)); in CompareToNumber()
809 if (x_digit > abs_value) return AbsoluteGreater(x_sign); in CompareToNumber()
810 if (x_digit < abs_value) return AbsoluteLess(x_sign); in CompareToNumber()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp16766 number_unsigned_t abs_value;
16773 abs_value = remove_sign(static_cast<number_integer_t>(x));
16776 n_chars = 1 + count_digits(abs_value);
16780 abs_value = static_cast<number_unsigned_t>(x);
16781 n_chars = count_digits(abs_value);
16793 while (abs_value >= 100)
16795 const auto digits_index = static_cast<unsigned>((abs_value % 100));
16796 abs_value /= 100;
16801 if (abs_value >= 10)
16803 const auto digits_index = static_cast<unsigned>(abs_value);
[all...]
/third_party/json/single_include/nlohmann/
H A Djson.hpp18626 number_unsigned_t abs_value;
18633 abs_value = remove_sign(static_cast<number_integer_t>(x));
18636 n_chars = 1 + count_digits(abs_value);
18640 abs_value = static_cast<number_unsigned_t>(x);
18641 n_chars = count_digits(abs_value);
18653 while (abs_value >= 100)
18655 const auto digits_index = static_cast<unsigned>((abs_value % 100));
18656 abs_value /= 100;
18661 if (abs_value >= 10)
18663 const auto digits_index = static_cast<unsigned>(abs_value);
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c9452 int abs_value = abs(value); in tgsi_atomic_op_gds() local
9453 if (abs_value != value && gds_op == FETCH_OP_GDS_ADD_RET) in tgsi_atomic_op_gds()
9460 alu.src[0].value = abs_value; in tgsi_atomic_op_gds()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp12675 const T abs_value = de::abs(t); in trunc() local
12676 const T result_value = floor(abs_value); in trunc()

Completed in 71 milliseconds