/arch/cris/include/arch-v10/arch/ |
D | unistd.h | 10 #define _syscall0(type,name) \ argument 11 type name(void) \ 22 return (type) __a; \ 24 return (type) -1; \ 27 #define _syscall1(type,name,type1,arg1) \ argument 28 type name(type1 arg1) \ 39 return (type) __a; \ 41 return (type) -1; \ 44 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 45 type name(type1 arg1,type2 arg2) \ [all …]
|
/arch/cris/include/arch-v32/arch/ |
D | unistd.h | 10 #define _syscall0(type,name) \ argument 11 type name(void) \ 23 return (type) __a; \ 25 return (type) -1; \ 28 #define _syscall1(type,name,type1,arg1) \ argument 29 type name(type1 arg1) \ 41 return (type) __a; \ 43 return (type) -1; \ 46 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 47 type name(type1 arg1,type2 arg2) \ [all …]
|
/arch/powerpc/math-emu/ |
D | math.c | 234 int type = 0; in do_mathemu() local 241 case LFS: func = lfs; type = D; break; in do_mathemu() 242 case LFSU: func = lfs; type = DU; break; in do_mathemu() 243 case LFD: func = lfd; type = D; break; in do_mathemu() 244 case LFDU: func = lfd; type = DU; break; in do_mathemu() 245 case STFS: func = stfs; type = D; break; in do_mathemu() 246 case STFSU: func = stfs; type = DU; break; in do_mathemu() 247 case STFD: func = stfd; type = D; break; in do_mathemu() 248 case STFDU: func = stfd; type = DU; break; in do_mathemu() 252 case LFSX: func = lfs; type = XE; break; in do_mathemu() [all …]
|
/arch/arm/mach-omap1/ |
D | id.c | 37 u32 type; /* Cpu id bits [31:08], cpu class bits [07:00] */ member 44 { .jtag_id = 0xb574, .die_rev = 0x2, .omap_id = 0x03310315, .type = 0x03100000}, 45 { .jtag_id = 0x355f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300100}, 46 { .jtag_id = 0xb55f, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x07300300}, 47 { .jtag_id = 0xb62c, .die_rev = 0x1, .omap_id = 0x03320500, .type = 0x08500000}, 48 { .jtag_id = 0xb470, .die_rev = 0x0, .omap_id = 0x03310100, .type = 0x15100000}, 49 { .jtag_id = 0xb576, .die_rev = 0x0, .omap_id = 0x03320000, .type = 0x16100000}, 50 { .jtag_id = 0xb576, .die_rev = 0x2, .omap_id = 0x03320100, .type = 0x16110000}, 51 { .jtag_id = 0xb576, .die_rev = 0x3, .omap_id = 0x03320100, .type = 0x16100c00}, 52 { .jtag_id = 0xb576, .die_rev = 0x0, .omap_id = 0x03320200, .type = 0x16100d00}, [all …]
|
/arch/sh/kernel/cpu/sh4/ |
D | probe.c | 91 boot_cpu_data.type = CPU_SH7750; in cpu_probe() 96 boot_cpu_data.type = CPU_SH7750S; in cpu_probe() 101 boot_cpu_data.type = CPU_SH7751; in cpu_probe() 105 boot_cpu_data.type = CPU_SH7770; in cpu_probe() 110 boot_cpu_data.type = CPU_SH7781; in cpu_probe() 112 boot_cpu_data.type = CPU_SH7763; in cpu_probe() 114 boot_cpu_data.type = CPU_SH7780; in cpu_probe() 120 boot_cpu_data.type = CPU_SH7343; in cpu_probe() 124 boot_cpu_data.type = CPU_SH7785; in cpu_probe() 128 boot_cpu_data.type = CPU_SH7786; in cpu_probe() [all …]
|
/arch/m68k/include/asm/ |
D | bootstd.h | 38 #define __bsc_return(type, res) \ argument 46 return (type)(res); \ 49 #define _bsc0(type,name) \ argument 50 type name(void) \ 57 __bsc_return(type,__res); \ 60 #define _bsc1(type,name,atype,a) \ argument 61 type name(atype a) \ 69 __bsc_return(type,__res); \ 72 #define _bsc2(type,name,atype,a,btype,b) \ argument 73 type name(atype a, btype b) \ [all …]
|
/arch/mips/include/asm/ |
D | io.h | 303 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) \ argument 305 static inline void pfx##write##bwlq(type val, \ 308 volatile type *__mem; \ 309 type __val; \ 317 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \ 321 type __tmp; \ 341 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \ 343 volatile type *__mem; \ 344 type __val; \ 348 if (sizeof(type) != sizeof(u64) || sizeof(u64) == sizeof(long)) \ [all …]
|
/arch/arm64/boot/dts/exynos/ |
D | exynos5433-tmu.dtsi | 23 type = "active"; 28 type = "active"; 33 type = "active"; 38 type = "active"; 43 type = "active"; 48 type = "active"; 53 type = "active"; 104 type = "active"; 109 type = "active"; 114 type = "active"; [all …]
|
/arch/x86/events/intel/ |
D | uncore.h | 18 #define UNCORE_PCI_DEV_FULL_DATA(dev, func, type, idx) \ argument 19 ((dev << 24) | (func << 16) | (type << 8) | idx) 20 #define UNCORE_PCI_DEV_DATA(type, idx) ((type << 8) | idx) argument 91 struct intel_uncore_type *type; member 162 return box->pmu->type->box_ctl; in uncore_pci_box_ctl() 167 return box->pmu->type->fixed_ctl; in uncore_pci_fixed_ctl() 172 return box->pmu->type->fixed_ctr; in uncore_pci_fixed_ctr() 179 return idx * 8 + box->pmu->type->event_ctl; in uncore_pci_event_ctl() 181 return idx * 4 + box->pmu->type->event_ctl; in uncore_pci_event_ctl() 187 return idx * 8 + box->pmu->type->perf_ctr; in uncore_pci_perf_ctr() [all …]
|
/arch/mips/fw/arc/ |
D | memory.c | 67 static inline int memtype_classify_arcs(union linux_memtypes type) in memtype_classify_arcs() argument 69 switch (type.arcs) { in memtype_classify_arcs() 87 static inline int memtype_classify_arc(union linux_memtypes type) in memtype_classify_arc() argument 89 switch (type.arc) { in memtype_classify_arc() 107 static int __init prom_memtype_classify(union linux_memtypes type) in prom_memtype_classify() argument 110 return memtype_classify_arcs(type); in prom_memtype_classify() 112 return memtype_classify_arc(type); in prom_memtype_classify() 126 i, p, p->base, p->pages, mtypes(p->type)); in prom_meminit() 135 long type; in prom_meminit() local 139 type = prom_memtype_classify(p->type); in prom_meminit() [all …]
|
/arch/alpha/include/uapi/asm/ |
D | ioctl.h | 40 #define _IOC(dir,type,nr,size) \ argument 43 ((type) << _IOC_TYPESHIFT) | \ 48 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument 49 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 50 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 51 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
/arch/powerpc/include/asm/ |
D | emulated_ops.h | 63 extern void ppc_warn_emulated_print(const char *type); 65 #define __PPC_WARN_EMULATED(type) \ argument 67 atomic_inc(&ppc_emulated.type.val); \ 69 ppc_warn_emulated_print(ppc_emulated.type.name); \ 74 #define __PPC_WARN_EMULATED(type) do { } while (0) argument 78 #define PPC_WARN_EMULATED(type, regs) \ argument 82 __PPC_WARN_EMULATED(type); \ 85 #define PPC_WARN_ALIGNMENT(type, regs) \ argument 89 __PPC_WARN_EMULATED(type); \
|
/arch/arm/mach-imx/ |
D | mach-pcm037_eet.c | 69 .type = EV_KEY, 75 .type = EV_KEY, 81 .type = EV_KEY, 87 .type = EV_KEY, 93 .type = EV_KEY, 99 .type = EV_KEY, 105 .type = EV_KEY, 111 .type = EV_KEY, 117 .type = EV_KEY, 123 .type = EV_KEY, [all …]
|
/arch/sparc/include/uapi/asm/ |
D | ioctl.h | 39 #define _IOC(dir,type,nr,size) \ argument 41 ((type) << _IOC_TYPESHIFT) | \ 45 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument 46 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 47 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 48 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
/arch/s390/hypfs/ |
D | hypfs_diag.c | 47 static inline int info_blk_hdr__size(enum diag204_format type) in info_blk_hdr__size() argument 49 if (type == DIAG204_INFO_SIMPLE) in info_blk_hdr__size() 55 static inline __u8 info_blk_hdr__npar(enum diag204_format type, void *hdr) in info_blk_hdr__npar() argument 57 if (type == DIAG204_INFO_SIMPLE) in info_blk_hdr__npar() 63 static inline __u8 info_blk_hdr__flags(enum diag204_format type, void *hdr) in info_blk_hdr__flags() argument 65 if (type == DIAG204_INFO_SIMPLE) in info_blk_hdr__flags() 71 static inline __u16 info_blk_hdr__pcpus(enum diag204_format type, void *hdr) in info_blk_hdr__pcpus() argument 73 if (type == DIAG204_INFO_SIMPLE) in info_blk_hdr__pcpus() 81 static inline int part_hdr__size(enum diag204_format type) in part_hdr__size() argument 83 if (type == DIAG204_INFO_SIMPLE) in part_hdr__size() [all …]
|
/arch/x86/platform/intel-mid/device_libs/ |
D | platform_pcal9555a.c | 31 char *type = i2c_info->type; in pcal9555a_platform_data() local 37 snprintf(base_pin_name, sizeof(base_pin_name), "%s_base", type); in pcal9555a_platform_data() 38 snprintf(intr_pin_name, sizeof(intr_pin_name), "%s_int", type); in pcal9555a_platform_data() 64 strcpy(type, "pcal9555a"); in pcal9555a_platform_data() 70 .type = SFI_DEV_TYPE_I2C, 77 .type = SFI_DEV_TYPE_I2C, 84 .type = SFI_DEV_TYPE_I2C, 91 .type = SFI_DEV_TYPE_I2C,
|
/arch/mips/lantiq/xway/ |
D | prom.c | 52 i->type = SOC_TYPE_DANUBE; in ltq_soc_detect() 58 i->type = SOC_TYPE_DANUBE; in ltq_soc_detect() 67 i->type = SOC_TYPE_AR9; in ltq_soc_detect() 74 i->type = SOC_TYPE_AR9; in ltq_soc_detect() 84 i->type = SOC_TYPE_AMAZON_SE; in ltq_soc_detect() 92 i->type = SOC_TYPE_VR9; in ltq_soc_detect() 99 i->type = SOC_TYPE_VR9; in ltq_soc_detect() 106 i->type = SOC_TYPE_VR9_2; in ltq_soc_detect() 112 i->type = SOC_TYPE_VRX220; in ltq_soc_detect() 119 i->type = SOC_TYPE_VR9_2; in ltq_soc_detect() [all …]
|
/arch/arm/mach-iop32x/ |
D | n2100.c | 64 .type = MT_DEVICE 208 .type = PCA9532_TYPE_LED, 212 .type = PCA9532_TYPE_LED, 216 .type = PCA9532_TYPE_LED, 218 { .type = PCA9532_TYPE_NONE }, 220 { .type = PCA9532_TYPE_NONE }, 221 { .type = PCA9532_TYPE_NONE }, 222 { .type = PCA9532_TYPE_NONE }, 225 .type = PCA9532_TYPE_LED, 228 { .type = PCA9532_TYPE_NONE }, /* power OFF gpio */ [all …]
|
/arch/m68k/coldfire/ |
D | intc-525x.c | 24 u32 type = irqd_get_trigger_type(d); in intc2_irq_gpio_mask() local 27 if (type & IRQ_TYPE_EDGE_RISING) in intc2_irq_gpio_mask() 29 if (type & IRQ_TYPE_EDGE_FALLING) in intc2_irq_gpio_mask() 37 u32 type = irqd_get_trigger_type(d); in intc2_irq_gpio_unmask() local 40 if (type & IRQ_TYPE_EDGE_RISING) in intc2_irq_gpio_unmask() 42 if (type & IRQ_TYPE_EDGE_FALLING) in intc2_irq_gpio_unmask() 50 u32 type = irqd_get_trigger_type(d); in intc2_irq_gpio_ack() local 53 if (type & IRQ_TYPE_EDGE_RISING) in intc2_irq_gpio_ack() 55 if (type & IRQ_TYPE_EDGE_FALLING) in intc2_irq_gpio_ack()
|
/arch/x86/kernel/cpu/mtrr/ |
D | amd.c | 11 unsigned long *size, mtrr_type *type) in amd_get_mtrr() argument 21 *type = 0; in amd_get_mtrr() 23 *type = MTRR_TYPE_UNCACHABLE; in amd_get_mtrr() 25 *type = MTRR_TYPE_WRCOMB; in amd_get_mtrr() 60 amd_set_mtrr(unsigned int reg, unsigned long base, unsigned long size, mtrr_type type) in amd_set_mtrr() argument 84 | (base << PAGE_SHIFT) | (type + 1); in amd_set_mtrr() 96 amd_validate_add_page(unsigned long base, unsigned long size, unsigned int type) in amd_validate_add_page() argument 106 if (type > MTRR_TYPE_WRCOMB || size < (1 << (17 - PAGE_SHIFT)) in amd_validate_add_page()
|
D | centaur.c | 59 unsigned long *size, mtrr_type * type) in centaur_get_mcr() argument 63 *type = MTRR_TYPE_WRCOMB; /* write-combining */ in centaur_get_mcr() 66 *type = MTRR_TYPE_UNCACHABLE; in centaur_get_mcr() 68 *type = MTRR_TYPE_WRBACK; in centaur_get_mcr() 70 *type = MTRR_TYPE_WRBACK; in centaur_get_mcr() 75 unsigned long size, mtrr_type type) in centaur_set_mcr() argument 88 if (type == MTRR_TYPE_UNCACHABLE) in centaur_set_mcr() 100 centaur_validate_add_page(unsigned long base, unsigned long size, unsigned int type) in centaur_validate_add_page() argument 105 if (type != MTRR_TYPE_WRCOMB && in centaur_validate_add_page() 106 (centaur_mcr_type == 0 || type != MTRR_TYPE_UNCACHABLE)) { in centaur_validate_add_page()
|
/arch/arm/mach-omap2/ |
D | io.c | 76 .type = MT_DEVICE 82 .type = MT_DEVICE 92 .type = MT_DEVICE 98 .type = MT_DEVICE 104 .type = MT_DEVICE 116 .type = MT_DEVICE 122 .type = MT_DEVICE 128 .type = MT_DEVICE 134 .type = MT_DEVICE 146 .type = MT_DEVICE [all …]
|
/arch/x86/kernel/ |
D | dumpstack_64.c | 33 const char *stack_type_name(enum stack_type type) in stack_type_name() argument 37 if (type == STACK_TYPE_IRQ) in stack_type_name() 40 if (type == STACK_TYPE_ENTRY) { in stack_type_name() 49 if (type >= STACK_TYPE_EXCEPTION && type <= STACK_TYPE_EXCEPTION_LAST) in stack_type_name() 50 return exception_stack_names[type - STACK_TYPE_EXCEPTION]; in stack_type_name() 71 info->type = STACK_TYPE_EXCEPTION + k; in in_exception_stack() 94 info->type = STACK_TYPE_IRQ; in in_irq_stack() 139 if (*visit_mask & (1UL << info->type)) { in get_stack_info() 140 printk_deferred_once(KERN_WARNING "WARNING: stack recursion on stack type %d\n", info->type); in get_stack_info() 143 *visit_mask |= 1UL << info->type; in get_stack_info() [all …]
|
/arch/powerpc/lib/ |
D | sstep.c | 93 op->type |= DECCTR; in branch_taken() 473 nb = GETSIZE(op->type); in do_fp_load() 487 if (op->type & FPCONV) in do_fp_load() 489 else if (op->type & SIGNEXT) in do_fp_load() 523 nb = GETSIZE(op->type); in do_fp_store() 533 if (op->type & FPCONV) in do_fp_store() 667 size = GETSIZE(op->type); in emulate_vsx_load() 689 if (op->type & SIGNEXT) { in emulate_vsx_load() 752 size = GETSIZE(op->type); in emulate_vsx_store() 825 int size = GETSIZE(op->type); in do_vsx_load() [all …]
|
/arch/arm/kernel/ |
D | jump_label.c | 10 enum jump_label_type type, in __arch_jump_label_transform() argument 16 if (type == JUMP_LABEL_JMP) in __arch_jump_label_transform() 28 enum jump_label_type type) in arch_jump_label_transform() argument 30 __arch_jump_label_transform(entry, type, false); in arch_jump_label_transform() 34 enum jump_label_type type) in arch_jump_label_transform_static() argument 36 __arch_jump_label_transform(entry, type, true); in arch_jump_label_transform_static()
|