Home
last modified time | relevance | path

Searched defs:b (Results 1 – 4 of 4) sorted by relevance

/hal_microchip-3.6.0-3.5.0-3.4.0/mec/common/
Dregaccess.h42 #define MMCR_WR8(a, b) *((volatile uint8_t *)(uintptr_t)(a)) = (uint8_t)(b) argument
50 #define REG8W(a, b) *((volatile uint8_t *)(uintptr_t)(a)) = (uint8_t)(b) argument
54 #define REG8R(a, b) (b) = *(volatile uint8_t *)(uintptr_t)(a) argument
60 #define REG32_BIT_SET(a, b) *(volatile uint32_t *)(a) |= (1ul << (b)) argument
61 #define REG32_BIT_CLR(a, b) *(volatile uint32_t *)(a) &= ~(1ul << (b)) argument
63 #define REG16_BIT_SET(a, b) *(volatile uint16_t *)(a) |= (1ul << (b)) argument
64 #define REG16_BIT_CLR(a, b) *(volatile uint16_t *)(a) &= ~(1ul << (b)) argument
66 #define REG8_BIT_SET(a, b) *(volatile uint8_t *)(a) |= (1ul << (b)) argument
67 #define REG8_BIT_CLR(a, b) *(volatile uint8_t *)(a) &= ~(1ul << (b)) argument
/hal_microchip-3.6.0-3.5.0-3.4.0/mpfs/mpfs_hal/common/
Dbits.h41 #define ROUNDUP(a, b) ((((a)-1)/(b)+1)*(b)) argument
42 #define ROUNDDOWN(a, b) ((a)/(b)*(b)) argument
44 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
45 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
/hal_microchip-3.6.0-3.5.0-3.4.0/mec/mec1501/component/
Dpcr.h353 #define MCHP_PCR_DEV_SLP_EN_CLR(n, b) \ argument
356 #define MCHP_PCR_DEV_SLP_EN_SET(n, b) \ argument
/hal_microchip-3.6.0-3.5.0-3.4.0/mpfs/mpfs_hal/common/nwc/
Dmss_ddr_debug.c112 static void dumpbyte(mss_uart_instance_t * uart, uint8_t b) in dumpbyte()