亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? list.h.svn-base

?? 一個CUI編輯器
?? SVN-BASE
字號:
/** *  * I grub it from linux kernel source code and fix it for user space * program. Of course, this is a GPL licensed header file. * * Here is a recipe to cook list.h for user space program * * 1. copy list.h from linux/include/list.h * 2. remove  *     - #ifdef __KERNE__ and its #endif *     - all #include line *     - prefetch() and rcu related functions * 3. add macro offsetof() and container_of * * - kazutomo@mcs.anl.gov */#ifndef _LINUX_LIST_H#define _LINUX_LIST_H#ifndef NULL#define NULL 0#endif/** * @name from other kernel headers *//*@{*//** * Get offset of a member */#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)/** * Casts a member of a structure out to the containing structure * @param ptr        the pointer to the member. * @param type       the type of the container struct this is embedded in. * @param member     the name of the member within the struct. * */#define container_of(ptr, type, member) ({                      \        const typeof( ((type *)0)->member ) *__mptr = (ptr);    \        (type *)( (char *)__mptr - offsetof(type,member) );})/*@}*//* * These are non-NULL pointers that will result in page faults * under normal circumstances, used to verify that nobody uses * non-initialized list entries. */#define LIST_POISON1  ((void *) 0x00100100)#define LIST_POISON2  ((void *) 0x00200200)/** * Simple doubly linked list implementation. * * Some of the internal functions ("__xxx") are useful when * manipulating whole lists rather than single entries, as * sometimes we already know the next/prev entries and we can * generate better code by using them directly rather than * using the generic single-entry routines. */struct list_head {	struct list_head *next, *prev;};#define LIST_HEAD_INIT(name) { &(name), &(name) }#define LIST_HEAD(name) \	struct list_head name = LIST_HEAD_INIT(name)#define INIT_LIST_HEAD(ptr) do { \	(ptr)->next = (ptr); (ptr)->prev = (ptr); \} while (0)/* * Insert a new entry between two known consecutive entries. * * This is only for internal list manipulation where we know * the prev/next entries already! */static inline void __list_add(struct list_head *new,			      struct list_head *prev,			      struct list_head *next){	next->prev = new;	new->next = next;	new->prev = prev;	prev->next = new;}/** * list_add - add a new entry * @new: new entry to be added * @head: list head to add it after * * Insert a new entry after the specified head. * This is good for implementing stacks. */static inline void list_add(struct list_head *new, struct list_head *head){	__list_add(new, head, head->next);}/** * list_add_tail - add a new entry * @new: new entry to be added * @head: list head to add it before * * Insert a new entry before the specified head. * This is useful for implementing queues. */static inline void list_add_tail(struct list_head *new, struct list_head *head){	__list_add(new, head->prev, head);}/* * Delete a list entry by making the prev/next entries * point to each other. * * This is only for internal list manipulation where we know * the prev/next entries already! */static inline void __list_del(struct list_head * prev, struct list_head * next){	next->prev = prev;	prev->next = next;}/** * list_del - deletes entry from list. * @entry: the element to delete from the list. * Note: list_empty on entry does not return true after this, the entry is * in an undefined state. */static inline void list_del(struct list_head *entry){	__list_del(entry->prev, entry->next);	entry->next = LIST_POISON1;	entry->prev = LIST_POISON2;}/** * list_del_init - deletes entry from list and reinitialize it. * @entry: the element to delete from the list. */static inline void list_del_init(struct list_head *entry){	__list_del(entry->prev, entry->next);	INIT_LIST_HEAD(entry);}/** * list_move - delete from one list and add as another's head * @list: the entry to move * @head: the head that will precede our entry */static inline void list_move(struct list_head *list, struct list_head *head){        __list_del(list->prev, list->next);        list_add(list, head);}/** * list_move_tail - delete from one list and add as another's tail * @list: the entry to move * @head: the head that will follow our entry */static inline void list_move_tail(struct list_head *list,				  struct list_head *head){        __list_del(list->prev, list->next);        list_add_tail(list, head);}/** * list_empty - tests whether a list is empty * @head: the list to test. */static inline int list_empty(const struct list_head *head){	return head->next == head;}static inline void __list_splice(struct list_head *list,				 struct list_head *head){	struct list_head *first = list->next;	struct list_head *last = list->prev;	struct list_head *at = head->next;	first->prev = head;	head->next = first;	last->next = at;	at->prev = last;}/** * list_splice - join two lists * @list: the new list to add. * @head: the place to add it in the first list. */static inline void list_splice(struct list_head *list, struct list_head *head){	if (!list_empty(list))		__list_splice(list, head);}/** * list_splice_init - join two lists and reinitialise the emptied list. * @list: the new list to add. * @head: the place to add it in the first list. * * The list at @list is reinitialised */static inline void list_splice_init(struct list_head *list,				    struct list_head *head){	if (!list_empty(list)) {		__list_splice(list, head);		INIT_LIST_HEAD(list);	}}/** * list_entry - get the struct for this entry * @ptr:	the &struct list_head pointer. * @type:	the type of the struct this is embedded in. * @member:	the name of the list_struct within the struct. */#define list_entry(ptr, type, member) \	container_of(ptr, type, member)/** * list_for_each	-	iterate over a list * @pos:	the &struct list_head to use as a loop counter. * @head:	the head for your list. */#define list_for_each(pos, head) \  for (pos = (head)->next; pos != (head);	\       pos = pos->next)/** * __list_for_each	-	iterate over a list * @pos:	the &struct list_head to use as a loop counter. * @head:	the head for your list. * * This variant differs from list_for_each() in that it's the * simplest possible list iteration code, no prefetching is done. * Use this for code that knows the list to be very short (empty * or 1 entry) most of the time. */#define __list_for_each(pos, head) \	for (pos = (head)->next; pos != (head); pos = pos->next)/** * list_for_each_prev	-	iterate over a list backwards * @pos:	the &struct list_head to use as a loop counter. * @head:	the head for your list. */#define list_for_each_prev(pos, head) \	for (pos = (head)->prev; prefetch(pos->prev), pos != (head); \        	pos = pos->prev)/** * list_for_each_safe	-	iterate over a list safe against removal of list entry * @pos:	the &struct list_head to use as a loop counter. * @n:		another &struct list_head to use as temporary storage * @head:	the head for your list. */#define list_for_each_safe(pos, n, head) \	for (pos = (head)->next, n = pos->next; pos != (head); \		pos = n, n = pos->next)/** * list_for_each_entry	-	iterate over list of given type * @pos:	the type * to use as a loop counter. * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry(pos, head, member)				\	for (pos = list_entry((head)->next, typeof(*pos), member);	\	     &pos->member != (head);					\	     pos = list_entry(pos->member.next, typeof(*pos), member))/** * list_for_each_entry_reverse - iterate backwards over list of given type. * @pos:	the type * to use as a loop counter. * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry_reverse(pos, head, member)			\	for (pos = list_entry((head)->prev, typeof(*pos), member);	\	     &pos->member != (head); 	\	     pos = list_entry(pos->member.prev, typeof(*pos), member))/** * list_prepare_entry - prepare a pos entry for use as a start point in *			list_for_each_entry_continue * @pos:	the type * to use as a start point * @head:	the head of the list * @member:	the name of the list_struct within the struct. */#define list_prepare_entry(pos, head, member) \	((pos) ? : list_entry(head, typeof(*pos), member))/** * list_for_each_entry_continue -	iterate over list of given type *			continuing after existing point * @pos:	the type * to use as a loop counter. * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry_continue(pos, head, member) 		\	for (pos = list_entry(pos->member.next, typeof(*pos), member);	\	     &pos->member != (head);	\	     pos = list_entry(pos->member.next, typeof(*pos), member))/** * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry * @pos:	the type * to use as a loop counter. * @n:		another type * to use as temporary storage * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry_safe(pos, n, head, member)			\	for (pos = list_entry((head)->next, typeof(*pos), member),	\		n = list_entry(pos->member.next, typeof(*pos), member);	\	     &pos->member != (head); 					\	     pos = n, n = list_entry(n->member.next, typeof(*n), member))/** * list_for_each_entry_safe_continue -	iterate over list of given type *			continuing after existing point safe against removal of list entry * @pos:	the type * to use as a loop counter. * @n:		another type * to use as temporary storage * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry_safe_continue(pos, n, head, member) 		\	for (pos = list_entry(pos->member.next, typeof(*pos), member), 		\		n = list_entry(pos->member.next, typeof(*pos), member);		\	     &pos->member != (head);						\	     pos = n, n = list_entry(n->member.next, typeof(*n), member))/** * list_for_each_entry_safe_reverse - iterate backwards over list of given type safe against *				      removal of list entry * @pos:	the type * to use as a loop counter. * @n:		another type * to use as temporary storage * @head:	the head for your list. * @member:	the name of the list_struct within the struct. */#define list_for_each_entry_safe_reverse(pos, n, head, member)		\	for (pos = list_entry((head)->prev, typeof(*pos), member),	\		n = list_entry(pos->member.prev, typeof(*pos), member);	\	     &pos->member != (head); 					\	     pos = n, n = list_entry(n->member.prev, typeof(*n), member))/* * Double linked lists with a single pointer list head. * Mostly useful for hash tables where the two pointer list head is * too wasteful. * You lose the ability to access the tail in O(1). */struct hlist_head {	struct hlist_node *first;};struct hlist_node {	struct hlist_node *next, **pprev;};#define HLIST_HEAD_INIT { .first = NULL }#define HLIST_HEAD(name) struct hlist_head name = {  .first = NULL }#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)#define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)static inline int hlist_unhashed(const struct hlist_node *h){	return !h->pprev;}static inline int hlist_empty(const struct hlist_head *h){	return !h->first;}static inline void __hlist_del(struct hlist_node *n){	struct hlist_node *next = n->next;	struct hlist_node **pprev = n->pprev;	*pprev = next;	if (next)		next->pprev = pprev;}static inline void hlist_del(struct hlist_node *n){	__hlist_del(n);	n->next = LIST_POISON1;	n->pprev = LIST_POISON2;}static inline void hlist_del_init(struct hlist_node *n){	if (n->pprev)  {		__hlist_del(n);		INIT_HLIST_NODE(n);	}}static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h){	struct hlist_node *first = h->first;	n->next = first;	if (first)		first->pprev = &n->next;	h->first = n;	n->pprev = &h->first;}/* next must be != NULL */static inline void hlist_add_before(struct hlist_node *n,					struct hlist_node *next){	n->pprev = next->pprev;	n->next = next;	next->pprev = &n->next;	*(n->pprev) = n;}static inline void hlist_add_after(struct hlist_node *n,					struct hlist_node *next){	next->next = n->next;	n->next = next;	next->pprev = &n->next;	if(next->next)		next->next->pprev  = &next->next;}#define hlist_entry(ptr, type, member) container_of(ptr,type,member)#define hlist_for_each(pos, head) \	for (pos = (head)->first; pos && ({ prefetch(pos->next); 1; }); \	     pos = pos->next)#define hlist_for_each_safe(pos, n, head) \	for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \	     pos = n)/** * hlist_for_each_entry	- iterate over list of given type * @tpos:	the type * to use as a loop counter. * @pos:	the &struct hlist_node to use as a loop counter. * @head:	the head for your list. * @member:	the name of the hlist_node within the struct. */#define hlist_for_each_entry(tpos, pos, head, member)			 \	for (pos = (head)->first;					 \	     pos && ({ prefetch(pos->next); 1;}) &&			 \		({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \	     pos = pos->next)/** * hlist_for_each_entry_continue - iterate over a hlist continuing after existing point * @tpos:	the type * to use as a loop counter. * @pos:	the &struct hlist_node to use as a loop counter. * @member:	the name of the hlist_node within the struct. */#define hlist_for_each_entry_continue(tpos, pos, member)		 \	for (pos = (pos)->next;						 \	     pos && ({ prefetch(pos->next); 1;}) &&			 \		({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \	     pos = pos->next)/** * hlist_for_each_entry_from - iterate over a hlist continuing from existing point * @tpos:	the type * to use as a loop counter. * @pos:	the &struct hlist_node to use as a loop counter. * @member:	the name of the hlist_node within the struct. */#define hlist_for_each_entry_from(tpos, pos, member)			 \	for (; pos && ({ prefetch(pos->next); 1;}) &&			 \		({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \	     pos = pos->next)/** * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry * @tpos:	the type * to use as a loop counter. * @pos:	the &struct hlist_node to use as a loop counter. * @n:		another &struct hlist_node to use as temporary storage * @head:	the head for your list. * @member:	the name of the hlist_node within the struct. */#define hlist_for_each_entry_safe(tpos, pos, n, head, member) 		 \	for (pos = (head)->first;					 \	     pos && ({ n = pos->next; 1; }) && 				 \		({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \	     pos = n)#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美综合在线| 国产精品你懂的在线欣赏| 2020国产成人综合网| 亚洲视频免费观看| 日日夜夜精品视频天天综合网| 国产精品综合久久| 欧美日韩精品一二三区| 中文字幕中文字幕一区二区| 美女久久久精品| 91黄视频在线| 国产精品三级av| 国产精品中文字幕欧美| 欧美一级淫片007| 亚洲成a人v欧美综合天堂下载| 成人性生交大片免费看中文网站| 9191精品国产综合久久久久久| 亚洲欧美在线观看| 成人妖精视频yjsp地址| 精品国产乱码久久久久久图片 | 日韩欧美一级二级三级久久久| 日韩一区在线免费观看| 国产成人无遮挡在线视频| 日韩一级片网站| 免费在线成人网| 91精品黄色片免费大全| 日韩高清在线电影| 777欧美精品| 蜜臀国产一区二区三区在线播放| 337p亚洲精品色噜噜噜| 婷婷成人综合网| 日韩一级片在线观看| 91网站在线观看视频| 欧美精品一区二区三区一线天视频| 中文字幕一区不卡| 成人美女视频在线观看| 久久久久久久久岛国免费| 国内精品视频666| 久久蜜桃av一区二区天堂| 久久99国产乱子伦精品免费| 日韩欧美国产综合一区| 久久av资源网| 国产女人水真多18毛片18精品视频| 国产夫妻精品视频| 国产精品初高中害羞小美女文 | 日本欧美一区二区三区乱码| 欧美一区二区三区四区视频| 日韩av电影一区| 久久蜜桃一区二区| 91美女蜜桃在线| 午夜电影一区二区三区| 日韩亚洲欧美一区二区三区| 国产美女在线精品| 成人欧美一区二区三区在线播放| 色综合久久综合中文综合网| 亚洲国产精品久久一线不卡| 在线播放欧美女士性生活| 九九精品视频在线看| 中文一区一区三区高中清不卡| 91一区二区三区在线播放| 亚洲国产精品综合小说图片区| 日韩一区二区三区视频| 国产成a人无v码亚洲福利| 亚洲国产你懂的| 欧美va日韩va| 一本大道久久精品懂色aⅴ| 日韩专区中文字幕一区二区| 久久久久免费观看| 欧美日韩国产一二三| 欧美日韩免费一区二区三区| 精品久久国产97色综合| 国产一区二区三区最好精华液| 精品电影一区二区| 91在线播放网址| 精品亚洲国内自在自线福利| 国产精品传媒入口麻豆| 日韩视频123| 91在线小视频| 国产精品资源站在线| 亚洲国产wwwccc36天堂| 欧美国产综合一区二区| 91精品国产91久久综合桃花| 成人免费看黄yyy456| 日韩福利视频导航| 亚洲精品伦理在线| 久久精品欧美一区二区三区不卡 | 麻豆极品一区二区三区| 亚洲日本在线看| 国产午夜精品理论片a级大结局 | 国内成人精品2018免费看| 亚洲国产综合在线| 国产精品人妖ts系列视频 | 欧美日韩三级一区二区| 成人激情免费电影网址| 久久超碰97人人做人人爱| 亚洲小少妇裸体bbw| 亚洲人成影院在线观看| 久久久www免费人成精品| 日韩欧美aaaaaa| 5566中文字幕一区二区电影| 欧洲精品视频在线观看| 91美女片黄在线观看91美女| 成人av电影观看| 懂色av中文字幕一区二区三区| 久久99精品国产麻豆不卡| 日本成人在线看| 日韩国产精品大片| 日本欧美一区二区| www.亚洲色图| 丁香啪啪综合成人亚洲小说| 国产一区二区美女| 国产精品资源站在线| 久久 天天综合| 麻豆高清免费国产一区| 蜜桃视频一区二区三区在线观看 | 亚洲狼人国产精品| 亚洲精品中文在线观看| 亚洲欧美日韩国产中文在线| 亚洲同性gay激情无套| 亚洲四区在线观看| 亚洲一区影音先锋| 蜜臀精品一区二区三区在线观看| 国模冰冰炮一区二区| 中文字幕av资源一区| 国产精品麻豆网站| 一色屋精品亚洲香蕉网站| 亚洲日本丝袜连裤袜办公室| 亚洲伦理在线精品| 日韩中文字幕1| 美女网站色91| 粉嫩绯色av一区二区在线观看 | 韩日av一区二区| 国产精品亚洲午夜一区二区三区| 国产精品一区二区视频| 欧美mv和日韩mv的网站| 国产亚洲福利社区一区| 中文字幕一区二区三区四区 | 国产精品一卡二卡在线观看| 国产成都精品91一区二区三| 成人av电影在线播放| 欧美视频在线观看一区| 精品国产电影一区二区| 国产精品国产三级国产普通话三级| 国产精品传媒入口麻豆| 图片区小说区区亚洲影院| 麻豆精品新av中文字幕| 成人h动漫精品一区二| 欧美日韩亚洲国产综合| 久久综合九色综合97婷婷| 亚洲婷婷在线视频| 麻豆精品国产91久久久久久| 丁香婷婷综合五月| 欧美精品 国产精品| 国产午夜精品久久| 亚洲成av人片在线| 国产成人午夜精品影院观看视频 | 午夜av区久久| 国产精品99久久久久久似苏梦涵 | 日本最新不卡在线| youjizz国产精品| 日韩一级欧美一级| 亚洲综合色丁香婷婷六月图片| 麻豆精品视频在线观看免费| 成人高清免费在线播放| 欧美日本在线看| 亚洲人成在线播放网站岛国 | 麻豆精品在线视频| 色网站国产精品| 国产精品午夜春色av| 蜜臀精品久久久久久蜜臀| 色美美综合视频| 国产精品欧美久久久久无广告| 日韩中文字幕区一区有砖一区| 91亚洲国产成人精品一区二区三| 日韩精品一区二区三区视频在线观看 | 精品一区二区在线播放| 在线一区二区三区四区五区| 国产欧美一区二区精品忘忧草| 婷婷六月综合亚洲| 在线欧美日韩国产| 日韩一区在线看| 成人av手机在线观看| 精品国产电影一区二区| 青青草视频一区| 欧美一三区三区四区免费在线看 | 欧美片在线播放| 亚洲精品视频一区二区| 成人激情动漫在线观看| 国产婷婷色一区二区三区| 精品无码三级在线观看视频| 欧美精品乱人伦久久久久久| 亚洲精品成人少妇| 91同城在线观看| 亚洲色大成网站www久久九九| 国产精品一色哟哟哟| 欧美精品一区男女天堂| 麻豆免费精品视频| 久久久欧美精品sm网站| 九九国产精品视频| 久久久久久亚洲综合| 国产成人午夜99999|