Lines Matching +full:- +full:optional
4 * SPDX-License-Identifier: Apache-2.0
174 * @param msg Optional, can be NULL. Message to print if @a cond is false.
212 * @param msg Optional, can be NULL. Message to print if @a cond is false.
242 * @param msg Optional, can be NULL. Message to print if @a cond is false.
266 * @param ... Optional message and variables to print if the assertion fails
273 * @param ... Optional message and variables to print if the assertion fails
280 * @param ... Optional message and variables to print if the assertion fails
287 * @param ... Optional message and variables to print if the assertion fails
289 #define zassert_ok(cond, ...) zassert(!(cond), #cond " is non-zero", ##__VA_ARGS__)
294 * @param ... Optional message and variables to print if the assertion fails
301 * @param ... Optional message and variables to print if the assertion fails
308 * @param ... Optional message and variables to print if the assertion fails
319 * @param ... Optional message and variables to print if the assertion fails
330 * @param ... Optional message and variables to print if the assertion fails
341 * @param ... Optional message and variables to print if the assertion fails
352 * @param ... Optional message and variables to print if the assertion fails
355 zassert(((a) >= ((b) - (d))) && ((a) <= ((b) + (d))), #a " not within " #b " +/- " #d, \
365 * @param ... Optional message and variables to print if the assertion fails
376 * would expand to more than one values (ANSI-C99 defines that all the macro
393 * @param ... Optional message and variables to print if the assertion fails
403 * @param ... Optional message and variables to print if the expectation fails
427 * @param ... Optional message and variables to print if the assumption fails
437 * @param ... Optional message and variables to print if the assumption fails
447 * @param ... Optional message and variables to print if the assumption fails
449 #define zassume_ok(cond, ...) zassume(!(cond), #cond " is non-zero", ##__VA_ARGS__)
457 * @param ... Optional message and variables to print if the assumption fails
467 * @param ... Optional message and variables to print if the assumption fails
477 * @param ... Optional message and variables to print if the assumption fails
489 * @param ... Optional message and variables to print if the assumption fails
501 * @param ... Optional message and variables to print if the assumption fails
513 * @param ... Optional message and variables to print if the assumption fails
526 * @param ... Optional message and variables to print if the assumption fails
529 zassume(((a) >= ((b) - (d))) && ((a) <= ((b) + (d))), #a " not within " #b " +/- " #d, \
541 * @param ... Optional message and variables to print if the assumption fails
552 * would expand to more than one values (ANSI-C99 defines that all the macro
571 * @param ... Optional message and variables to print if the assumption fails
581 * @param ... Optional message and variables to print if the expectation fails
603 * @param ... Optional message and variables to print if the expectation fails
611 * @param ... Optional message and variables to print if the expectation fails
620 * @param ... Optional message and variables to print if the expectation fails
622 #define zexpect_ok(cond, ...) zexpect(!(cond), #cond " is non-zero", ##__VA_ARGS__)
629 * @param ... Optional message and variables to print if the expectation fails
637 * @param ... Optional message and variables to print if the expectation fails
645 * @param ... Optional message and variables to print if the expectation fails
654 * @param ... Optional message and variables to print if the expectation fails
666 * @param ... Optional message and variables to print if the expectation fails
677 * @param ... Optional message and variables to print if the expectation fails
689 * @param ... Optional message and variables to print if the expectation fails
692 zexpect(((a) >= ((b) - (delta))) && ((a) <= ((b) + (delta))), \
693 #a " not within " #b " +/- " #delta, ##__VA_ARGS__)
702 * @param ... Optional message and variables to print if the expectation fails
715 * @param ... Optional message and variables to print if the expectation fails
726 * @param ... Optional message and variables to print if the expectation fails