Searched full:c11 (Results 1 – 25 of 36) sorted by relevance
12
/Zephyr-latest/include/zephyr/ |
D | types.h | 18 * A type with strong alignment requirements, similar to C11 max_align_t. It can 35 * C11 uses "_Thread_local". Previously the GNU "__thread" keyword was used 43 #elif defined(__STDC_VERSION__) && (__STDC_VERSION__) >= 201112L /* C11 */
|
D | init.h | 164 /* Anonymous unions require C11. Some pre-C11 gcc versions have early
|
D | toolchain.h | 99 /* _Generic is introduced in C11, so it is supported. */
|
/Zephyr-latest/tests/lib/c_lib/thrd/ |
D | testcase.yaml | 4 - c11 6 # For now, the implementation of C11 threads uses POSIX under the hood.
|
/Zephyr-latest/lib/libc/common/ |
D | Kconfig | 108 bool "C11 <threads.h> API support" 111 # of C11 threads and POSIX API can be abstracted out to a common library. 115 Common implementation of C11 <threads.h> API.
|
/Zephyr-latest/doc/develop/languages/c/ |
D | index.rst | 40 C11) such as the type-generic expressions using the ``_Generic`` keyword. For 42 processor for Zephyr, makes use of the C11 type-generic expressions, and this 44 toolchain that supports the C11 standard and above. 47 least the C11 standard for developing with Zephyr. It is, however, important to
|
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | toolchain.ecl | 27 … description of option \"-Wc99-c11-compat\" in \"3.8 Options to Request or Suppress Warnings\". Th… 28 …options \"-Wc99-c11-compat\" and \"-Wc99-c2x-compat\" in \"3.8 Options to Request or Suppress Warn…
|
/Zephyr-latest/tests/bluetooth/audio/ccid/uut/ |
D | CMakeLists.txt | 17 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/tests/subsys/bindesc/reading/ |
D | testcase.yaml | 15 bindesc.read.c11:
|
/Zephyr-latest/tests/bluetooth/audio/codec/uut/ |
D | CMakeLists.txt | 21 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/tests/subsys/bindesc/definition/ |
D | testcase.yaml | 25 bindesc.define.c11:
|
/Zephyr-latest/tests/bluetooth/audio/bap_base/uut/ |
D | CMakeLists.txt | 21 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/tests/bluetooth/audio/cap_commander/uut/ |
D | CMakeLists.txt | 29 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/tests/bluetooth/audio/bap_broadcast_source/uut/ |
D | CMakeLists.txt | 24 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/cmake/compiler/ |
D | compiler_features.cmake | 3 set(c11id c11 gnu11 "iso9899:2011")
|
/Zephyr-latest/tests/bluetooth/audio/ascs/uut/ |
D | CMakeLists.txt | 29 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/modules/liblc3/ |
D | CMakeLists.txt | 4 -O3 -std=c11 -ffast-math -Wno-array-bounds -Wall -Wextra -Wdouble-promotion -Wvla -pedantic
|
/Zephyr-latest/tests/bluetooth/audio/cap_initiator/uut/ |
D | CMakeLists.txt | 31 target_compile_options(uut PRIVATE -std=c11 -include ztest.h)
|
/Zephyr-latest/soc/quicklogic/eos_s3/ |
D | soc.c | 46 /* Set divider for domain C11 to ~ 5.12MHz */ in eos_s3_cru_init()
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | stdlib.h | 28 void *aligned_alloc(size_t alignment, size_t size); /* From C11 */
|
/Zephyr-latest/doc/develop/languages/cpp/ |
D | index.rst | 218 from its very beginning. They were not officially added to C until C11. 239 Some pre-C11 GCC versions support some form of anonymous unions. They
|
/Zephyr-latest/include/zephyr/net/ |
D | net_time.h | 69 * @ref timespec (C11, POSIX.1-2001), @ref timeval (POSIX.1-2001) or broken down
|
/Zephyr-latest/drivers/sensor/infineon/dps310/ |
D | dps310.c | 221 int16_t c11; /* 16bit */ member 282 comp->c11 = (int16_t) sys_get_be16(&raw_coef[10]); in dps310_calib_coeff_creation() 447 psr_final += tmp * psr * (comp->c11 + psr * comp->c21); in dps310_scale_pressure()
|
/Zephyr-latest/doc/services/ |
D | formatted_output.rst | 85 limitations: requires ``_Generic`` keyword (C11 feature) to be supported by 177 * C11 ``_Generic`` support is required by the compiler to use static (fast) packaging.
|
/Zephyr-latest/scripts/native_simulator/ |
D | Makefile | 68 -ffunction-sections -fdata-sections ${DEPENDFLAGS} -std=c11 ${NSI_BUILD_OPTIONS}
|
12