代码搜索:segment
找到约 10,000 项符合「segment」的源代码
代码结果 10,000
www.eeworm.com/read/357083/3031080
h segment.h
#ifndef _M68K_SEGMENT_H
#define _M68K_SEGMENT_H
/* define constants */
/* Address spaces (FC0-FC2) */
#define USER_DATA (1)
#ifndef __USER_DS
#define __USER_DS (USER_DATA)
#endif
#define USER
www.eeworm.com/read/357083/3031633
h segment.h
#ifndef __ASM_ARM_SEGMENT_H
#define __ASM_ARM_SEGMENT_H
#define __KERNEL_CS 0x0
#define __KERNEL_DS 0x0
#define __USER_CS 0x1
#define __USER_DS 0x1
#endif /* __ASM_ARM_SEGMENT_H */
www.eeworm.com/read/357083/3031767
h segment.h
#ifndef __ALPHA_SEGMENT_H
#define __ALPHA_SEGMENT_H
/* Only here because we have some old header files that expect it.. */
#endif
www.eeworm.com/read/357083/3031870
h segment.h
#ifndef __PARISC_SEGMENT_H
#define __PARISC_SEGMENT_H
/* Only here because we have some old header files that expect it.. */
#endif
www.eeworm.com/read/357083/3032101
h segment.h
/*
* BK Id: SCCS/s.segment.h 1.7 05/17/01 18:14:25 cort
*/
#include
www.eeworm.com/read/354345/3078230
h segment.h
extern inline unsigned char get_fs_byte(const char * addr)
{
unsigned register char _v;
__asm__ ("movb %%fs:%1,%0":"=r" (_v):"m" (*addr));
return _v;
}
extern inline unsigned short get_fs_word(co
www.eeworm.com/read/351171/3110554
h segment.h
//// 读取fs 段中指定地址处的字节。
// 参数:addr - 指定的内存地址。
// %0 - (返回的字节_v);%1 - (内存地址addr)。
// 返回:返回内存fs:[addr]处的字节。
extern inline unsigned char
get_fs_byte (const char *addr)
{
unsigned register char _v;
__asm
www.eeworm.com/read/350657/3120084
c segment.c
/* $Id: segment.c,v 1.7 2000/08/26 02:38:03 anton Exp $
* segment.c: Prom routine to map segments in other contexts before
* a standalone is completely mapped. This is for sun4 and
*
www.eeworm.com/read/264367/4287980
h segment.h
//// 读取fs 段中指定地址处的字节。
// 参数:addr - 指定的内存地址。
// %0 - (返回的字节_v);%1 - (内存地址addr)。
// 返回:返回内存fs:[addr]处的字节。
extern inline unsigned char
get_fs_byte (const char *addr)
{
unsigned register char _v;
__asm