Home
last modified time | relevance | path

Searched refs:cast (Results 1 – 13 of 13) sorted by relevance

/dpdk/drivers/common/iavf/
H A Dmeson.build6 if cc.has_argument('-Wno-pointer-to-int-cast')
7 cflags += '-Wno-pointer-to-int-cast'
/dpdk/drivers/common/dpaax/
H A Dmeson.build13 if cc.has_argument('-Wno-cast-qual')
14 cflags += '-Wno-cast-qual'
/dpdk/lib/power/
H A Dmeson.build31 if cc.has_argument('-Wno-cast-qual')
32 cflags += '-Wno-cast-qual'
/dpdk/drivers/net/hinic/base/
H A Dmeson.build21 extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
/dpdk/drivers/bus/dpaa/
H A Dmeson.build24 if cc.has_argument('-Wno-cast-qual')
25 cflags += '-Wno-cast-qual'
/dpdk/drivers/net/bnx2x/
H A Decore_sp.h252 #define ECORE_LIST_FIRST_ENTRY(_list, cast, _link) \ argument
253 (cast *)((_list)->head)
256 #define ECORE_LIST_NEXT(_elem, _link, cast) \ argument
257 (cast *)((&((_elem)->_link))->next)
334 #define ECORE_LIST_FOR_EACH_ENTRY(pos, _list, _link, cast) \ argument
335 for (pos = ECORE_LIST_FIRST_ENTRY(_list, cast, _link); \
337 pos = ECORE_LIST_NEXT(pos, _link, cast))
340 #define ECORE_LIST_FOR_EACH_ENTRY_SAFE(pos, n, _list, _link, cast) \ argument
342 n = (pos) ? ECORE_LIST_NEXT(pos, _link, cast) : NULL; \
344 pos = (cast *)n, \
[all …]
/dpdk/drivers/net/axgbe/
H A Dmeson.build18 cflags += '-Wno-cast-qual'
/dpdk/drivers/common/sfc_efx/
H A Dmeson.build28 '-Wbad-function-cast',
/dpdk/drivers/net/qede/base/
H A Dmeson.build26 '-Wno-cast-qual',
/dpdk/drivers/net/sfc/
H A Dmeson.build34 '-Wbad-function-cast',
/dpdk/config/
H A Dmeson.build280 warning_flags += '-Wno-pointer-to-int-cast'
/dpdk/doc/guides/prog_guide/
H A Dpoll_mode_drv.rst260 (either for Layer 2 flooding or Layer 3 multi-cast).
/dpdk/doc/guides/contributing/
H A Dcoding_style.rst689 * Routines returning ``void *`` should not have their return values cast to any pointer type.