/openbmc/qemu/target/i386/tcg/ |
H A D | ops_sse_header.h.inc | 21 #define SUFFIX _mmx 25 #define SUFFIX _xmm 27 #define SUFFIX _ymm 41 DEF_HELPER_4(glue(psrlw, SUFFIX), void, env, Reg, Reg, Reg) 42 DEF_HELPER_4(glue(psraw, SUFFIX), void, env, Reg, Reg, Reg) 43 DEF_HELPER_4(glue(psllw, SUFFIX), void, env, Reg, Reg, Reg) 44 DEF_HELPER_4(glue(psrld, SUFFIX), void, env, Reg, Reg, Reg) 45 DEF_HELPER_4(glue(psrad, SUFFIX), void, env, Reg, Reg, Reg) 46 DEF_HELPER_4(glue(pslld, SUFFIX), void, env, Reg, Reg, Reg) 47 DEF_HELPER_4(glue(psrlq, SUFFIX), void, env, Reg, Reg, Reg) [all …]
|
H A D | cc_helper_template.h.inc | 23 #define SUFFIX b 27 #define SUFFIX w 31 #define SUFFIX l 37 #define SUFFIX q 47 static uint32_t glue(compute_all_add, SUFFIX)(DATA_TYPE dst, DATA_TYPE src1) 61 static int glue(compute_c_add, SUFFIX)(DATA_TYPE dst, DATA_TYPE src1) 66 static uint32_t glue(compute_all_adc, SUFFIX)(DATA_TYPE dst, DATA_TYPE src1, 90 static int glue(compute_c_adc, SUFFIX)(DATA_TYPE dst, DATA_TYPE src1, 102 static uint32_t glue(compute_all_sub, SUFFIX)(DATA_TYPE dst, DATA_TYPE src2) 116 static int glue(compute_c_sub, SUFFIX)(DATA_TYPE dst, DATA_TYPE src2) [all …]
|
/openbmc/qemu/include/exec/ |
H A D | memory_ldst_phys.h.inc | 23 static inline uint16_t glue(lduw_phys, SUFFIX)(ARG1_DECL, hwaddr addr) 25 return glue(address_space_lduw, SUFFIX)(ARG1, addr, 29 static inline uint32_t glue(ldl_phys, SUFFIX)(ARG1_DECL, hwaddr addr) 31 return glue(address_space_ldl, SUFFIX)(ARG1, addr, 35 static inline uint64_t glue(ldq_phys, SUFFIX)(ARG1_DECL, hwaddr addr) 37 return glue(address_space_ldq, SUFFIX)(ARG1, addr, 41 static inline void glue(stw_phys, SUFFIX)(ARG1_DECL, hwaddr addr, uint16_t val) 43 glue(address_space_stw, SUFFIX)(ARG1, addr, val, 47 static inline void glue(stl_phys, SUFFIX)(ARG1_DECL, hwaddr addr, uint32_t val) 49 glue(address_space_stl, SUFFIX)(ARG1, addr, val, [all …]
|
H A D | memory_ldst.h.inc | 23 uint16_t glue(address_space_lduw, SUFFIX)(ARG1_DECL, 25 uint32_t glue(address_space_ldl, SUFFIX)(ARG1_DECL, 27 uint64_t glue(address_space_ldq, SUFFIX)(ARG1_DECL, 29 void glue(address_space_stl_notdirty, SUFFIX)(ARG1_DECL, 31 void glue(address_space_stw, SUFFIX)(ARG1_DECL, 33 void glue(address_space_stl, SUFFIX)(ARG1_DECL, 35 void glue(address_space_stq, SUFFIX)(ARG1_DECL, 38 uint8_t glue(address_space_ldub, SUFFIX)(ARG1_DECL, 40 uint16_t glue(address_space_lduw_le, SUFFIX)(ARG1_DECL, 42 uint16_t glue(address_space_lduw_be, SUFFIX)(ARG1_DECL, [all …]
|
/openbmc/linux/arch/mips/cavium-octeon/executive/ |
H A D | octeon-model.c | 65 const char *suffix; in octeon_model_get_string_buffer() local 93 /* Make a guess at the suffix */ in octeon_model_get_string_buffer() 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() 269 if ((num_cores == 4) && l2d_fus3 && !strncmp(suffix, "CP", 2)) in octeon_model_get_string_buffer() 297 suffix = "SP"; in octeon_model_get_string_buffer() 299 suffix = "SSP"; in octeon_model_get_string_buffer() 302 suffix = "CP"; in octeon_model_get_string_buffer() [all …]
|
/openbmc/qemu/system/ |
H A D | memory_ldst.c.inc | 23 static inline uint32_t glue(address_space_ldl_internal, SUFFIX)(ARG1_DECL, 70 uint32_t glue(address_space_ldl, SUFFIX)(ARG1_DECL, 73 return glue(address_space_ldl_internal, SUFFIX)(ARG1, addr, attrs, result, 77 uint32_t glue(address_space_ldl_le, SUFFIX)(ARG1_DECL, 80 return glue(address_space_ldl_internal, SUFFIX)(ARG1, addr, attrs, result, 84 uint32_t glue(address_space_ldl_be, SUFFIX)(ARG1_DECL, 87 return glue(address_space_ldl_internal, SUFFIX)(ARG1, addr, attrs, result, 92 static inline uint64_t glue(address_space_ldq_internal, SUFFIX)(ARG1_DECL, 139 uint64_t glue(address_space_ldq, SUFFIX)(ARG1_DECL, 142 return glue(address_space_ldq_internal, SUFFIX)(ARG1, addr, attrs, result, [all …]
|
H A D | bootdevice.c | 40 char *suffix; member 138 void del_boot_device_path(DeviceState *dev, const char *suffix) in del_boot_device_path() argument 147 if ((!suffix || !g_strcmp0(i->suffix, suffix)) && in del_boot_device_path() 150 g_free(i->suffix); in del_boot_device_path() 159 const char *suffix) in add_boot_device_path() argument 164 del_boot_device_path(dev, suffix); in add_boot_device_path() 168 assert(dev != NULL || suffix != NULL); in add_boot_device_path() 170 del_boot_device_path(dev, suffix); in add_boot_device_path() 174 node->suffix = g_strdup(suffix); in add_boot_device_path() 209 const char *suffix) in get_boot_device_path() argument [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | with_tunnels.sh | 6 readonly SUFFIX="test_$(mktemp -u XXXX)" 10 ip link add "ipip_${SUFFIX}" type ipip ${CONFIG} 11 ip link add "gre_${SUFFIX}" type gre ${CONFIG} 12 ip link add "sit_${SUFFIX}" type sit ${CONFIG} 17 ip link set "ipip_${SUFFIX}" up 18 ip link set "gre_${SUFFIX}" up 19 ip link set "sit_${SUFFIX}" up 24 ip tunnel del "ipip_${SUFFIX}" 25 ip tunnel del "gre_${SUFFIX}" 26 ip tunnel del "sit_${SUFFIX}"
|
/openbmc/obmc-console/ |
H A D | config.c | 229 /* Left shiftwidth corresponding to the suffix. */ in config_parse_bytesize() 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() 254 /* Ignore spaces between number and suffix */ 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() 275 /* Allow suffix like 'kB' */ in config_parse_bytesize() [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/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()
|
/openbmc/linux/tools/rcu/ |
H A D | extract-stall.sh | 29 suffix <= 0 { 35 suffix > 0 { 37 suffix--; 38 if (suffix <= 0) 42 suffix <= 0 && /detected stall/ { 46 suffix = trailing_lines;
|
/openbmc/qemu/target/loongarch/ |
H A D | disas.c | 683 #define output_fcmp(C, PREFIX, SUFFIX) \ in INSN() argument 686 (C)->insn, PREFIX, SUFFIX, a->cd, \ in INSN() 691 const char *suffix) 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); [all …]
|
/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/openbmc-test-automation/ |
H A D | CONTRIBUTING.md | 281 - Avoid having the variable's type as a suffix portion of the name: 329 host name (whether long or short), please give it a suffix of "\_host". 343 suffix of \_host_name. 356 For short host names (e.g. "bmc1"), use a suffix of \_host_short_name. 369 For IP addresses, use a suffix of \_ip. 384 - If your variable is to contain only the file's name, use a suffix of 393 - If your variable is to contain the path to a file, use a suffix of 396 "\_file_path" suffix. 414 rare case), use a suffix \_abs_file_path. 421 - If your variable is to contain only the directory's name, use a suffix [all …]
|
/openbmc/u-boot/test/fs/ |
H A D | fs-test.sh | 48 # They shall have a suffix which represents their file system (ext4/fat16/...) 51 # $OUT shall be the prefix of the test output. Their suffix will be .out 189 SUFFIX=" 0:0" 193 SUFFIX=" 0:0" 199 SUFFIX="fs -" 227 ${PREFIX}ls host${SUFFIX} $6 229 ${PREFIX}ls host${SUFFIX} invalid_d 235 ${PREFIX}size host${SUFFIX} ${FPATH}$FILE_SMALL 239 ${PREFIX}size host${SUFFIX} ${FPATH}SUBDIR/../$FILE_SMALL 245 ${PREFIX}size host${SUFFIX} ${FPATH}$FILE_BIG [all …]
|
/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/include/ |
H A D | display_options.h | 13 * print_size() - Print a size with a suffix 20 * @suffix String to print after the size 22 void print_size(uint64_t size, const char *suffix); 25 * print_freq() - Print a frequency with a suffix 31 * @suffix String to print after the frequency 33 void print_freq(uint64_t freq, const char *suffix);
|
/openbmc/qemu/target/i386/ |
H A D | ops_sse.h | 32 #define SUFFIX _mmx macro 41 #define SUFFIX _xmm macro 43 #define SUFFIX _ymm macro 57 void glue(helper_psrlw, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 72 void glue(helper_psllw, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 87 void glue(helper_psraw, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 100 void glue(helper_psrld, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 115 void glue(helper_pslld, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 130 void glue(helper_psrad, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument 143 void glue(helper_psrlq, SUFFIX)(CPUX86State *env, Reg *d, Reg *s, Reg *c) in glue() argument [all …]
|
/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/linux/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:
|
/openbmc/qemu/include/sysemu/ |
H A D | sysemu.h | 74 const char *suffix); 79 void del_boot_device_path(DeviceState *dev, const char *suffix); 81 const char *name, const char *suffix, 85 void add_boot_device_lchs(DeviceState *dev, const char *suffix, 87 void del_boot_device_lchs(DeviceState *dev, const char *suffix);
|
/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/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__) \ 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 …]
|
/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
|