Home
last modified time | relevance | path

Searched refs:ceiling (Results 1 – 25 of 26) sorted by relevance

12

/OK3568_Linux_fs/kernel/arch/powerpc/mm/
H A Dhugetlbpage.c300 unsigned long floor, unsigned long ceiling) in free_hugepd_range() argument
316 if (ceiling) { in free_hugepd_range()
317 ceiling &= pdmask; in free_hugepd_range()
318 if (! ceiling) in free_hugepd_range()
321 if (end - 1 > ceiling - 1) in free_hugepd_range()
336 unsigned long floor, unsigned long ceiling) in hugetlb_free_pte_range() argument
344 if (ceiling) { in hugetlb_free_pte_range()
345 ceiling &= PMD_MASK; in hugetlb_free_pte_range()
346 if (!ceiling) in hugetlb_free_pte_range()
349 if (end - 1 > ceiling - 1) in hugetlb_free_pte_range()
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/mm/
H A Dhugetlbpage.c422 unsigned long floor, unsigned long ceiling) in hugetlb_free_pmd_range() argument
443 if (ceiling) { in hugetlb_free_pmd_range()
444 ceiling &= PUD_MASK; in hugetlb_free_pmd_range()
445 if (!ceiling) in hugetlb_free_pmd_range()
448 if (end - 1 > ceiling - 1) in hugetlb_free_pmd_range()
459 unsigned long floor, unsigned long ceiling) in hugetlb_free_pud_range() argument
475 ceiling); in hugetlb_free_pud_range()
481 if (ceiling) { in hugetlb_free_pud_range()
482 ceiling &= PGDIR_MASK; in hugetlb_free_pud_range()
483 if (!ceiling) in hugetlb_free_pud_range()
[all …]
/OK3568_Linux_fs/kernel/drivers/counter/
H A Dstm32-lptimer-cnt.c26 u32 ceiling; member
62 ret = regmap_write(priv->regmap, STM32_LPTIM_ARR, priv->ceiling); in stm32_lptim_set_enable_state()
265 return snprintf(buf, PAGE_SIZE, "%u\n", priv->ceiling); in stm32_lptim_cnt_ceiling_read()
274 unsigned int ceiling; in stm32_lptim_cnt_ceiling_write() local
280 ret = kstrtouint(buf, 0, &ceiling); in stm32_lptim_cnt_ceiling_write()
284 if (ceiling > STM32_LPTIM_MAX_ARR) in stm32_lptim_cnt_ceiling_write()
287 priv->ceiling = ceiling; in stm32_lptim_cnt_ceiling_write()
436 priv->ceiling = STM32_LPTIM_MAX_ARR; in stm32_lptim_cnt_probe()
H A Dstm32-timer-cnt.c77 u32 ceiling; in stm32_count_write() local
79 regmap_read(priv->regmap, TIM_ARR, &ceiling); in stm32_count_write()
80 if (val > ceiling) in stm32_count_write()
185 unsigned int ceiling; in stm32_count_ceiling_write() local
188 ret = kstrtouint(buf, 0, &ceiling); in stm32_count_ceiling_write()
192 if (ceiling > priv->max_arr) in stm32_count_ceiling_write()
197 regmap_write(priv->regmap, TIM_ARR, ceiling); in stm32_count_ceiling_write()
H A D104-quad-8.c1209 unsigned int ceiling; in quad8_count_ceiling_write() local
1212 ret = kstrtouint(buf, 0, &ceiling); in quad8_count_ceiling_write()
1217 if (ceiling > 0xFFFFFF) in quad8_count_ceiling_write()
1226 quad8_preset_register_set(priv, count->id, ceiling); in quad8_count_ceiling_write()
/OK3568_Linux_fs/kernel/arch/ia64/mm/
H A Dhugetlbpage.c121 unsigned long floor, unsigned long ceiling) in hugetlb_free_pgd_range() argument
138 if (REGION_NUMBER(ceiling) == RGN_HPAGE) in hugetlb_free_pgd_range()
139 ceiling = htlbpage_to_page(ceiling); in hugetlb_free_pgd_range()
141 free_pgd_range(tlb, addr, end, floor, ceiling); in hugetlb_free_pgd_range()
/OK3568_Linux_fs/kernel/arch/arm64/mm/
H A Dmmu.c834 unsigned long floor, unsigned long ceiling, in pgtable_range_aligned() argument
841 if (ceiling) { in pgtable_range_aligned()
842 ceiling &= mask; in pgtable_range_aligned()
843 if (!ceiling) in pgtable_range_aligned()
847 if (end - 1 > ceiling - 1) in pgtable_range_aligned()
986 unsigned long ceiling) in free_empty_pte_table() argument
1002 if (!pgtable_range_aligned(start, end, floor, ceiling, PMD_MASK)) in free_empty_pte_table()
1023 unsigned long ceiling) in free_empty_pmd_table() argument
1036 free_empty_pte_table(pmdp, addr, next, floor, ceiling); in free_empty_pmd_table()
1042 if (!pgtable_range_aligned(start, end, floor, ceiling, PUD_MASK)) in free_empty_pmd_table()
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-counter7 What: /sys/bus/counter/devices/counterX/countY/ceiling
11 Count value ceiling for Count Y. This is the upper limit for the
25 Count mode for channel Y. The ceiling and floor values for
35 the Count Y ceiling value, while the lower limit is set
37 count = ceiling when counting up, and at count = floor
50 value and the Count Y ceiling value. The counter is
51 reset to the Count Y floor value at count = ceiling when
53 ceiling value at count = floor when counting down; the
/OK3568_Linux_fs/kernel/include/asm-generic/
H A Dhugetlb.h46 unsigned long floor, unsigned long ceiling) in hugetlb_free_pgd_range() argument
48 free_pgd_range(tlb, addr, end, floor, ceiling); in hugetlb_free_pgd_range()
/OK3568_Linux_fs/kernel/mm/
H A Dmemory.c256 unsigned long floor, unsigned long ceiling) in free_pmd_range() argument
274 if (ceiling) { in free_pmd_range()
275 ceiling &= PUD_MASK; in free_pmd_range()
276 if (!ceiling) in free_pmd_range()
279 if (end - 1 > ceiling - 1) in free_pmd_range()
290 unsigned long floor, unsigned long ceiling) in free_pud_range() argument
302 free_pmd_range(tlb, pud, addr, next, floor, ceiling); in free_pud_range()
308 if (ceiling) { in free_pud_range()
309 ceiling &= P4D_MASK; in free_pud_range()
310 if (!ceiling) in free_pud_range()
[all …]
H A Dinternal.h60 unsigned long floor, unsigned long ceiling);
H A Dmemcontrol.c4650 unsigned long ceiling = min(READ_ONCE(memcg->memory.max), in mem_cgroup_wb_stats() local
4654 *pheadroom = min(*pheadroom, ceiling - min(ceiling, used)); in mem_cgroup_wb_stats()
/OK3568_Linux_fs/kernel/arch/ia64/include/asm/
H A Dhugetlb.h10 unsigned long ceiling);
/OK3568_Linux_fs/kernel/arch/x86/mm/
H A Dtlb.c1200 int ceiling; in tlbflush_write_file() local
1207 if (kstrtoint(buf, 0, &ceiling)) in tlbflush_write_file()
1210 if (ceiling < 0) in tlbflush_write_file()
1213 tlb_single_page_flush_ceiling = ceiling; in tlbflush_write_file()
/OK3568_Linux_fs/kernel/arch/sparc/include/asm/
H A Dhugetlb.h53 unsigned long ceiling);
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dhugetlb.h38 unsigned long ceiling);
/OK3568_Linux_fs/kernel/kernel/time/
H A Dtimeconst.bc20 /* Adjustment factor when a ceiling value is used. Use as:
/OK3568_Linux_fs/kernel/Documentation/virt/kvm/
H A Dhalt-polling.rst93 | | the ceiling value of the | |
/OK3568_Linux_fs/kernel/include/linux/
H A Dhugetlb.h312 unsigned long floor, unsigned long ceiling) in hugetlb_free_pgd_range() argument
H A Dmm.h1745 unsigned long end, unsigned long floor, unsigned long ceiling);
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dimage-live.bbclass182 # Use a ceiling function to determine FS overhead in sectors
/OK3568_Linux_fs/kernel/Documentation/x86/
H A Dboot.rst29 Lower the conventional memory ceiling. No overwrite
127 It is desirable to keep the "memory ceiling" -- the highest point in
/OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/
H A DREADME_MLAN4686 threshold based on minimum of ceiling rssi threshold and the weakest
4704 [ceil_thresh] : ceiling weak RSSI pkt threshold in dBm
4821 [ceil_thresh] : ceiling weak RSSI pkt threshold in dBm
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgfortran.info7092 * 'CEILING': CEILING, Integer ceiling function
9881 9.58 'CEILING' -- Integer ceiling function
9910 print *, ceiling(x) ! returns 64
9911 print *, ceiling(y) ! returns -63
21915 * ceiling: ANINT. (line 6)
21916 * ceiling <1>: CEILING. (line 6)
22812 * rounding, ceiling: ANINT. (line 6)
22813 * rounding, ceiling <1>: CEILING. (line 6)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dgfortran.info7092 * 'CEILING': CEILING, Integer ceiling function
9881 9.58 'CEILING' -- Integer ceiling function
9910 print *, ceiling(x) ! returns 64
9911 print *, ceiling(y) ! returns -63
21915 * ceiling: ANINT. (line 6)
21916 * ceiling <1>: CEILING. (line 6)
22812 * rounding, ceiling: ANINT. (line 6)
22813 * rounding, ceiling <1>: CEILING. (line 6)

12