Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/esp_common/include/
Desp_attr.h146 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/
Dbta_hf_client_api.h256 tBTA_HF_CLIENT_OPERATOR_NAME operator; member
Dbta_ag_api.h433 tBTA_AG_COPS operator; member
/hal_espressif-latest/tools/esptool_py/docs/en/
Dversions.rst22 …sion, simply define your dependency as ``esptool`` (without any release operator and a version ide…
/hal_espressif-latest/tools/esptool_py/espsecure/
D__init__.py7 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/
Dbtc_hf_client.c995 param.cops.name = p_data->operator.name; in btc_hf_client_cb_handler()