/frameworks/wilhelm/src/android/ |
android_StreamPlayer.cpp | 84 sp<IMemory> mem = mBuffers.itemAt(index); 85 SLAint64 length = (SLAint64) mem->size(); 92 // a new shared mem buffer is available: let's try to fill immediately 194 // we're going to change the shared mem buffer queue, so lock it 199 sp<IMemory> mem = mBuffers.itemAt(bufferId); local 200 bufferLoc = mem->pointer(); 201 buffSize = mem->size(); 210 // 3/ notify shared mem listener that new data is available
|
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_rwops.h | 86 } mem; member in union:SDL_RWops::__anon35966 103 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromMem(void *mem, int size); 104 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromConstMem(const void *mem, int size);
|
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_rwops.h | 86 } mem; member in union:SDL_RWops::__anon35990 103 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromMem(void *mem, int size); 104 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromConstMem(const void *mem, int size);
|
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_rwops.h | 86 } mem; member in union:SDL_RWops::__anon36039 103 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromMem(void *mem, int size); 104 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromConstMem(const void *mem, int size);
|
/dalvik/vm/ |
LinearAlloc.cpp | 100 static inline u4* getBlockHeader(void* mem) 102 return ((u4*) mem) -1; 401 void* mem = dvmLinearAlloc(classLoader, len+1); local 402 memcpy(mem, str, len+1); 404 dvmLinearSetReadOnly(classLoader, mem); 405 return (char*) mem; 417 void* dvmLinearRealloc(Object* classLoader, void* mem, size_t newSize) 420 return realloc(mem, newSize); 422 /* make sure we have the right region (and mem != NULL) */ 423 assert(mem != NULL) [all...] |
/external/bluetooth/glib/tests/ |
memchunks.c | 62 gpointer mem); 87 GMemArea *next; /* the next mem area */ 88 GMemArea *prev; /* the previous mem area */ 89 gulong index; /* the current index into the "mem" array */ 90 gulong free; /* the number of free bytes in this mem area */ 92 gulong mark; /* is this mem area marked for deletion */ 93 gchar mem[MEM_AREA_SIZE]; /* the mem array from which atoms get allocated member in struct:_GMemArea 95 * the mem chunk "area_size". ANSI says that it 111 GMemArea *mem_areas; /* a list of all the mem areas owned by this chunk * 231 gpointer mem; local 366 gpointer mem; local 426 gpointer mem; local 523 gulong mem; local [all...] |
/external/clang/test/SemaCXX/ |
member-expr.cpp | 7 static int mem; member in class:X 18 x.mem = 1; 19 xp->mem = 2;
|
/external/clang/tools/arcmt-test/ |
arcmt-test.cpp | 142 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second; local 143 OS << mem->getBuffer();
|
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.cpp | 58 char *mem = Alloc.Allocate<char>(bloblen + 1); local 59 memcpy(mem, blob, bloblen); 62 mem[bloblen] = '\0'; 63 return llvm::StringRef(mem, bloblen);
|
/external/dbus/dbus/ |
dbus-memory.c | 166 * Whether to turn off mem pools, useful for leak checking. 482 void *mem; local 483 mem = malloc (bytes); 485 if (mem) 488 return mem; 535 void *mem; local 536 mem = calloc (bytes, 1); 538 if (mem) 541 return mem; 612 void *mem; local [all...] |
/external/dbus/tools/ |
dbus-cleanup-sockets.c | 53 void *mem; local 58 mem = malloc (bytes); 60 if (mem == NULL) 67 return mem; 73 void *mem; local 81 mem = realloc (old, bytes); 83 if (mem == NULL) 90 return mem;
|
/external/doclava/src/com/google/doclava/ |
LinkReference.java | 135 String mem; local 138 mem = text.substring(1, linkend); 141 mem = text.substring(pound + 1, linkend); 144 mem = null; 151 if (mem != null) { 152 index = mem.indexOf('('); 156 len = mem.length(); 167 char c = mem.charAt(i); 177 if (mem.length() > i+2 && mem.charAt(i+1) == '.' && mem.charAt(i+2) == '.') [all...] |
/external/elfutils/libelf/ |
elf_begin.c | 534 } mem; local 537 ssize_t nread = pread_retry (fildes, mem.header, 547 Elf_Kind kind = determine_kind (mem.header, nread); 556 if ((size_t) nread >= (mem.header[EI_CLASS] == ELFCLASS32 558 return file_read_elf (fildes, NULL, mem.header, offset, maxsize, cmd, [all...] |
/external/grub/stage2/ |
boot.c | 322 /* Check the mem= option to limit memory used for initrd. */ 324 char *mem; local 326 mem = grub_strstr (arg, "mem="); 327 if (mem) 329 char *value = mem + 4; 397 between two options and a space after a "mem=" option isn't 401 That is, copy "mem=XXX" to the end of the command-line, and 412 the "mem" option to the kernel command line. This has its 419 enough. The "mem" option is added if neither of th [all...] |
/external/icu4c/test/cintltst/ |
trietest.c | 822 int32_t mem[UTRIE_DUMMY_SIZE/4]; local 839 utrie_unserializeDummy(&trie, mem, sizeof(mem), initialValue, leadUnitValue, make16BitTrie, &errorCode);
|
/external/icu4c/tools/toolutil/ |
toolutil.cpp | 219 UToolMemory *mem; local 225 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size); 226 if(mem==NULL) { 230 mem->array=mem->staticArray; 232 uprv_strcpy(mem->name, name); 233 mem->capacity=initialCapacity; 234 mem->maxCapacity=maxCapacity; 235 mem->size=size; 236 mem->idx=0 [all...] |
/external/kernel-headers/original/linux/ |
kexec.h | 49 unsigned long mem; /* User space sees this as a (void *) ... */ member in struct:kexec_segment 57 compat_ulong_t mem; /* User space sees this as a (void *) ... */ member in struct:compat_kexec_segment
|
/external/libnfc-nxp/src/ |
phFriNfc_MifStdFormat.c | 331 void *mem = NULL; local 359 PH_FRINFC_MFSTD_FMT_AUTH_SEND_BUF_DEF(mem); 364 PH_FRINFC_MFSTD_FMT_AUTH_SEND_BUF_NFCSECT_KEYA(mem); 369 PH_FRINFC_MFSTD_FMT_AUTH_SEND_BUF_SCRT_KEY(mem); 375 PH_FRINFC_MFSTD_FMT_AUTH_SEND_BUF_MADSECT_KEYA(mem); 515 PHNFC_UNUSED_VARIABLE(mem); 862 uint32_t mem = PH_FRINFC_MFSTD_FMT_VAL_0; local [all...] |
/external/mesa3d/src/glsl/ |
glsl_parser_extras.h | 53 void *mem = hieralloc_zero_size(ctx, size); local 54 assert(mem != NULL); 56 return mem; 61 static void operator delete(void *mem) 63 hieralloc_free(mem);
|
/external/v8/src/ia32/ |
lithium-gap-resolver-ia32.cc | 380 Operand mem = local 383 __ xor_(reg, mem); 384 __ xor_(mem, reg); 385 __ xor_(reg, mem); 387 __ mov(tmp, mem); 388 __ mov(mem, reg);
|
/external/valgrind/main/none/tests/arm/ |
vfp.c | 55 const unsigned int mem[] = { variable 443 : "r" (out), "r" (mem) \ 461 : "r" (out), "r" (mem) \ 477 : "r" (out), "r" (mem), "r" (SDval) \ 495 : "r" (out), "r" (mem) \ 513 : "r" (out), "r" (mem) \ 533 : "r" (endout), "r" (mem) \ 553 : "r" (in), "r" (out), "r" (mem) \ 575 : "r" (in), "r" (out), "r" (mem) \ 598 : "r" (endin), "r" (out), "r" (mem) \ [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
PoolAlloc.h | 45 TAllocation(size_t size, unsigned char* mem, TAllocation* prev = 0) : 46 size(size), mem(mem), prevAlloc(prev) { 81 unsigned char* preGuard() const { return mem + headerSize(); } 86 unsigned char* mem; // beginning of our allocation (pts to header) member in class:TAllocation
|
/external/webp/src/dec/ |
frame.c | 46 uint8_t* mem; local 59 mem = (uint8_t*)dec->mem_; 60 dec->intra_t_ = (uint8_t*)mem; 61 mem += intra_pred_mode_size; 63 dec->y_t_ = (uint8_t*)mem; 64 mem += 16 * mb_w; 65 dec->u_t_ = (uint8_t*)mem; 66 mem += 8 * mb_w; 67 dec->v_t_ = (uint8_t*)mem; 68 mem += 8 * mb_w [all...] |
/frameworks/av/camera/ |
ICamera.cpp | 143 void releaseRecordingFrame(const sp<IMemory>& mem) 148 data.writeStrongBinder(mem->asBinder()); 333 sp<IMemory> mem = interface_cast<IMemory>(data.readStrongBinder()); local 334 releaseRecordingFrame(mem);
|
/frameworks/av/cmds/stagefright/ |
stream.cpp | 109 sp<IMemory> mem = mBuffers.itemAt(index); local 111 ssize_t n = read(mFd, mem->pointer(), mem->size()); 218 sp<IMemory> mem = mBuffers.itemAt(mCurrentBufferIndex); local 221 if (copy + mCurrentBufferOffset > mem->size()) { 222 copy = mem->size() - mCurrentBufferOffset; 225 memcpy((uint8_t *)mem->pointer() + mCurrentBufferOffset, data, copy); 228 if (mCurrentBufferOffset == mem->size()) {
|