/openbmc/linux/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 …]
|
/openbmc/qemu/system/ |
H A D | bootdevice.c | 40 char *suffix; member 147 if ((!suffix || !g_strcmp0(i->suffix, suffix)) && in del_boot_device_path() 150 g_free(i->suffix); in del_boot_device_path() 174 node->suffix = g_strdup(suffix); in add_boot_device_path() 222 assert(!suffix); in get_boot_device_path() 286 const char *suffix; member 336 prop->suffix = suffix; in device_add_bootindex_property() 354 char *suffix; member 375 node->suffix = g_strdup(suffix); in add_boot_device_lchs() 393 if ((!suffix || !g_strcmp0(i->suffix, suffix)) && in del_boot_device_lchs() [all …]
|
/openbmc/obmc-console/ |
H A D | config.c | 242 char *suffix; in config_parse_bytesize() local 249 logsize = strtoul(size_str, &suffix, 0); in config_parse_bytesize() 250 if (logsize == 0 || logsize >= UINT32_MAX || suffix == size_str) { in config_parse_bytesize() 255 while (*suffix && isspace(*suffix)) { in config_parse_bytesize() 256 suffix++; in config_parse_bytesize() 260 if (*suffix == suffixes[i].unit) { in config_parse_bytesize() 270 suffix++; in config_parse_bytesize() 276 while (*suffix && (tolower(*suffix) == 'b' || isspace(*suffix))) { in config_parse_bytesize() 277 suffix++; in config_parse_bytesize() 280 if (*suffix) { in config_parse_bytesize()
|
/openbmc/linux/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 if (suffix) in uclogic_input_configured() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | rbtree.c | 115 #define BTF_FAIL_TEST(suffix) \ argument 116 void test_rbtree_btf_fail__##suffix(void) \ 118 struct rbtree_btf_fail__##suffix *skel; \ 120 skel = rbtree_btf_fail__##suffix##__open_and_load(); \ 122 "rbtree_btf_fail__" #suffix "__open_and_load unexpected success")) \ 123 rbtree_btf_fail__##suffix##__destroy(skel); \ 126 #define RUN_BTF_FAIL_TEST(suffix) \ argument 127 if (test__start_subtest("rbtree_btf_fail__" #suffix)) \ 128 test_rbtree_btf_fail__##suffix();
|
/openbmc/linux/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()
|
/openbmc/linux/rust/kernel/ |
H A D | print.rs | 62 let suffix: &[u8; LENGTH - LENGTH_PREFIX] = if is_cont { localVariable 69 prefix[0], prefix[1], suffix[0], suffix[1], suffix[2], suffix[3], suffix[4], suffix[5], 70 suffix[6], suffix[7],
|
/openbmc/linux/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()
|
/openbmc/linux/arch/parisc/boot/compressed/ |
H A D | Makefile | 53 suffix-$(CONFIG_KERNEL_GZIP) := gz 54 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 55 suffix-$(CONFIG_KERNEL_LZ4) := lz4 56 suffix-$(CONFIG_KERNEL_LZMA) := lzma 57 suffix-$(CONFIG_KERNEL_LZO) := lzo 58 suffix-$(CONFIG_KERNEL_XZ) := xz 74 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
/openbmc/u-boot/tools/binman/etype/ |
H A D | u_boot_ucode.py | 66 for suffix in ['', '-spl', '-tpl']: 67 name = 'u-boot%s-with-ucode-ptr' % suffix 78 for suffix in ['', '-spl', '-tpl']: 79 name = 'u-boot%s-dtb-with-ucode' % suffix
|
/openbmc/linux/tools/include/linux/ |
H A D | compiler.h | 12 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 14 extern void prefix ## suffix(void) __compiletime_error(msg); \ 16 prefix ## suffix(); \ 19 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 22 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 23 __compiletime_assert(condition, msg, prefix, suffix)
|
/openbmc/qemu/tests/tcg/mips/include/ |
H A D | wrappers_mips64r6.h | 27 #define DO_MIPS64R6__RD__RS(suffix, mnemonic) \ argument 28 static inline void do_mips64r6_##suffix(const void *input, \ 50 #define DO_MIPS64R6__RD__RS_RT(suffix, mnemonic) \ argument 51 static inline void do_mips64r6_##suffix(const void *input1, \
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-115/ |
H A D | 0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch | 25 - suffix = None 32 - suffix = check_suffix 33 - triplet = triplet[: -len(suffix)] + replacement 36 - if suffix: 38 - result = result[: -len(replacement)] + suffix
|
/openbmc/qemu/include/sysemu/ |
H A D | sysemu.h | 75 const char *suffix); 80 void del_boot_device_path(DeviceState *dev, const char *suffix); 82 const char *name, const char *suffix, 86 void add_boot_device_lchs(DeviceState *dev, const char *suffix, 88 void del_boot_device_lchs(DeviceState *dev, const char *suffix);
|
/openbmc/openbmc/poky/meta/conf/machine/include/arm/ |
H A D | README | 25 ARMPKGSFX_THUMB - This is the thumb specific suffix. Curently it is 28 ARMPKGSFX_DSP - This is the DSP specific suffix. Currently this is set 31 ARMPKGSFX_EABI - This is the eabi specific suffix. There are currently 36 ARMPKGSFX_ENDIAN - This is the endian specific suffix. It is defined in 39 ARMPKGSFX_FPU - This is the FPU specific suffix. The suffix indicates
|
/openbmc/u-boot/drivers/core/ |
H A D | of_extra.c | 71 const char *suffix, fdt_addr_t *basep, in ofnode_decode_memory_region() argument 87 if (!suffix) in ofnode_decode_memory_region() 88 suffix = ""; in ofnode_decode_memory_region() 91 suffix); in ofnode_decode_memory_region() 116 suffix); in ofnode_decode_memory_region()
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | ksparser.py | 61 suffix = default 65 suffix = arg[-1:] 72 if suffix == 's' or suffix == 'S': 78 if suffix == "k" or suffix == "K": 80 if suffix == "M": 82 if suffix == "G":
|
/openbmc/linux/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, \
|
/openbmc/qemu/target/loongarch/ |
H A D | disas.c | 696 output_fcmp(ctx, "fcmp_caf_", suffix); 699 output_fcmp(ctx, "fcmp_saf_", suffix); 702 output_fcmp(ctx, "fcmp_clt_", suffix); 705 output_fcmp(ctx, "fcmp_slt_", suffix); 708 output_fcmp(ctx, "fcmp_ceq_", suffix); 711 output_fcmp(ctx, "fcmp_seq_", suffix); 714 output_fcmp(ctx, "fcmp_cle_", suffix); 717 output_fcmp(ctx, "fcmp_sle_", suffix); 720 output_fcmp(ctx, "fcmp_cun_", suffix); 723 output_fcmp(ctx, "fcmp_sun_", suffix); [all …]
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | dev.c | 221 const char *suffix; member 225 [MLX5_INTERFACE_PROTOCOL_VNET] = { .suffix = "vnet", 228 [MLX5_INTERFACE_PROTOCOL_IB] = { .suffix = "rdma", 231 [MLX5_INTERFACE_PROTOCOL_ETH] = { .suffix = "eth", 234 [MLX5_INTERFACE_PROTOCOL_ETH_REP] = { .suffix = "eth-rep", 236 [MLX5_INTERFACE_PROTOCOL_IB_REP] = { .suffix = "rdma-rep", 238 [MLX5_INTERFACE_PROTOCOL_MPIB] = { .suffix = "multiport", 284 const char *suffix = mlx5_adev_devices[idx].suffix; in add_adev() local 295 adev->name = suffix; in add_adev() 381 i, mlx5_adev_devices[i].suffix); in mlx5_attach_device() [all …]
|
/openbmc/linux/arch/s390/boot/ |
H A D | Makefile | 108 suffix-$(CONFIG_KERNEL_GZIP) := .gz 109 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2 110 suffix-$(CONFIG_KERNEL_LZ4) := .lz4 111 suffix-$(CONFIG_KERNEL_LZMA) := .lzma 112 suffix-$(CONFIG_KERNEL_LZO) := .lzo 113 suffix-$(CONFIG_KERNEL_XZ) := .xz 114 suffix-$(CONFIG_KERNEL_ZSTD) := .zst 132 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
|
/openbmc/linux/scripts/ |
H A D | Makefile.package | 50 cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \ 53 suffix-gzip := .gz 54 suffix-bzip2 := .bz2 55 suffix-lzma := .lzma 56 suffix-xz := .xz 113 debian-orig-suffix := \ 115 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress)) 126 debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix) 128 debian-orig: linux.tar$(debian-orig-suffix) debian 183 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
|
/openbmc/qemu/include/hw/i386/ |
H A D | pc.h | 302 #define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \ argument 303 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \ 309 static const TypeInfo pc_machine_type_##suffix = { \ 312 .class_init = pc_machine_##suffix##_class_init, \ 314 static void pc_machine_init_##suffix(void) \ 316 type_register(&pc_machine_type_##suffix); \ 318 type_init(pc_machine_init_##suffix)
|