Searched refs:ovtype (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/drivers/of/ |
H A D | unittest.c | 1865 enum overlay_type ovtype) in of_path_device_type_exists() 1867 switch (ovtype) { in of_path_device_type_exists() 1876 static const char *unittest_path(int nr, enum overlay_type ovtype) in unittest_path() argument 1881 switch (ovtype) { in unittest_path() 1897 static int of_unittest_device_exists(int unittest_nr, enum overlay_type ovtype) in of_unittest_device_exists() argument 1901 path = unittest_path(unittest_nr, ovtype); in of_unittest_device_exists() 1903 switch (ovtype) { in of_unittest_device_exists() 2012 enum overlay_type ovtype) in of_unittest_apply_overlay_check() 2017 if (of_unittest_device_exists(unittest_nr, ovtype) != before) { in of_unittest_apply_overlay_check() 2020 unittest_path(unittest_nr, ovtype), in of_unittest_apply_overlay_check() 1864 of_path_device_type_exists(const char *path, enum overlay_type ovtype) of_path_device_type_exists() argument 2010 of_unittest_apply_overlay_check(int overlay_nr, int unittest_nr, int before, int after, enum overlay_type ovtype) of_unittest_apply_overlay_check() argument 2045 of_unittest_apply_revert_overlay_check(int overlay_nr, int unittest_nr, int before, int after, enum overlay_type ovtype) of_unittest_apply_revert_overlay_check() argument [all...] |
/kernel/linux/linux-6.6/drivers/of/ |
H A D | unittest.c | 2027 enum overlay_type ovtype) in of_path_device_type_exists() 2029 switch (ovtype) { in of_path_device_type_exists() 2038 static const char *unittest_path(int nr, enum overlay_type ovtype) in unittest_path() argument 2043 switch (ovtype) { in unittest_path() 2059 static int of_unittest_device_exists(int unittest_nr, enum overlay_type ovtype) in of_unittest_device_exists() argument 2063 path = unittest_path(unittest_nr, ovtype); in of_unittest_device_exists() 2065 switch (ovtype) { in of_unittest_device_exists() 2157 enum overlay_type ovtype) in __of_unittest_apply_overlay_check() 2162 if (of_unittest_device_exists(unittest_nr, ovtype) != before) { in __of_unittest_apply_overlay_check() 2165 unittest_path(unittest_nr, ovtype), in __of_unittest_apply_overlay_check() 2026 of_path_device_type_exists(const char *path, enum overlay_type ovtype) of_path_device_type_exists() argument 2155 __of_unittest_apply_overlay_check(int overlay_nr, int unittest_nr, int before, int after, enum overlay_type ovtype) __of_unittest_apply_overlay_check() argument 2191 of_unittest_apply_overlay_check(int overlay_nr, int unittest_nr, int before, int after, enum overlay_type ovtype) of_unittest_apply_overlay_check() argument 2204 of_unittest_apply_revert_overlay_check(int overlay_nr, int unittest_nr, int before, int after, enum overlay_type ovtype) of_unittest_apply_revert_overlay_check() argument [all...] |
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | zstd_internal.h | 202 * @param ovtype controls the overlap detection 208 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument 215 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
|
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress_block.c | 787 * @param ovtype controls the overlap detection 792 static void ZSTD_safecopy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument 796 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy() 797 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy() 804 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy() 815 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy() 821 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()
|
Completed in 12 milliseconds