/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-binance/ |
D | main.c | 35 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/ |
D | select.rs | 77 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/ |
D | main.c | 21 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/ |
D | float_to_string_test.cc | 67 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/ |
D | histogram.js | 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/ffmpeg/libavcodec/ |
D | imc.c | 461 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/ |
D | state_pool_no_free.c | 83 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()
|
D | block_pool_no_free.c | 82 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/ |
D | module.cpp | 236 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/ |
D | module.cpp | 241 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/ |
D | module.cpp | 236 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/ |
D | backport-libxtables-Register-only-the-highest-revision-extension.patch | 4 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/ |
D | SSL_CTX_set_min_proto_version.pod | 35 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/ |
D | pan_attributes.c | 52 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/ |
D | test_type_comments.py | 225 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/ |
D | dwfl_module_getdwarf.c | 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 > file->vaddr) in find_prelink_address_sync() 512 file->address_sync = highest; in find_prelink_address_sync()
|
D | segment.c | 161 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/ |
D | test-perf-hooks-histogram.js | 130 throws(() => createHistogram({ highest: i }), { property 145 createHistogram({ lowest: 1, highest: 11, figures: 1 }); property
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
D | parser_impl_const_literal_test.cc | 395 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/ |
D | pm_sched_mc.py | 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/ |
D | vf_deshake.c | 192 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/ |
D | histogram.cc | 26 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/ |
D | testing.md | 9 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/ |
D | storage_image_r32i.amber | 57 // XOR with two patterns in the second highest byte. Should set this
|
D | storage_image_r32ui.amber | 57 // XOR with two patterns in the second highest byte. Should set this
|