Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 25 of 224) sorted by relevance

123456789

/linux/arch/mips/cavium-octeon/executive/
H A Docteon-model.c66 const char *suffix; in octeon_model_get_string_buffer() local
101 suffix = "CP"; in octeon_model_get_string_buffer()
103 suffix = "SCP"; in octeon_model_get_string_buffer()
105 suffix = "EXP"; in octeon_model_get_string_buffer()
107 suffix = "NSP"; in octeon_model_get_string_buffer()
270 if ((num_cores == 4) && l2d_fus3 && !strncmp(suffix, "CP", 2)) in octeon_model_get_string_buffer()
298 suffix = "SP"; in octeon_model_get_string_buffer()
300 suffix = "SSP"; in octeon_model_get_string_buffer()
303 suffix = "CP"; in octeon_model_get_string_buffer()
305 suffix = "NSP"; in octeon_model_get_string_buffer()
[all …]
/linux/drivers/md/dm-vdo/
H A Dmessage-stats.c15 static void write_u64(char *prefix, u64 value, char *suffix, char **buf, in write_u64() argument
21 value, suffix == NULL ? "" : suffix); in write_u64()
26 static void write_u32(char *prefix, u32 value, char *suffix, char **buf, in write_u32() argument
32 value, suffix == NULL ? "" : suffix); in write_u32()
37 static void write_block_count_t(char *prefix, block_count_t value, char *suffix, in write_block_count_t() argument
43 value, suffix == NULL ? "" : suffix); in write_block_count_t()
48 static void write_string(char *prefix, char *value, char *suffix, char **buf, in write_string() argument
54 value, suffix == NULL ? "" : suffix); in write_string()
59 static void write_bool(char *prefix, bool value, char *suffix, char **buf, in write_bool() argument
65 value, suffix == NULL ? "" : suffix); in write_bool()
[all …]
/linux/tools/testing/selftests/kvm/x86/
H A Dfastops_test.c143 #define guest_test_fastops(type_t, suffix) \ argument
148 guest_test_fastop_1("dec" suffix, type_t, vals[i]); \
149 guest_test_fastop_1("inc" suffix, type_t, vals[i]); \
150 guest_test_fastop_1("neg" suffix, type_t, vals[i]); \
151 guest_test_fastop_1("not" suffix, type_t, vals[i]); \
154 guest_test_fastop_2("add" suffix, type_t, vals[i], vals[j]); \
155 guest_test_fastop_2("adc" suffix, type_t, vals[i], vals[j]); \
156 guest_test_fastop_2("and" suffix, type_t, vals[i], vals[j]); \
158 guest_test_fastop_2("bsf" suffix, type_t, vals[i], vals[j]); \
159 guest_test_fastop_2("bsr" suffix, type_t, vals[i], vals[j]); \
[all …]
/linux/rust/syn/
H A Dlit.rs95 suffix: Box<str>, field
108 suffix: Box<str>, field
123 suffix: Box<str>, field
141 suffix: Box::<str>::default(), in new()
247 let suffix = self.suffix(); in parse_with() localVariable
248 if !suffix.is_empty() { in parse_with()
251 format!("unexpected suffix `{}` on string literal", suffix), in parse_with()
266 pub fn suffix(&self) -> &str { in suffix() method
267 &self.repr.suffix in suffix()
282 suffix: Box::<str>::default(), in new()
[all …]
/linux/drivers/hid/
H A Dhid-retrode.c23 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()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Drbtree.c163 #define BTF_FAIL_TEST(suffix) \ argument
164 void test_rbtree_btf_fail__##suffix(void) \
166 struct rbtree_btf_fail__##suffix *skel; \
168 skel = rbtree_btf_fail__##suffix##__open_and_load(); \
170 "rbtree_btf_fail__" #suffix "__open_and_load unexpected success")) \
171 rbtree_btf_fail__##suffix##__destroy(skel); \
174 #define RUN_BTF_FAIL_TEST(suffix) \ argument
175 if (test__start_subtest("rbtree_btf_fail__" #suffix)) \
176 test_rbtree_btf_fail__##suffix();
/linux/kernel/
H A Dcrash_reserve.c195 const char *suffix) in parse_crashkernel_suffix() argument
206 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix()
210 cur += strlen(suffix); in parse_crashkernel_suffix()
221 const char *suffix) in get_last_crashkernel() argument
234 if (!suffix) { in get_last_crashkernel()
246 q = end_p - strlen(suffix); in get_last_crashkernel()
247 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel()
261 const char *suffix) in __parse_crashkernel() argument
271 ck_cmdline = get_last_crashkernel(cmdline, name, suffix); in __parse_crashkernel()
277 if (suffix) in __parse_crashkernel()
[all …]
/linux/arch/powerpc/include/asm/
H A Datomic.h49 #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__) \
100 ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__)\
101 ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__)
[all …]
H A Dinst.h62 #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 __get_kernel_nofault(&suffix, src + 1, u32, Efault); in __copy_inst_from_kernel_nofault()
149 *inst = ppc_inst_prefix(val, suffix); in __copy_inst_from_kernel_nofault()
/linux/rust/kernel/
H A Dprint.rs64 let suffix: &[u8; LENGTH - LENGTH_PREFIX] = if is_cont {
71 prefix[0], prefix[1], suffix[0], suffix[1], suffix[2], suffix[3], suffix[4], suffix[5],
72 suffix[6], suffix[7],
59 let suffix: &[u8; LENGTH - LENGTH_PREFIX] = if is_cont { global() localVariable
/linux/scripts/atomic/
H A Dgen-atomic-fallback.sh228 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/tools/iio/
H A Diio_utils.h53 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/drivers/net/ethernet/mellanox/mlx5/core/
H A Ddev.c241 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",
254 [MLX5_INTERFACE_PROTOCOL_ETH_REP] = { .suffix = "eth-rep",
256 [MLX5_INTERFACE_PROTOCOL_IB_REP] = { .suffix = "rdma-rep",
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
[all …]
/linux/arch/parisc/boot/compressed/
H A DMakefile50 suffix-$(CONFIG_KERNEL_GZIP) := gz
51 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
52 suffix-$(CONFIG_KERNEL_LZ4) := lz4
53 suffix-$(CONFIG_KERNEL_LZMA) := lzma
54 suffix-$(CONFIG_KERNEL_LZO) := lzo
55 suffix-$(CONFIG_KERNEL_XZ) := xz
71 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
/linux/arch/loongarch/include/asm/
H A Datomic-amo.h25 #define ATOMIC_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
26 static inline int arch_atomic_##op##_return##suffix(int i, atomic_t *v) \
39 #define ATOMIC_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
40 static inline int arch_atomic_fetch_##op##suffix(int i, atomic_t *v) \
121 #define ATOMIC64_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
122 static inline long arch_atomic64_##op##_return##suffix(long i, atomic64_t *v) \
134 #define ATOMIC64_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
135 static inline long arch_atomic64_fetch_##op##suffix(long i, atomic64_t *v) \
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-event_source-devices9 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/tools/include/linux/
H A Dcompiler.h14 # 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/arch/x86/crypto/
H A Daesni-intel_glue.c694 #define DEFINE_AVX_SKCIPHER_ALGS(suffix, driver_name_suffix, priority) \ argument
697 aes_xts_encrypt_##suffix(const struct crypto_aes_ctx *key, const u8 *src, \
700 aes_xts_decrypt_##suffix(const struct crypto_aes_ctx *key, const u8 *src, \
703 static int xts_encrypt_##suffix(struct skcipher_request *req) \
705 return xts_crypt(req, aes_xts_encrypt_iv, aes_xts_encrypt_##suffix); \
708 static int xts_decrypt_##suffix(struct skcipher_request *req) \
710 return xts_crypt(req, aes_xts_encrypt_iv, aes_xts_decrypt_##suffix); \
714 aes_ctr64_crypt_##suffix(const struct crypto_aes_ctx *key, \
717 static int ctr_crypt_##suffix(struct skcipher_request *req) \
719 return ctr_crypt(req, aes_ctr64_crypt_##suffix); \
[all …]
/linux/arch/s390/boot/
H A DMakefile106 suffix-$(CONFIG_KERNEL_GZIP) := .gz
107 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2
108 suffix-$(CONFIG_KERNEL_LZ4) := .lz4
109 suffix-$(CONFIG_KERNEL_LZMA) := .lzma
110 suffix-$(CONFIG_KERNEL_LZO) := .lzo
111 suffix-$(CONFIG_KERNEL_XZ) := .xz
112 suffix-$(CONFIG_KERNEL_ZSTD) := .zst
130 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
/linux/arch/x86/include/asm/
H A Drmwcc.h35 #define GEN_UNARY_SUFFIXED_RMWcc(op, suffix, var, cc, clobbers...) \ argument
36 __GEN_RMWcc(op " %[var]\n\t" suffix, var, cc, \
39 #define GEN_BINARY_SUFFIXED_RMWcc(op, suffix, var, cc, vcon, _val, clobbers...)\ argument
40 __GEN_RMWcc(op " %[val], %[var]\n\t" suffix, var, cc, \
/linux/scripts/
H A DMakefile.package29 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 DMakefile.modinst55 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/arch/x86/boot/compressed/
H A DMakefile153 suffix-$(CONFIG_KERNEL_GZIP) := gz
154 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
155 suffix-$(CONFIG_KERNEL_LZMA) := lzma
156 suffix-$(CONFIG_KERNEL_XZ) := xz
157 suffix-$(CONFIG_KERNEL_LZO) := lzo
158 suffix-$(CONFIG_KERNEL_LZ4) := lz4
159 suffix-$(CONFIG_KERNEL_ZSTD) := zst
165 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
/linux/tools/testing/selftests/firmware/
H A Dfw_filesystem.sh442 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
/linux/arch/arm/kernel/
H A Dentry-ftrace.S36 .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:

123456789