/openbmc/linux/include/linux/ |
H A D | kmemleak.h | 18 extern void kmemleak_alloc(const void *ptr, size_t size, int min_count, 38 int min_count, slab_flags_t flags, in kmemleak_alloc_recursive() argument 42 kmemleak_alloc(ptr, size, min_count, gfp); in kmemleak_alloc_recursive() 61 static inline void kmemleak_alloc(const void *ptr, size_t size, int min_count, in kmemleak_alloc() argument 66 int min_count, slab_flags_t flags, in kmemleak_alloc_recursive() argument
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | spdx30.py | 55 def check_min_count(self, value, min_count): argument 56 return min_count == 1 421 def check_min_count(self, value, min_count): argument 423 return len(value) >= min_count 595 min_count=None, argument 611 cls._OBJ_PROPERTIES[iri] = (prop, min_count, max_count, pyname, compact) 761 for iri, prop, min_count, max_count, pyname, compact in self.__iter_props(): 764 if min_count: 770 if min_count is not None: 771 if not prop.check_min_count(value, min_count): [all …]
|
/openbmc/linux/mm/ |
H A D | kmemleak.c | 158 int min_count; member 327 object->count < object->min_count; in color_white() 332 return object->min_count != KMEMLEAK_BLACK && in color_gray() 333 object->count >= object->min_count; in color_gray() 386 pr_notice(" min_count = %d\n", object->min_count); in dump_object_info() 632 int min_count, gfp_t gfp, bool is_phys) in __create_object() argument 656 object->min_count = min_count; in __create_object() 727 int min_count, gfp_t gfp) in create_object() argument 729 __create_object(ptr, size, min_count, gfp, false); in create_object() 734 int min_count, gfp_t gfp) in create_object_phys() argument [all …]
|
H A D | hugetlb.c | 3474 unsigned long min_count, ret; in set_max_huge_pages() local 3587 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages; in set_max_huge_pages() 3588 min_count = max(count, min_count); in set_max_huge_pages() 3589 try_to_free_low(h, min_count, nodes_allowed); in set_max_huge_pages() 3594 while (min_count < persistent_huge_pages(h)) { in set_max_huge_pages()
|
/openbmc/linux/lib/zlib_deflate/ |
H A D | deftree.c | 584 int min_count = 4; /* min repeat count */ in scan_tree() local 586 if (nextlen == 0) max_count = 138, min_count = 3; in scan_tree() 593 } else if (count < min_count) { in scan_tree() 605 max_count = 138, min_count = 3; in scan_tree() 607 max_count = 6, min_count = 3; in scan_tree() 609 max_count = 7, min_count = 4; in scan_tree() 630 int min_count = 4; /* min repeat count */ in send_tree() local 633 if (nextlen == 0) max_count = 138, min_count = 3; in send_tree() 639 } else if (count < min_count) { in send_tree() 657 max_count = 138, min_count = 3; in send_tree() [all …]
|
/openbmc/u-boot/lib/zlib/ |
H A D | trees.c | 722 int min_count = 4; /* min repeat count */ local 724 if (nextlen == 0) max_count = 138, min_count = 3; 731 } else if (count < min_count) { 743 max_count = 138, min_count = 3; 745 max_count = 6, min_count = 3; 747 max_count = 7, min_count = 4; 767 int min_count = 4; /* min repeat count */ local 770 if (nextlen == 0) max_count = 138, min_count = 3; 776 } else if (count < min_count) { 794 max_count = 138, min_count = 3; [all …]
|
/openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/runtime/cases/ |
H A D | fvp_devices.py | 33 def check_devices(self, cls, min_count, search_drivers): argument 40 min_count,
|
/openbmc/linux/drivers/iio/pressure/ |
H A D | zpa2326.c | 445 unsigned int min_count) in zpa2326_clear_fifo() argument 452 if (!min_count) { in zpa2326_clear_fifo() 477 if (min_count) { in zpa2326_clear_fifo() 482 min_count--; in zpa2326_clear_fifo()
|
/openbmc/linux/include/acpi/ |
H A D | actbl3.h | 601 u32 min_count; /* Minimum counter value */ member 671 u16 min_count; /* Minimum counter value supported */ member
|
/openbmc/linux/arch/ia64/kernel/ |
H A D | iosapic.c | 485 int i, irq = -ENOSPC, min_count = -1; in iosapic_find_sharable_irq() local 501 if (min_count == -1 || info->count < min_count) { in iosapic_find_sharable_irq() 503 min_count = info->count; in iosapic_find_sharable_irq()
|
/openbmc/linux/drivers/net/wireless/ath/ |
H A D | dfs_pri_detector.c | 225 u64 ts, u32 min_count) in pseq_handler_create_sequences() argument 279 if (ps.count <= min_count) in pseq_handler_create_sequences()
|
/openbmc/linux/drivers/watchdog/ |
H A D | wdat_wdt.c | 340 if (tbl->min_count > tbl->max_count) in wdat_wdt_probe() 344 wdat->wdd.min_timeout = DIV_ROUND_UP(wdat->period * tbl->min_count, 1000); in wdat_wdt_probe()
|
/openbmc/qemu/block/ |
H A D | qcow.c | 367 uint32_t min_count; in get_cluster_offset() local 410 min_count = 0xffffffff; in get_cluster_offset() 412 if (s->l2_cache_counts[i] < min_count) { in get_cluster_offset() 413 min_count = s->l2_cache_counts[i]; in get_cluster_offset()
|
H A D | vmdk.c | 1590 uint32_t min_count; in get_cluster_offset() local 1657 min_count = 0xffffffff; in get_cluster_offset() 1659 if (extent->l2_cache_counts[i] < min_count) { in get_cluster_offset() 1660 min_count = extent->l2_cache_counts[i]; in get_cluster_offset()
|
/openbmc/qemu/disas/ |
H A D | sparc.c | 2640 int min_count = num_opcodes, max_count = 0; in build_hash_table() 2645 if (hash_count[i] < min_count) in build_hash_table() 2646 min_count = hash_count[i]; in build_hash_table() 2653 min_count, max_count, (double) total / HASH_SIZE); in build_hash_table()
|