Searched refs:operator (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-latest/components/esp_common/include/ |
D | esp_attr.h | 146 FORCE_INLINE_ATTR constexpr TYPE operator~ (TYPE a) { return (TYPE)~(INT_TYPE)a; } \ 147 FORCE_INLINE_ATTR constexpr TYPE operator| (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a | (INT_TYPE… 148 FORCE_INLINE_ATTR constexpr TYPE operator& (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a & (INT_TYPE… 149 FORCE_INLINE_ATTR constexpr TYPE operator^ (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a ^ (INT_TYPE… 150 FORCE_INLINE_ATTR constexpr TYPE operator>> (TYPE a, int b) { return (TYPE)((INT_TYPE)a >> b); } \ 151 FORCE_INLINE_ATTR constexpr TYPE operator<< (TYPE a, int b) { return (TYPE)((INT_TYPE)a << b); } \ 152 FORCE_INLINE_ATTR TYPE& operator|=(TYPE& a, TYPE b) { a = a | b; return a; } \ 153 FORCE_INLINE_ATTR TYPE& operator&=(TYPE& a, TYPE b) { a = a & b; return a; } \ 154 FORCE_INLINE_ATTR TYPE& operator^=(TYPE& a, TYPE b) { a = a ^ b; return a; } \ 155 FORCE_INLINE_ATTR TYPE& operator>>=(TYPE& a, int b) { a = a >> b; return a; } \ [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_hf_client_api.h | 256 tBTA_HF_CLIENT_OPERATOR_NAME operator; member
|
D | bta_ag_api.h | 433 tBTA_AG_COPS operator; member
|
/hal_espressif-latest/tools/esptool_py/docs/en/ |
D | versions.rst | 22 …sion, simply define your dependency as ``esptool`` (without any release operator and a version ide…
|
/hal_espressif-latest/tools/esptool_py/espsecure/ |
D | __init__.py | 7 import operator 1447 check_f = _samefile if isinstance(i, str) and isinstance(o, str) else operator.eq
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_client/ |
D | btc_hf_client.c | 995 param.cops.name = p_data->operator.name; in btc_hf_client_cb_handler()
|