HomeSort by relevance Sort by last modified time
    Searched defs:ALLOCATE (Results 1 - 2 of 2) sorted by null

  /external/opencore/oscl/oscl/osclbase/src/
oscl_defalloc.h 52 #define ALLOCATE(n) allocate_fl(n,__FILE__,__LINE__)
54 #define ALLOCATE(n) allocate(n)
69 virtual OsclAny* allocate(const uint32 size) = 0;
80 return allocate(size);
95 virtual OsclAny* allocate(const uint32 size) = 0;
106 return allocate(size);
141 //the caller. It can be invoked with the ALLOCATE macro.
148 pointer allocate(uint32 size) function in class:Oscl_TAlloc
  /external/yaffs2/yaffs2/mtdemul/
nandemul2k.c 40 #define ALLOCATE(x) kmalloc(x,GFP_KERNEL)
179 ned.block = ALLOCATE(sizeof(nandemul_Block*) * nBlocks );
192 if(!(blk = ned.block[i] = ALLOCATE(sizeof(nandemul_Block))))
200 if((blk->page[j] = ALLOCATE(sizeof(nandemul_Page))) == 0)

Completed in 87 milliseconds