Home
last modified time | relevance | path

Searched refs:_item_ (Results 1 – 7 of 7) sorted by relevance

/utopia/UTPA2-700.0.x/modules/msos/msos/nos/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/optee/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/
H A DdrvList.h217 #define entry_to_container( _item_, _struct_, _member_ ) \ argument
218 ((_struct_ *)((char *)(_item_)-(char *)(offsetof(_struct_,_member_))))
220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/linux/
H A DdrvList.h181 #define list_for_each_entry(_list_, _head_, _item_) \ argument
182 for ((_list_) = list_entry((_head_)->next, typeof(*_list_), _item_); \
183 &((_list_)->_item_) != (_head_); \
184 (_list_) = list_entry((_list_)->_item_.next, typeof(*_list_), _item_))