码迷,mamicode.com
首页 >  
搜索关键字:allocation    ( 324个结果
JavaScript垃圾回收(一)——内存分配
一、静态分配( Static Allocation ) 从静态存储区域分配内存。程序编译的时候内存已经分配好了,并且在程序的整个运行期间都存在,如静态变量和全局变量。 如下面这张网上找的图:把房间看做一个程序,我们可以把静态分配的内存当成是房间里的耐用家具。通常,它们无需释放和回收,因为没人会天.....
分类:编程语言   时间:2014-10-13 10:41:12    阅读次数:232
深入学习golang(4)—new与make
Go语言中的内建函数new和make是两个用于内存分配的原语(allocation primitives)。对于初学者,这两者的区别也挺容易让人迷糊的。简单的说,new只分配内存,make用于slice,map,和channel的初始化。
分类:其他好文   时间:2014-10-03 15:14:44    阅读次数:206
Advanced Memory Allocation 内存分配进阶[转]
May 01, 2003 ByGianluca InsolvibileinEmbeddedSoftwareCall some useful fuctions of the GNU C library to save precious memory and to find nasty bugs.Dea...
分类:其他好文   时间:2014-09-23 12:44:54    阅读次数:455
线性扫描寄存器分配算法--相关论文
http://cs.au.dk/~mis/dOvs/slides/Kevin-linear-scan-reg-alloc.pdf ftp://ftp.ssw.uni-linz.ac.at/pub/Papers/Moe02.PDF Greedy Register Allocation in LLVM 3.0 http://blog.llvm.org/2011/09/greedy-registe...
分类:其他好文   时间:2014-09-18 20:49:45    阅读次数:577
GPU && CUDA:主机和设备间数据传输测试
数据传输测试,先从主机传输到设备,再在设备内传输,再从设备传输到主机。H-->DD-->DD-->H 1 // moveArrays.cu 2 // 3 // demonstrates CUDA interface to data allocation on device (GPU) 4 // an...
分类:其他好文   时间:2014-09-18 18:27:54    阅读次数:189
Android4.4 fence机制分析
Android4.4 fence机制分析  在任何一个系统中,无可避免的都会跟各种buffers打交道,最经典的模式就是消费-生产者模式,一个独立的buffer在它们之间的交换等操作都需要一个机制来控制每个buffer的“生命周期”,即ALLOCATION 和 RELEASE ,此外还要考虑到同步性问题,什么时候可以read buffer和write buffer都需要听从调遣。   在an...
分类:移动开发   时间:2014-09-12 15:13:43    阅读次数:325
Safe and efficient allocation of memory
Aspects of the present invention are directed at centrally managing the allocation of memory to executable images in a way that inhibits malware from ...
分类:其他好文   时间:2014-09-10 19:14:50    阅读次数:327
lda:变分的推导
lda,latent diriclet allocation,是一个最基本的bayesian模型。本文要研究lda基于变分的推导方法。意义是重大的。一、符号的定义: the number of topics: the number of documents: the number of terms ...
分类:其他好文   时间:2014-09-03 10:49:46    阅读次数:239
mallo函数
malloc的全称是memory allocation,中文叫动态内存分配,当无法知道内存具体位置的时候,想要绑定真正的内存空间,就需要用到动态的分配内存。原型为extern void *malloc(unsigned int num_bytes)。1函数简介原型extern void *mallo...
分类:其他好文   时间:2014-08-29 17:36:58    阅读次数:354
324条   上一页 1 ... 28 29 30 31 32 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!