Home
last modified time | relevance | path

Searched refs:_last (Results 1 – 10 of 10) sorted by relevance

/linux/arch/nios2/include/asm/
H A Dswitch_to.h19 void *_last; \
25 : "=r" (_last) \
28 (last) = _last; \
/linux/arch/m68k/include/asm/
H A Dswitch_to.h34 register void *_last __asm__ ("d1"); \
36 : "=a" (_prev), "=a" (_next), "=d" (_last) \
39 (last) = _last; \
/linux/kernel/liveupdate/
H A Dluo_core.c376 #define IOCTL_OP(_ioctl, _fn, _struct, _last) \ argument
381 .min_size = offsetofend(_struct, _last), \
H A Dluo_session.c305 #define IOCTL_OP(_ioctl, _fn, _struct, _last) \ argument
310 .min_size = offsetofend(_struct, _last), \
/linux/drivers/fwctl/
H A Dmain.c154 #define IOCTL_OP(_ioctl, _fn, _struct, _last) \ argument
159 .min_size = offsetofend(_struct, _last), \
/linux/drivers/comedi/drivers/
H A Dpcl816.c53 #define PCL816_MUX_SCAN(_first, _last) (((_last) << 4) | (_first)) argument
H A Dpcl818.c111 #define PCL818_MUX_SCAN(_first, _last) (((_last) << 4) | (_first)) argument
/linux/drivers/iommu/iommufd/
H A Dmain.c447 #define IOCTL_OP(_ioctl, _fn, _struct, _last) \ argument
452 .min_size = offsetofend(_struct, _last), \
/linux/include/rdma/
H A Duverbs_ioctl.h468 #define UVERBS_ATTR_STRUCT(_type, _last) \ argument
470 UVERBS_ATTR_SIZE(offsetofend(_type, _last), sizeof(_type))
/linux/tools/testing/selftests/iommu/
H A Diommufd.c94 #define TEST_LENGTH(_struct, _ioctl, _last) \ in TEST_F() argument
96 size_t min_size = offsetofend(struct _struct, _last); \ in TEST_F()