| /kernel/linux/linux-5.10/include/acpi/ |
| D | acpixf.h | 60 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \ argument 61 prototype; 65 #define ACPI_EXTERNAL_RETURN_OK(prototype) \ argument 66 prototype; 70 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \ argument 71 prototype; 75 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \ argument 76 prototype; 80 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \ argument 81 prototype; [all …]
|
| /kernel/linux/linux-6.6/include/acpi/ |
| D | acpixf.h | 60 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \ argument 61 prototype; 65 #define ACPI_EXTERNAL_RETURN_OK(prototype) \ argument 66 prototype; 70 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \ argument 71 prototype; 75 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \ argument 76 prototype; 80 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \ argument 81 prototype; [all …]
|
| /kernel/linux/linux-5.10/drivers/misc/lkdtm/ |
| D | cfi.c | 23 * This tries to call an indirect function with a mismatched prototype. 28 * Matches lkdtm_increment_void()'s prototype, but not in lkdtm_CFI_FORWARD_PROTO() 29 * lkdtm_increment_int()'s prototype. in lkdtm_CFI_FORWARD_PROTO() 33 pr_info("Calling matched prototype ...\n"); in lkdtm_CFI_FORWARD_PROTO() 37 pr_info("Calling mismatched prototype ...\n"); in lkdtm_CFI_FORWARD_PROTO() 41 pr_info("Fail: survived mismatched prototype function call!\n"); in lkdtm_CFI_FORWARD_PROTO()
|
| /kernel/linux/linux-6.6/include/acpi/platform/ |
| D | aclinux.h | 92 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \ argument 93 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);} 94 #define ACPI_EXTERNAL_RETURN_OK(prototype) \ argument 95 static ACPI_INLINE prototype {return(AE_OK);} 96 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \ argument 97 static ACPI_INLINE prototype {return;} 98 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \ argument 99 static ACPI_INLINE prototype {return(0);} 100 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \ argument 101 static ACPI_INLINE prototype {return(NULL);}
|
| /kernel/linux/linux-5.10/include/acpi/platform/ |
| D | aclinux.h | 92 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \ argument 93 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);} 94 #define ACPI_EXTERNAL_RETURN_OK(prototype) \ argument 95 static ACPI_INLINE prototype {return(AE_OK);} 96 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \ argument 97 static ACPI_INLINE prototype {return;} 98 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \ argument 99 static ACPI_INLINE prototype {return(0);} 100 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \ argument 101 static ACPI_INLINE prototype {return(NULL);}
|
| /kernel/linux/linux-6.6/scripts/ |
| D | kernel-doc | 179 my ($newsection, $newcontents, $prototype, $brcount, %source_map); 219 STATE_PROTO => 5, # scanning prototype 1102 my ($prototype, $file) = @_; 1134 …emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $dec… 1347 …emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $decl… 1415 …emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef… 1446 …emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef… 1683 # takes a function prototype and the name of the current file being 1687 my $prototype = shift; 1693 $prototype =~ s/^static +//; [all …]
|
| /kernel/linux/linux-5.10/scripts/ |
| D | kernel-doc | 326 my ($newsection, $newcontents, $prototype, $brcount, %source_map); 361 STATE_PROTO => 5, # scanning prototype 1188 my ($prototype, $file) = @_; 1722 # takes a function prototype and the name of the current file being 1726 my $prototype = shift; 1732 $prototype =~ s/^static +//; 1733 $prototype =~ s/^extern +//; 1734 $prototype =~ s/^asmlinkage +//; 1735 $prototype =~ s/^inline +//; 1736 $prototype =~ s/^__inline__ +//; [all …]
|
| /kernel/linux/linux-6.6/arch/powerpc/xmon/ |
| D | ansidecl.h | 30 ARGS list the arguments with their types. It becomes a prototype in 39 obsolete -- EXFUN (name, (prototype)) -- obsolete. 43 In ANSI C it is `NAME PROTOTYPE' (so PROTOTYPE should be enclosed in 45 For a function that takes no arguments, PROTOTYPE should be `(void)'. 49 We could use the EXFUN macro to handle prototype declarations, but
|
| /kernel/linux/linux-5.10/arch/powerpc/xmon/ |
| D | ansidecl.h | 30 ARGS list the arguments with their types. It becomes a prototype in 39 obsolete -- EXFUN (name, (prototype)) -- obsolete. 43 In ANSI C it is `NAME PROTOTYPE' (so PROTOTYPE should be enclosed in 45 For a function that takes no arguments, PROTOTYPE should be `(void)'. 49 We could use the EXFUN macro to handle prototype declarations, but
|
| /kernel/linux/linux-6.6/arch/powerpc/kernel/vdso/ |
| D | gettimeofday.S | 66 * Exact prototype of gettimeofday 76 * Exact prototype of clock_gettime() 86 * Exact prototype of clock_gettime64() 98 * Exact prototype of clock_getres() 109 * Exact prototype of time()
|
| /kernel/linux/linux-6.6/drivers/misc/lkdtm/ |
| D | cfi.c | 31 * This tries to call an indirect function with a mismatched prototype. 36 * Matches lkdtm_increment_void()'s prototype, but not in lkdtm_CFI_FORWARD_PROTO() 37 * lkdtm_increment_int()'s prototype. in lkdtm_CFI_FORWARD_PROTO() 39 pr_info("Calling matched prototype ...\n"); in lkdtm_CFI_FORWARD_PROTO() 42 pr_info("Calling mismatched prototype ...\n"); in lkdtm_CFI_FORWARD_PROTO() 45 pr_err("FAIL: survived mismatched prototype function call!\n"); in lkdtm_CFI_FORWARD_PROTO()
|
| /kernel/linux/linux-6.6/drivers/scsi/arm/ |
| D | powertec.c | 68 /* Prototype: void powertecscsi_irqenable(ec, irqnr) 80 /* Prototype: void powertecscsi_irqdisable(ec, irqnr) 97 /* Prototype: void powertecscsi_terminator_ctl(host, on_off) 111 /* Prototype: void powertecscsi_intr(irq, *dev_id, *regs) 123 /* Prototype: fasdmatype_t powertecscsi_dma_setup(host, SCpnt, direction, min_type) 169 /* Prototype: int powertecscsi_dma_stop(host, SCpnt) 182 /* Prototype: const char *powertecscsi_info(struct Scsi_Host * host) 199 /* Prototype: int powertecscsi_set_proc_info(struct Scsi_Host *host, char *buffer, int length) 230 /* Prototype: int powertecscsi_proc_info(char *buffer, char **start, off_t offset,
|
| D | cumana_2.c | 88 /* Prototype: void cumanascsi_2_irqenable(ec, irqnr) 100 /* Prototype: void cumanascsi_2_irqdisable(ec, irqnr) 117 /* Prototype: void cumanascsi_2_terminator_ctl(host, on_off) 136 /* Prototype: void cumanascsi_2_intr(irq, *dev_id, *regs) 149 /* Prototype: fasdmatype_t cumanascsi_2_dma_setup(host, SCpnt, direction, min_type) 203 * Prototype: void cumanascsi_2_dma_pseudo(host, SCpnt, direction, transfer) 279 /* Prototype: int cumanascsi_2_dma_stop(host, SCpnt) 294 /* Prototype: const char *cumanascsi_2_info(struct Scsi_Host * host) 311 /* Prototype: int cumanascsi_2_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
|
| D | eesox.c | 81 /* Prototype: void eesoxscsi_irqenable(ec, irqnr) 96 /* Prototype: void eesoxscsi_irqdisable(ec, irqnr) 116 /* Prototype: void eesoxscsi_terminator_ctl(*host, on_off) 137 /* Prototype: void eesoxscsi_intr(irq, *dev_id, *regs) 150 /* Prototype: fasdmatype_t eesoxscsi_dma_setup(host, SCpnt, direction, min_type) 366 /* Prototype: int eesoxscsi_dma_stop(host, SCpnt) 379 /* Prototype: const char *eesoxscsi_info(struct Scsi_Host * host) 396 /* Prototype: int eesoxscsi_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
|
| /kernel/linux/linux-5.10/drivers/scsi/arm/ |
| D | powertec.c | 64 /* Prototype: void powertecscsi_irqenable(ec, irqnr) 76 /* Prototype: void powertecscsi_irqdisable(ec, irqnr) 93 /* Prototype: void powertecscsi_terminator_ctl(host, on_off) 107 /* Prototype: void powertecscsi_intr(irq, *dev_id, *regs) 119 /* Prototype: fasdmatype_t powertecscsi_dma_setup(host, SCpnt, direction, min_type) 165 /* Prototype: int powertecscsi_dma_stop(host, SCpnt) 178 /* Prototype: const char *powertecscsi_info(struct Scsi_Host * host) 195 /* Prototype: int powertecscsi_set_proc_info(struct Scsi_Host *host, char *buffer, int length) 226 /* Prototype: int powertecscsi_proc_info(char *buffer, char **start, off_t offset,
|
| D | cumana_2.c | 84 /* Prototype: void cumanascsi_2_irqenable(ec, irqnr) 96 /* Prototype: void cumanascsi_2_irqdisable(ec, irqnr) 113 /* Prototype: void cumanascsi_2_terminator_ctl(host, on_off) 132 /* Prototype: void cumanascsi_2_intr(irq, *dev_id, *regs) 145 /* Prototype: fasdmatype_t cumanascsi_2_dma_setup(host, SCpnt, direction, min_type) 199 * Prototype: void cumanascsi_2_dma_pseudo(host, SCpnt, direction, transfer) 275 /* Prototype: int cumanascsi_2_dma_stop(host, SCpnt) 290 /* Prototype: const char *cumanascsi_2_info(struct Scsi_Host * host) 307 /* Prototype: int cumanascsi_2_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
|
| D | eesox.c | 77 /* Prototype: void eesoxscsi_irqenable(ec, irqnr) 92 /* Prototype: void eesoxscsi_irqdisable(ec, irqnr) 112 /* Prototype: void eesoxscsi_terminator_ctl(*host, on_off) 133 /* Prototype: void eesoxscsi_intr(irq, *dev_id, *regs) 146 /* Prototype: fasdmatype_t eesoxscsi_dma_setup(host, SCpnt, direction, min_type) 362 /* Prototype: int eesoxscsi_dma_stop(host, SCpnt) 375 /* Prototype: const char *eesoxscsi_info(struct Scsi_Host * host) 392 /* Prototype: int eesoxscsi_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
|
| /kernel/linux/linux-5.10/tools/perf/scripts/perl/Perf-Trace-Util/ |
| D | Context.c | 30 XS(XS_Perf__Trace__Context_common_pc); /* prototype to pass -Wmissing-prototypes */ 53 XS(XS_Perf__Trace__Context_common_flags); /* prototype to pass -Wmissing-prototypes */ 76 XS(XS_Perf__Trace__Context_common_lock_depth); /* prototype to pass -Wmissing-prototypes */ 101 XS(boot_Perf__Trace__Context); /* prototype to pass -Wmissing-prototypes */
|
| /kernel/linux/linux-6.6/tools/perf/scripts/perl/Perf-Trace-Util/ |
| D | Context.c | 30 XS(XS_Perf__Trace__Context_common_pc); /* prototype to pass -Wmissing-prototypes */ 53 XS(XS_Perf__Trace__Context_common_flags); /* prototype to pass -Wmissing-prototypes */ 76 XS(XS_Perf__Trace__Context_common_lock_depth); /* prototype to pass -Wmissing-prototypes */ 101 XS(boot_Perf__Trace__Context); /* prototype to pass -Wmissing-prototypes */
|
| /kernel/linux/linux-6.6/arch/mips/boot/dts/ingenic/ |
| D | gcw0_proto.dts | 7 model = "GCW Zero Prototype"; 11 /* Prototype has only 256 MiB of RAM */
|
| /kernel/linux/linux-5.10/arch/mips/boot/dts/ingenic/ |
| D | gcw0_proto.dts | 7 model = "GCW Zero Prototype"; 11 /* Prototype has only 256 MiB of RAM */
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
| D | Kconfig.unstable | 3 bool "Enable unstable API for early prototype development" 12 Enable prototype uAPI under general discussion before they are
|
| /kernel/linux/linux-5.10/arch/arm/lib/ |
| D | findbit.S | 19 * Prototype: int find_first_zero_bit(void *addr, unsigned int maxbit); 40 * Prototype: int find_next_zero_bit(void *addr, unsigned int maxbit, int offset) 60 * Prototype: int find_first_bit(const unsigned long *addr, unsigned int maxbit); 81 * Prototype: int find_next_zero_bit(void *addr, unsigned int maxbit, int offset)
|
| /kernel/linux/linux-5.10/Documentation/arm/ |
| D | kernel_user_helpers.rst | 81 Reference prototype:: 121 Reference prototype:: 176 Reference prototype:: 211 Reference prototype::
|
| /kernel/linux/linux-6.6/Documentation/arch/arm/ |
| D | kernel_user_helpers.rst | 81 Reference prototype:: 121 Reference prototype:: 176 Reference prototype:: 211 Reference prototype::
|