Lines Matching defs:a
43 * It is a workaround for a known bug in GCC
57 #define RCAR_GET_FLASH_ADR(a, b) ((uint32_t)((0x40000U * (a)) + (b)))
58 #define RCAR_ATTR_SET_CALCADDR(a) ((a) & 0xF)
59 #define RCAR_ATTR_SET_ISNOLOAD(a) (((a) & 0x1) << 16U)
60 #define RCAR_ATTR_SET_CERTOFF(a) (((a) & 0xF) << 8U)
61 #define RCAR_ATTR_SET_ALL(a, b, c) ((uint32_t)(RCAR_ATTR_SET_CALCADDR(a) |\
65 #define RCAR_ATTR_GET_CALCADDR(a) ((a) & 0xFU)
66 #define RCAR_ATTR_GET_ISNOLOAD(a) (((a) >> 16) & 0x1U)
67 #define RCAR_ATTR_GET_CERTOFF(a) ((uint32_t)(((a) >> 8) & 0xFU))
390 /* Obtain a reference to the image by querying the platform layer */
489 * Only one file open at a time. We need to track state (ie, file
493 * than one open file at a time.
496 WARN("%s: Only one open file at a time.\n", __func__);