Searched refs:name (Results 126 - 150 of 21083) sorted by path

1234567891011>>

/linux-master/arch/powerpc/boot/
H A Dof.h16 void *of_finddevice(const char *name);
17 int of_getprop(const void *phandle, const char *name, void *buf,
19 int of_setprop(const void *phandle, const char *name, const void *buf,
H A Doflib.c20 __be32 service; /* Address of service name string. */
204 void *of_finddevice(const char *name) argument
206 return (void *) (unsigned long) of_call_prom("finddevice", 1, 1, name);
209 int of_getprop(const void *phandle, const char *name, void *buf, argument
212 return of_call_prom("getprop", 4, 1, phandle, name, buf, buflen);
215 int of_setprop(const void *phandle, const char *name, const void *buf, argument
218 return of_call_prom("setprop", 4, 1, phandle, name, buf, buflen);
H A Dps3-hvcall.S32 .macro GLOBAL name
35 .globl \name
36 \name:
39 .macro NO_SUPPORT name
40 GLOBAL \name
/linux-master/arch/powerpc/include/asm/
H A Dbootx.h26 u32 name; member in struct:bootx_dt_prop
H A Dcode-patching-asm.h9 .macro patch_site label name
12 .global \name
13 \name:
H A Dehv_pic.h17 #define EHV_PIC_INFO(name) EHV_PIC_##name
H A Demulated_ops.h16 const char *name; member in struct:ppc_emulated_entry
61 ppc_warn_emulated_print(ppc_emulated.type.name); \
H A Dkvm_fpu.h34 #define FPD_ONE_IN(name) extern void fpd_ ## name(u64 *fpscr, u32 *cr, \
36 #define FPD_TWO_IN(name) extern void fpd_ ## name(u64 *fpscr, u32 *cr, \
38 #define FPD_THREE_IN(name) extern void fpd_ ## name(u64 *fpscr, u32 *cr, \
H A Dlv1call.h208 #define LV1_CALL(name, in, out, num) \
209 extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \
210 static inline int lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL) \
211 {return _lv1_##name(LV1_##in##_IN_##out##_OUT_ARGS);}
H A Dnvram.h26 const char *name; member in struct:nvram_os_partition
63 extern loff_t nvram_create_partition(const char *name, int sig,
65 extern int nvram_remove_partition(const char *name, int sig,
68 extern loff_t nvram_find_partition(const char *name, int sig, int *out_size);
H A Dperf_event_fsl_emb.h23 const char *name; member in struct:fsl_emb_pmu
H A Dpmac_pfunc.h135 /* The name is the "xxx" in "platform-do-xxx", this is how
140 const char *name; member in struct:pmf_function
144 * with the same name and different flag
189 const char *name,
213 * You can also pass NULL to the name. This will match any function that has
217 extern int pmf_do_functions(struct device_node *np, const char *name,
231 extern int pmf_call_function(struct device_node *target, const char *name,
241 const char *name);
H A Dxor.h18 .name = "altivec",
/linux-master/arch/powerpc/perf/
H A Dhv-common.h20 #define EVENT_DEFINE_RANGE_FORMAT(name, attr_var, bit_start, bit_end) \
21 PMU_FORMAT_ATTR(name, #attr_var ":" #bit_start "-" #bit_end); \
22 EVENT_DEFINE_RANGE(name, attr_var, bit_start, bit_end)
31 #define EVENT_DEFINE_RANGE_FORMAT_LITE(name, attr_var, bit_start, bit_end) \
32 PMU_FORMAT_ATTR(name, #attr_var ":" #bit_start "-" #bit_end);
34 #define EVENT_DEFINE_RANGE(name, attr_var, bit_start, bit_end) \
35 static u64 event_get_##name##_max(void) \
41 static u64 event_get_##name(struct perf_event *event) \
44 event_get_##name##_max(); \
/linux-master/arch/powerpc/platforms/cell/
H A Dspu_syscalls.c56 SYSCALL_DEFINE4(spu_create, const char __user *, name, unsigned int, flags,
70 ret = calls->create_thread(name, flags, mode, neighbor.file);
74 ret = calls->create_thread(name, flags, mode, NULL);
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Dsputrace.h12 TP_PROTO(struct spu_context *ctx, struct spu *spu, const char *name),
13 TP_ARGS(ctx, spu, name),
16 __field(const char *, name)
22 __entry->name = name;
28 __entry->name, __entry->owner_tid, __entry->number)
31 #define spu_context_trace(name, ctx, spu) \
32 trace_spufs_context(ctx, spu, __stringify(name))
33 #define spu_context_nospu_trace(name, ctx) \
34 trace_spufs_context(ctx, NULL, __stringify(name))
[all...]
/linux-master/arch/powerpc/platforms/powernv/
H A Dopal-sysparam.c181 count = of_property_count_strings(sysparam, "param-name");
183 pr_err("SYSPARAM: No string found of property param-name in "
243 if (of_property_read_string_index(sysparam, "param-name", i,
244 &attr[i].kobj_attr.attr.name))
267 attr[i].kobj_attr.attr.name);
/linux-master/arch/powerpc/platforms/ps3/
H A Dexports.c9 #define LV1_CALL(name, in, out, num) \
10 extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \
11 EXPORT_SYMBOL(_lv1_##name);
/linux-master/arch/powerpc/xmon/
H A Dansidecl.h23 DEFUN (name, arglist, args)
35 DEFUN_VOID (name)
39 obsolete -- EXFUN (name, (prototype)) -- obsolete.
50 the name is misleading and the result is ugly. So we just define a
62 the function name out of the mess. EXFUN should be considered
98 #define EXFUN(name, proto) name proto
99 #define DEFUN(name, arglist, args) name(args)
100 #define DEFUN_VOID(name) nam
[all...]
H A Dppc-dis.c170 printf("%-7s ", opcode->name);
172 printf("%s", opcode->name);
/linux-master/arch/s390/appldata/
H A Dappldata.h14 #define APPLDATA_PROC_NAME_LENGTH 16 /* Max. length of /proc name */
35 char name[APPLDATA_PROC_NAME_LENGTH]; /* name of /proc fs node */ member in struct:appldata_ops
/linux-master/arch/s390/kernel/syscalls/
H A Dsyscalltbl19 local nr abi name entry64 entry32 _ignore
27 while read nr abi name entry64 entry32 _ignore; do
106 local nr abi name _ignore
108 while read nr abi name _ignore; do
109 printf "#define __NR_%s %d\n" $name $nr
/linux-master/arch/s390/tools/
H A Dgen_opcode_table.c25 char name[STRING_SIZE_MAX]; member in struct:insn
158 rc = scanf("%s %s %s", insn.opcode, insn.name, insn.format);
164 insn.name_len = strlen(insn.name);
166 insn.upper[i] = toupper((unsigned char)insn.name[i]);
201 return strcmp(((struct insn *)a)->name, ((struct insn *)b)->name);
226 printf("\t[LONG_INSN_%s] = \"%s\", \\\n", insn->upper, insn->name);
240 printf(".name = \"%s\" ", insn->name);
/linux-master/arch/sh/boards/
H A Dboard-apsh4a3a.c24 .name = "loader",
29 .name = "bootenv",
34 .name = "kernel",
39 .name = "data",
60 .name = "physmap-flash",
76 .name = "smsc911x-memory",
82 .name = "smsc911x-irq",
97 .name = "smsc911x",
H A Dboard-apsh4ad0a.c28 .name = "smsc911x-memory",
34 .name = "smsc911x-irq",
49 .name = "smsc911x",

Completed in 240 milliseconds

1234567891011>>