码迷,mamicode.com
首页 >  
搜索关键字:inline hook    ( 8678个结果
简单实现内存池
#include "common.h"#include "pool.h"#include static inline void *objmem_to_obj(void *objmem){return objmem + sizeof(pool_obj_head_t);}static inline vo...
分类:其他好文   时间:2014-06-27 21:24:59    阅读次数:292
display:inline-block
通常我们想让内联元素为行块布局显示,有2种方法,最常见的是方法是.selector {display:block;float:left;……},第二种方法是.selector {display:inline-block;……},对于第二种方法,在IE浏览器中得到支持,测试结果会认为IE能识别disp...
分类:其他好文   时间:2014-06-26 20:34:47    阅读次数:299
Android漫游记(5)---ARM GCC 内联汇编烹饪书(附实例分析)
关于本文档 GNU C编译器针对ARM RISC处理器,提供了内联汇编支持。利用这一非常酷炫的特性,我们可以用来优化软件代码中的关键部分,或者可以使用针对特定处理的汇编处理指令。 本文假定,你已经熟悉ARM汇编语言。本文不是一篇ARM汇编教程,也不是C语言教程。...
分类:移动开发   时间:2014-06-25 07:54:57    阅读次数:354
使用内联中间语言
使用内联中间语言(Inline IL)   内联中间语言(Inline IL)能够直接在中间语言(intermediate language,IL)中定义函数体,中间语言是 F# 编译后的语言,它主要为语言添加了实现特定低级运算符和函数,比如,加法和box 和 not 的功能。我们很少会用到这个功能,因为F# 库FSharp.Core.dll 已经公开了所有的、可能需要的生成中间语言的功能。然...
分类:其他好文   时间:2014-06-25 07:53:41    阅读次数:191
LCA-倍增法(在线)O(nlogn)-O(logn)
1.DFS预处理出所有节点的深度和父节点inline void dfs(int u){ int i; for(i=head[u];i!=-1;i=next[i]) { if (!deep[to[i]]) { ...
分类:其他好文   时间:2014-06-24 20:23:57    阅读次数:251
hdu1698 Just a Hook 线段树:成段替换,总区间求和
线段树功能:update:成段替换...
分类:其他好文   时间:2014-06-24 19:27:52    阅读次数:227
meaning of "%U0%X0" in PowerPC in the GCC inline asm
There are idiosyncrasies in the GCC inline assembly syntax.in the line,__asm__ __volatile__("stw%U0%X0 %1,%0" : "=m"(v->counter) : "r"(i));the stw ass...
分类:其他好文   时间:2014-06-24 14:34:54    阅读次数:309
设计模式 - 模板方法模式(template method pattern) 详解
模板方法模式(template method pattern) 详解本文地址: http://blog.csdn.net/caroline_wendy模板方法模式(template method pattern): 在一个方法中定义一个算法的骨架, 而将一些步骤延迟到子类中. 模板方法使得子类可以在不改变算法结构的情况下, 重新定义算法中的某些步骤.模板方法可以进行挂钩(hook), 钩子(hoo...
分类:其他好文   时间:2014-06-22 18:49:01    阅读次数:227
Android native层动态库注射
Android native 动态库注射,钩子函数的实现。...
分类:移动开发   时间:2014-06-22 17:24:53    阅读次数:335
当inline-block和text-indent遇到IE6,IE7
在实际应用中,考虑到seo,很多button,icon都要用到inline-block和text-indent来处理,例如:Buttoncss我习惯写成这样.btn{display:inline-block; width:100px; height:23px; text-indent:-9999px...
分类:其他好文   时间:2014-06-22 12:56:49    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!