Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 25) sorted by relevance

/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_util.h50 #define IS_ARRAY(array) \ argument
52 !__builtin_types_compatible_p(__typeof__(array), \
53 __typeof__(&(array)[0])))
60 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0])) argument
67 #define PART_OF_ARRAY(array, ptr) \ argument
68 ((ptr) && ((ptr) >= &array[0] && (ptr) < &array[ARRAY_SIZE(array)]))
/hal_espressif-3.7.0/components/esp_hw_support/test_apps/mspi/main/
Dtest_mspi.c12 static void sorted_array_insert(uint32_t *array, uint32_t *size, uint32_t item) in sorted_array_insert() argument
16 if (array[pos - 1] <= item) { in sorted_array_insert()
19 array[pos] = array[pos - 1]; in sorted_array_insert()
21 array[pos] = item; in sorted_array_insert()
/hal_espressif-3.7.0/components/bt/porting/nimble/include/os/
Dutil.h42 #define ARRAY_SIZE(array) \ argument
43 (sizeof(array) / sizeof((array)[0]))
/hal_espressif-3.7.0/components/newlib/test_apps/newlib/main/
Dtest_atomic.c37 static void sorted_array_insert(uint32_t* array, int* size, uint32_t item) in sorted_array_insert() argument
41 if (array[pos-1] < item) break; in sorted_array_insert()
42 array[pos] = array[pos-1]; in sorted_array_insert()
44 array[pos]=item; in sorted_array_insert()
/hal_espressif-3.7.0/components/esp_system/port/arch/riscv/
Dpanic_arch.c29 #define DIM(array) (sizeof(array)/sizeof(*array)) argument
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/sdp/
Dbta_sdp_act.c127 record->mns.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_mns_sdp_record()
173 record->mas.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_mas_sdp_record()
213 record->pse.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_pse_sdp_record()
243 record->pce.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_pce_sdp_record()
267 record->ops.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_ops_sdp_record()
340 record->sap.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_sap_sdp_record()
367 record->pse.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_raw_sdp_record()
/hal_espressif-3.7.0/components/bt/porting/npl/freertos/include/nimble/
Dnimble_npl_os.h27 #define ARRAY_SIZE(array) \ argument
28 (sizeof(array) / sizeof((array)[0]))
/hal_espressif-3.7.0/zephyr/scripts/pinctrl/
DREADME.md38array composed of __integers__ and/or __2-sized arrays of integers__. Integer elements represent a…
45 …ase, enclosing in `[]` is still required, remember, the script expects an array. Failing to do so,…
/hal_espressif-3.7.0/tools/
Desp_bin2c_array.py32 out = bin2c_array(data, args.array)
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/a2dp/
Da2d_api.c82 a2d_svc.p_service_name = (char *) p_attr->attr_value.v.array; in a2d_sdp_cback()
89 a2d_svc.p_provider_name = (char *) p_attr->attr_value.v.array; in a2d_sdp_cback()
/hal_espressif-3.7.0/components/esp_system/
Deh_frame_parser.c31 #define DIM(array) (sizeof(array)/sizeof(*array)) argument
/hal_espressif-3.7.0/components/esp_hw_support/
Dmspi_timing_tuning.c147 static void find_max_consecutive_success_points(uint8_t *array, uint32_t size, uint32_t *out_length… in find_max_consecutive_success_points() argument
155 if (array[i]) { in find_max_consecutive_success_points()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/sdp/
Dsdp_api.c357 … p_uuid->uu.uuid128[i] = p_sattr->attr_value.v.array[LEN_UUID_128 - i - 1]; in SDP_FindServiceUUIDInRec()
434 … p_uuid->uu.uuid128[i] = p_sattr->attr_value.v.array[LEN_UUID_128 - i - 1]; in SDP_FindServiceUUIDInRec_128bit()
447 p_uuid->uu.uuid128[i] = p_attr->attr_value.v.array[LEN_UUID_128 - i - 1]; in SDP_FindServiceUUIDInRec_128bit()
961 memcpy(dst, (char *)p_attr->attr_value.v.array, len); in SDP_AttrStringCopy()
Dsdp_discovery.c891 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len); in add_attr()
931 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len); in add_attr()
970 BE_STREAM_TO_ARRAY (p, p_attr->attr_value.v.array, (INT32)attr_len); in add_attr()
Dsdp_utils.c784 else if (!memcmp (p_btuuid->uu.uuid128, (void *) p_attr->attr_value.v.array, MAX_UUID_SIZE)) { in sdpu_compare_uuid_with_attr()
/hal_espressif-3.7.0/tools/esptool_py/docs/en/espefuse/
Dburn-block-data-cmd.rst45 …Fuse block in normal byte order (treating the eFuse block as if it was an array of bytes). It can …
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/hid/
Dhidh_api.c89 memcpy( str, (char *) p_attr->attr_value.v.array, name_len ); in hidh_get_str_attr()
92 memcpy( str, (char *) p_attr->attr_value.v.array, max_len - 1 ); in hidh_get_str_attr()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_models/server/
Dgeneric_server.c2120 static int search_prop_id_index(const uint16_t *array, uint8_t array_idx, uint16_t id) in search_prop_id_index() argument
2127 start = array; in search_prop_id_index()
2131 if (*array >= id) { in search_prop_id_index()
2132 return array - start; in search_prop_id_index()
2139 temp = array[index]; in search_prop_id_index()
2142 return array + index - start; in search_prop_id_index()
2144 return search_prop_id_index(array, index, id); in search_prop_id_index()
2146 return search_prop_id_index(array + index + 1, array_idx - 1 - index, id); in search_prop_id_index()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/
Dsdp_api.h99 UINT8 array[4]; /* Variable length field */ member
/hal_espressif-3.7.0/components/esp_system/ld/esp32c2/
Dsections.ld.in179 …* RISC-V gcc is configured with --enable-initfini-array so it emits an .init_array section instead.
/hal_espressif-3.7.0/components/esp_system/ld/esp32h2/
Dsections.ld.in343 …* RISC-V gcc is configured with --enable-initfini-array so it emits an .init_array section instead.
/hal_espressif-3.7.0/components/esp_system/ld/esp32c3/
Dsections.ld.in310 …* RISC-V gcc is configured with --enable-initfini-array so it emits an .init_array section instead.
/hal_espressif-3.7.0/components/esp_system/ld/esp32c6/
Dsections.ld.in345 …* RISC-V gcc is configured with --enable-initfini-array so it emits an .init_array section instead.
/hal_espressif-3.7.0/components/bt/porting/ext/tinycrypt/documentation/
Dtinycrypt.rst152 TinyCrypt requires the personalization byte array and automatically creates
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/jv/
Dbta_jv_act.c975 dcomp.service_name[dcomp.scn_num] = (char *)p_attr->attr_value.v.array; in bta_jv_start_discovery_cback()