/third_party/skia/third_party/externals/tint/src/writer/ |
H A D | float_to_string_test.cc | 80 const auto lowest = std::numeric_limits<float>::lowest(); in TEST() local 82 if (lowest < expected_lowest || lowest > expected_lowest) { in TEST() 84 << "std::numeric_limits<float>::lowest() is not as expected for " in TEST() 87 EXPECT_EQ(FloatToString(std::numeric_limits<float>::lowest()), in TEST() 137 const auto lowest = std::numeric_limits<float>::lowest(); in TEST() local 139 if (lowest < expected_lowest || lowest > expected_lowes in TEST() [all...] |
/third_party/libwebsockets/lib/core-net/ |
H A D | sorted-usec-list.c | 125 lws_usec_t lowest = 0; in __lws_sul_service_ripe() local 135 if (!hit || sul->us <= lowest) { in __lws_sul_service_ripe() 137 lowest = sul->us; in __lws_sul_service_ripe() 144 if (lowest > usnow) in __lws_sul_service_ripe() 145 return lowest - usnow; in __lws_sul_service_ripe() 246 lws_usec_t lowest = 0; in lws_sul_earliest_wakeable_event() local 258 if (hit == -1 || sul->us < lowest) { in lws_sul_earliest_wakeable_event() 260 lowest = sul->us; in lws_sul_earliest_wakeable_event() 272 *pearliest = lowest; in lws_sul_earliest_wakeable_event()
|
H A D | adopt.c | 30 unsigned int lowest = ~0u; in lws_get_idlest_tsi() local 38 (unsigned int)context->pt[n].fds_count < lowest) { in lws_get_idlest_tsi() 39 lowest = context->pt[n].fds_count; in lws_get_idlest_tsi()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-binance/ |
H A D | main.c | 34 uint64_t lowest; member 56 r->lowest = 999999999999ull; in range_reset() 99 (unsigned long long)bin->price_range.lowest, in sul_hz_cb() 107 (unsigned long long)bin->e_lat_range.lowest / 1000, in sul_hz_cb() 145 if (latency_us < bin->e_lat_range.lowest) in binance_rx() 146 bin->e_lat_range.lowest = latency_us; in binance_rx() 160 if (price < bin->price_range.lowest) in binance_rx() 161 bin->price_range.lowest = price; in binance_rx()
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-binance/ |
H A D | main.c | 20 uint64_t lowest; member 159 r->lowest = 999999999999ull; in range_reset() 189 (unsigned long long)mco->price_range.lowest, in sul_hz_cb() 196 (unsigned long long)mco->e_lat_range.lowest / 1000, in sul_hz_cb() 265 if (latency_us < mco->e_lat_range.lowest) in callback_minimal() 266 mco->e_lat_range.lowest = latency_us; in callback_minimal() 279 if (price < mco->price_range.lowest) in callback_minimal() 280 mco->price_range.lowest = price; in callback_minimal()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | iostream_state_saver_test.cc | 180 std::numeric_limits<float>::lowest(), in TEST() 203 f >= static_cast<float>(std::numeric_limits<int64_t>::lowest())) { in TEST() 245 std::numeric_limits<double>::lowest(), in TEST() 264 d >= std::numeric_limits<float>::lowest()) { in TEST() 271 d >= static_cast<double>(std::numeric_limits<int64_t>::lowest())) { in TEST() 321 std::numeric_limits<real_type>::lowest(), in TEST() 342 dd >= std::numeric_limits<double>::lowest()) { in TEST() 349 dd >= std::numeric_limits<int64_t>::lowest()) { in TEST()
|
/third_party/node/lib/internal/ |
H A D | histogram.js | 349 * lowest? : number, 358 lowest = 1, 362 if (typeof lowest !== 'bigint') 363 validateInteger(lowest, 'options.lowest', 1, NumberMAX_SAFE_INTEGER); 366 2 * lowest, NumberMAX_SAFE_INTEGER); 367 } else if (highest < 2n * lowest) { 371 return internalRecordableHistogram(new _Histogram(lowest, highest, figures));
|
/third_party/gn/src/base/numerics/ |
H A D | safe_conversions_impl.h | 136 // numeric_limits<Src>::lowest() >= numeric_limits<Dst>::lowest() are true. 273 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); } 311 static_cast<Dst>(SrcLimits::lowest()) >= DstLimits::lowest() || 312 static_cast<Dst>(value) >= DstLimits::lowest(), 329 return RangeCheck(value >= DstLimits::lowest(), value <= DstLimits::max()); 345 DstLimits::lowest() == Dst(0) || value >= DstLimits::lowest(), [all...] |
/third_party/node/deps/v8/src/base/ |
H A D | safe_conversions_impl.h | 141 // numeric_limits<Src>::lowest() >= numeric_limits<Dst>::lowest() are true. 275 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); } 302 static_cast<Dst>(SrcLimits::lowest()) >= DstLimits::lowest() || 303 static_cast<Dst>(value) >= DstLimits::lowest(), 317 return RangeCheck(value >= DstLimits::lowest(), value <= DstLimits::max()); 330 DstLimits::lowest() == Dst(0) || value >= DstLimits::lowest(), [all...] |
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/ |
H A D | safe_conversions_impl.h | 150 // numeric_limits<Src>::lowest() >= numeric_limits<Dst>::lowest() are true. 286 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); } 318 return RangeCheck(static_cast<Dst>(SrcLimits::lowest()) >= DstLimits::lowest() || 319 static_cast<Dst>(value) >= DstLimits::lowest(), 338 return RangeCheck(value >= DstLimits::lowest(), value <= DstLimits::max()); 355 return RangeCheck(DstLimits::lowest() == Dst(0) || value >= DstLimits::lowest(), [all...] |
/third_party/glslang/SPIRV/ |
H A D | hex_float.h | 46 // Returns the lowest normal value. 47 static Float16 lowest() { return Float16(0xfbff); } in lowest() function in spvutils::Float16 70 // Returns the lowest normal value. 71 static float lowest() { return std::numeric_limits<float>::lowest(); } in lowest() function 82 // Returns the lowest normal value. 83 static double lowest() { return std::numeric_limits<double>::lowest(); } in lowest() function 94 // Returns the lowest normal value. 95 static Float16 lowest() { retur function 140 static FloatProxy<T> lowest() { lowest() function in spvutils::FloatProxy [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_decimate.c | 151 int drop = INT_MIN, i, lowest = 0, ret; in filter_frame() local 188 lowest = 0; in filter_frame() 192 if (dm->queue[i].maxbdiff < dm->queue[lowest].maxbdiff) in filter_frame() 193 lowest = i; in filter_frame() 195 if (dm->queue[lowest].maxbdiff < dm->dupthresh) in filter_frame() 196 duppos = lowest; in filter_frame() 197 drop = scpos >= 0 && duppos < 0 ? scpos : lowest; in filter_frame() 208 i == lowest ? " lowest" : "", in filter_frame()
|
H A D | vf_deshake.c | 193 int lowest = 255; in block_contrast() local 200 if (src[pos] < lowest) in block_contrast() 201 lowest = src[pos]; in block_contrast() 208 return highest - lowest; in block_contrast()
|
/third_party/json/tests/src/ |
H A D | unit-diagnostics.cpp | 220 json lowest = json::object(); variable 221 lowest["one"] = 1; 223 lower.update(lowest);
|
/third_party/skia/third_party/externals/spirv-tools/source/util/ |
H A D | hex_float.h | 55 // Returns the lowest normal value. 56 static Float16 lowest() { return Float16(0xfbff); } in lowest() function in spvtools::utils::Float16 79 // Returns the lowest normal value. 80 static float lowest() { return std::numeric_limits<float>::lowest(); } in lowest() function 99 // Returns the lowest normal value. 100 static double lowest() { return std::numeric_limits<double>::lowest(); } in lowest() function 121 // Returns the lowest normal value. 122 static Float16 lowest() { retur function 186 static FloatProxy<T> lowest() { lowest() function in spvtools::utils::FloatProxy [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/ |
H A D | hex_float.h | 55 // Returns the lowest normal value. 56 static Float16 lowest() { return Float16(0xfbff); } in lowest() function in spvtools::utils::Float16 79 // Returns the lowest normal value. 80 static float lowest() { return std::numeric_limits<float>::lowest(); } in lowest() function 99 // Returns the lowest normal value. 100 static double lowest() { return std::numeric_limits<double>::lowest(); } in lowest() function 121 // Returns the lowest normal value. 122 static Float16 lowest() { retur function 186 static FloatProxy<T> lowest() { lowest() function in spvtools::utils::FloatProxy [all...] |
/third_party/spirv-tools/source/util/ |
H A D | hex_float.h | 55 // Returns the lowest normal value. 56 static Float16 lowest() { return Float16(0xfbff); } in lowest() function in spvtools::utils::Float16 79 // Returns the lowest normal value. 80 static float lowest() { return std::numeric_limits<float>::lowest(); } in lowest() function 99 // Returns the lowest normal value. 100 static double lowest() { return std::numeric_limits<double>::lowest(); } in lowest() function 121 // Returns the lowest normal value. 122 static Float16 lowest() { retur function 186 static FloatProxy<T> lowest() { lowest() function in spvtools::utils::FloatProxy [all...] |
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_const_literal_test.cc | 192 // Near lowest non-denorm 416 const auto lowest = std::numeric_limits<float>::lowest(); in TEST_F() local 418 if (lowest < expected_lowest || lowest > expected_lowest) { in TEST_F() 420 << "std::numeric_limits<float>::lowest() is not as expected for " in TEST_F() 432 std::numeric_limits<float>::lowest()); in TEST_F()
|
/third_party/python/Lib/test/ |
H A D | test_type_comments.py | 224 lowest = 4 # Lowest minor version supported variable in TypeCommentTests 231 def parse_all(self, source, minver=lowest, maxver=highest, expected_regex=""): 232 for version in range(self.lowest, self.highest + 1):
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | uniform_real_distribution_test.cc | 114 param_type(std::numeric_limits<TypeParam>::lowest(), 0), in TYPED_TEST() 194 std::numeric_limits<TypeParam>::lowest(), in TYPED_TEST() 210 std::numeric_limits<TypeParam>::lowest(), in TYPED_TEST()
|
/third_party/node/deps/v8/src/numbers/ |
H A D | conversions-inl.h | 74 if (x < limits::lowest()) { 77 if (x >= kRoundingThreshold) return limits::lowest();
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_rgp_elf_object_pack.c | 199 uint32_t i, lowest = 0; in get_lowest_shader() local 214 lowest = i; in get_lowest_shader() 219 *shader_stages_mask = *shader_stages_mask & ~((uint32_t)1 << lowest); in get_lowest_shader() 220 *rgp_shader_data = &record->shader_data[lowest]; in get_lowest_shader()
|
/third_party/node/src/ |
H A D | histogram.cc | 25 CHECK_EQ(0, hdr_init(options.lowest, in Histogram() 257 int64_t lowest = 1; in New() local 263 lowest = args[0].As<Integer>()->Value(); in New() 265 lowest = args[0].As<BigInt>()->Int64Value(&lossless_ignored); in New() 276 lowest, highest, figures in New()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceFixups.cpp | 69 assert(Offset != std::numeric_limits<RelocOffsetT>::lowest()); in emit()
|
/third_party/ffmpeg/tests/fate/ |
H A D | matroska.mak | 94 # the first packet (with the overall lowest dts) is a video packet, 95 # whereas an audio packet to be muxed later has the overall lowest pts 97 # (-ss 1.09 ensures that a video frame has the lowest dts of all packets; 98 # yet there is an audio packet with the overall lowest pts. output_ts_offset
|