Home
last modified time | relevance | path

Searched refs:required_space (Results 1 – 25 of 134) sorted by relevance

123456

/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/crypto/
H A Dcrypto_openssl.cc81 auto required_space = input->size() + 2 * EVP_MAX_BLOCK_LENGTH; in encrypt_aes256gcm() local
82 if (output->free_space() < required_space) in encrypt_aes256gcm()
173 auto required_space = input->size(); in decrypt_aes256gcm() local
175 if (output->free_space() < required_space) in decrypt_aes256gcm()
177 } else if (output->size() < required_space) { in decrypt_aes256gcm()
248 uint64_t required_space = MD5_DIGEST_LENGTH; in md5() local
250 if (output->free_space() < required_space) in md5()
252 } else if (output->size() < required_space) { in md5()
265 uint64_t required_space = SHA256_DIGEST_LENGTH; in sha256() local
267 if (output->free_space() < required_space) in sha256()
[all …]
H A Dcrypto_win32.cc83 auto required_space = input->size() + 2 * Crypto::AES256GCM_BLOCK_BYTES; in encrypt_aes256gcm() local
84 if (output->free_space() < required_space) in encrypt_aes256gcm()
85 RETURN_NOT_OK(output->realloc(output->alloced_size() + required_space)); in encrypt_aes256gcm()
172 required_space, in encrypt_aes256gcm()
198 auto required_space = input->size(); in decrypt_aes256gcm() local
200 if (output->free_space() < required_space) in decrypt_aes256gcm()
201 RETURN_NOT_OK(output->realloc(output->alloced_size() + required_space)); in decrypt_aes256gcm()
202 } else if (output->size() < required_space) { in decrypt_aes256gcm()
277 required_space, in decrypt_aes256gcm()
/dports/lang/ocaml/ocaml-4.05.0/byterun/
H A Dstacks.c50 void caml_realloc_stack(asize_t required_space) in caml_realloc_stack() argument
61 } while (size < caml_stack_high - caml_extern_sp + required_space); in caml_realloc_stack()
88 CAMLprim value caml_ensure_stack_capacity(value required_space) in caml_ensure_stack_capacity() argument
90 asize_t req = Long_val(required_space); in caml_ensure_stack_capacity()
/dports/lang/ocaml-nox11/ocaml-4.05.0/byterun/
H A Dstacks.c50 void caml_realloc_stack(asize_t required_space) in caml_realloc_stack() argument
61 } while (size < caml_stack_high - caml_extern_sp + required_space); in caml_realloc_stack()
88 CAMLprim value caml_ensure_stack_capacity(value required_space) in caml_ensure_stack_capacity() argument
90 asize_t req = Long_val(required_space); in caml_ensure_stack_capacity()
/dports/chinese/librime/librime-1.7.3/src/rime/dict/
H A Dmapped_file.h142 size_t required_space = sizeof(T) * count; in Allocate() local
144 if (used_space + required_space > file_size) { in Allocate()
146 size_t new_size = (std::max)(used_space + required_space, file_size * 2); in Allocate()
151 std::memset(ptr, 0, required_space); in Allocate()
152 size_ = used_space + required_space; in Allocate()
/dports/news/sabnzbdplus/SABnzbd-3.3.0/sabnzbd/
H A Dassembler.py79 required_space = (cfg.download_free.get_float() + nzf.bytes) / GIGI
80 if freespace["download_dir"][1] < required_space:
86 required_space = 0
88 required_space = (complete_free + nzo.bytes_downloaded) / GIGI
92 required_space = (complete_free + nzo.bytes) / GIGI
94 if required_space and freespace["complete_dir"][1] < required_space:
102 sabnzbd.Scheduler.plan_diskspace_resume(full_dir, required_space)
H A Dscheduler.py369 def __check_diskspace(self, full_dir: str, required_space: float):
376 if disk_free > required_space:
377 … logging.info("Resuming, %s has %d GB free, needed %d GB", full_dir, disk_free, required_space)
380 … logging.info("%s has %d GB free, need %d GB to resume", full_dir, disk_free, required_space)
386 def plan_diskspace_resume(self, full_dir: str, required_space: float):
389 logging.info("Will resume when %s has more than %d GB free space", full_dir, required_space)
391 …f.__check_diskspace, "check_diskspace", 5 * 60, 9 * 60, "threaded", args=[full_dir, required_space]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/asm/
H A Dassembler.cpp64 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
68 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
84 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
90 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/asm/
H A Dassembler.cpp64 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
68 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
84 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
90 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/asm/
H A Dassembler.cpp64 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
68 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
84 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
90 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/asm/
H A Dassembler.cpp64 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
68 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
84 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
90 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/in_storage_backlog/
H A Dsb.c94 size_t required_space);
97 size_t required_space);
378 size_t required_space) in sb_get_releasable_output_queue_space() argument
406 if (releasable_space >= required_space) { in sb_get_releasable_output_queue_space()
415 size_t required_space) in sb_release_output_queue_space() argument
449 if (released_space >= required_space) { in sb_release_output_queue_space()
454 if (released_space < required_space) { in sb_release_output_queue_space()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/toolbar/
H A Dbrowser_actions_container_browsertest.cc414 const int required_space = GetMinimumSize(); in IN_PROC_BROWSER_TEST_F() local
415 test_delegate()->set_max_browser_actions_width(required_space); in IN_PROC_BROWSER_TEST_F()
437 const int required_space = GetMinimumSize(); in IN_PROC_BROWSER_TEST_F() local
438 test_delegate()->set_max_browser_actions_width(required_space); in IN_PROC_BROWSER_TEST_F()
457 const int required_space = GetMinimumSize(); in IN_PROC_BROWSER_TEST_F() local
458 test_delegate()->set_max_browser_actions_width(required_space); in IN_PROC_BROWSER_TEST_F()
473 const int required_space = GetMinimumSize(); in IN_PROC_BROWSER_TEST_F() local
474 test_delegate()->set_max_browser_actions_width(required_space - 1); in IN_PROC_BROWSER_TEST_F()
479 test_delegate()->set_max_browser_actions_width(required_space); in IN_PROC_BROWSER_TEST_F()
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/imagination/vulkan/
H A Dpvr_csb.c213 const uint32_t required_space = num_dwords * 4; in pvr_csb_alloc_dwords() local
218 if (csb->next + required_space > csb->end) { in pvr_csb_alloc_dwords()
226 csb->next += required_space; in pvr_csb_alloc_dwords()
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/welcome/checker/
H A Dpartman_devices.c108 check_big_enough(long long required_space) in check_big_enough() argument
118 if (dev_size >= required_space) in check_big_enough()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/asm/
H A Dassembler.cpp62 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
66 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
82 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
88 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/asm/
H A Dassembler.cpp62 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
66 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
82 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
88 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/asm/
H A Dassembler.cpp63 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
67 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
83 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
89 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/asm/
H A Dassembler.cpp63 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
67 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
83 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
89 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/plasma/
H A Deviction_policy.cc125 int64_t required_space = in RequireSpace() local
130 std::max(required_space, PlasmaAllocator::GetFootprintLimit() / 5); in RequireSpace()
138 return num_bytes_evicted >= required_space && num_bytes_evicted > 0; in RequireSpace()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/plasma/
H A Deviction_policy.cc125 int64_t required_space = in RequireSpace() local
130 std::max(required_space, PlasmaAllocator::GetFootprintLimit() / 5); in RequireSpace()
138 return num_bytes_evicted >= required_space && num_bytes_evicted > 0; in RequireSpace()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/plasma/
H A Deviction_policy.cc125 int64_t required_space = in RequireSpace() local
130 std::max(required_space, PlasmaAllocator::GetFootprintLimit() / 5); in RequireSpace()
138 return num_bytes_evicted >= required_space && num_bytes_evicted > 0; in RequireSpace()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/asm/
H A Dassembler.cpp65 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
69 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
85 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
91 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/asm/
H A Dassembler.cpp63 address AbstractAssembler::start_a_stub(int required_space) { in start_a_stub() argument
67 if (cs->maybe_expand_to_ensure_remaining(required_space) in start_a_stub()
83 address AbstractAssembler::start_a_const(int required_space, int required_align) { in start_a_const() argument
89 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { in start_a_const()
/dports/graphics/opendx/dx-4.4.4/src/uipp/dxuilib/
H A DLabelDecorator.C601 int required_space = bytes + lines + 1; in getLabelValue() local
603 if (required_space >= label_max_size) { in getLabelValue()
604 label_max_size = required_space + 512; in getLabelValue()
640 LabelDecorator::UnFilterString(label_buf, &required_space); in getLabelValue()
642 if (required_space >= label_max_size) { in getLabelValue()
643 label_max_size = required_space + 512; in getLabelValue()
1024 int required_space = XmStringLength (this->labelString) + in getLabel() local
1027 if (required_space >= label_max_size) { in getLabel()
1028 label_max_size = required_space + 512; in getLabel()

123456