代码搜索:segment
找到约 10,000 项符合「segment」的源代码
代码结果 10,000
www.eeworm.com/read/329346/12958924
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;
//
www.eeworm.com/read/327199/13095452
cpp segment.cpp
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/327199/13095454
h segment.h
//////////////////////////////////////////////////////////////////////
//ICTCLAS简介:计算所汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),
// 功能有:中文分词;词性标
www.eeworm.com/read/139294/13164225
h segment.h
extern inline unsigned char get_fs_byte(const char * addr)
{
unsigned register char _v;
__asm__ ("movb %%fs:%1,%b0":"=r" (_v):"m" (*addr));
return _v;
}
extern inline unsigned short get_fs_word(c
www.eeworm.com/read/240652/13208608
cpp segment.cpp
#include "stdafx.h"
#include "segment.h"
#include "math.h"
//边缘检测
void sobel(unsigned char *imgBuf, int width, int height, int biBitCount)
{
unsigned char *buf=new unsigned char[width*height*bi
www.eeworm.com/read/240652/13208659
h segment.h
//边缘检测
void sobel(unsigned char *imgBuf, int width, int height, int biBitCount);
void robot(unsigned char *imgBuf, int width, int height, int biBitCount);
void prewitt(unsigned char *imgBuf, int wi
www.eeworm.com/read/240652/13208699
sbr segment.sbr
www.eeworm.com/read/240652/13208758
obj segment.obj
www.eeworm.com/read/325151/13222980
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/324241/13277629
cpp segment.cpp
// Segment.cpp : implementation file
//
#include "stdafx.h"
#include "wgl_32.h"
#include "Segment.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__