/Zephyr-Core-2.7.6/cmake/ |
D | hex.cmake | 40 if(_val EQUAL 10) 42 elseif(_val EQUAL 11) 44 elseif(_val EQUAL 12) 46 elseif(_val EQUAL 13) 48 elseif(_val EQUAL 14) 50 elseif(_val EQUAL 15)
|
D | pristine.cmake | 31 if(NOT INDEX EQUAL -1)
|
/Zephyr-Core-2.7.6/subsys/usb/class/dfu/ |
D | CMakeLists.txt | 5 if(CONFIG_USB_DEVICE_PID EQUAL CONFIG_USB_DEVICE_DFU_PID) 7 "Run-Time and DFU Mode VID and PID are equal, which can lead to incorrect \
|
/Zephyr-Core-2.7.6/subsys/usb/ |
D | CMakeLists.txt | 21 if(CONFIG_USB_DEVICE_VID EQUAL 0x2FE3) 27 if(CONFIG_USB_DEVICE_PID EQUAL 0x100)
|
/Zephyr-Core-2.7.6/tests/drivers/uart/uart_async_api/src/ |
D | test_uart_async.c | 86 zassert_equal(memcmp(tx_buf, rx_buf, 5), 0, "Buffers not equal"); in test_single_read() 87 zassert_not_equal(memcmp(tx_buf, rx_buf+5, 5), 0, "Buffers not equal"); in test_single_read() 100 zassert_equal(memcmp(tx_buf, rx_buf+5, 5), 0, "Buffers not equal"); in test_single_read() 172 "Buffers not equal"); in test_chained_read() 233 "Buffers not equal"); in test_double_buffer() 293 zassert_equal(memcmp(tx_buf, rx_buf, 5), 0, "Buffers not equal"); in test_read_abort() 307 zassert_not_equal(memcmp(tx_buf, rx_buf, 100), 0, "Buffers equal"); in test_read_abort() 367 zassert_equal(memcmp(tx_buf, rx_buf, 5), 0, "Buffers not equal"); in test_write_abort() 376 zassert_equal(sent, received, "Sent is not equal to received."); in test_write_abort() 445 zassert_equal(memcmp(tx_buf, rx_buf, 100), 0, "Buffers not equal"); in test_forever_timeout() [all …]
|
/Zephyr-Core-2.7.6/samples/subsys/testsuite/integration/src/ |
D | main.c | 21 zassert_equal(1, 1, "1 was not equal to 1"); in test_assert() 22 zassert_equal_ptr(NULL, NULL, "NULL was not equal to NULL"); in test_assert()
|
/Zephyr-Core-2.7.6/doc/reference/kernel/scheduling/ |
D | index.rst | 44 (:kconfig:`CONFIG_SCHED_DEADLINE`) and a choice of threads have equal 48 their static priorities and deadlines are equal. The routine 128 including those of higher priority and equal priority. 140 All ready threads whose priority is higher or equal to that of the 159 including those of equal priority. 180 If no threads of equal priority are ready, the current thread remains 184 time slicing, and are never preempted by a thread of equal priority. 190 of equal-priority threads receive an equitable amount of CPU time,
|
/Zephyr-Core-2.7.6/doc/reference/kernel/synchronization/ |
D | semaphores.rst | 28 to a non-negative value that is less than or equal to its limit. 31 increments its count, unless the count is already equal to the limit. 41 You may initialize a "full" semaphore (count equal to limit) to limit the number 43 initialize an empty semaphore (count equal to 0, with a limit greater than 0)
|
/Zephyr-Core-2.7.6/include/fs/ |
D | nvs.h | 102 * @return Number of bytes written. On success, it will be equal to the number of bytes requested 130 * @return Number of bytes read. On success, it will be equal to the number of bytes requested 148 * @return Number of bytes read. On success, it will be equal to the number of bytes requested 162 * @return Number of bytes free. On success, it will be equal to the number of bytes that can
|
/Zephyr-Core-2.7.6/tests/kernel/pipe/pipe_api/src/ |
D | test_pipe_avail.c | 142 * where @ref k_pipe.read_index is equal to @ref k_pipe.write_index and 146 * write indeces are equal. 185 * where @ref k_pipe.read_index is equal to @ref k_pipe.write_index and 186 * @ref k_pipe.bytes_used is equal to @ref k_pipe.size. 189 * write indeces are equal.
|
/Zephyr-Core-2.7.6/subsys/testsuite/ztest/include/ |
D | ztest_assert.h | 171 #a " not equal to " #b, \ 175 * @brief Assert that @a a does not equal @a b 184 #a " equal to " #b, \ 197 zassert((void *)(a) == (void *)(b), #a " not equal to " #b, \ 239 zassert(memcmp(buf, exp, size) == 0, #buf " not equal to " #exp, \
|
/Zephyr-Core-2.7.6/cmake/ide/ |
D | eclipse_cdt4_generator_amendment.cmake | 68 if (${_param_defs} EQUAL 1) 72 elseif (${_param_defs} EQUAL 2) 76 #elseif (${_param_defs} EQUAL 3) 80 #elseif (${_param_defs} EQUAL 4) 83 elseif (${_param_defs} EQUAL 5) 86 else(${_param_defs} EQUAL 1) 89 endif(${_param_defs} EQUAL 1)
|
/Zephyr-Core-2.7.6/tests/lib/ringbuffer/src/ |
D | main.c | 92 * -# Check if the data put are equal to the data got. 97 * - Data items pushed shall be equal to what are gotten. And 281 * -# Check if data items pushed are equal to what are gotten. 285 * - data items pushed shall be equal to what are gotten. 372 * -# Check if data items pushed are equal to what are gotten. 374 * -# Check if data items pushed are equal to what are gotten. 377 * -# Check if data items pushed are equal to what are gotten. 380 * - data items pushed shall be equal to what are gotten. 428 * -# Check if data items pushed are equal to what are gotten. 430 * -# Check if data items pushed are equal to what are gotten. [all …]
|
/Zephyr-Core-2.7.6/tests/kernel/sched/schedule_api/src/ |
D | test_sched_timeslice_and_lock.c | 238 * with equal priorities are executed in time slice. 254 /* checkpoint: equal priority threads get executed every time slice */ in test_time_slicing_preemptible() 273 * threads with equal priorities are executed in time slice. 292 /* checkpoint: equal priority threads get executed every time slice */ in test_time_slicing_disable_preemptible() 361 /* ensure threads of equal priority can run */ in test_unlock_preemptible() 364 /* checkpoint: higher and equal threads get executed */ in test_unlock_preemptible() 412 /* Ensure threads of equal priority run */ in test_unlock_nested_sched_lock()
|
/Zephyr-Core-2.7.6/boards/arc/hsdk/ |
D | board.cmake | 4 if(${CONFIG_MP_NUM_CPUS} EQUAL 2)
|
/Zephyr-Core-2.7.6/tests/kernel/mem_heap/mheap_api_concept/src/ |
D | test_mheap_concept.c | 66 * @brief Verify alloc from multiple equal priority threads 68 * @details Test creates three preemptive threads of equal priority.
|
/Zephyr-Core-2.7.6/tests/kernel/mem_slab/mslab_threadsafe/src/ |
D | test_mslab_threadsafe.c | 66 * @brief Verify alloc and free from multiple equal priority threads 68 * @details Test creates 4 preemptive threads of equal priority. Then
|
/Zephyr-Core-2.7.6/dts/bindings/sensor/ |
D | nxp,kinetis-temperature.yaml | 45 temperatures above or equal to 25 degrees Celsius
|
/Zephyr-Core-2.7.6/boards/posix/nrf52_bsim/ |
D | cmdline.h | 14 * They are therefore mostly equal except for types and functions names.
|
/Zephyr-Core-2.7.6/share/zephyr-package/cmake/ |
D | ZephyrConfig.cmake | 56 if (COMMON_INDEX EQUAL 0) 73 if (COMMON_INDEX EQUAL 0)
|
/Zephyr-Core-2.7.6/tests/kernel/tickless/tickless_concept/src/ |
D | main.c | 101 * @details Create threads of equal priority and enable time 112 /*create delayed threads with equal preemptive priority*/ in test_tickless_slice()
|
/Zephyr-Core-2.7.6/drivers/disk/ |
D | Kconfig.flash | 44 Typically it is equal to the flash memory page size.
|
/Zephyr-Core-2.7.6/tests/drivers/regulator/fixed/ |
D | README.txt | 26 Assertion failed at ../src/main.c:182: test_preconditions: (precheck not equal to PC_OK)
|
/Zephyr-Core-2.7.6/include/arch/x86/ |
D | pagetables.ld | 8 * For the pass 1 build, an equal-sized dummy area is provided as
|
/Zephyr-Core-2.7.6/drivers/clock_control/ |
D | Kconfig.stm32f2_f4_f7 | 47 need a frequency lower than or equal to 48 MHz to work correctly.
|