代码搜索:segment
找到约 10,000 项符合「segment」的源代码
代码结果 10,000
www.eeworm.com/read/135796/5877677
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/135153/5889369
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/133885/5898991
java segment.java
/**
* A line segment
*
*
* @author Waleed Kadous
* @version $Id: Segment.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $
*/
package tclass.pep;
import java.io.*;
import tclass.*;
i
www.eeworm.com/read/132747/5910228
h segment.h
#ifndef _ASM_SEGMENT_H
#define _ASM_SEGMENT_H
#ifdef MACH
#define KERNEL_CS 0x08
#define KERNEL_DS 0x10
#define USER_CS 0x17
#define USER_DS 0x1F
#else /* !MACH */
#define KERNEL_CS 0x10
#defin
www.eeworm.com/read/132747/5910543
h segment.h
#ifndef _ASM_SEGMENT_H
#define _ASM_SEGMENT_H
#define KERNEL_CS 0x10
#define KERNEL_DS 0x18
#define USER_CS 0x23
#define USER_DS 0x2B
#ifndef __ASSEMBLY__
/*
* Uh, these should become the main
www.eeworm.com/read/128604/5981659
java segment.java
/* Segment.java --
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the
www.eeworm.com/read/128531/5985669
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/127781/5996780
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/127756/6001047
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;
__as
www.eeworm.com/read/125688/6023202
h segment.h
#ifndef _ASM_SEGMENT_H
#define _ASM_SEGMENT_H
#define __KERNEL_CS 0x10
#define __KERNEL_DS 0x18
#define __USER_CS 0x23
#define __USER_DS 0x2B
#endif