Home
last modified time | relevance | path

Searched refs:_n (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dcdefs_aout.h85 #define __IDSTRING(_n,_s) \ argument
102 #define __KERNEL_RCSID(_n,_s) __IDSTRING(__CONCAT(rcsid,_n),_s) argument
104 #define __KERNEL_RCSID(_n,_s) argument
106 #define __KERNEL_SCCSID(_n,_s) argument
107 #define __KERNEL_COPYRIGHT(_n, _s) __IDSTRING(__CONCAT(copyright,_n),_s) argument
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
Drexpr.h9 struct _n *target;
12 typedef struct _n { struct
13 struct _n *track; argument
/device/google/contexthub/firmware/os/platform/stm32/
Ddma.c100 #define DECLARE_IRQ_HANDLER(_n, _s) \ argument
101 extern void DMA##_n##_Stream##_s##_IRQHandler(void); \
102 void DMA##_n##_Stream##_s##_IRQHandler(void) \
104 dmaIsr(_n - 1, _s); \
Di2c.c751 #define DECLARE_IRQ_HANDLERS(_n) \ argument
752 extern void I2C##_n##_EV_IRQHandler(); \
753 extern void I2C##_n##_ER_IRQHandler(); \
755 extern void I2C##_n##_EV_IRQHandler() \
757 stmI2cIsrEvent(&mStmI2cDevs[_n - 1]); \
760 extern void I2C##_n##_ER_IRQHandler() \
762 stmI2cIsrError(&mStmI2cDevs[_n - 1]); \
Dspi.c532 #define DECLARE_IRQ_HANDLER(_n) \ argument
533 void SPI##_n##_IRQHandler(); \
534 void SPI##_n##_IRQHandler() \
536 stmSpiIsr(&mStmSpiDevs[_n - 1]); \
/device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/
Dasm.h175 #define __KERNEL_RCSID(_n, _s) /* nothing */ argument
177 #define __KERNEL_RCSID(_n, _s) RCSID(_s) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
DcPickle.c477 write_other(Picklerobject *self, const char *s, Py_ssize_t _n) in write_other() argument
482 if (_n > INT_MAX) in write_other()
484 n = (int)_n; in write_other()