/Zephyr-latest/scripts/tracing/ |
D | parse_ctf.py | 86 th = {} 93 print(f"{dt} (+{diff_s:.6f} s): {event.name}: {thread_name} {cpu_string}") 95 print(f"{dt} (+{diff_s:.6f} s): {event.name}: {thread_id} {cpu_string}") 97 print(f"{dt} (+{diff_s:.6f} s): {event.name}") 101 th = get_thread(thread_name) 102 if not th: 103 th['name'] = thread_name 105 th = get_thread(thread_id) 106 if not th: 107 th['name'] = thread_id [all …]
|
/Zephyr-latest/soc/ite/ec/common/ |
D | vector.S | 47 sb t1, 6(t0) 80 * 1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th 11th 12th 13th 14th 15th 16th
|
/Zephyr-latest/dts/bindings/interrupt-controller/ |
D | st,stm32-exti.yaml | 32 <4 1>, <5 5>, <10 6>; 35 6th line starts with input line 5 and contains 5 elements (5 to 9) 36 7th line starts with inupt line 10 and contains 6 elements (10 to 15)
|
/Zephyr-latest/subsys/net/ip/ |
D | tcp.c | 153 struct tcphdr *th = NULL; in th_get() local 162 if (!net_pkt_is_contiguous(pkt, sizeof(*th))) { in th_get() 163 if (tcp_pkt_linearize(pkt, ip_len, sizeof(*th)) < 0) { in th_get() 170 th = net_pkt_cursor_get_pos(pkt); in th_get() 172 return th; in th_get() 190 struct tcphdr *th; in tcp_endpoint_set() local 192 th = th_get(pkt); in tcp_endpoint_set() 193 if (!th) { in tcp_endpoint_set() 199 ep->sin.sin_port = src == TCP_EP_SRC ? th_sport(th) : in tcp_endpoint_set() 200 th_dport(th); in tcp_endpoint_set() [all …]
|
/Zephyr-latest/tests/subsys/fs/fcb/src/ |
D | fcb_test_last_of_n.c | 52 "fcb_offset_last_n: fetched wrong n-th location"); in ZTEST() 60 "fcb_offset_last_n: fetched wrong n-th location"); in ZTEST() 68 "fcb_offset_last_n: fetched wrong n-th location"); in ZTEST() 71 rc = fcb_offset_last_n(fcb, 6, &loc); in ZTEST() 76 "fcb_offset_last_n: fetched wrong n-th location"); in ZTEST()
|
/Zephyr-latest/tests/net/tcp/src/ |
D | main.c | 104 TEST_CLIENT_SYN_RESEND = 6, 126 static void handle_client_test(sa_family_t af, struct tcphdr *th); 127 static void handle_server_test(sa_family_t af, struct tcphdr *th); 129 static void handle_syn_rst_ack(sa_family_t af, struct tcphdr *th); 130 static void handle_client_fin_wait_2_test(sa_family_t af, struct tcphdr *th); 131 static void handle_client_fin_wait_2_failure_test(sa_family_t af, struct tcphdr *th); 132 static void handle_client_closing_test(sa_family_t af, struct tcphdr *th); 133 static void handle_client_closing_failure_test(sa_family_t af, struct tcphdr *th); 134 static void handle_data_fin1_test(sa_family_t af, struct tcphdr *th); 135 static void handle_data_during_fin1_test(sa_family_t af, struct tcphdr *th); [all …]
|
/Zephyr-latest/doc/security/ |
D | sensor-threat.rst | 43 programmed into the device, early in production [th-imboot]_. 52 [th-authrepl]_. 55 shall be done in a timely manner [th-timely-update]_. 60 [th-atomic-update]_. 68 [th-root-certs]_, [th-root-check]_. 85 of code necessary shall have access to them. [th-secret-storage]_ 103 certificate to be able to intercept this. [th-time]_ 105 6. **Sensor data**. The data received from the sensor itself, and 114 should be allowed only from authorized parties. [th-conf]_ 132 [th-logs]_ [all …]
|
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/ |
D | lsm6dsv16x_trigger.c | 1 /* ST Microelectronics LSM6DSV16X 6-axis IMU sensor driver 292 * 4th byte: ALL_INT_SRC in lsm6dsv16x_ibi_cb() 293 * 5th byte: STATUS_REG in lsm6dsv16x_ibi_cb() 294 * 6th byte: STATUS_REG_OIS in lsm6dsv16x_ibi_cb() 295 * 7th byte: STATUS_MASTER_MAIN in lsm6dsv16x_ibi_cb() 296 * 8th byte: EMB_FUNC_STATUS in lsm6dsv16x_ibi_cb() 297 * 9th byte: FSM_STATUS in lsm6dsv16x_ibi_cb() 298 * 10th byte: MLC_STATUS in lsm6dsv16x_ibi_cb()
|
/Zephyr-latest/drivers/sensor/adi/adxl367/ |
D | adxl367.c | 30 * @param th - Structure holding the activity threshold information: 37 const struct adxl367_activity_threshold *th) in adxl367_setup_activity_detection() argument 46 FIELD_PREP(ADXL367_ACT_INACT_CTL_ACT_EN_MSK, th->enable) | in adxl367_setup_activity_detection() 48 th->referenced)); in adxl367_setup_activity_detection() 54 FIELD_PREP(ADXL367_THRESH_H_MSK, th->value >> 6)); in adxl367_setup_activity_detection() 60 FIELD_PREP(ADXL367_THRESH_L_MSK, th->value & 0x3F)); in adxl367_setup_activity_detection() 67 * @param th - Structure holding the inactivity threshold information: 75 const struct adxl367_activity_threshold *th) in adxl367_setup_inactivity_detection() argument 84 th->enable) | in adxl367_setup_inactivity_detection() 86 th->referenced)); in adxl367_setup_inactivity_detection() [all …]
|
/Zephyr-latest/drivers/sensor/apds9960/ |
D | apds9960.c | 228 uint16_t th; in apds9960_ambient_setup() local 246 th = sys_cpu_to_le16(APDS9960_DEFAULT_AILT); in apds9960_ambient_setup() 249 (uint8_t *)&th, sizeof(th))) { in apds9960_ambient_setup() 254 th = sys_cpu_to_le16(APDS9960_DEFAULT_AIHT); in apds9960_ambient_setup() 257 (uint8_t *)&th, sizeof(th))) { in apds9960_ambient_setup() 446 k_sleep(K_MSEC(6)); in apds9960_init()
|
/Zephyr-latest/drivers/w1/ |
D | w1_ds2477_85_common.h | 111 /* default 1-wire timing parameters (cfg. value==6) */ 119 #define DS2477_85_STD_SPD_T_REC_us 6U 128 #define DS2477_85_OVD_SPD_T_REC_us 6U 140 /* defines for DTS switching-th, active-pull-th and weak-pullup enums */
|
/Zephyr-latest/doc/_doxygen/ |
D | doxygen-awesome.css | 39 --page-secondary-foreground-color: #6f7e8e; 47 --border-radius-medium: 6px; 762 right: 6px !important; 1221 padding: 2px 6px; 1226 padding: calc(var(--spacing-large) - (var(--spacing-large) / 6)) var(--spacing-large); 1506 margin-top: -6px; 1654 th.markdownTableHeadLeft, 1655 th.markdownTableHeadRight, 1656 th.markdownTableHeadCenter, 1657 th.markdownTableHeadNone, [all …]
|
/Zephyr-latest/include/zephyr/drivers/misc/ft8xx/ |
D | ft8xx_dl.h | 33 * Anti-aliased lines, with width from 0 to 4095 1/16th of pixel units. 42 #define FT8XX_EDGE_STRIP_L 6U 154 * range is from 16 to 4095 in terms of 1/16th pixel units. 188 * The range of coordinates is from -16384 to +16383 in terms of 1/16th pixel
|
/Zephyr-latest/dts/bindings/display/ |
D | led-strip-matrix.yaml | 22 [ 4][ 5][ 6][ 7] 28 [ 7][ 6][ 5][ 4] 39 [ 4][ 5][ 6][ 7] 45 [ 7][ 6][ 5][ 4] 57 [ 4][ 5][ 6][ 7] 63 [ 7][ 6][ 5][ 4] 87 [ 7][ 6][ 5][ 4] [23][22][21][20] 102 [ 7][ 6][ 5][ 4] 163 the first LED of `strip1` will be treated as the 129th LED.
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll_sync_iso.c | 724 /* Find the next (bn_curr)th subevent to receive PDU */ in isr_rx() 738 /* (bn_curr)th Rx PDU skip subevent */ in isr_rx() 744 /* Find the index of the (bn_curr)th Rx PDU buffer */ in isr_rx() 750 /* Check if (bn_curr)th Rx PDU has been received */ in isr_rx() 752 /* Receive the (bn_curr)th Rx PDU of bis_curr */ in isr_rx() 758 /* (bn_curr)th Rx PDU already received, skip subevent */ in isr_rx() 762 /* Find the next repetition (irc_curr)th subevent to receive PDU */ in isr_rx() 783 /* Find the index of the (irc_curr)th bn = 1 Rx PDU in isr_rx() 791 /* Check if (irc_curr)th bn = 1 Rx PDU has been in isr_rx() 795 /* Receive the (irc_curr)th bn = 1 Rx PDU of in isr_rx() [all …]
|
D | lll_adv_iso.c | 319 pdu->payload[6] = payload_count >> 16; in prepare_cb_common() 487 /* transmit the (bn_curr)th Tx PDU of bis_curr */ in isr_tx_common() 493 /* transmit the (bn_curr)th Tx PDU of bis_curr */ in isr_tx_common() 501 /* transmit the (ptc_curr * bn)th Tx PDU */ in isr_tx_common() 509 /* transmit the (bn_curr)th PDU of bis_curr */ in isr_tx_common() 539 /* Transmit the control PDU and stop after 6 intervals in isr_tx_common() 685 pdu->payload[6] = payload_count >> 16; in isr_tx_common()
|
/Zephyr-latest/samples/subsys/nvs/src/ |
D | main.c | 23 * At the 10th reboot the string item with id=4 is deleted (or marked for 26 * At the 11th reboot the string item with id=4 can no longer be read with the 30 * At the 78th reboot the first sector is full and a new sector is taken into 131 key[6] = 0xF9; in main()
|
/Zephyr-latest/subsys/mgmt/osdp/src/ |
D | osdp_sc.c | 227 /* N-1 th block is the IV for N th block */ in osdp_compute_mac() 231 /* N-th Block encrypted with SMAC-2 == MAC */ in osdp_compute_mac() 258 pd->sc.pd_client_uid[6] = BYTE_2(pd->id.serial_number); in osdp_sc_setup()
|
/Zephyr-latest/samples/modules/tflite-micro/hello_world/train/ |
D | train_hello_world_model.ipynb | 97 …"Requirement already satisfied: tensorflow==2.4.0rc0 in /usr/local/lib/python3.6/dist-packages (2.… 98 …"Requirement already satisfied: termcolor~=1.1.0 in /usr/local/lib/python3.6/dist-packages (from t… 99 …"Requirement already satisfied: gast==0.3.3 in /usr/local/lib/python3.6/dist-packages (from tensor… 100 …"Requirement already satisfied: astunparse~=1.6.3 in /usr/local/lib/python3.6/dist-packages (from … 101 …"Requirement already satisfied: absl-py~=0.10 in /usr/local/lib/python3.6/dist-packages (from tens… 102 …"Requirement already satisfied: keras-preprocessing~=1.1.2 in /usr/local/lib/python3.6/dist-packag… 103 …"Requirement already satisfied: six~=1.15.0 in /usr/local/lib/python3.6/dist-packages (from tensor… 104 …"Requirement already satisfied: tensorboard~=2.3 in /usr/local/lib/python3.6/dist-packages (from t… 105 …"Requirement already satisfied: tensorflow-estimator~=2.3.0 in /usr/local/lib/python3.6/dist-packa… 106 …"Requirement already satisfied: flatbuffers~=1.12.0 in /usr/local/lib/python3.6/dist-packages (fro… [all …]
|
/Zephyr-latest/tests/subsys/fs/nvs/src/ |
D | main.c | 257 /* 25th write will trigger GC. */ in ZTEST_F() 353 /* 50th write will trigger 1st GC. */ in ZTEST_F() 355 /* 75th write will trigger 2st GC. */ in ZTEST_F() 357 /* 100th write will trigger 3st GC. */ in ZTEST_F() 359 /* 125th write will trigger 4st GC. */ in ZTEST_F() 414 /* Trigger 4th GC */ in ZTEST_F() 475 /* 25th write will trigger GC. */ in ZTEST_F() 645 * last ate at -5. A valid ate is however present at -6. Since the close_ate 679 /* Write valid ate at -6 */ in ZTEST_F() 681 sizeof(struct nvs_ate) * 6, &ate, sizeof(ate)); in ZTEST_F() [all …]
|
/Zephyr-latest/arch/arm/core/ |
D | gdbstub.c | 12 /* Position of each register in the packet - n-th register in the ctx.registers array needs to be 13 * the packet_pos[n]-th byte of the g (read all registers) packet. See struct arm_register_names in 16 static const int packet_pos[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 41};
|
/Zephyr-latest/drivers/sensor/silabs/si7006/ |
D | si7006.c | 150 /* Humidity times two to the 16th power. Offset of -6 not applied yet. */ in si7006_channel_get() 157 val->val1 = rh_int - 6; /* Apply offset now */ in si7006_channel_get()
|
/Zephyr-latest/soc/intel/intel_adsp/cavs/include/cavs25/ |
D | dmic_regs.h | 46 #define TS_LOCAL_TSCTRL_LWCS BIT(6) 182 /* Source decimator for 4th stereo/mono data placeholder. */ 186 #define OUTCONTROL_IPM_SOURCE_MODE BIT(6) 207 #define OUTSTAT_FL_MASK GENMASK(6, 0) 266 #define FIR_CONTROL_ARRAY_START_EN BIT(6) 316 #define GLOBAL_CAP_PORT_COUNT GENMASK(7, 6)
|
/Zephyr-latest/drivers/timer/ |
D | cc13xx_cc26xx_rtc_timer.c | 56 #define COMPARE_MARGIN 6 165 * For a very small period round up to interrupt upon 4th tick in in startDevice()
|
/Zephyr-latest/soc/intel/intel_adsp/ace/include/ |
D | dmic_regs.h | 49 #define TS_LOCAL_TSCTRL_LWCS BIT(6) 185 /* Source decimator for 4th stereo/mono data placeholder. */ 189 #define OUTCONTROL_IPM_SOURCE_MODE BIT(6) 281 #define FIR_CONTROL_ARRAY_START_EN BIT(6) 334 #define GLOBAL_CAP_PORT_COUNT GENMASK(7, 6)
|