Home
last modified time | relevance | path

Searched refs:highest (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-binance/
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/rust/crates/nix/src/sys/
Dselect.rs77 pub fn highest(&self) -> Option<RawFd> { in highest() method
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()
200 .map(|set| set.highest().unwrap_or(-1)) in select()
283 .map(|set| set.highest().unwrap_or(-1))
355 assert_eq!(set.highest(), None); in fdset_highest()
357 assert_eq!(set.highest(), Some(0)); in fdset_highest()
359 assert_eq!(set.highest(), Some(90)); in fdset_highest()
361 assert_eq!(set.highest(), Some(90)); in fdset_highest()
363 assert_eq!(set.highest(), None); in fdset_highest()
[all …]
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-binance/
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/skia/third_party/externals/tint/src/writer/
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/node/lib/internal/
Dhistogram.js359 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/ffmpeg/libavcodec/
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()
577 highest = workT[i]; in bit_allocation()
582 if (highest > -1.e20) { in bit_allocation()
[all …]
/third_party/mesa3d/src/intel/vulkan/tests/
Dstate_pool_no_free.c83 int highest = -1; in run_test() local
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()
Dblock_pool_no_free.c82 int highest = -1; in validate_monotonic() local
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/skia/third_party/externals/spirv-tools/source/opt/
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/
Dmodule.cpp241 uint32_t highest = 0; in ComputeIdBound() local
244 [&highest](const Instruction* inst) { in ComputeIdBound()
247 highest = std::max(highest, operand.words[0]); in ComputeIdBound()
253 return highest + 1; in ComputeIdBound()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
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/iptables/
Dbackport-libxtables-Register-only-the-highest-revision-extension.patch4 Subject: libxtables: Register only the highest revision extension
9 list of pending extensions has highest revision numbers first. Since
10 iptables is only interested in the highest revision the kernel supports,
/third_party/openssl/doc/man3/
DSSL_CTX_set_min_proto_version.pod35 versions down to the lowest version, or up to the highest version
39 automatically use the lowest or highest version supported by the library.
49 lowest or highest protocol, respectively.
/third_party/mesa3d/src/panfrost/lib/
Dpan_attributes.c52 unsigned highest = 32 - __builtin_clz(vertex_count); in panfrost_large_padded_vertex_count() local
55 unsigned n = highest - 4; in panfrost_large_padded_vertex_count()
/third_party/python/Lib/test/
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/
Ddwfl_module_getdwarf.c473 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 > file->vaddr) in find_prelink_address_sync()
512 file->address_sync = highest; in find_prelink_address_sync()
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/node/test/parallel/
Dtest-perf-hooks-histogram.js130 throws(() => createHistogram({ highest: i }), { property
145 createHistogram({ lowest: 1, highest: 11, figures: 1 }); property
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
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/ltp/testcases/kernel/power_management/lib/
Dpm_sched_mc.py759 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/
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/
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()
/third_party/skia/third_party/externals/dawn/docs/
Dtesting.md9 is_official_build = true # Enables highest optimization level, using LTO on some platforms
14 A Chromium checkout is required for the highest optimization flags. It is possible to build and run…
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/texture/multisample/atomic/
Dstorage_image_r32i.amber57 // XOR with two patterns in the second highest byte. Should set this
Dstorage_image_r32ui.amber57 // XOR with two patterns in the second highest byte. Should set this

12345678910>>...13