Searched refs:suffix (Results 1 - 25 of 123) sorted by last modified time

12345

/linux-master/fs/btrfs/
H A Dioctl.c4261 #define INIT_FEATURE_FLAGS(suffix) \
4262 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4263 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4264 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
/linux-master/tools/perf/util/
H A Dannotate.c799 char suffix; local
805 suffix = name[len - 1];
806 if (strchr(arch->insn_suffix, suffix) == NULL)
810 tmp[len - 1] = '\0'; /* remove the suffix and check again */
/linux-master/fs/fuse/
H A Dinode.c1426 char *suffix = ""; local
1429 suffix = "-fuseblk";
1438 MINOR(fc->dev), suffix);
/linux-master/drivers/s390/cio/
H A Ddevice.c79 /* Store modalias string delimited by prefix/suffix string into buffer with
83 const struct ccw_device_id *id, const char *suffix)
95 id->dev_model, suffix);
97 len += snprintf(buf, size, "dtdm%s", suffix);
82 snprint_alias(char *buf, size_t size, const struct ccw_device_id *id, const char *suffix) argument
/linux-master/tools/testing/selftests/net/mptcp/
H A Dmptcp_join.sh1697 local cnt suffix
1705 suffix="$count in [$rm_subflow_nr:$((rm_subflow_nr*2))]"
1710 print_ok "$suffix"
/linux-master/include/linux/
H A Dbpf.h2614 const char *field_name, u32 btf_id, const char *suffix);
H A Dcompiler_types.h420 # define __compiletime_assert(condition, msg, prefix, suffix) \
427 __noreturn extern void prefix ## suffix(void) \
430 prefix ## suffix(); \
433 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0)
436 #define _compiletime_assert(condition, msg, prefix, suffix) \
437 __compiletime_assert(condition, msg, prefix, suffix)
/linux-master/tools/net/ynl/
H A Dynl-gen-c.py1292 def write_func_prot(self, qual_ret, name, args=None, doc=None, suffix=''):
1304 oneline += f"{name}({', '.join(args)}){suffix}"
1332 self.p(v + ')' + suffix)
1456 suffix = f"_{ri.type_name}"
1459 suffix += f"{direction_to_suffix[direction]}"
1462 suffix += '_req_dump'
1466 suffix += f"{direction_to_suffix[direction]}"
1468 suffix += op_mode_to_wrapper[ri.op_mode]
1470 suffix += '_rsp'
1471 suffix
[all...]
/linux-master/tools/bpf/bpftool/
H A Dgen.c43 static bool str_has_suffix(const char *str, const char *suffix) argument
45 size_t i, n1 = strlen(str), n2 = strlen(suffix);
51 if (str[n1 - i - 1] != suffix[n2 - i - 1])
84 static void get_header_guard(char *guard, const char *obj_name, const char *suffix) argument
88 sprintf(guard, "__%s_%s__", obj_name, suffix);
/linux-master/kernel/
H A Dcrash_reserve.c184 * That function parses "suffix" crashkernel command lines like
192 const char *suffix)
202 /* check with suffix */
203 if (strncmp(cur, suffix, strlen(suffix))) {
207 cur += strlen(suffix);
218 const char *suffix)
231 if (!suffix) {
234 /* skip the one with any known suffix */
243 q = end_p - strlen(suffix);
190 parse_crashkernel_suffix(char *cmdline, unsigned long long *crash_size, const char *suffix) argument
216 get_last_crashkernel(char *cmdline, const char *name, const char *suffix) argument
254 __parse_crashkernel(char *cmdline, unsigned long long system_ram, unsigned long long *crash_size, unsigned long long *crash_base, const char *suffix) argument
[all...]
/linux-master/scripts/
H A DMakefile.lib54 suffix-search = $(strip $(foreach s, $3, $($(1:%$(strip $2)=%$s))))
56 multi-search = $(sort $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $m)))
58 real-search = $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $(call suffix-search, $m, $2, $3), $m))
116 $(if $(filter $*.o, $(call suffix-search, $m, .o, -objs -y -m)),$(m:.o=))))
123 # target with $(obj)/ and its suffix stripped
300 $(addprefix $(obj)/, $(call suffix-search, $(patsubst $(obj)/%,%,$m), $2, $3))))
381 symbase=__$(patsubst .%,%,$(suffix $<))_$(subst -,_,$(notdir $*)); \
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
90 debian-orig-suffix := \
92 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress))
103 debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix)
105 debian-orig: linux.tar$(debian-orig-suffix) debian
157 cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix
[all...]
/linux-master/net/
H A Dsocket.c372 const char *suffix, void *value, size_t size)
394 const char *suffix, const void *value,
370 sockfs_xattr_get(const struct xattr_handler *handler, struct dentry *dentry, struct inode *inode, const char *suffix, void *value, size_t size) argument
391 sockfs_security_xattr_set(const struct xattr_handler *handler, struct mnt_idmap *idmap, struct dentry *dentry, struct inode *inode, const char *suffix, const void *value, size_t size, int flags) argument
/linux-master/drivers/of/
H A Dproperty.c1141 static int strcmp_suffix(const char *str, const char *suffix) argument
1146 suffix_len = strlen(suffix);
1149 return strcmp(str + len - suffix_len, suffix);
1159 * @suffix: Property suffix that is known to contain list of phandle(s) to
1163 * This is a helper function to parse properties that have a known fixed suffix
1173 const char *suffix,
1178 if (strcmp_suffix(prop_name, suffix))
1188 #define DEFINE_SUFFIX_PROP(fname, suffix, cells) \
1192 return parse_suffix_prop_cells(np, prop_name, index, suffix, cell
1171 parse_suffix_prop_cells(struct device_node *np, const char *prop_name, int index, const char *suffix, const char *cells_name) argument
[all...]
/linux-master/drivers/iio/
H A Dindustrialio-core.c771 const char *prefix, const char *suffix)
800 len += sysfs_emit_at(buf, len, "%s\n", suffix);
903 /* Ignore the dB suffix */
907 /* Ignore the dB suffix */
770 iio_format_list(char *buf, const int *vals, int type, int length, const char *prefix, const char *suffix) argument
/linux-master/drivers/iio/adc/
H A Dti-ads1298.c590 const char *suffix; local
607 suffix = "";
610 suffix = "r";
616 indio_dev->num_channels, suffix);
/linux-master/drivers/base/firmware_loader/
H A Dmain.c490 const char *suffix,
532 fw_priv->fw_name, suffix);
489 fw_get_filesystem_firmware(struct device *device, struct fw_priv *fw_priv, const char *suffix, int (*decompress)(struct device *dev, struct fw_priv *fw_priv, size_t in_size, const void *in_buffer)) argument
/linux-master/sound/usb/
H A Dmixer.c2348 const char *suffix; member in struct:procunit_value_info
2602 append_ctl_name(kctl, valinfo->suffix);
2840 /* and add the proper suffix */
/linux-master/arch/powerpc/lib/
H A Dsstep.c196 unsigned int suffix,
204 ra = GET_PREFIX_RA(suffix);
207 d1 = suffix & 0xffff;
1365 unsigned int word, suffix; local
1369 suffix = ppc_inst_suffix(instr);
1496 ra = GET_PREFIX_RA(suffix);
1497 rd = (suffix >> 21) & 0x1f;
1500 suffixopcode = get_op(suffix);
1509 op->val = mlsd_8lsd_ea(word, suffix, regs);
2985 ra = GET_PREFIX_RA(suffix);
195 mlsd_8lsd_ea(unsigned int instr, unsigned int suffix, const struct pt_regs *regs) argument
[all...]
/linux-master/arch/powerpc/include/asm/
H A Dreg.h1390 u32 suffix; member in struct:__anon27
/linux-master/tools/perf/pmu-events/
H A Djevents.py63 def removesuffix(s: str, suffix: str) -> str:
64 """Remove the suffix from a string
69 return s[0:-len(suffix)] if s.endswith(suffix) else s
/linux-master/tools/perf/
H A Dbuiltin-trace.c803 const char *suffix = "_OK"; local
808 return scnprintf(bf, size, "F%s", show_prefix ? suffix : "");
811 printed += scnprintf(bf + printed, size - printed, "%s%s", #n, show_prefix ? suffix : ""); \
H A Dbuiltin-script.c3266 static const char *ends_with(const char *str, const char *suffix) argument
3268 size_t suffix_len = strlen(suffix);
3273 if (!strncmp(p, suffix, suffix_len))
3321 static char *get_script_root(struct dirent *script_dirent, const char *suffix) argument
3329 str = (char *)ends_with(script_root, suffix);
3568 static char *get_script_path(const char *script_root, const char *suffix) argument
3591 __script_root = get_script_root(script_dirent, suffix);
/linux-master/sound/pci/
H A Dintel8x0m.c666 char *suffix; member in struct:ich_pcm_table
681 if (rec->suffix)
682 sprintf(name, "Intel ICH - %s", rec->suffix);
699 if (rec->suffix)
700 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
715 .suffix = "Modem",
H A Dintel8x0.c1421 char *suffix; member in struct:ich_pcm_table
1439 if (rec->suffix)
1440 sprintf(name, "Intel ICH - %s", rec->suffix);
1456 if (rec->suffix)
1457 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
1496 .suffix = "MIC ADC",
1503 .suffix = "MIC2 ADC",
1510 .suffix = "ADC2",
1517 .suffix = "IEC958",
1533 .suffix
[all...]

Completed in 376 milliseconds

12345