/bionic/linker/ |
linker_block_allocator.cpp | 47 void* LinkerBlockAllocator::alloc() { function in class:LinkerBlockAllocator
|
/external/elfutils/libdwfl/ |
dwfl_module_getsym.c | 107 bool alloc = true; local 114 alloc = unlikely (shdr == NULL) || (shdr->sh_flags & SHF_ALLOC); 124 if (! adjust_st_value && mod->e_type != ET_REL && alloc 146 *shndxp = alloc ? shndx : (GElf_Word) -1; 170 else if (alloc)
|
/external/libjpeg-turbo/ |
jdatadst-tj.c | 44 boolean alloc; member in struct:__anon15829 92 if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE); 132 if(dest->alloc) *dest->outbuffer = dest->buffer; 151 boolean alloc) 175 if (dest->buffer == *outbuffer && *outbuffer != NULL && alloc) 179 dest->alloc = alloc; 182 if (alloc) {
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_slab.h | 57 void *(*alloc)(struct util_slab_mempool *pool); member in struct:util_slab_mempool 84 #define util_slab_alloc(pool) (pool)->alloc(pool)
|
/external/opencv3/modules/core/misc/java/src/java/ |
core+MatOfByte.java | 38 public void alloc(int elemNumber) { method in class:MatOfByte 47 alloc(num);
|
core+MatOfDMatch.java | 40 public void alloc(int elemNumber) { method in class:MatOfDMatch 50 alloc(num);
|
core+MatOfDouble.java | 38 public void alloc(int elemNumber) { method in class:MatOfDouble 47 alloc(num);
|
core+MatOfFloat.java | 38 public void alloc(int elemNumber) { method in class:MatOfFloat 47 alloc(num);
|
core+MatOfFloat4.java | 38 public void alloc(int elemNumber) { method in class:MatOfFloat4 47 alloc(num);
|
core+MatOfFloat6.java | 38 public void alloc(int elemNumber) { method in class:MatOfFloat6 47 alloc(num);
|
core+MatOfInt.java | 39 public void alloc(int elemNumber) { method in class:MatOfInt 48 alloc(num);
|
core+MatOfInt4.java | 39 public void alloc(int elemNumber) { method in class:MatOfInt4 48 alloc(num);
|
core+MatOfKeyPoint.java | 40 public void alloc(int elemNumber) { method in class:MatOfKeyPoint 49 alloc(num);
|
core+MatOfPoint.java | 38 public void alloc(int elemNumber) { method in class:MatOfPoint 47 alloc(num);
|
core+MatOfPoint2f.java | 38 public void alloc(int elemNumber) { method in class:MatOfPoint2f 47 alloc(num);
|
core+MatOfPoint3.java | 38 public void alloc(int elemNumber) { method in class:MatOfPoint3 47 alloc(num);
|
core+MatOfPoint3f.java | 38 public void alloc(int elemNumber) { method in class:MatOfPoint3f 47 alloc(num);
|
/external/skia/src/gpu/vk/ |
GrVkBuffer.cpp | 23 VkDeviceMemory alloc; local 65 &alloc)) { 70 const GrVkBuffer::Resource* resource = new GrVkBuffer::Resource(buffer, alloc); 73 VK_CALL(gpu, FreeMemory(gpu->device(), alloc, nullptr)); 128 VkResult err = VK_CALL(gpu, MapMemory(gpu->device(), alloc(), 0, VK_WHOLE_SIZE, 0, &fMapPtr)); 141 VK_CALL(gpu, UnmapMemory(gpu->device(), alloc())); 159 VkResult err = VK_CALL(gpu, MapMemory(gpu->device(), alloc(), 0, srcSizeInBytes, 0, &mapPtr)); 167 VK_CALL(gpu, UnmapMemory(gpu->device(), alloc()));
|
/frameworks/rs/driver/ |
rsdMeshObj.cpp | 136 const Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[ct]; local 137 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv; 139 rsdAllocationSyncAll(rsc, alloc, RS_ALLOCATION_USAGE_SCRIPT); 146 Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[allocIndex]; local 147 DrvAllocation *drvAlloc = (DrvAllocation *)alloc->mHal.drv; 154 mAttribs[ct].ptr = (const uint8_t*)alloc->mHal.drvState.lod[0].mallocPtr;
|
/art/tools/ahat/src/ |
NativeAllocationsHandler.java | 41 for (InstanceUtils.NativeAllocation alloc : allocs) { 42 totalSize += alloc.size; 67 for (InstanceUtils.NativeAllocation alloc : selector.selected()) { 69 DocString.format("%,14d", alloc.size), 70 DocString.text(alloc.heap.getName()), 71 DocString.format("0x%x", alloc.pointer), 72 Value.render(mSnapshot, alloc.referent)); 79 for (InstanceUtils.NativeAllocation alloc : remaining) { 80 total += alloc.size;
|
/external/clang/lib/AST/ |
ExprObjC.cpp | 229 Mem = alloc(Context, Args.size(), 0); 231 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); 248 Mem = alloc(Context, Args.size(), 0); 250 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); 267 Mem = alloc(Context, Args.size(), 0); 269 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK); 278 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs); 282 ObjCMessageExpr *ObjCMessageExpr::alloc(const ASTContext &C, function in class:ObjCMessageExpr 291 return alloc(C, Args.size(), NumStoredSelLocs); 294 ObjCMessageExpr *ObjCMessageExpr::alloc(const ASTContext &C, unsigned NumArgs function in class:ObjCMessageExpr [all...] |
/external/curl/lib/ |
escape.c | 81 size_t alloc = (inlength?(size_t)inlength:strlen(string))+1; local 85 size_t newlen = alloc; 90 ns = malloc(alloc); 94 length = alloc-1; 104 if(newlen > alloc) { 105 alloc *= 2; 106 testing_ptr = realloc(ns, alloc); 148 size_t alloc = (length?length:strlen(string))+1; local 149 char *ns = malloc(alloc); 158 while(--alloc > 0) [all...] |
/external/drm_gralloc/ |
gralloc.cpp | 170 struct alloc_device_t *alloc = (struct alloc_device_t *) dev; local 173 delete alloc; 217 struct alloc_device_t *alloc; local 224 alloc = new alloc_device_t; 225 if (!alloc) 228 alloc->common.tag = HARDWARE_DEVICE_TAG; 229 alloc->common.version = 0; 230 alloc->common.module = &dmod->base.common; 231 alloc->common.close = drm_mod_close_gpu0; 233 alloc->alloc = drm_mod_alloc_gpu0 [all...] |
gralloc_drm_priv.h | 55 struct gralloc_drm_bo_t *(*alloc)(struct gralloc_drm_drv_t *drv, member in struct:gralloc_drm_drv_t
|
/external/freetype/src/raster/ |
ftmisc.h | 76 FT_Alloc_Func alloc; member in struct:FT_MemoryRec_
|