Home
last modified time | relevance | path

Searched refs:_Static_assert (Results 1 – 24 of 24) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-extended/zip/zip-3.0/
H A D0001-unix-configure-use-_Static_assert-to-do-correct-dete.patch4 Subject: [PATCH] unix/configure: use _Static_assert to do correct detection
7 on host to detemine feature is not correct. Use _Static_assert
26 +_Static_assert(sizeof((struct stat){0}.st_uid) == 2, "sizeof st_uid is not 16 bit");
27 +_Static_assert(sizeof((struct stat){0}.st_gid) == 2, "sizeof st_gid is not 16 bit");
60 +_Static_assert(sizeof(off_t) < 8, "sizeof off_t < 8 failed");
61 +_Static_assert(sizeof((struct stat){0}.st_size) < 8, "sizeof st_size < 8 failed");
/openbmc/google-misc/subprojects/libcr51sign/include/libcr51sign/
H A Dcr51_image_descriptor.h25 #define _Static_assert static_assert macro
391 _Static_assert(offsetof(struct image_mauv, payload_security_version) %
396 _Static_assert(
/openbmc/qemu/pc-bios/s390-ccw/
H A Ds390-arch.h18 _Static_assert(sizeof(struct PSW) == 16, "PSW size incorrect");
25 _Static_assert(sizeof(struct PSWLegacy) == 8, "PSWLegacy size incorrect");
/openbmc/qemu/ebpf/
H A Drss.bpf.skeleton.h980 #define _Static_assert static_assert in rss_bpf__assert() macro
983 #undef _Static_assert in rss_bpf__assert()
/openbmc/qemu/bsd-user/
H A Derrno_defs.h157 _Static_assert(TARGET_ERESTART == QEMU_ERESTARTSYS,
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A D0001-unix-configure-fix-detection-for-cross-compilation.patch26 +_Static_assert(sizeof(off_t) < 8, "sizeof off_t < 8 failed");
27 +_Static_assert(sizeof((struct stat){0}.st_size) < 8, "sizeof st_size < 8 failed");
/openbmc/openbmc/poky/meta/recipes-extended/zip/
H A Dzip_3.0.bb20 file://0001-unix-configure-use-_Static_assert-to-do-correct-dete.patch \
/openbmc/qemu/subprojects/libvhost-user/include/
H A Dcompiler.h72 #define QEMU_BUILD_BUG_MSG(x, msg) _Static_assert(!(x), msg)
/openbmc/qemu/subprojects/libvduse/include/
H A Dcompiler.h72 #define QEMU_BUILD_BUG_MSG(x, msg) _Static_assert(!(x), msg)
/openbmc/qemu/include/qemu/
H A Dcompiler.h72 #define QEMU_BUILD_BUG_MSG(x, msg) _Static_assert(!(x), msg)
/openbmc/u-boot/include/
H A Dcommon.h550 #define check_member(structure, member, offset) _Static_assert( \
/openbmc/google-misc/subprojects/libcr51sign/src/
H A Dlibcr51sign_mauv.c17 _Static_assert(
/openbmc/u-boot/drivers/clk/rockchip/
H A Dclk_rk3036.c35 _Static_assert(((u64)hz * _refdiv * _postdiv1 * _postdiv2 / OSC_HZ) *\
H A Dclk_rk322x.c32 _Static_assert(((u64)hz * _refdiv * _postdiv1 * _postdiv2 / OSC_HZ) * \
H A Dclk_rk3188.c75 _Static_assert(((u64)hz * _nr * _no / OSC_HZ) * OSC_HZ /\
H A Dclk_rk3368.c45 _Static_assert(((u64)hz * _nr * _no / OSC_HZ) * OSC_HZ /\
H A Dclk_rv1108.c35 _Static_assert(((u64)hz * _refdiv * _postdiv1 * _postdiv2 / OSC_HZ) *\
H A Dclk_rk3288.c135 _Static_assert(((u64)hz * _nr * _no / OSC_HZ) * OSC_HZ /\
/openbmc/qemu/tests/tcg/i386/
H A Dtest-avx.c247 _Static_assert(sizeof(gather_mem) == 1024, "gather_mem not expected size");
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/
H A D0013-Revert-Load-and-store-UEFI-variable-index-in-chunks.patch282 +_Static_assert(SMM_UEFI_VARIABLE_STORE_INDEX_SIZE < RPC_CALLER_SESSION_SHARED_MEMORY_SIZE,
H A D0012-Revert-Make-variable-index-usage-robust-with-redunda.patch372 -_Static_assert(SMM_VARIABLE_INDEX_STORAGE_A_UID != SMM_VARIABLE_INDEX_STORAGE_B_UID,
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.0.12.rst145 - zip: fix configure check by using _Static_assert
H A Drelease-notes-4.2.2.rst194 - zip: fix configure check by using _Static_assert
/openbmc/libpldm/src/msgbuf/
H A Dcore.h38 #define _Static_assert(...) static_assert(__VA_ARGS__) macro