| /modules/hal_nordic/nrfx/ |
| A D | nrfx_glue.h | 166 #define NRFX_ATOMIC_FETCH_STORE(p_data, value) atomic_set(p_data, value) argument 176 #define NRFX_ATOMIC_FETCH_OR(p_data, value) atomic_or(p_data, value) argument 187 #define NRFX_ATOMIC_FETCH_AND(p_data, value) atomic_and(p_data, value) argument 198 #define NRFX_ATOMIC_FETCH_XOR(p_data, value) atomic_xor(p_data, value) argument 209 #define NRFX_ATOMIC_FETCH_ADD(p_data, value) atomic_add(p_data, value) argument 220 #define NRFX_ATOMIC_FETCH_SUB(p_data, value) atomic_sub(p_data, value) argument 245 #define NRFX_CLZ(value) __builtin_clz(value) argument 255 #define NRFX_CTZ(value) __builtin_ctz(value) argument
|
| /modules/hal_nordic/nrf_802154/sl_opensource/platform/ |
| A D | nrf_802154_temperature_zephyr.c | 29 static int8_t value = DEFAULT_TEMPERATURE; variable 47 if (!err && (value != val.val1)) { in work_handler() 48 value = val.val1; in work_handler() 84 return value; in nrf_802154_temperature_get()
|
| /modules/canopennode/ |
| A D | canopen_storage.c | 32 uint32_t value; in canopen_odf_1010() local 35 value = CO_getUint32(odf_arg->data); in canopen_odf_1010() 48 if (value != STORE_PARAM_MAGIC) { in canopen_odf_1010() 70 uint32_t value; in canopen_odf_1011() local 73 value = CO_getUint32(odf_arg->data); in canopen_odf_1011() 86 if (value != RESTORE_PARAM_MAGIC) { in canopen_odf_1011()
|
| A D | canopennode.h | 119 typedef void (*canopen_led_callback_t)(bool value, void *arg);
|
| /modules/lvgl/input/ |
| A D | lvgl_pointer_input.c | 44 data->point_y = evt->value; in lvgl_pointer_process_event() 46 data->point_x = evt->value; in lvgl_pointer_process_event() 51 data->point_x = evt->value; in lvgl_pointer_process_event() 53 data->point_y = evt->value; in lvgl_pointer_process_event() 58 evt->value ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED; in lvgl_pointer_process_event()
|
| A D | lvgl_encoder_input.c | 29 data->pending_event.enc_diff = evt->value; in lvgl_encoder_process_event() 32 evt->value ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED; in lvgl_encoder_process_event()
|
| A D | lvgl_keypad_input.c | 43 data->pending_event.state = evt->value ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED; in lvgl_keypad_process_event()
|
| A D | lvgl_button_input.c | 42 data->pending_event.state = evt->value ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED; in lvgl_button_process_event()
|
| /modules/openthread/platform/ |
| A D | diag.c | 407 long value; in processTransmit() local 447 error = parse_long(aArgs[1], &value); in processTransmit() 452 if (value <= 0) { in processTransmit() 455 sTxPeriod = (uint32_t)(value); in processTransmit() 465 error = parse_long(aArgs[1], &value); in processTransmit() 470 if ((value <= 0) && (value != -1)) { in processTransmit() 474 sTxRequestedCount = (uint32_t)(value); in processTransmit()
|
| A D | settings.c | 143 uint8_t *value; member 178 if ((ctx->value == NULL) || (ctx->length == NULL)) { in ot_setting_read_cb() 186 ret = read_cb(cb_arg, ctx->value, len); in ot_setting_read_cb() 226 .value = aValue, in otPlatSettingsGet()
|
| A D | ble.c | 73 static void on_cccd_changed(const struct bt_gatt_attr *attr, uint16_t value); 211 void on_cccd_changed(const struct bt_gatt_attr *attr, uint16_t value) in on_cccd_changed() argument 218 switch (value) { in on_cccd_changed()
|
| /modules/nrf_wifi/bus/ |
| A D | spsc_qm.c | 23 bool spsc32_push(spsc_queue_t *queue, uint32_t value) in spsc32_push() argument 33 memcpy(pbuf, &value, len); in spsc32_push()
|
| A D | spsc_qm.h | 43 bool spsc32_push(spsc_queue_t *pb, uint32_t value);
|
| /modules/hal_afbr/ |
| A D | platform_s2pi.c | 203 int value; in S2PI_ReadIrqPin() local 205 value = gpio_pin_get_dt(irq); in S2PI_ReadIrqPin() 206 CHECKIF(value < 0) { in S2PI_ReadIrqPin() 207 LOG_ERR("Error reading IRQ pin: %d", value); in S2PI_ReadIrqPin() 211 return !value; in S2PI_ReadIrqPin() 298 status_t S2PI_WriteGpioPin(s2pi_slave_t slave, s2pi_pin_t pin, uint32_t value) in S2PI_WriteGpioPin() argument 335 err = gpio_pin_set_raw(gpio_pin->port, gpio_pin->pin, value); in S2PI_WriteGpioPin() 347 status_t S2PI_ReadGpioPin(s2pi_slave_t slave, s2pi_pin_t pin, uint32_t *value) in S2PI_ReadGpioPin() argument 386 *value = (uint32_t)pin_value; in S2PI_ReadGpioPin()
|
| /modules/nanopb/ |
| A D | Kconfig | 26 Default and minimum value is 64. 32 information is the true/false return value.
|
| /modules/hal_infineon/abstraction-rtos/source/COMPONENT_ZEPHYR/ |
| A D | cyabs_rtos_zephyr.c | 52 cy_rslt_t value; in error_converter() local 56 value = CY_RSLT_SUCCESS; in error_converter() 60 value = CY_RTOS_TIMEOUT; in error_converter() 64 value = CY_RTOS_BAD_PARAM; in error_converter() 68 value = CY_RTOS_NO_MEMORY; in error_converter() 72 value = CY_RTOS_GENERAL_ERROR; in error_converter() 79 return value; in error_converter()
|
| /modules/trusted-firmware-m/nordic/ns/ |
| A D | CMakeLists.txt | 33 # Get the value of HAL_NORDIC_PATH
|
| /modules/mbedtls/ |
| A D | Kconfig | 72 maximum operability and for general-purpose usage, that value must 73 be used. For specific usages, that value can be largely decreased. 77 mbedTLS uses this value separate for input and output buffers, so 78 twice this value will be allocated (on mbedTLS own heap, so the 79 value of MBEDTLS_HEAP_SIZE should accommodate that). 201 Default value for the heap size is not set as it depends on the
|
| /modules/hal_nordic/nrfs/dvfs/ |
| A D | Kconfig | 35 This value depends on the secdom core performance and shouldn't be touched by the user.
|
| /modules/hal_nordic/ |
| A D | Kconfig | 170 If energy detected in a given channel is above the value then the 189 If this value is modified, its remote counterpart must be set to the exact same value. 218 … option is modified on a multicore SoC, its remote counterpart must be set to the exact same value.
|
| /modules/thrift/src/thrift/protocol/ |
| A D | TBinaryProtocol.h | 118 inline uint32_t writeBool(const bool value); 163 inline uint32_t readBool(bool &value);
|
| /modules/zcbor/ |
| A D | Kconfig | 48 This can be manually used if no other value is readily available, but
|
| /modules/hal_gigadevice/ |
| A D | Kconfig | 30 Define value of high speed crystal oscillator (HXTAL) in Hz 31 This value sets the frequency of the oscillator. 71 Define value of low speed internal RC oscillator (IRC) in Hz
|
| /modules/openthread/ |
| A D | Kconfig.features | 109 mbedTLS heap than the default value. A minimum recommended value of 215 mbedTLS heap than the default value. A minimum recommended value of
|
| A D | Kconfig.thread | 228 int "Openthread frame counter ahead value" 231 Openthread value ahead of the current frame counter for persistent storage. 252 The value of MLE child timeout in seconds.
|