Home
last modified time | relevance | path

Searched refs:highest (Results 1 - 25 of 31) sorted by relevance

12

/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-binance/
H A Dmain.c35 uint64_t highest; member
55 r->sum = r->highest = 0; in range_reset()
100 (unsigned long long)bin->price_range.highest, in sul_hz_cb()
108 (unsigned long long)bin->e_lat_range.highest / 1000, in sul_hz_cb()
147 if (latency_us > bin->e_lat_range.highest) in binance_rx()
148 bin->e_lat_range.highest = latency_us; in binance_rx()
162 if (price > bin->price_range.highest) in binance_rx()
163 bin->price_range.highest = price; in binance_rx()
/third_party/skia/third_party/externals/tint/src/writer/
H A Dfloat_to_string_test.cc67 const auto highest = std::numeric_limits<float>::max(); in TEST() local
69 if (highest < expected_highest || highest > expected_highest) { in TEST()
124 const auto highest = std::numeric_limits<float>::max(); in TEST() local
126 if (highest < expected_highest || highest > expected_highest) { in TEST()
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-binance/
H A Dmain.c21 uint64_t highest; member
158 r->sum = r->highest = 0; in range_reset()
190 (unsigned long long)mco->price_range.highest, in sul_hz_cb()
197 (unsigned long long)mco->e_lat_range.highest / 1000, in sul_hz_cb()
267 if (latency_us > mco->e_lat_range.highest) in callback_minimal()
268 mco->e_lat_range.highest = latency_us; in callback_minimal()
281 if (price > mco->price_range.highest) in callback_minimal()
282 mco->price_range.highest = price; in callback_minimal()
/third_party/node/lib/internal/
H A Dhistogram.js350 * highest? : number,
359 highest = NumberMAX_SAFE_INTEGER,
364 if (typeof highest !== 'bigint') {
365 validateInteger(highest, 'options.highest',
367 } else if (highest < 2n * lowest) {
368 throw new ERR_INVALID_ARG_VALUE.RangeError('options.highest', highest);
371 return internalRecordableHistogram(new _Histogram(lowest, highest, figures));
/third_party/mesa3d/src/intel/vulkan/tests/
H A Dstate_pool_no_free.c83 int highest = -1; in run_test() local
85 /* First, we find which thread has the highest next element */ in run_test()
104 /* That next element had better be higher than the previous highest */ in run_test()
105 ASSERT(jobs[max_thread_idx].offsets[next[max_thread_idx]] > highest); in run_test()
107 highest = jobs[max_thread_idx].offsets[next[max_thread_idx]]; in run_test()
H A Dblock_pool_no_free.c82 int highest = -1; in validate_monotonic() local
103 /* That next element had better be higher than the previous highest */ in validate_monotonic()
104 ASSERT(blocks[min_thread_idx][next[min_thread_idx]] > highest); in validate_monotonic()
106 highest = blocks[min_thread_idx][next[min_thread_idx]]; in validate_monotonic()
/third_party/ffmpeg/libavcodec/
H A Dimc.c461 float highest = 0.0; in bit_allocation() local
476 highest = FFMAX(highest, chctx->flcoeffs1[i]); in bit_allocation()
487 highest = highest * 0.25; in bit_allocation()
503 chctx->flcoeffs4[i] += xTab[(indx * 2 + (chctx->flcoeffs1[i] < highest)) * 2 + flag]; in bit_allocation()
566 highest = 0.0; in bit_allocation()
569 if (highest <= -1.e20) in bit_allocation()
573 highest = -1.e20; in bit_allocation()
576 if (workT[i] > highest) { in bit_allocation()
694 float highest = 0; imc_adjust_bit_allocation() local
[all...]
/third_party/rust/crates/nix/src/sys/
H A Dselect.rs60 /// Finds the highest file descriptor in the set.
73 /// assert_eq!(set.highest(), Some(9));
77 pub fn highest(&self) -> Option<RawFd> { in highest() functions
99 pub fn fds(&self, highest: Option<RawFd>) -> Fds { in fds()
102 range: 0..highest.map(|h| h as usize + 1).unwrap_or(FD_SETSIZE), in fds()
162 /// * `nfds`: The highest file descriptor set in any of the passed `FdSet`s, plus 1. If `None`, this
163 /// is calculated automatically by calling [`FdSet::highest`] on all descriptor sets and adding 1
175 /// [`FdSet::highest`]: struct.FdSet.html#method.highest
200 .map(|set| set.highest() in select()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dmodule.cpp236 uint32_t highest = 0; in ComputeIdBound() local
239 [&highest](const Instruction* inst) { in ComputeIdBound()
242 highest = std::max(highest, operand.words[0]); in ComputeIdBound()
248 return highest + 1; in ComputeIdBound()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dmodule.cpp236 uint32_t highest = 0; in ComputeIdBound() local
239 [&highest](const Instruction* inst) { in ComputeIdBound()
242 highest = std::max(highest, operand.words[0]); in ComputeIdBound()
248 return highest + 1; in ComputeIdBound()
/third_party/spirv-tools/source/opt/
H A Dmodule.cpp244 uint32_t highest = 0; in ComputeIdBound() local
247 [&highest](const Instruction* inst) { in ComputeIdBound()
250 highest = std::max(highest, operand.words[0]); in ComputeIdBound()
256 return highest + 1; in ComputeIdBound()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_attributes.c51 /* First, we have to find the highest set one */ in panfrost_large_padded_vertex_count()
52 unsigned highest = 32 - __builtin_clz(vertex_count); in panfrost_large_padded_vertex_count() local
54 /* Using that, we mask out the highest 4-bits */ in panfrost_large_padded_vertex_count()
55 unsigned n = highest - 4; in panfrost_large_padded_vertex_count()
/third_party/python/Lib/test/
H A Dtest_type_comments.py225 highest = sys.version_info[1] # Highest minor version variable in TypeCommentTests
227 def parse(self, source, feature_version=highest):
231 def parse_all(self, source, minver=lowest, maxver=highest, expected_regex=""):
232 for version in range(self.lowest, self.highest + 1):
/third_party/elfutils/libdwfl/
H A Ddwfl_module_getdwarf.c471 So we consider the highest section end, which still matches up. */ in find_prelink_address_sync()
473 GElf_Addr highest; in find_prelink_address_sync() local
475 highest = 0; in find_prelink_address_sync()
487 sh->sh_addr, sh->sh_size, &highest); in find_prelink_address_sync()
489 if (highest > mod->main.vaddr) in find_prelink_address_sync()
491 mod->main.address_sync = highest; in find_prelink_address_sync()
493 highest = 0; in find_prelink_address_sync()
500 (*s32)[i].sh_size, &highest); in find_prelink_address_sync()
508 (*s64)[i].sh_size, &highest); in find_prelink_address_sync()
511 if (highest > fil in find_prelink_address_sync()
[all...]
H A Dsegment.c161 int highest = -1; in reify_segments() local
226 if (resized && idx - 1 >= highest) in reify_segments()
231 highest = idx - 1; in reify_segments()
/third_party/ltp/testcases/kernel/power_management/lib/
H A Dpm_sched_mc.py757 '''Return the cpu id's of two cpu's with highest number of intr'''
759 highest = 0
765 if int(intr_stop[i]) > int(highest):
766 if highest != 0:
767 second_highest = highest
769 highest = int(intr_stop[i])
/third_party/ffmpeg/libavfilter/
H A Dvf_deshake.c192 int highest = 0; in block_contrast() local
202 else if (src[pos] > highest) { in block_contrast()
203 highest = src[pos]; in block_contrast()
208 return highest - lowest; in block_contrast()
/third_party/node/src/
H A Dhistogram.cc26 options.highest, in Histogram()
258 int64_t highest = std::numeric_limits<int64_t>::max(); in New() local
269 highest = args[1].As<Integer>()->Value(); in New()
271 highest = args[1].As<BigInt>()->Int64Value(&lossless_ignored); in New()
276 lowest, highest, figures in New()
H A Dhistogram.h29 int64_t highest = std::numeric_limits<int64_t>::max(); member
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_const_literal_test.cc395 const auto highest = std::numeric_limits<float>::max(); in TEST_F() local
397 if (highest < expected_highest || highest > expected_highest) { in TEST_F()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_lower_cubemap_to_array.c390 int highest = -1; in rewrite_cube_var_type() local
401 if (var->data.driver_location > highest && var->data.driver_location < index) { in rewrite_cube_var_type()
402 highest = var->data.driver_location; in rewrite_cube_var_type()
/third_party/ltp/testcases/kernel/fs/fsx-linux/
H A Dfsx-linux.c516 int highest = num_test_files - 1; in alloc_tf_buf() local
519 len = snprintf(&dummy, 0, "%u ", highest); in alloc_tf_buf()
530 max_tf_len = snprintf(tf_buf, len, "%u ", highest); in alloc_tf_buf()
/third_party/skia/platform_tools/android/apps/skottie/
H A Dskottie_metric.sql264 -- process name is often missing on WearOs/Android P -> instead select process is highest CPU time in RenderThread.
/third_party/mesa3d/src/nouveau/codegen/lib/
H A Dgm107.asm281 // 1. NaN: set the highest bit in mantissa so it'll be surely recognized
H A Dgk110.asm250 // 1. NaN: set the highest bit in mantissa so it'll be surely recognized

Completed in 16 milliseconds

12