代码搜索:segment

找到约 10,000 项符合「segment」的源代码

代码结果 10,000
www.eeworm.com/read/110301/6165429

h segment.h

#ifndef _ASM_SEGMENT_H #define _ASM_SEGMENT_H static inline unsigned char get_user_byte(const char * addr) { register unsigned char _v; __asm__ ("movb %%fs:%1,%0":"=q" (_v):"m" (*addr)); return _
www.eeworm.com/read/110034/6168395

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/102935/6226983

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/273303/6281516

o segment.o

www.eeworm.com/read/273303/6281546

h~ segment.h~

/* * General data structures and routines for segmentation * Copyright (c) 2001, David H. Hovemeyer * $Revision: 1.13 $ * * This is free software. You are permitted to use,
www.eeworm.com/read/273303/6281569

h segment.h

/* * General data structures and routines for segmentation * Copyright (c) 2001, David H. Hovemeyer * $Revision: 1.13 $ * * This is free software. You are permitted to use,
www.eeworm.com/read/273303/6281629

c segment.c

/* * General data structures and routines for segmentation * Copyright (c) 2001, David H. Hovemeyer * $Revision: 1.8 $ * * This is free software. You are permitted to use,
www.eeworm.com/read/322905/6301403

h segment.h

#ifndef _LINUX_SEGMENT_H #define _LINUX_SEGMENT_H #define KERNEL_CS 0x10 #define KERNEL_DS 0x18 #define USER_CS 0x23 #define USER_DS 0x2B #endif
www.eeworm.com/read/322905/6301449

h segment.h

#ifndef _ASM_SEGMENT_H #define _ASM_SEGMENT_H static inline unsigned char get_user_byte(const char * addr) { register unsigned char _v; __asm__ ("movb %%fs:%1,%0":"=q" (_v):"m" (*addr));
www.eeworm.com/read/310703/6306545

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