/toolchain/binutils/binutils-2.25/bfd/ |
pe-mips.c | 625 unsigned char *mem = contents + rel->r_vaddr; local 715 mem = pointer to memory we're fixing up 733 tmp = bfd_get_32 (input_bfd, mem); 736 bfd_put_32 (input_bfd, tmp, mem); 740 tmp = bfd_get_32 (input_bfd, mem); 750 bfd_put_32 (input_bfd, tmp, mem); 754 tmp = bfd_get_32 (input_bfd, mem); 777 bfd_put_32 (input_bfd, tmp, mem); 781 tmp = bfd_get_32 (input_bfd, mem); 786 bfd_put_32 (input_bfd, tmp, mem); [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
strings.c | 338 void *mem; 369 mem = xmalloc (sectsize); 371 if (bfd_get_section_contents (abfd, sect, mem, (file_ptr) 0, sectsize)) 376 0, sectsize, (char *) mem); 379 free (mem); 335 void *mem; local
|
/toolchain/binutils/binutils-2.25/opcodes/ |
i960-dis.c | 39 static int mem (bfd_vma, unsigned long, unsigned long, int); 149 instr_len = mem (memaddr, word1, word2, 0); 315 /* MEM format. */ 319 mem (bfd_vma memaddr, unsigned long word1, unsigned long word2, int noprint) 920 /* MEM format instruction. */ 921 len = mem (0, word1, word2, 1); 318 mem (bfd_vma memaddr, unsigned long word1, unsigned long word2, int noprint) function
|
/art/runtime/native/ |
sun_misc_Unsafe.cc | 219 void* mem = malloc(bytes); local 220 if (mem == nullptr) { 224 return (uintptr_t) mem;
|
/bionic/libc/kernel/uapi/asm-arm/asm/ |
setup.h | 130 struct tag_mem32 mem; member in union:tag::__anon220
|
/development/ndk/platforms/android-21/arch-arm/include/asm/ |
setup.h | 130 struct tag_mem32 mem; member in union:tag::__anon1396
|
/external/clang/test/CXX/class.access/class.friend/ |
p1.cpp | 341 void *mem; member in class:test12::B 344 void *var = static_cast<B*>(this)->mem;
|
/external/clang/test/SemaCXX/ |
scope-check.cpp | 395 T mem; member in class:PR18217::MyCl
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_common.cc | 352 void *mem = InternalAlloc(sizeof(AddressRange)); local 353 AddressRange *r = new(mem) AddressRange(beg, end, executable);
|
sanitizer_deadlock_detector2.cc | 119 void *mem = MmapOrDie(sizeof(DD), "deadlock detector"); local 120 return new(mem) DD(flags);
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
setup.h | 150 struct tag_mem32 mem; member in union:tag::__anon14298
|
/external/libexif/libexif/ |
exif-entry.c | 43 ExifMem *mem; member in struct:_ExifEntryPrivate 80 d = exif_mem_alloc (e->priv->mem, i); 97 if (!i) { exif_mem_free (e->priv->mem, d_orig); return NULL; } 99 d = exif_mem_realloc (e->priv->mem, d_orig, i); 111 ExifMem *mem = exif_mem_new_default (); local 112 ExifEntry *e = exif_entry_new_mem (mem); 114 exif_mem_unref (mem); 120 exif_entry_new_mem (ExifMem *mem) 124 e = exif_mem_alloc (mem, sizeof (ExifEntry)); 126 e->priv = exif_mem_alloc (mem, sizeof (ExifEntryPrivate)) 160 ExifMem *mem = e->priv->mem; local [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/ |
btPolyhedralConvexShape.cpp | 52 void* mem = btAlignedAlloc(sizeof(btConvexPolyhedron),16); local 53 m_polyhedron = new (mem) btConvexPolyhedron;
|
/external/libopus/celt/ |
pitch.c | 109 opus_val16 *mem) 119 mem0=mem[0]; 120 mem1=mem[1]; 121 mem2=mem[2]; 122 mem3=mem[3]; 123 mem4=mem[4]; 139 mem[0]=mem0; 140 mem[1]=mem1; 141 mem[2]=mem2; 142 mem[3]=mem3 153 opus_val16 lpc[4], mem[5]={0,0,0,0,0}; local [all...] |
/external/libxml2/ |
runsuite.c | 426 int ret = 0, mem, memt; local 501 mem = xmlMemUsed(); 530 if ((mem != xmlMemUsed()) && (extraMemoryFromResolver == 0)) { 532 xmlGetLineNo(tmp), xmlMemUsed() - mem); 558 mem = xmlMemUsed(); 587 if ((mem != xmlMemUsed()) && (extraMemoryFromResolver == 0)) { 589 xmlGetLineNo(tmp), xmlMemUsed() - mem); 783 int ret = 0, mem; local 787 mem = xmlMemUsed(); 865 if (mem != xmlMemUsed()) 881 int ret = 0, mem; local [all...] |
/external/v8/test/cctest/heap/ |
test-mark-compact.cc | 56 byte* mem = NewArray<byte>(20*kPointerSize); local 57 Address low = reinterpret_cast<Address>(mem); 76 DeleteArray(mem);
|
/external/webp/src/utils/ |
quant_levels_dec.c | 219 uint8_t* mem = (uint8_t*)WebPSafeMalloc(1U, total_size); local 221 if (mem == NULL) return 0; 222 p->mem_ = (void*)mem; 224 p->start_ = (uint16_t*)mem; 229 mem += size_scratch_m; 231 p->average_ = (uint16_t*)mem; 232 mem += size_m; 246 p->correction_ = ((int16_t*)mem) + LUT_SIZE;
|
/frameworks/av/media/libmedia/ |
IMediaSource.cpp | 54 RemoteMediaBufferWrapper(const sp<IMemory> &mem) 55 : MediaBuffer(mem) { 155 sp<IMemory> mem; local 158 mem = interface_cast<IMemory>(binder); 159 LOG_ALWAYS_FATAL_IF(mem.get() == nullptr, 161 mMemoryCache.insert(index, mem); 163 mem = mMemoryCache.lookup(index); 164 LOG_ALWAYS_FATAL_IF(mem.get() == nullptr, 170 buf = new RemoteMediaBufferWrapper(mem); 239 void insert(uint64_t index, const sp<IMemory> &mem) { [all...] |
/frameworks/av/media/libstagefright/filters/ |
MediaFilter.cpp | 245 sp<IMemory> mem = mDealer[portIndex]->allocate(bufferSize); local 246 CHECK(mem.get() != NULL); 253 info.mData = new ABuffer(mem->pointer(), bufferSize);
|
/frameworks/native/vulkan/libvulkan/ |
swapchain.cpp | 220 void* mem = allocator->pfnAllocation(allocator->pUserData, sizeof(Surface), local 223 if (!mem) 225 Surface* surface = new (mem) Surface; 618 void* mem = allocator->pfnAllocation(allocator->pUserData, local 621 if (!mem) 623 Swapchain* swapchain = new (mem) Swapchain(surface, num_images); [all...] |
/hardware/intel/common/libmix/videoencoder/ |
IntelMetadataBuffer.cpp | 84 sp<MemoryBase> mem = new MemoryBase(heap, offset, size); local 85 if (mem == NULL) 91 map->value = (intptr_t)( mem->pointer() + 0x0FFF) & ~0x0FFF; 92 map->membase = mem; 96 heap->getHeapID(), mem->pointer(), *((intptr_t *)(mem->pointer())), map->value); 315 ALOGE("onTransact GET_MEM: Not find mem"); 462 //Detect IntelBufferSharingService, share mem to service 476 //get type/Mem OBJ 682 IMB_Result IntelMetadataBuffer::ShareValue(sp<MemoryBase> mem) [all...] |
/hardware/ti/omap4-aah/camera/inc/V4LCameraAdapter/ |
V4LCameraAdapter.h | 62 void *mem[NB_BUFFER]; member in struct:Ti::Camera::VideoInfo
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree-ssa-operands.h | 46 MEM array varies in size. */ 50 char mem[1]; variable
|
/prebuilts/misc/windows/sdl2/test/ |
testautomation_rwops.c | 224 char mem[sizeof(RWopsHelloWorldTestString)]; local 229 SDL_zero(mem); 232 rw = SDL_RWFromMem(mem, sizeof(RWopsHelloWorldTestString)-1); 543 SDLTest_AssertPass("Call to SDL_RWread(mem, size=%d)", size); 545 SDLTest_AssertPass("Call to SDL_RWseek(mem,SEEK_END)"); 547 SDLTest_AssertPass("Call to SDL_RWclose(mem)"); 562 SDLTest_AssertCheck(rv_mem == rv_file, "Verify returned read blocks matches for mem and file reads; got: rv_mem=%d rv_file=%d", rv_mem, rv_file); 563 SDLTest_AssertCheck(sv_mem == sv_file, "Verify SEEK_END position matches for mem and file seeks; got: sv_mem=%llu sv_file=%llu", sv_mem, sv_file); 564 SDLTest_AssertCheck(buffer_mem[slen] == 0, "Verify mem buffer termination; expected: 0, got: %d", buffer_mem[slen]); 568 "Verify mem buffer contain alphabet string; expected: %s, got: %s", RWopsAlphabetString, buffer_mem) [all...] |
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/asm/ |
setup.h | 130 struct tag_mem32 mem; member in union:tag::__anon55949
|