| /linux-6.15/arch/mips/cavium-octeon/executive/ |
| H A D | octeon-model.c | 100 suffix = "CP"; in octeon_model_get_string_buffer() 102 suffix = "SCP"; in octeon_model_get_string_buffer() 104 suffix = "EXP"; in octeon_model_get_string_buffer() 106 suffix = "NSP"; in octeon_model_get_string_buffer() 329 suffix = "AP"; in octeon_model_get_string_buffer() 331 suffix = "CP"; in octeon_model_get_string_buffer() 344 suffix = "CP"; in octeon_model_get_string_buffer() 357 suffix = "AP"; in octeon_model_get_string_buffer() 359 suffix = "CP"; in octeon_model_get_string_buffer() 370 suffix = "CP"; in octeon_model_get_string_buffer() [all …]
|
| /linux-6.15/drivers/md/dm-vdo/ |
| H A D | message-stats.c | 21 value, suffix == NULL ? "" : suffix); in write_u64() 32 value, suffix == NULL ? "" : suffix); in write_u32() 43 value, suffix == NULL ? "" : suffix); in write_block_count_t() 54 value, suffix == NULL ? "" : suffix); in write_string() 65 value, suffix == NULL ? "" : suffix); in write_bool() 76 value, suffix == NULL ? "" : suffix); in write_u8() 83 char *suffix, char **buf, in write_block_allocator_statistics() argument 93 write_string(NULL, "}", suffix, buf, maxlen); in write_block_allocator_statistics() 106 write_string(NULL, "}", suffix, buf, maxlen); in write_commit_statistics() 111 char *suffix, char **buf, in write_recovery_journal_statistics() argument [all …]
|
| /linux-6.15/drivers/hid/ |
| H A D | hid-retrode.c | 23 const char *suffix; in retrode_input_configured() local 29 suffix = "SNES Mouse"; in retrode_input_configured() 33 suffix = "SNES / N64"; in retrode_input_configured() 38 suffix = "Mega Drive"; in retrode_input_configured() 43 suffix = "Unknown"; in retrode_input_configured() 49 suffix, number); in retrode_input_configured() 52 "%s %s", CONTROLLER_NAME_BASE, suffix); in retrode_input_configured()
|
| H A D | hid-uclogic-core.c | 88 const char *suffix = NULL; in uclogic_input_configured() local 111 suffix = frame->suffix; in uclogic_input_configured() 121 if (!suffix) { in uclogic_input_configured() 126 suffix = "Keyboard"; in uclogic_input_configured() 129 suffix = "Mouse"; in uclogic_input_configured() 132 suffix = "Pad"; in uclogic_input_configured() 136 suffix = "Pen"; in uclogic_input_configured() 139 suffix = "Consumer Control"; in uclogic_input_configured() 142 suffix = "System Control"; in uclogic_input_configured() 147 "%s %s", hdev->name, suffix); in uclogic_input_configured()
|
| /linux-6.15/tools/testing/selftests/bpf/prog_tests/ |
| H A D | rbtree.c | 162 #define BTF_FAIL_TEST(suffix) \ argument 163 void test_rbtree_btf_fail__##suffix(void) \ 165 struct rbtree_btf_fail__##suffix *skel; \ 167 skel = rbtree_btf_fail__##suffix##__open_and_load(); \ 169 "rbtree_btf_fail__" #suffix "__open_and_load unexpected success")) \ 170 rbtree_btf_fail__##suffix##__destroy(skel); \ 173 #define RUN_BTF_FAIL_TEST(suffix) \ argument 174 if (test__start_subtest("rbtree_btf_fail__" #suffix)) \ 175 test_rbtree_btf_fail__##suffix();
|
| /linux-6.15/kernel/ |
| H A D | crash_reserve.c | 191 const char *suffix) in parse_crashkernel_suffix() argument 202 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix() 206 cur += strlen(suffix); in parse_crashkernel_suffix() 217 const char *suffix) in get_last_crashkernel() argument 230 if (!suffix) { in get_last_crashkernel() 242 q = end_p - strlen(suffix); in get_last_crashkernel() 243 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel() 257 const char *suffix) in __parse_crashkernel() argument 267 ck_cmdline = get_last_crashkernel(cmdline, name, suffix); in __parse_crashkernel() 273 if (suffix) in __parse_crashkernel() [all …]
|
| /linux-6.15/arch/powerpc/include/asm/ |
| H A D | atomic.h | 49 #define ATOMIC_OP(op, asm_op, suffix, sign, ...) \ argument 56 #asm_op "%I2" suffix " %0,%0,%2\n" \ 64 #define ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ...) \ argument 71 #asm_op "%I2" suffix " %0,%0,%2\n" \ 81 #define ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ...) \ argument 88 #asm_op "%I3" suffix " %1,%0,%3\n" \ 98 #define ATOMIC_OPS(op, asm_op, suffix, sign, ...) \ argument 99 ATOMIC_OP(op, asm_op, suffix, sign, ##__VA_ARGS__) \ 113 #define ATOMIC_OPS(op, asm_op, suffix, sign) \ argument 114 ATOMIC_OP(op, asm_op, suffix, sign) \ [all …]
|
| H A D | inst.h | 62 #define ppc_inst_prefix(x, y) ((ppc_inst_t){ .val = (x), .suffix = (y) }) 66 return x.suffix; in ppc_inst_suffix() 144 unsigned int val, suffix; in __copy_inst_from_kernel_nofault() local 148 val = suffix = 0; in __copy_inst_from_kernel_nofault() 152 __get_kernel_nofault(&suffix, src + 1, u32, Efault); in __copy_inst_from_kernel_nofault() 153 *inst = ppc_inst_prefix(val, suffix); in __copy_inst_from_kernel_nofault()
|
| /linux-6.15/rust/kernel/ |
| H A D | print.rs | 59 let suffix: &[u8; LENGTH - LENGTH_PREFIX] = if is_cont { localVariable 66 prefix[0], prefix[1], suffix[0], suffix[1], suffix[2], suffix[3], suffix[4], suffix[5], 67 suffix[6], suffix[7],
|
| /linux-6.15/tools/iio/ |
| H A D | iio_utils.h | 53 static inline int iioutils_check_suffix(const char *str, const char *suffix) in iioutils_check_suffix() argument 55 return strlen(str) >= strlen(suffix) && in iioutils_check_suffix() 56 strncmp(str+strlen(str)-strlen(suffix), in iioutils_check_suffix() 57 suffix, strlen(suffix)) == 0; in iioutils_check_suffix()
|
| /linux-6.15/scripts/atomic/ |
| H A D | gen-atomic-fallback.sh | 228 local suffix="$1"; shift; 234 ___r = raw_${prefix}${cmpxchg}${suffix}((_ptr), ___o, (_new)); \\ 280 local suffix="$1"; shift 282 printf "#define raw_${prefix}${cmpxchg}${suffix} arch_${prefix}${cmpxchg}${suffix}\n\n" 283 printf "#ifdef arch_${prefix}try_${cmpxchg}${suffix}\n" 284 printf "#define raw_${prefix}try_${cmpxchg}${suffix} arch_${prefix}try_${cmpxchg}${suffix}\n" 286 gen_try_cmpxchg_fallback "${prefix}" "${cmpxchg}" "${suffix}"
|
| /linux-6.15/arch/parisc/boot/compressed/ |
| H A D | Makefile | 49 suffix-$(CONFIG_KERNEL_GZIP) := gz 50 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 51 suffix-$(CONFIG_KERNEL_LZ4) := lz4 52 suffix-$(CONFIG_KERNEL_LZMA) := lzma 53 suffix-$(CONFIG_KERNEL_LZO) := lzo 54 suffix-$(CONFIG_KERNEL_XZ) := xz 70 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
| /linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/ |
| H A D | dev.c | 241 const char *suffix; member 245 [MLX5_INTERFACE_PROTOCOL_VNET] = { .suffix = "vnet", 248 [MLX5_INTERFACE_PROTOCOL_IB] = { .suffix = "rdma", 251 [MLX5_INTERFACE_PROTOCOL_ETH] = { .suffix = "eth", 258 [MLX5_INTERFACE_PROTOCOL_MPIB] = { .suffix = "multiport", 260 [MLX5_INTERFACE_PROTOCOL_DPLL] = { .suffix = "dpll", 262 [MLX5_INTERFACE_PROTOCOL_FWCTL] = { .suffix = "fwctl", 308 const char *suffix = mlx5_adev_devices[idx].suffix; in add_adev() local 319 adev->name = suffix; in add_adev() 405 i, mlx5_adev_devices[i].suffix); in mlx5_attach_device() [all …]
|
| /linux-6.15/Documentation/ABI/testing/ |
| H A D | sysfs-bus-event_source-devices | 9 PMU name without a suffix as is intel_bts, 10 uncore_imc_0 is a PMU name with a 0 numeric suffix, 12 suffix. The hex suffix must be more than two 17 suffix as instances of the same PMU for the sake of,
|
| /linux-6.15/tools/include/linux/ |
| H A D | compiler.h | 14 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 16 extern void prefix ## suffix(void) __compiletime_error(msg); \ 18 prefix ## suffix(); \ 21 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 24 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 25 __compiletime_assert(condition, msg, prefix, suffix)
|
| /linux-6.15/arch/x86/crypto/ |
| H A D | aesni-intel_glue.c | 807 .encrypt = xts_encrypt_##suffix, \ 808 .decrypt = xts_decrypt_##suffix, \ 822 .encrypt = ctr_crypt_##suffix, \ 823 .decrypt = ctr_crypt_##suffix, \ 837 .encrypt = xctr_crypt_##suffix, \ 838 .decrypt = xctr_crypt_##suffix, \ 842 simd_skcipher_algs_##suffix[ARRAY_SIZE(skcipher_algs_##suffix)] 1494 .setkey = gcm_setkey_##suffix, \ 1496 .encrypt = gcm_encrypt_##suffix, \ 1497 .decrypt = gcm_decrypt_##suffix, \ [all …]
|
| /linux-6.15/arch/x86/boot/compressed/ |
| H A D | Makefile | 144 suffix-$(CONFIG_KERNEL_GZIP) := gz 145 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 146 suffix-$(CONFIG_KERNEL_LZMA) := lzma 147 suffix-$(CONFIG_KERNEL_XZ) := xz 148 suffix-$(CONFIG_KERNEL_LZO) := lzo 149 suffix-$(CONFIG_KERNEL_LZ4) := lz4 150 suffix-$(CONFIG_KERNEL_ZSTD) := zst 156 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
|
| /linux-6.15/arch/s390/boot/ |
| H A D | Makefile | 104 suffix-$(CONFIG_KERNEL_GZIP) := .gz 105 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2 106 suffix-$(CONFIG_KERNEL_LZ4) := .lz4 107 suffix-$(CONFIG_KERNEL_LZMA) := .lzma 108 suffix-$(CONFIG_KERNEL_LZO) := .lzo 109 suffix-$(CONFIG_KERNEL_XZ) := .xz 110 suffix-$(CONFIG_KERNEL_ZSTD) := .zst 128 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
|
| /linux-6.15/arch/x86/include/asm/ |
| H A D | rmwcc.h | 57 #define GEN_UNARY_SUFFIXED_RMWcc(op, suffix, var, cc, clobbers...) \ argument 58 __GEN_RMWcc(op " %[var]\n\t" suffix, var, cc, \ 61 #define GEN_BINARY_SUFFIXED_RMWcc(op, suffix, var, cc, vcon, _val, clobbers...)\ argument 62 __GEN_RMWcc(op " %[val], %[var]\n\t" suffix, var, cc, \
|
| /linux-6.15/scripts/ |
| H A D | Makefile.package | 29 cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \ 32 suffix-gzip := .gz 33 suffix-bzip2 := .bz2 34 suffix-lzma := .lzma 35 suffix-xz := .xz 95 debian-orig-suffix := \ 97 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress)) 108 debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix) 110 debian-orig: linux.tar$(debian-orig-suffix) debian 174 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
|
| H A D | Makefile.modinst | 55 suffix-y := 57 suffix-$(CONFIG_MODULE_COMPRESS_GZIP) := .gz 58 suffix-$(CONFIG_MODULE_COMPRESS_XZ) := .xz 59 suffix-$(CONFIG_MODULE_COMPRESS_ZSTD) := .zst 62 modules := $(patsubst %.o, $(dst)/%.ko$(suffix-y), $(modules))
|
| /linux-6.15/arch/arm/kernel/ |
| H A D | entry-ftrace.S | 36 .macro __mcount suffix argument 46 bne ftrace_graph_caller\suffix 51 bne ftrace_graph_caller\suffix 139 .macro __ftrace_caller suffix argument 151 .globl ftrace_call\suffix 152 ftrace_call\suffix: 156 .globl ftrace_graph_call\suffix 157 ftrace_graph_call\suffix:
|
| /linux-6.15/arch/loongarch/include/asm/ |
| H A D | atomic.h | 47 #define ATOMIC_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument 48 static inline int arch_atomic_##op##_return##suffix(int i, atomic_t *v) \ 61 #define ATOMIC_FETCH_OP(op, I, asm_op, mb, suffix) \ argument 62 static inline int arch_atomic_fetch_##op##suffix(int i, atomic_t *v) \ 207 #define ATOMIC64_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument 208 static inline long arch_atomic64_##op##_return##suffix(long i, atomic64_t *v) \ 220 #define ATOMIC64_FETCH_OP(op, I, asm_op, mb, suffix) \ argument 221 static inline long arch_atomic64_fetch_##op##suffix(long i, atomic64_t *v) \
|
| /linux-6.15/tools/net/ynl/pyynl/ |
| H A D | ynl_gen_c.py | 1576 ri.cw.write_func_prot(ret, fname, args, doc=doc, suffix=suffix) 1670 suffix=suffix) 1832 suffix=suffix) 2028 suffix += '_' 2031 suffix += '_dump' 2529 suffix = ',' 2555 suffix = ',' 2583 suffix = ',' 2649 suffix = f" = {entry.user_value()}" + suffix 2688 suffix = ',' [all …]
|
| /linux-6.15/tools/testing/selftests/firmware/ |
| H A D | fw_filesystem.sh | 442 suffix="$2" 445 test_batched_request_firmware$suffix $i $mode 449 test_batched_request_firmware_into_buf$suffix $i $mode 453 test_batched_request_firmware_direct$suffix $i $mode 457 test_request_firmware_nowait_uevent$suffix $i $mode 461 test_request_firmware_nowait_custom$suffix $i $mode
|