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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? data.h

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* *	HT Editor *	data.h * *	Copyright (C) 2002, 2003 Stefan Weyergraf (stefan@weyergraf.de) *	Copyright (C) 2002, 2003 Sebastian Biallas (sb@biallas.net) * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License version 2 as *	published by the Free Software Foundation. * *	This program is distributed in the hope that it will be useful, *	but WITHOUT ANY WARRANTY; without even the implied warranty of *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *	GNU General Public License for more details. * *	You should have received a copy of the GNU General Public License *	along with this program; if not, write to the Free Software *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef __DATA_H__#define __DATA_H__#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "io/types.h"#include <cstdlib>typedef uint32 ObjectID;typedef uint32 ID;class ObjectStream;struct BuildCtorArg {};template <typename T1, typename T2>inline bool instanceOf(const T2 *o){	return (dynamic_cast<const T1*>(o) != NULL);} /* *	C style malloc support */class HTMallocRes;HTMallocRes ht_malloc(size_t);class HTMallocRes{private:	friend HTMallocRes ht_malloc(size_t);	const size_t mSize;	HTMallocRes(size_t size)		: mSize(size)	{	}	HTMallocRes operator=(const HTMallocRes &); // not implementedpublic:	template <typename T> operator T* () const	{		return static_cast<T*>(::malloc(mSize));	}};inline HTMallocRes ht_malloc(size_t size){	return HTMallocRes(size);}/** *	Macro for creating object build functions */#define BUILDER(reg, obj, parent) Object *build_##obj(){BuildCtorArg a;return new obj(a);}#define BUILDER2(reg, obj) Object *build_##obj(){BuildCtorArg a;return new obj(a);}/** *	Registers builder function by object id. */#define REGISTER(reg, obj) registerAtom(reg, (void*)build_##obj);/** *	Unregisters builder function by object id. */#define UNREGISTER(reg, obj) unregisterAtom(reg);/* actually a str => bigendian-int *//** used to define ObjectIDs */#define MAGIC32(magic) (unsigned long)(((unsigned char)magic[0]<<24) | ((unsigned char)magic[1]<<16) | ((unsigned char)magic[2]<<8) | (unsigned char)magic[3])/** No/invalid object */#define OBJID_INVALID			((ObjectID)0)/** A placeholder object id */#define OBJID_TEMP			((ObjectID)-1)#define OBJID_OBJECT			MAGIC32("DAT\x00")#define OBJID_ARRAY			MAGIC32("DAT\x10")#define OBJID_STACK			MAGIC32("DAT\x11")#define OBJID_BINARY_TREE		MAGIC32("DAT\x20")#define OBJID_AVL_TREE			MAGIC32("DAT\x21")#define OBJID_SET			MAGIC32("DAT\x22")#define OBJID_SLINKED_LIST		MAGIC32("DAT\x30")#define OBJID_QUEUE			MAGIC32("DAT\x31")#define OBJID_DLINKED_LIST		MAGIC32("DAT\x32")#define OBJID_KEYVALUE			MAGIC32("DAT\x40")#define OBJID_SINT			MAGIC32("DAT\x41")#define OBJID_SINT64			MAGIC32("DAT\x42")#define OBJID_UINT			MAGIC32("DAT\x43")#define OBJID_UINT64			MAGIC32("DAT\x44")#define OBJID_FLOAT			MAGIC32("DAT\x45")#define OBJID_MEMAREA			MAGIC32("DAT\x48")#define OBJID_STRING			MAGIC32("DAT\x50")#define OBJID_ISTRING			MAGIC32("DAT\x51")#define OBJID_AUTO_COMPARE		MAGIC32("DAT\xc0")/** *	This is THE base class. */class Object {public:				Object(BuildCtorArg&) {};				Object() {};	virtual			~Object() {};		void		init() {};	virtual	void		done() {};/* new *//** *	Standard object duplicator. *	@returns copy of object */	virtual	Object *	clone() const;/** *	Standard Object comparator. *	@param obj object to compare to *	@returns 0 for equality, negative number if |this<obj| and positive number if |this>obj| */	virtual	int		compareTo(const Object *obj) const;/** *	Stringify object. *	Stringify object in string-buffer <i>s</i>. Never writes more than *	<i>maxlen</i> characters to <i>s</i>. If <i>maxlen</i> is > 0, a *	trailing zero-character is written. * *	@param buf pointer to buffer that receives object stringification *	@param buflen size of buffer that receives object stringification *	@returns number of characters written to <i>s</i>, not including the trailing zero */	virtual	int		toString(char *buf, int buflen) const;/** *	Standard Object idle function. *	Overwrite and register with htidle.cc::register_idle() *	(FIXME) * *	@returns true if working, false if really idle */	virtual	bool		idle();/** *	Load object from object stream. * *	@param s object stream to load this object from */	virtual	void		load(ObjectStream &s);/** *	@returns unique object id. */	virtual	ObjectID	getObjectID() const;/** *	stores object. * *	@param s object stream to store this object into */	virtual	void		store(ObjectStream &s) const;};typedef int (*Comparator)(const Object *a, const Object *b);int autoCompare(const Object *a, const Object *b);typedef void* ObjHandle;const ObjHandle invObjHandle = NULL;const uint invIdx = ((uint)-1);/** *	An Enumerator. */class Enumerator: public Object {public:				Enumerator(BuildCtorArg&a): Object(a) {};				Enumerator() {};	/* extends Object */	virtual Enumerator *	clone() const = 0;	virtual	int		toString(char *buf, int buflen) const;	/* new *//** *	Count elements. * *	@returns number of objects contained in this structure *	@throws NotImplementedException if counting of elements is not supported */	virtual	uint		count() const = 0;/** *	Compare objects. *	Compare objects <i>a</i> and <i>b</i> and determine their (logical) *	linear order. * *	@param a object a *	@param b object b *	@returns 0 if <i>a</i> equals <i>b</i>, *	a value >0 if <i>a</i> is greater than <i>b</i> and *	a value <0 if <i>a</i> is less than <i>b</i> */	virtual	int		compareObjects(const Object *a, const Object *b) const = 0;/** *	Test if contained. *	Test if an object like <i>obj</i> is contained in this structure * *	@param obj signature of object to find *	@returns true if an object like <i>obj</i> is contained, false otherwise */	inline	bool		contains(const Object *obj) const	{		return find(obj) != invObjHandle;	}/** *	Test if empty. *	@returns true if empty */	inline bool		isEmpty() const	{		return count() == 0;	}/** *	Find equal object. *	Find first object equaling <i>obj</i> in this structure *	and if found return it's object handle. * *	@param obj signature of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */	virtual	ObjHandle	find(const Object *obj) const;/** *	Find greater-or-equal object. *	Find lowest object being greater or equal compared to <i>obj</i> in this structure *	and if found return it's object handle. (lowest, greater and equal are *	defined via the compareTo method) * *	@param obj signature of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */	virtual	ObjHandle	findGE(const Object *obj) const;/** *	Find greater object. *	Find lowest object being greater compared to <i>obj</i> in this structure *	and if found return it's object handle. (lowest and greater are *	defined via the compareTo method) * *	@param obj signature of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */	virtual	ObjHandle	findG(const Object *obj) const;/** *	Find lower-or-equal object. *	Find greatest object being lower or equal compared to <i>obj</i> in this structure *	and if found return it's object handle. (greatest, lower and equal are *	defined via the compareTo method) * *	@param obj signature of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */	virtual	ObjHandle	findLE(const Object *obj) const;/** *	Find lower object. *	Find greatest object being lower compared to <i>obj</i> in this structure *	and if found return it's object handle. (greatest and lower are *	defined via the compareTo method) * *	@param obj signature of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */	virtual	ObjHandle	findL(const Object *obj) const;/** *	Find object's handle by index. * *	@param i index of object to find *	@returns object handle of found object or <i>invObjHandle</i> if not found */		virtual	ObjHandle	findByIdx(int i) const = 0;/** *	Find (logically) last element's object handle. * *	@returns object handle of the last element or <i>invObjHandle</i> *	if the structure is empty */	virtual	ObjHandle	findLast() const = 0;/** *	Find (logically) previous element's object handle. *	Find logically previous element (predecessor) of the object identified *	by <i>h</i>. Predecessor of "the invalid object" is the last element *	in this structure by definition. (ie. <i>findPrev(invObjHandle) := *	findLast()</i>). * *	@param h object handle to find a predecessor to *	@returns object handle of predecessor or <i>invObjHandle</i> if <i>h</i> *	identifies the first element. */	virtual	ObjHandle	findPrev(ObjHandle h) const = 0;/** *	Find (logically) first element's object handle. * *	@returns object handle of the first element or <i>invObjHandle</i> *	if this structure is empty */	virtual	ObjHandle	findFirst() const = 0;/** *	Find (logically) next element's object handle. *	Find logically next element (successor) of the object, identified *	by <i>h</i>. Successor of "the invalid object" is the first element *	in this structure by definition. (ie. <i>findNext(invObjHandle) := *	findFirst()</i>). * *	@param h object handle to find a successor to *	@returns object handle of successor or <i>invObjHandle</i> if <i>h</i> *	identifies the last element. */	virtual	ObjHandle	findNext(ObjHandle h) const = 0;/** *	Get object pointer from object handle. * *	@param h object handle *	@returns object pointer if <i>h</i> is valid, <i>NULL</i> otherwise */	virtual	Object *	get(ObjHandle h) const = 0;/** *	Get object's index from its handle. * *	@param h object handle of object *	@returns index of object if <i>h</i> is valid, <i>InvIdx</i> otherwise. */	virtual	uint		getObjIdx(ObjHandle h) const = 0;/** *	Get element by index. *	Get the element with index <i>idx</i> (if possible). * *	@param idx index of element to get *	@returns pointer to the requested element or <i>NULL</i> if <i>idx</i> *	is invalid. */		Object *	operator [] (int idx) const		{			return get(findByIdx(idx));		}};#define foreach(XTYPE, X, E, code...)\for (ObjHandle temp0815 = (E).findFirst(); temp0815 != invObjHandle;) {\	XTYPE *X = (XTYPE*)(E).get(temp0815);                          \	temp0815 = (E).findNext(temp0815);                             \	{code;}                                                        \}#define foreachbwd(XTYPE, X, E, code...)\for (ObjHandle temp0815 = (E).findLast(); temp0815 != invObjHandle;) {\	XTYPE *X = (XTYPE*)(E).get(temp0815);                         \	temp0815 = (E).findPrev(temp0815);                            \	{code;}                                                       \}#define firstThat(XTYPE, X, E, condition) \{                                         \	XTYPE *Y = NULL;                  \	foreach(XTYPE, X, E,              \		if (condition) {          \			Y = X;            \			break;            \		}                         \	)                                 \	X = Y;                            \}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美在线另类| 日韩欧美一级在线播放| 国产成人综合视频| 欧美视频一区二区三区四区| 精品精品欲导航| 一卡二卡欧美日韩| 国产精品一区专区| 欧美久久久久中文字幕| 国产精品视频麻豆| 美女视频一区二区| 7777精品伊人久久久大香线蕉的| 日韩精品专区在线| 亚洲国产日韩a在线播放| 99vv1com这只有精品| 精品欧美久久久| 免费成人av在线播放| 欧美系列亚洲系列| 亚洲综合区在线| 色综合视频在线观看| 综合分类小说区另类春色亚洲小说欧美| 亚洲国产欧美一区二区三区丁香婷| 欧美bbbbb| 亚洲综合另类小说| 日本一区二区三区视频视频| 欧美精品丝袜久久久中文字幕| 国产精品一区三区| 午夜激情一区二区三区| 中文字幕亚洲区| 欧美成人bangbros| 欧美女孩性生活视频| va亚洲va日韩不卡在线观看| 美女尤物国产一区| 亚洲午夜精品一区二区三区他趣| 久久欧美中文字幕| 欧美精品一区二区三区蜜桃| 在线一区二区三区| 色猫猫国产区一区二在线视频| 久久精品国产网站| 免费在线看一区| 免费在线观看精品| 日韩精品成人一区二区在线| 亚洲制服丝袜一区| 美国三级日本三级久久99| 婷婷国产在线综合| 日韩激情视频网站| 91精品综合久久久久久| 国产高清视频一区| 在线观看日韩国产| 国产精品三级视频| 日本一道高清亚洲日美韩| 9l国产精品久久久久麻豆| 精品精品国产高清a毛片牛牛| 欧美这里有精品| 国产一区在线观看麻豆| 亚洲午夜电影在线观看| 亚洲成人三级小说| 色老汉一区二区三区| 亚洲国产精品一区二区www | 亚洲精品网站在线观看| 日韩一区二区免费在线电影| 免费成人av在线播放| 久久综合中文字幕| 色婷婷综合久久久久中文| 日韩精品电影在线| 国产精品三级视频| 亚洲欧美成人一区二区三区| 亚洲一区中文在线| 久久不见久久见免费视频1 | 亚洲综合在线视频| 亚洲aaa精品| 在线免费亚洲电影| 久久综合视频网| 日本欧美一区二区三区| 99亚偷拍自图区亚洲| 欧美大片一区二区| 亚洲美女淫视频| 成人激情av网| 久久精品视频一区二区三区| 亚洲v精品v日韩v欧美v专区| 色天天综合久久久久综合片| 亚洲国产精品99久久久久久久久 | 成人av电影免费观看| 欧美在线高清视频| 亚洲欧美经典视频| 欧美日韩综合一区| 亚洲欧美国产三级| 欧美一区二区三区的| 亚洲成人精品影院| 国产精品天美传媒| 久久久蜜臀国产一区二区| 日韩欧美成人午夜| 欧美成人精品1314www| 色94色欧美sute亚洲线路一ni| 欧美一区二区三区播放老司机| 日韩精品一区二区三区在线观看 | 91网站最新地址| www.爱久久.com| 精品福利在线导航| 91精品国产美女浴室洗澡无遮挡| 成人做爰69片免费看网站| 久久精品国产免费| 粗大黑人巨茎大战欧美成人| 美女久久久精品| 热久久久久久久| 日韩电影免费一区| 首页国产丝袜综合| 亚洲午夜视频在线| 亚洲综合成人在线| 丰满白嫩尤物一区二区| 国产精品免费aⅴ片在线观看| 91福利国产精品| 九九在线精品视频| 蜜乳av一区二区三区| 中文字幕一区二区三区av| 538在线一区二区精品国产| 秋霞电影一区二区| 亚瑟在线精品视频| 亚洲柠檬福利资源导航| 欧美一区午夜视频在线观看| 在线精品视频免费观看| 国产乱人伦精品一区二区在线观看| 亚洲欧美一区二区三区极速播放 | 欧美日韩aaaaaa| 国产成人一区二区精品非洲| 日韩av中文在线观看| 亚洲免费在线观看| 中文字幕亚洲一区二区va在线| 精品美女一区二区| 在线不卡a资源高清| 欧美主播一区二区三区| 成人h动漫精品一区二区| 成人午夜av影视| 国产成人综合亚洲91猫咪| 欧美日韩另类一区| 91小视频在线免费看| 久久只精品国产| 偷拍亚洲欧洲综合| 丝袜亚洲另类欧美综合| 成人精品国产福利| 国产精品美女视频| 亚洲人妖av一区二区| 一本在线高清不卡dvd| 91成人在线免费观看| 中文字幕日韩一区| 亚洲国产另类av| 免费看黄色91| 精品一区二区免费| 国产精品888| 久久嫩草精品久久久久| 色94色欧美sute亚洲线路一ni| 国产精品久久三区| 欧美性感一区二区三区| 欧美一区二区精品久久911| 久久久午夜电影| 亚洲线精品一区二区三区八戒| 粉嫩aⅴ一区二区三区四区五区| 成人丝袜18视频在线观看| 欧美日韩国产色站一区二区三区| 欧美tk—视频vk| 国产精品成人网| 日韩成人一区二区三区在线观看| 成人激情动漫在线观看| 日韩欧美一区二区视频| 亚洲色欲色欲www| 极品少妇一区二区| 欧美精品v国产精品v日韩精品| 久久久三级国产网站| 日韩不卡手机在线v区| 99精品视频中文字幕| 精品国产凹凸成av人网站| 亚洲综合一区在线| 国产成人日日夜夜| 精品国产乱码久久久久久久| 亚洲一区自拍偷拍| 成+人+亚洲+综合天堂| 精品国产乱码久久久久久牛牛| 亚洲精品福利视频网站| 成人激情小说乱人伦| 久久影视一区二区| 日本美女视频一区二区| 欧美日本在线播放| 亚洲猫色日本管| 94-欧美-setu| 国产精品视频看| 成人黄色在线看| 亚洲国产精品v| 高清不卡一区二区在线| 久久看人人爽人人| 国产精品综合二区| 久久人人97超碰com| 久久国产成人午夜av影院| 在线成人小视频| 婷婷综合另类小说色区| 在线视频国产一区| 夜夜精品视频一区二区| 一本一道波多野结衣一区二区| 国产精品麻豆欧美日韩ww| 成人激情动漫在线观看| 国产精品区一区二区三| 成人国产精品视频|