Home
last modified time | relevance | path

Searched refs:fullname (Results 1 – 9 of 9) sorted by relevance

/linux/scripts/dtc/
H A Dsrcpos.c124 char *fullname; in try_open() local
127 fullname = xstrdup(fname); in try_open()
129 fullname = join_path(dirname, fname); in try_open()
131 *fp = fopen(fullname, "rb"); in try_open()
133 free(fullname); in try_open()
134 fullname = NULL; in try_open()
137 return fullname; in try_open()
153 char *fullname; in fopen_any_on_path() local
159 fullname = try_open(cur_dir, fname, fp); in fopen_any_on_path()
163 fullname = try_open(node->dirname, fname, fp); in fopen_any_on_path()
[all …]
/linux/arch/powerpc/platforms/cell/spufs/
H A Dcoredump.c28 char fullname[80]; in spufs_ctx_note_size() local
34 sprintf(fullname, "SPU/%d/%s", dfd, name); in spufs_ctx_note_size()
37 total += roundup(strlen(fullname) + 1, 4); in spufs_ctx_note_size()
120 char fullname[80]; in spufs_arch_write_note() local
124 sprintf(fullname, "SPU/%d/%s", dfd, spufs_coredump_read[i].name); in spufs_arch_write_note()
125 en.n_namesz = strlen(fullname) + 1; in spufs_arch_write_note()
131 if (!dump_emit(cprm, fullname, en.n_namesz)) in spufs_arch_write_note()
/linux/drivers/firmware/cirrus/test/
H A Dcs_dsp_mock_wmfw.c293 if (def->fullname) in cs_dsp_mock_wmfw_add_coeff_desc()
294 strscpy(v1->name, def->fullname, sizeof(v1->name)); in cs_dsp_mock_wmfw_add_coeff_desc()
304 if (def->fullname) in cs_dsp_mock_wmfw_add_coeff_desc()
305 fullname_len = strlen(def->fullname); in cs_dsp_mock_wmfw_add_coeff_desc()
333 memcpy(shortstring->data, def->fullname, fullname_len); in cs_dsp_mock_wmfw_add_coeff_desc()
H A Dcs_dsp_test_wmfw_error.c890 __le32 *alg_data, *coeff, *fullname; in wmfw_v2_coeff_fullname_exceeds_block() local
921 fullname = &coeff[2] + (shortlen / sizeof(*coeff)); in wmfw_v2_coeff_fullname_exceeds_block()
924 fullname[0] = cpu_to_le32(round_up(le32_to_cpu(fullname[0]) + 1, sizeof(__le32))); in wmfw_v2_coeff_fullname_exceeds_block()
930 fullname[0] = cpu_to_le32(255); in wmfw_v2_coeff_fullname_exceeds_block()
944 __le32 *alg_data, *coeff, *fullname, *description; in wmfw_v2_coeff_description_exceeds_block() local
975 fullname = &coeff[2] + (namelen / sizeof(*coeff)); in wmfw_v2_coeff_description_exceeds_block()
976 namelen = round_up(le32_to_cpu(fullname[0]) & 0xff, sizeof(__le32)); in wmfw_v2_coeff_description_exceeds_block()
977 description = fullname + (namelen / sizeof(*fullname)); in wmfw_v2_coeff_description_exceeds_block()
980 description[0] = cpu_to_le32(round_up(le32_to_cpu(fullname[0]) + 1, sizeof(__le32))); in wmfw_v2_coeff_description_exceeds_block()
986 fullname[0] = cpu_to_le32(0xffff); in wmfw_v2_coeff_description_exceeds_block()
H A Dcs_dsp_test_control_parse.c116 def.fullname = "Dummy"; in cs_dsp_ctl_parse_v1_name()
146 def.fullname = "\0"; in cs_dsp_ctl_parse_empty_v1_name()
176 def.fullname = cs_dsp_ctl_alloc_test_string(test, 'A', 255); in cs_dsp_ctl_parse_max_v1_name()
298 def.fullname = "Q"; in cs_dsp_ctl_parse_with_min_fullname()
330 def.fullname = cs_dsp_ctl_alloc_test_string(test, 'A', 255); in cs_dsp_ctl_parse_with_max_fullname()
428 def.fullname = cs_dsp_ctl_alloc_test_string(test, 'A', 255); in cs_dsp_ctl_parse_with_max_fullname_and_description()
527 def.fullname = cs_dsp_ctl_alignment_test_names[i]; in cs_dsp_ctl_fullname_alignment()
/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_scan.l478 char fullname[PATH_MAX];
484 snprintf(fullname, sizeof(fullname),
487 if ((newfile = fopen(fullname, "r")) != NULL)
/linux/tools/testing/selftests/exec/
H A Dexecveat.c268 char *fullname = realpath("execveat", NULL); in run_tests() local
270 char *fullname_symlink = concat(fullname, ".symlink"); in run_tests()
309 fail += check_execveat(AT_FDCWD, fullname, 0); in run_tests()
311 fail += check_execveat(99, fullname, 0); in run_tests()
/linux/arch/s390/include/asm/
H A Dsyscall_wrapper.h30 #define __S390_SYS_STUBx(x, fullname, name, ...) argument
/linux/include/linux/firmware/cirrus/
H A Dcs_dsp_test_utils.h58 const char *fullname; member