Home
last modified time | relevance | path

Searched refs:lim (Results 1 – 9 of 9) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/apache2/apache2/
H A D0002-apache2-bump-up-the-core-size-limit-if-CoreDumpDirec.patch29 + struct rlimit lim;
31 + if (getrlimit(RLIMIT_CORE, &lim) == 0 && lim.rlim_cur == 0) {
32 + lim.rlim_cur = lim.rlim_max;
33 + if (setrlimit(RLIMIT_CORE, &lim) == 0) {
36 + lim.rlim_cur);
/openbmc/qemu/crypto/
H A Dxts.c
/openbmc/qemu/util/
H A Dbitmap.c43 long k, lim = bits/BITS_PER_LONG; in slow_bitmap_empty() local
45 for (k = 0; k < lim; ++k) { in slow_bitmap_empty()
61 long k, lim = bits/BITS_PER_LONG; in slow_bitmap_full() local
63 for (k = 0; k < lim; ++k) { in slow_bitmap_full()
81 long k, lim = bits/BITS_PER_LONG; in slow_bitmap_equal() local
83 for (k = 0; k < lim; ++k) { in slow_bitmap_equal()
101 long k, lim = bits/BITS_PER_LONG; in slow_bitmap_complement() local
103 for (k = 0; k < lim; ++k) { in slow_bitmap_complement()
388 long k, lim = bits/BITS_PER_LONG; in slow_bitmap_intersects() local
390 for (k = 0; k < lim; ++k) { in slow_bitmap_intersects()
[all …]
/openbmc/u-boot/drivers/dfu/
H A Ddfu_nand.c24 loff_t start, lim; in nand_block_op() local
36 lim = dfu->data.nand.start + dfu->data.nand.size - start; in nand_block_op()
50 lim, buf); in nand_block_op()
59 opts.lim = lim; in nand_block_op()
66 lim, buf, WITH_WR_VERIFY); in nand_block_op()
/openbmc/u-boot/include/
H A Dnand.h95 loff_t lim; member
101 size_t *actual, loff_t lim, u_char *buffer);
107 size_t *actual, loff_t lim, u_char *buffer, int flags);
/openbmc/qemu/linux-user/
H A Dmain.c723 struct rlimit lim; in main()
724 if (getrlimit(RLIMIT_STACK, &lim) == 0 in main()
725 && lim.rlim_cur != RLIM_INFINITY in main()
726 && lim.rlim_cur == (target_long)lim.rlim_cur in main()
727 && lim.rlim_cur > guest_stack_size) { in main()
728 guest_stack_size = lim.rlim_cur; in main()
740 struct rlimit lim; main() local
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dnand_util.c104 if (opts->lim && (erase.addr >= (opts->offset + opts->lim))) { in nand_erase_opts()
572 size_t *actual, loff_t lim, u_char *buffer, int flags) in nand_write_skip_bad() argument
613 if (used_for_write > lim) { in nand_write_skip_bad()
706 size_t *actual, loff_t lim, u_char *buffer) in nand_read_skip_bad() argument
733 if (used_for_read > lim) { in nand_read_skip_bad()
/openbmc/u-boot/lib/lzma/
H A DLzmaDec.c409 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal() local
416 while (++dest != lim); in LzmaDec_DecodeReal()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/krb5/krb5/
H A D0001-Eliminate-old-style-function-declarations.patch7320 indx_t base, idx, lim;