Home
last modified time | relevance | path

Searched defs:_b (Results 1 – 11 of 11) sorted by relevance

/device/soc/esp/esp32/components/soc/esp32/include/soc/
Ddport_access.h117 #define DPORT_REG_GET_BIT(_r, _b) (DPORT_REG_READ(_r) & (_b)) argument
120 #define DPORT_REG_SET_BIT(_r, _b) DPORT_REG_WRITE((_r), (DPORT_REG_READ(_r)|(_b))) argument
123 #define DPORT_REG_CLR_BIT(_r, _b) DPORT_REG_WRITE((_r), (DPORT_REG_READ(_r) & (~(_b)))) argument
126 #define DPORT_REG_SET_BITS(_r, _b, _m) DPORT_REG_WRITE((_r), ((DPORT_REG_READ(_r) & (~(_m))) | ((_b… argument
155 #define _DPORT_REG_SET_BIT(_r, _b) _DPORT_REG_WRITE((_r), (_DPORT_REG_READ(_r)|(_b))) argument
156 #define _DPORT_REG_CLR_BIT(_r, _b) _DPORT_REG_WRITE((_r), (_DPORT_REG_READ(_r) & (~(_b)))) argument
Dsoc.h118 #define REG_GET_BIT(_r, _b) ({ … argument
124 #define REG_SET_BIT(_r, _b) ({ … argument
130 #define REG_CLR_BIT(_r, _b) ({ … argument
136 #define REG_SET_BITS(_r, _b, _m) ({ … argument
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/include/soc/bk7235/
Dsoc.h62 #define REG_GET_BIT(_r, _b) ({\ argument
66 #define REG_SET_BIT(_r, _b) ({\ argument
70 #define REG_CLR_BIT(_r, _b) ({\ argument
74 #define REG_SET_BITS(_r, _b, _m) ({\ argument
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
Dhmac_wapi_sms4.h39 #define l1(_b) ((_b) ^ rotl32(_b, 2) ^ rotl32(_b, 10) ^ rotl32(_b, 18) ^ rotl32(_b, 24)) argument
40 #define l2(_b) ((_b) ^ rotl32(_b, 13) ^ rotl32(_b, 23)) argument
/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/platform/drivers/usb/usb_host/inc/
Duh_utils.h16 #define min(_a,_b) ((_a) < (_b) ? (_a) : (_b)) argument
/device/board/unionman/unionpi_tiger/kernel/drivers/rtl88x2cs/include/
Drtw_io.h512 #define PlatformEFIOWrite1Byte(_a, _b, _c) \ argument
514 #define PlatformEFIOWrite2Byte(_a, _b, _c) \ argument
516 #define PlatformEFIOWrite4Byte(_a, _b, _c) \ argument
519 #define PlatformEFIORead1Byte(_a, _b) \ argument
521 #define PlatformEFIORead2Byte(_a, _b) \ argument
523 #define PlatformEFIORead4Byte(_a, _b) \ argument
/device/board/unionman/unionpi_tiger/kernel/drivers/media/drivers/frame_sink/encoder/h265/
Dvmm.h24 #define MAKE_KEY(_a, _b) (((vmem_key_t)_a) << 32 | _b) argument
36 #define MAX(_a, _b) (_a >= _b ? _a : _b) argument
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/include/
Dhi_config.h276 #define hi_sys_inf_ver(_v, _r, _c, _b, _spc) ((((_v) & 0x07) << 29) | (((_r) & 0x07) << 26) | (((_c… argument
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/
Doal_util.h120 #define oal_any_null_ptr2(_a, _b) (oal_unlikely((HI_NULL == (_a)) || (HI_NULL == (_b)))) argument
121 #define oal_any_null_ptr3(_a, _b, _c) (oal_unlikely((HI_NULL == (_a)) || (HI_NULL == (_b)) || (HI… argument
/device/soc/rockchip/common/vendor/drivers/net/usb/
Dmeig_cdc_driver.c475 #define max(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) argument
479 #define min(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) argument
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/modules/calib3d/src/
Dcalibration.cpp1193 Ptr<CvMat> matA, _b, _allH; in cvInitIntrinsicParams2D() local
1753 static int dbCmp( const void* _a, const void* _b ) in dbCmp()