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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? bitops.h

?? uboot for at91rm9200dk
?? H
字號(hào):
#ifndef _I386_BITOPS_H#define _I386_BITOPS_H/* * Copyright 1992, Linus Torvalds. *//* * These have to be done with inline assembly: that way the bit-setting * is guaranteed to be atomic. All bit operations return 0 if the bit * was cleared before the operation and != 0 if it was not. * * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1). */#ifdef CONFIG_SMP#define LOCK_PREFIX "lock ; "#else#define LOCK_PREFIX ""#endif#define ADDR (*(volatile long *) addr)/** * set_bit - Atomically set a bit in memory * @nr: the bit to set * @addr: the address to start counting from * * This function is atomic and may not be reordered.  See __set_bit() * if you do not require the atomic guarantees. * Note that @nr may be almost arbitrarily large; this function is not * restricted to acting on a single-word quantity. */static __inline__ void set_bit(int nr, volatile void * addr){	__asm__ __volatile__( LOCK_PREFIX		"btsl %1,%0"		:"=m" (ADDR)		:"Ir" (nr));}/** * __set_bit - Set a bit in memory * @nr: the bit to set * @addr: the address to start counting from * * Unlike set_bit(), this function is non-atomic and may be reordered. * If it's called on the same region of memory simultaneously, the effect * may be that only one operation succeeds. */static __inline__ void __set_bit(int nr, volatile void * addr){	__asm__(		"btsl %1,%0"		:"=m" (ADDR)		:"Ir" (nr));}/** * clear_bit - Clears a bit in memory * @nr: Bit to clear * @addr: Address to start counting from * * clear_bit() is atomic and may not be reordered.  However, it does * not contain a memory barrier, so if it is used for locking purposes, * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */static __inline__ void clear_bit(int nr, volatile void * addr){	__asm__ __volatile__( LOCK_PREFIX		"btrl %1,%0"		:"=m" (ADDR)		:"Ir" (nr));}#define smp_mb__before_clear_bit()	barrier()#define smp_mb__after_clear_bit()	barrier()/** * __change_bit - Toggle a bit in memory * @nr: the bit to set * @addr: the address to start counting from * * Unlike change_bit(), this function is non-atomic and may be reordered. * If it's called on the same region of memory simultaneously, the effect * may be that only one operation succeeds. */static __inline__ void __change_bit(int nr, volatile void * addr){	__asm__ __volatile__(		"btcl %1,%0"		:"=m" (ADDR)		:"Ir" (nr));}/** * change_bit - Toggle a bit in memory * @nr: Bit to clear * @addr: Address to start counting from * * change_bit() is atomic and may not be reordered. * Note that @nr may be almost arbitrarily large; this function is not * restricted to acting on a single-word quantity. */static __inline__ void change_bit(int nr, volatile void * addr){	__asm__ __volatile__( LOCK_PREFIX		"btcl %1,%0"		:"=m" (ADDR)		:"Ir" (nr));}/** * test_and_set_bit - Set a bit and return its old value * @nr: Bit to set * @addr: Address to count from * * This operation is atomic and cannot be reordered. * It also implies a memory barrier. */static __inline__ int test_and_set_bit(int nr, volatile void * addr){	int oldbit;	__asm__ __volatile__( LOCK_PREFIX		"btsl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr) : "memory");	return oldbit;}/** * __test_and_set_bit - Set a bit and return its old value * @nr: Bit to set * @addr: Address to count from * * This operation is non-atomic and can be reordered. * If two examples of this operation race, one can appear to succeed * but actually fail.  You must protect multiple accesses with a lock. */static __inline__ int __test_and_set_bit(int nr, volatile void * addr){	int oldbit;	__asm__(		"btsl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr));	return oldbit;}/** * test_and_clear_bit - Clear a bit and return its old value * @nr: Bit to set * @addr: Address to count from * * This operation is atomic and cannot be reordered. * It also implies a memory barrier. */static __inline__ int test_and_clear_bit(int nr, volatile void * addr){	int oldbit;	__asm__ __volatile__( LOCK_PREFIX		"btrl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr) : "memory");	return oldbit;}/** * __test_and_clear_bit - Clear a bit and return its old value * @nr: Bit to set * @addr: Address to count from * * This operation is non-atomic and can be reordered. * If two examples of this operation race, one can appear to succeed * but actually fail.  You must protect multiple accesses with a lock. */static __inline__ int __test_and_clear_bit(int nr, volatile void * addr){	int oldbit;	__asm__(		"btrl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr));	return oldbit;}/* WARNING: non atomic and it can be reordered! */static __inline__ int __test_and_change_bit(int nr, volatile void * addr){	int oldbit;	__asm__ __volatile__(		"btcl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr) : "memory");	return oldbit;}/** * test_and_change_bit - Change a bit and return its new value * @nr: Bit to set * @addr: Address to count from * * This operation is atomic and cannot be reordered. * It also implies a memory barrier. */static __inline__ int test_and_change_bit(int nr, volatile void * addr){	int oldbit;	__asm__ __volatile__( LOCK_PREFIX		"btcl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit),"=m" (ADDR)		:"Ir" (nr) : "memory");	return oldbit;}#if 0 /* Fool kernel-doc since it doesn't do macros yet *//** * test_bit - Determine whether a bit is set * @nr: bit number to test * @addr: Address to start counting from */static int test_bit(int nr, const volatile void * addr);#endifstatic __inline__ int constant_test_bit(int nr, const volatile void * addr){	return ((1UL << (nr & 31)) & (((const volatile unsigned int *) addr)[nr >> 5])) != 0;}static __inline__ int variable_test_bit(int nr, volatile void * addr){	int oldbit;	__asm__ __volatile__(		"btl %2,%1\n\tsbbl %0,%0"		:"=r" (oldbit)		:"m" (ADDR),"Ir" (nr));	return oldbit;}#define test_bit(nr,addr) \(__builtin_constant_p(nr) ? \ constant_test_bit((nr),(addr)) : \ variable_test_bit((nr),(addr)))/** * find_first_zero_bit - find the first zero bit in a memory region * @addr: The address to start the search at * @size: The maximum size to search * * Returns the bit-number of the first zero bit, not the number of the byte * containing a bit. */static __inline__ int find_first_zero_bit(void * addr, unsigned size){	int d0, d1, d2;	int res;	if (!size)		return 0;	/* This looks at memory. Mark it volatile to tell gcc not to move it around */	__asm__ __volatile__(		"movl $-1,%%eax\n\t"		"xorl %%edx,%%edx\n\t"		"repe; scasl\n\t"		"je 1f\n\t"		"xorl -4(%%edi),%%eax\n\t"		"subl $4,%%edi\n\t"		"bsfl %%eax,%%edx\n"		"1:\tsubl %%ebx,%%edi\n\t"		"shll $3,%%edi\n\t"		"addl %%edi,%%edx"		:"=d" (res), "=&c" (d0), "=&D" (d1), "=&a" (d2)		:"1" ((size + 31) >> 5), "2" (addr), "b" (addr));	return res;}/** * find_next_zero_bit - find the first zero bit in a memory region * @addr: The address to base the search on * @offset: The bitnumber to start searching at * @size: The maximum size to search */static __inline__ int find_next_zero_bit (void * addr, int size, int offset){	unsigned long * p = ((unsigned long *) addr) + (offset >> 5);	int set = 0, bit = offset & 31, res;	if (bit) {		/*		 * Look for zero in first byte		 */		__asm__("bsfl %1,%0\n\t"			"jne 1f\n\t"			"movl $32, %0\n"			"1:"			: "=r" (set)			: "r" (~(*p >> bit)));		if (set < (32 - bit))			return set + offset;		set = 32 - bit;		p++;	}	/*	 * No zero yet, search remaining full bytes for a zero	 */	res = find_first_zero_bit (p, size - 32 * (p - (unsigned long *) addr));	return (offset + set + res);}/** * ffz - find first zero in word. * @word: The word to search * * Undefined if no zero exists, so code should check against ~0UL first. */static __inline__ unsigned long ffz(unsigned long word){	__asm__("bsfl %1,%0"		:"=r" (word)		:"r" (~word));	return word;}#ifdef __KERNEL__/** * ffs - find first bit set * @x: the word to search * * This is defined the same way as * the libc and compiler builtin ffs routines, therefore * differs in spirit from the above ffz (man ffs). */static __inline__ int ffs(int x){	int r;	__asm__("bsfl %1,%0\n\t"		"jnz 1f\n\t"		"movl $-1,%0\n"		"1:" : "=r" (r) : "g" (x));	return r+1;}/** * hweightN - returns the hamming weight of a N-bit word * @x: the word to weigh * * The Hamming Weight of a number is the total number of bits set in it. */#define hweight32(x) generic_hweight32(x)#define hweight16(x) generic_hweight16(x)#define hweight8(x) generic_hweight8(x)#endif /* __KERNEL__ */#ifdef __KERNEL__#define ext2_set_bit                 __test_and_set_bit#define ext2_clear_bit               __test_and_clear_bit#define ext2_test_bit                test_bit#define ext2_find_first_zero_bit     find_first_zero_bit#define ext2_find_next_zero_bit      find_next_zero_bit/* Bitmap functions for the minix filesystem.  */#define minix_test_and_set_bit(nr,addr) __test_and_set_bit(nr,addr)#define minix_set_bit(nr,addr) __set_bit(nr,addr)#define minix_test_and_clear_bit(nr,addr) __test_and_clear_bit(nr,addr)#define minix_test_bit(nr,addr) test_bit(nr,addr)#define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)#endif /* __KERNEL__ */#endif /* _I386_BITOPS_H */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲综合av| 亚洲在线观看免费| 欧美亚一区二区| 国内精品自线一区二区三区视频| 亚洲欧美色一区| 久久九九国产精品| 69堂成人精品免费视频| 色婷婷久久综合| 制服.丝袜.亚洲.另类.中文| 不卡一区二区中文字幕| 久久精品国产澳门| 亚洲第一二三四区| 亚洲日本韩国一区| 欧美国产一区二区| 欧美精品一区二区三区蜜臀| 555www色欧美视频| 在线视频一区二区三区| 99久久精品免费精品国产| 国产剧情一区二区| 久久精品国产亚洲a| 秋霞午夜鲁丝一区二区老狼| 亚洲一区精品在线| 中文字幕综合网| 国产精品免费人成网站| 久久新电视剧免费观看| 欧美一级艳片视频免费观看| 在线精品观看国产| 日本福利一区二区| 在线视频一区二区免费| 91福利国产精品| 色噜噜夜夜夜综合网| 91在线精品一区二区| proumb性欧美在线观看| 国产91丝袜在线播放| 国产+成+人+亚洲欧洲自线| 国产一区二区三区免费播放| 久久精品国产澳门| 极品少妇xxxx精品少妇偷拍| 另类小说色综合网站| 麻豆成人91精品二区三区| 日韩在线卡一卡二| 老鸭窝一区二区久久精品| 美日韩一级片在线观看| 精品一区二区在线免费观看| 久久99久国产精品黄毛片色诱| 久久激情综合网| 国产精品中文字幕欧美| 国产福利一区在线观看| 成人福利电影精品一区二区在线观看| 国产成人av网站| 99精品视频在线免费观看| 色婷婷久久99综合精品jk白丝| 一本色道亚洲精品aⅴ| 色噜噜偷拍精品综合在线| 欧美四级电影网| 欧美成人a视频| 国产日产欧产精品推荐色 | 99久久精品一区二区| 91免费精品国自产拍在线不卡| 色婷婷久久久久swag精品| 欧美色涩在线第一页| 欧美一级片在线观看| 久久九九久久九九| 亚洲精品国产成人久久av盗摄| 日韩制服丝袜av| 国产成人综合网| 欧美在线999| 日韩一区二区电影| 国产精品毛片大码女人| 亚洲韩国精品一区| 国产乱子伦一区二区三区国色天香| 国产成人啪免费观看软件| 色婷婷综合久色| 91精品一区二区三区在线观看| 久久久精品影视| 一区二区三区在线不卡| 久久精品噜噜噜成人88aⅴ| 丁香亚洲综合激情啪啪综合| 在线影视一区二区三区| 精品久久久久久久久久久久久久久 | 久久久精品中文字幕麻豆发布| 国产精品毛片a∨一区二区三区| 亚洲高清免费视频| 国产91丝袜在线观看| 91麻豆精品国产91久久久久久| 中文字幕乱码一区二区免费| 亚洲不卡一区二区三区| 懂色av一区二区在线播放| 欧美高清你懂得| 亚洲视频一二区| 国产一区高清在线| 欧美日韩性生活| 中文字幕中文字幕在线一区 | 亚洲久草在线视频| 激情五月婷婷综合网| 日本黄色一区二区| 久久久亚洲高清| 五月婷婷激情综合| 91免费视频网| 国产女人18毛片水真多成人如厕| 亚洲r级在线视频| 97se亚洲国产综合自在线不卡 | 久久久久99精品一区| 亚洲国产精品一区二区久久| 风间由美一区二区三区在线观看| 91精品午夜视频| 亚洲与欧洲av电影| 93久久精品日日躁夜夜躁欧美| 亚洲精品一区在线观看| 视频一区二区国产| 欧美在线一二三| 自拍av一区二区三区| 国产999精品久久久久久绿帽| 日韩精品专区在线影院重磅| 亚洲成年人网站在线观看| 色天使色偷偷av一区二区| 中文一区二区在线观看| 国产一区不卡视频| 精品人在线二区三区| 免费成人深夜小野草| 欧美日韩精品一二三区| 亚洲超碰精品一区二区| 在线观看国产一区二区| 夜夜爽夜夜爽精品视频| 欧美激情综合网| 狠狠色丁香婷婷综合| 欧美一二区视频| 日本成人超碰在线观看| 欧美精品高清视频| 午夜av一区二区三区| 欧美顶级少妇做爰| 日韩福利电影在线观看| 7777精品伊人久久久大香线蕉| 日日摸夜夜添夜夜添亚洲女人| 欧美精品一二三区| 日本免费新一区视频| 欧美成人女星排名| 国产精品一区二区三区四区| 精品国产伦一区二区三区观看方式| 久久成人免费网| 久久青草国产手机看片福利盒子 | 成人动漫av在线| 亚洲婷婷在线视频| 日本韩国视频一区二区| 亚洲影视在线观看| 91精品蜜臀在线一区尤物| 日韩激情av在线| 精品欧美一区二区三区精品久久| 狠狠色丁香久久婷婷综| 国产欧美日韩三级| 一本一道久久a久久精品综合蜜臀| 一区二区三区久久| 欧美人体做爰大胆视频| 久久国产乱子精品免费女| 国产日韩高清在线| 一本到不卡免费一区二区| 亚洲成av人影院| 精品久久久久久久久久久院品网 | 在线观看国产日韩| 免费三级欧美电影| 国产精品天美传媒| 欧美亚洲日本国产| 久久机这里只有精品| 中文字幕av一区二区三区| 色综合一区二区三区| 天堂久久一区二区三区| 久久亚洲春色中文字幕久久久| av成人老司机| 丝瓜av网站精品一区二区| 2024国产精品| 色婷婷国产精品| 久久精品国产一区二区三区免费看| 日本一区二区免费在线| 在线观看亚洲一区| 国产毛片精品国产一区二区三区| 亚洲天天做日日做天天谢日日欢| 欧美日韩国产高清一区二区三区| 国产一区二区毛片| 亚洲一区二区三区不卡国产欧美| 精品国精品国产| 色欧美乱欧美15图片| 久久国产剧场电影| 亚洲综合激情另类小说区| 欧美精品一区二区三区四区 | 国产真实乱偷精品视频免| 亚洲日本电影在线| 久久综合九色综合97婷婷| 在线观看日韩高清av| 国产高清精品在线| 奇米色777欧美一区二区| 亚洲欧美国产77777| 26uuu亚洲综合色欧美| 在线国产亚洲欧美| 成人精品电影在线观看| 日本亚洲免费观看| 亚洲综合色区另类av| 中文一区二区在线观看| 精品欧美一区二区在线观看| 欧美少妇一区二区| 色悠悠久久综合|