/Zephyr-latest/lib/libc/common/source/time/ |
D | gmtime_r.c | 35 static void time_civil_from_days(bigint_type z, in time_civil_from_days() argument 38 tp->tm_wday = (z >= -4) ? ((z + 4) % 7) : ((z + 5) % 7 + 6); in time_civil_from_days() 39 z += 719468; in time_civil_from_days() 41 bigint_type era = ((z >= 0) ? z : (z - 146096)) / 146097; in time_civil_from_days() 42 unsigned int doe = (z - era * (bigint_type)146097); in time_civil_from_days() 84 time_t z = *timep; in gmtime_r() local 85 bigint_type days = (z >= 0 ? z : z - 86399) / 86400; in gmtime_r() 86 unsigned int rem = z - days * 86400; in gmtime_r()
|
/Zephyr-latest/samples/subsys/zbus/msg_subscriber/ |
D | README.rst | 35 I: From listener foo_lis -> Acc x=1, y=10, z=100 36 I: From msg subscriber bar_msg_sub1 -> Acc x=1, y=10, z=100 37 I: From msg subscriber bar_msg_sub2 -> Acc x=1, y=10, z=100 38 I: From msg subscriber bar_msg_sub3 -> Acc x=1, y=10, z=100 39 I: From msg subscriber bar_msg_sub4 -> Acc x=1, y=10, z=100 40 I: From msg subscriber bar_msg_sub5 -> Acc x=1, y=10, z=100 41 I: From msg subscriber bar_msg_sub6 -> Acc x=1, y=10, z=100 42 I: From msg subscriber bar_msg_sub7 -> Acc x=1, y=10, z=100 43 I: From msg subscriber bar_msg_sub8 -> Acc x=1, y=10, z=100 44 I: From msg subscriber bar_msg_sub9 -> Acc x=1, y=10, z=100 [all …]
|
/Zephyr-latest/scripts/coccinelle/ |
D | unsigned_suffix.cocci | 44 z; 50 coccinelle.z = C + "U" 55 identifier r_rewrite.z; 61 + z 65 + z 69 + z 73 + z 77 + z 81 + z 85 + z [all …]
|
/Zephyr-latest/samples/sensor/magn_trig/ |
D | README.rst | 36 fxos8700@1d (x, y, z): ( -0.107000, 0.118000, -1.026000) 37 fxos8700@1d (x, y, z): ( -0.132000, 0.083000, -0.981000) 38 fxos8700@1d (x, y, z): ( -0.143000, 0.102000, -0.931000) 39 fxos8700@1d (x, y, z): ( -0.153000, 0.126000, -0.843000) 40 fxos8700@1d (x, y, z): ( -0.145000, 0.152000, -0.802000) 41 fxos8700@1d (x, y, z): ( -0.143000, 0.125000, -0.740000) 42 fxos8700@1d (x, y, z): ( -0.133000, 0.130000, -0.736000) 43 fxos8700@1d (x, y, z): ( -0.133000, 0.124000, -0.776000) 44 fxos8700@1d (x, y, z): ( -0.120000, 0.123000, -0.776000) 45 fxos8700@1d (x, y, z): ( -0.135000, 0.120000, -0.782000) [all …]
|
/Zephyr-latest/samples/sensor/i3g4250d/ |
D | README.rst | 41 12 ms: x 2454.031430 , y 2336.015410 , z -1800.030108 42 22 ms: x -248.003106 , y -268.979704 , z 6.018390 43 32 ms: x -214.989906 , y -237.023468 , z 6.013926 44 41 ms: x -193.978308 , y -205.032232 , z 2.000356 45 51 ms: x -158.986716 , y -171.014568 , z 3.969998 46 60 ms: x -138.979582 , y -153.003326 , z 3.978748 47 70 ms: x -120.981554 , y -129.982800 , z -13.971422 48 80 ms: x -106.984060 , y -112.967272 , z -80.006572
|
/Zephyr-latest/samples/subsys/zbus/runtime_obs_registration/ |
D | README.rst | 34 I: --> Consuming data: Acc x=0, y=0, z=0 37 I: --> Consuming data: Acc x=2, y=2, z=2 40 I: --> Consuming data: Acc x=0, y=0, z=0 43 I: --> Consuming data: Acc x=4, y=4, z=4 46 I: --> Consuming data: Acc x=0, y=0, z=0 50 I: --> Consuming data: Acc x=6, y=6, z=6 52 I: --> Consuming data: Acc x=7, y=7, z=7 54 I: --> Consuming data: Acc x=8, y=8, z=8 56 I: --> Consuming data: Acc x=9, y=9, z=9 58 I: --> Consuming data: Acc x=10, y=10, z=10
|
/Zephyr-latest/samples/subsys/zbus/runtime_obs_registration/src/ |
D | main.c | 16 ZBUS_MSG_INIT(.x = 0, .y = 0, .z = 0)); 31 if (0 == (msg->z % 2)) { in filter_callback() 32 proc_msg.z = msg->z; in filter_callback()
|
D | producer.c | 12 ZBUS_MSG_INIT(.x = 0, .y = 0, .z = 0)); 31 ++acc.z; in producer_thread()
|
/Zephyr-latest/samples/sensor/lsm6dso/src/ |
D | main.c | 19 struct sensor_value x, y, z; in fetch_and_display() local 28 sensor_channel_get(dev, SENSOR_CHAN_ACCEL_Z, &z); in fetch_and_display() 31 (double)out_ev(&x), (double)out_ev(&y), (double)out_ev(&z)); in fetch_and_display() 37 sensor_channel_get(dev, SENSOR_CHAN_GYRO_Z, &z); in fetch_and_display() 40 (double)out_ev(&x), (double)out_ev(&y), (double)out_ev(&z)); in fetch_and_display()
|
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/ |
D | lsm6dsv16x_decoder.c | 320 int16_t x, y, z; in lsm6dsv16x_decode_fifo() local 340 z = *(int16_t *)&buffer[5]; in lsm6dsv16x_decode_fifo() 346 out->readings[count].z = Q31_SHIFT_MICROVAL(scale * z, out->shift); in lsm6dsv16x_decode_fifo() 351 int16_t x, y, z; in lsm6dsv16x_decode_fifo() local 371 z = *(int16_t *)&buffer[5]; in lsm6dsv16x_decode_fifo() 377 out->readings[count].z = Q31_SHIFT_MICROVAL(scale * z, out->shift); in lsm6dsv16x_decode_fifo() 412 union { float32_t f; uint32_t i; } x, y, z; in lsm6dsv16x_decode_fifo() local 432 z.i = lsm6dsv16x_from_f16_to_f32(buffer[5] | (buffer[6] << 8)); in lsm6dsv16x_decode_fifo() 434 sumsq = powf(x.f, 2) + powf(y.f, 2) + powf(z.f, 2); in lsm6dsv16x_decode_fifo() 446 z.f /= n; in lsm6dsv16x_decode_fifo() [all …]
|
/Zephyr-latest/samples/drivers/video/capture/src/ |
D | check_test_pattern.h | 51 double z = r_lin * 0.0193 + g_lin * 0.1192 + b_lin * 0.9505; in rgb888_to_lab() local 54 z /= 1.08883; in rgb888_to_lab() 58 z = z > 0.008856 ? pow(z, 1.0 / 3.0) : (7.787 * z) + (16.0 / 116.0); in rgb888_to_lab() 62 lab.b = 200.0 * (y - z); in rgb888_to_lab()
|
/Zephyr-latest/samples/subsys/zbus/hello_world/src/ |
D | main.c | 22 int z; member 41 ZBUS_MSG_INIT(.x = 0, .y = 0, .z = 0) /* Initial value */ 70 LOG_INF("From listener -> Acc x=%d, y=%d, z=%d", acc->x, acc->y, acc->z); in listener_callback_example() 87 LOG_INF("From subscriber -> Acc x=%d, y=%d, z=%d", acc.x, acc.y, acc.z); in subscriber_task() 141 struct acc_msg acc1 = {.x = 1, .y = 1, .z = 1}; in main() 162 acc1.z = 2; in main()
|
/Zephyr-latest/samples/shields/x_nucleo_iks4a1/standard/ |
D | README.rst | 48 LIS2MDL: Magn (gauss): x: -0.364, y: -0.523, z: -0.399 50 LSM6DSO16IS: Accel (m.s-2): x: -0.167, y: -0.249, z: 9.954 51 LSM6DSO16IS: GYro (dps): x: 0.047, y: -0.052, z: -0.042 53 LSM6DSV16X: Accel (m.s-2): x: 0.005, y: 0.053, z: 9.930 54 LSM6DSV16X: GYro (dps): x: -0.000, y: 0.000, z: 0.005 57 LIS2DUXS12: Accel (m.s-2): x: 0.689, y: -0.306, z: 9.571
|
/Zephyr-latest/samples/sensor/lsm303dlhc/ |
D | README.rst | 45 ( x y z ) = ( 0.531818 -0.435454 -0.089090 ) 47 ( x y z ) = ( -0.078127 -0.347666 1.105502 ) 49 ( x y z ) = ( -0.003636 0.297272 -0.255454 ) 51 ( x y z ) = ( 0.074221 -0.304696 0.972685 )
|
/Zephyr-latest/samples/subsys/zbus/msg_subscriber/src/ |
D | main.c | 40 int z; member 51 ZBUS_MSG_INIT(.x = 0, .y = 0, .z = 0) /* Initial value */ 58 LOG_INF("From listener foo_lis -> Acc x=%d, y=%d, z=%d", acc->x, acc->y, acc->z); in listener_callback_example() 98 acc.x, acc.y, acc.z); in msg_subscriber_task() 152 acc.x, acc.y, acc.z); in subscriber_task() 170 static struct acc_msg acc = {.x = 1, .y = 10, .z = 100}; 205 acc.z += 100; in main()
|
/Zephyr-latest/samples/subsys/zbus/hello_world/ |
D | README.rst | 42 D: From listener -> Acc x=1, y=1, z=1 44 D: From subscriber -> Acc x=1, y=1, z=1 46 D: From listener -> Acc x=2, y=2, z=2 48 D: From subscriber -> Acc x=2, y=2, z=2
|
/Zephyr-latest/samples/sensor/lsm6dso/ |
D | README.rst | 48 accel x:-0.650847 ms/2 y:-5.300102 ms/2 z:-8.163114 ms/2 49 gyro x:-0.167835 dps y:-0.063377 dps z:0.002367 dps 52 accel x:0.341575 ms/2 y:5.209773 ms/2 z:-7.938787 ms/2 53 gyro x:-0.034284 dps y:-0.004428 dps z:-0.003512 dps
|
/Zephyr-latest/subsys/usb/device/ |
D | os_desc.h | 34 #define usb_handle_os_desc(x, y, z) -ENOTSUP argument 35 #define usb_handle_os_desc_feature(x, y, z) -ENOTSUP argument
|
/Zephyr-latest/doc/develop/api/ |
D | overview.rst | 13 * Major version zero (0.y.z) is for initial development. Anything MAY 16 * If minor version is up to one (0.1.z), API is considered 18 * If minor version is larger than one (0.y.z | y > 1), API is considered 25 * APIs with major versions equal or larger than one (x.y.z | x >= 1 ) are 33 * Minor version Y (x.Y.z | x > 0) MUST be incremented if new, backwards 40 * Major version X (x.Y.z | x > 0) MUST be incremented if a compatibility
|
/Zephyr-latest/tests/boards/intel_adsp/hda/src/ |
D | tests.h | 17 #define CONCAT3(x, y, z) x ## y ## z argument
|
/Zephyr-latest/samples/subsys/debug/fuzz/ |
D | README.rst | 41 [0/1] cd /home/andy/z/zephyr/build && .../andy/z/zephyr/build/zephyr/zephyr.exe 54 …NEW_FUNC[1/6]: 0x55cbe3339c45 in check1 /home/andy/z/zephyr/samples/subsys/debug/fuzz/src/main.c:43 55 NEW_FUNC[2/6]: 0x55cbe333c8d8 in char_out /home/andy/z/zephyr/lib/os/printk.c:108 64 …NEW_FUNC[1/1]: 0x55cbe3339ff7 in check6 /home/andy/z/zephyr/samples/subsys/debug/fuzz/src/main.c:48 75 #0 0x55cbe333a09d in check6 /home/andy/z/zephyr/samples/subsys/debug/fuzz/src/main.c:48:1
|
/Zephyr-latest/include/zephyr/drivers/ |
D | sensor_data_types.h | 63 q31_t z; member 75 PRIq_arg((data_).readings[(readings_offset_)].z, 6, (data_).shift) 92 q31_t z; member 106 PRIq_arg((data_).readings[(readings_offset_)].z, 6, (data_).shift), \
|
/Zephyr-latest/cmake/reports/ |
D | CMakeLists.txt | 20 -z ${ZEPHYR_BASE} 39 -z ${ZEPHYR_BASE} 58 -z ${ZEPHYR_BASE}
|
/Zephyr-latest/samples/sensor/lsm6dso_i2c_on_i3c/ |
D | README.rst | 72 accel x:-0.650847 ms/2 y:-5.300102 ms/2 z:-8.163114 ms/2 73 gyro x:-0.167835 dps y:-0.063377 dps z:0.002367 dps 76 accel x:0.341575 ms/2 y:5.209773 ms/2 z:-7.938787 ms/2 77 gyro x:-0.034284 dps y:-0.004428 dps z:-0.003512 dps
|
/Zephyr-latest/samples/shields/x_nucleo_iks01a2/standard/ |
D | README.rst | 60 LSM6DSL: Accel (m.s-2): x: -0.0, y: -0.1, z: 10.0 61 LSM6DSL: Gyro (dps): x: 0.028, y: -0.025, z: 0.014 62 LSM303AGR: Accel (m.s-2): x: 0.3, y: -0.1, z: 9.7 63 LSM303AGR: Magn (gauss): x: -0.221, y: -0.042, z: -0.458
|