HomeSort by relevance Sort by last modified time
    Searched defs:mem (Results 176 - 200 of 271) sorted by null

1 2 3 4 5 6 78 91011

  /external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgavideo.c 75 and the DGA 2.0+ extension is available, and we can map mem.
223 unsigned long mem; local
228 mem = (unsigned long)SDL_NAME(XDGAGetMappedMemory)(DGA_Screen);
234 if ( start == mem ) {
715 /* Quick check for available mem */
  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 646 const char *fmt, *mem; local
649 mem = "AGP Memory";
651 mem = "VRAM";
664 SDL_snprintf(message, SDL_arraysize(message), fmt, mem);
    [all...]
  /external/qemu/
kvm-all.c 93 KVMSlot *mem = &s->slots[i]; local
95 if (start_addr == mem->start_addr &&
96 end_addr == mem->start_addr + mem->memory_size) {
97 return mem;
115 KVMSlot *mem = &s->slots[i]; local
117 if (mem->memory_size == 0 ||
118 (found && found->start_addr < mem->start_addr)) {
122 if (end_addr > mem->start_addr &&
123 start_addr < mem->start_addr + mem->memory_size)
133 struct kvm_userspace_memory_region mem; local
226 KVMSlot *mem = kvm_lookup_matching_slot(s, phys_addr, phys_addr + size); local
269 KVMSlot *mem; local
304 KVMSlot *mem; local
676 KVMSlot *mem, old; local
    [all...]
  /external/webp/src/dec/
frame.c 433 uint8_t* mem; local
448 mem = (uint8_t*)dec->mem_;
449 dec->intra_t_ = (uint8_t*)mem;
450 mem += intra_pred_mode_size;
452 dec->y_t_ = (uint8_t*)mem;
453 mem += 16 * mb_w;
454 dec->u_t_ = (uint8_t*)mem;
455 mem += 8 * mb_w;
456 dec->v_t_ = (uint8_t*)mem;
457 mem += 8 * mb_w
    [all...]
idec.c 98 static WEBP_INLINE size_t MemDataSize(const MemBuffer* mem) {
99 return (mem->end_ - mem->start_);
120 MemBuffer* const mem = &idec->mem_; local
121 const uint8_t* const new_base = mem->buf_ + mem->start_;
125 idec->io_.data_size = MemDataSize(mem);
138 if (mem->mode_ == MEM_MODE_MAP) {
143 dec->parts_[last_part].buf_end_ = mem->buf_ + mem->end_
157 MemBuffer* const mem = &idec->mem_; local
195 MemBuffer* const mem = &idec->mem_; local
281 MemBuffer* const mem = &idec->mem_; local
291 MemBuffer* const mem = &idec->mem_; local
361 MemBuffer* const mem = &idec->mem_; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 307 char *mem; local
390 mem = (char *) (a + 1);
391 a->domain_and_port = mem;
392 os_memcpy(mem, host, host_len);
393 mem += host_len + 1;
394 a->path = mem;
396 *mem++ = '/';
398 os_memcpy(mem, path, path_len);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
reslist.c 133 * type_write() functions write their data to mem and update the byteOffset
138 res_write(UNewDataMemory *mem, uint32_t *byteOffset,
491 static void string_write(UNewDataMemory *mem, uint32_t *byteOffset,
496 udata_write32(mem, length);
497 udata_writeUString(mem, res->u.fString.fChars, length + 1);
502 static void alias_write(UNewDataMemory *mem, uint32_t *byteOffset,
506 udata_write32(mem, length);
507 udata_writeUString(mem, res->u.fString.fChars, length + 1);
511 static void array_write(UNewDataMemory *mem, uint32_t *byteOffset,
522 res_write(mem, byteOffset, bundle, current, status)
651 UNewDataMemory *mem = NULL; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 402 MemTable* mem = NULL; local
412 if (mem == NULL) {
413 mem = new MemTable(internal_comparator_);
414 mem->Ref();
416 status = WriteBatchInternal::InsertInto(&batch, mem);
428 if (mem->ApproximateMemoryUsage() > options_.write_buffer_size) {
429 status = WriteLevel0Table(mem, edit, NULL);
435 mem->Unref();
436 mem = NULL;
440 if (status.ok() && mem != NULL)
1014 MemTable* mem; member in struct:leveldb::__anon13653::IterState
1080 MemTable* mem = mem_; local
    [all...]
  /external/chromium_org/third_party/libwebp/demux/
demux.c 111 static int RemapMemBuffer(MemBuffer* const mem,
113 if (size < mem->buf_size_) return 0; // can't remap to a shorter buffer!
115 mem->buf_ = data;
116 mem->end_ = mem->buf_size_ = size;
120 static int InitMemBuffer(MemBuffer* const mem,
122 memset(mem, 0, sizeof(*mem));
123 return RemapMemBuffer(mem, data, size);
126 // Return the remaining data size available in 'mem'
309 MemBuffer* const mem = &dmux->mem_; local
352 MemBuffer* const mem = &dmux->mem_; local
424 MemBuffer* const mem = &dmux->mem_; local
466 MemBuffer* const mem = &dmux->mem_; local
697 MemBuffer mem; local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture.c 56 uint8_t* mem; local
93 mem = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*mem));
94 if (mem == NULL) return 0;
97 picture->memory_ = (void*)mem;
103 picture->y = mem;
104 mem += y_size;
106 picture->u = mem;
107 mem += uv_size;
108 picture->v = mem;
    [all...]
vp8l.c 800 uint32_t* mem = (uint32_t*)WebPSafeMalloc(total_size, sizeof(*mem)); local
801 if (mem == NULL) {
805 enc->argb_ = mem;
806 mem += image_size;
807 enc->argb_scratch_ = mem;
808 mem += argb_scratch_size;
809 enc->transform_data_ = mem;
    [all...]
  /external/chromium_org/third_party/libwebp/webp/
encode.h 214 uint8_t* mem; // final buffer (of size 'max_size', larger than 'size'). member in struct:WebPMemoryWriter
224 // completion, writer.mem and writer.size will hold the coded data.
225 // writer.mem must be freed using the call 'free(writer.mem)'.
  /external/clang/test/CodeGenCXX/
visibility.cpp 659 void mem() {} function in struct:test24::S
664 s.mem<A>();
    [all...]
  /external/e2fsprogs/intl/
loadmsgcat.c 1080 char *mem; local
1188 mem = (char *) malloc (memneed);
1189 if (mem == NULL)
1192 domain->malloced = mem;
1193 inmem_orig_sysdep_tab = (struct sysdep_string_desc *) mem;
1194 mem += n_inmem_sysdep_strings
1196 inmem_trans_sysdep_tab = (struct sysdep_string_desc *) mem;
1197 mem += n_inmem_sysdep_strings
1199 inmem_hash_tab = (nls_uint32 *) mem;
1200 mem += domain->hash_size * sizeof (nls_uint32)
    [all...]
  /external/elfutils/libdw/
libdwP.h 183 char mem[0]; member in struct:Dwarf::libdw_memblock
337 type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
  /external/grub/netboot/
depca.c 135 5) insmod depca.o [irq=7] [io=0x200] [mem=0xd0000] [adapter_name=DE100]
137 [Dave Davies: Changed the code to allow command line mem/name
209 0.42 27-Dec-95 Add 'mem' shared memory assignment for loadable
454 u32 sh_mem; /* address of shared mem */
613 char *mem; local
621 mem = lp.tx_memcpy[entry = lp.tx_cur];
622 memcpy_toio(mem, d, ETH_ALEN);
623 memcpy_toio(mem + ETH_ALEN, nic->node_addr, ETH_ALEN);
624 mem[ETH_ALEN * 2] = t >> 8;
625 mem[ETH_ALEN * 2 + 1] = t
    [all...]
  /external/icu4c/tools/genrb/
reslist.c 135 * type_write() functions write their data to mem and update the byteOffset
140 res_write(UNewDataMemory *mem, uint32_t *byteOffset,
493 static void string_write(UNewDataMemory *mem, uint32_t *byteOffset,
498 udata_write32(mem, length);
499 udata_writeUString(mem, res->u.fString.fChars, length + 1);
504 static void alias_write(UNewDataMemory *mem, uint32_t *byteOffset,
508 udata_write32(mem, length);
509 udata_writeUString(mem, res->u.fString.fChars, length + 1);
513 static void array_write(UNewDataMemory *mem, uint32_t *byteOffset,
524 res_write(mem, byteOffset, bundle, current, status)
653 UNewDataMemory *mem = NULL; local
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 33 ASTList mem = parseMember1(tbl); local
34 if (mem instanceof MethodDecl)
35 return parseMethod2(tbl, (MethodDecl)mem);
37 return mem;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_new.cpp 186 Mem::FillZ(iBmp->DataAddress(), aLength);
322 Mem::FillZ(addr, aLength);
693 Mem::Copy(addr, aData, aLength);
976 Mem::Copy(target, aBits, byteCount);
1024 Mem::Copy(target, aBits, byteCount);
1195 Mem::Copy(aTarget, src, aBytes << 2);
1400 LOCAL_C MRgbCopy* GetCopy(TAny* mem, TDisplayMode aMode)
1404 return new (mem) TRgbCopy<TUint8>(aMode);
1408 return new (mem) TRgbCopy<TUint16>(aMode);
1412 return new (mem) TRgbCopy<TUint32>(aMode)
1421 TStackMem mem = 0; local
1427 TStackMem mem = 0; local
1433 TStackMem mem = 0; local
1439 TStackMem mem = 0; local
    [all...]
dsa_old.cpp 77 Mem::FillZ(iBmp->DataAddress(), aLength);
196 Mem::FillZ(addr, aLength);
480 Mem::Copy(addr, aData, aLength);
653 Mem::Copy(target, aBits, byteCount);
891 Mem::Copy(aTarget, aSource, aBytes);
1034 LOCAL_C MRgbCopy* GetCopy(TAny* mem, TDisplayMode aMode)
1038 return new (mem) TRgbCopy<TUint8>(aMode);
1042 return new (mem) TRgbCopy<TUint16>(aMode);
1046 return new (mem) TRgbCopy<TUint32>(aMode);
1055 TStackMem mem = 0 local
1061 TStackMem mem = 0; local
1067 TStackMem mem = 0; local
1073 TStackMem mem = 0; local
    [all...]
  /external/qemu/hw/
ne2000.c 147 uint8_t mem[NE2000_MEM_SIZE]; member in struct:NE2000State
155 memcpy(s->mem, s->macaddr, 6);
156 s->mem[14] = 0x57;
157 s->mem[15] = 0x57;
161 s->mem[2 * i] = s->mem[i];
162 s->mem[2 * i + 1] = s->mem[i];
259 } else if (s->mem[0] == buf[0] &&
260 s->mem[2] == buf[1] &
    [all...]
  /external/speex/libspeex/
resample.c 138 spx_word16_t *mem; member in struct:SpeexResamplerState_
647 if (!st->mem)
651 st->mem = (spx_word16_t*)speex_alloc(st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
653 st->mem[i] = 0;
659 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
661 st->mem[i] = 0;
672 st->mem = (spx_word16_t*)speex_realloc(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
685 st->mem[i*st->mem_alloc_size+j+st->magic_samples[i]] = st->mem[i*old_alloc_size+j]
807 spx_word16_t *mem = st->mem + channel_index * st->mem_alloc_size; local
830 spx_word16_t *mem = st->mem + channel_index * st->mem_alloc_size; local
    [all...]
  /external/webp/include/webp/
encode.h 214 uint8_t* mem; // final buffer (of size 'max_size', larger than 'size'). member in struct:WebPMemoryWriter
224 // completion, writer.mem and writer.size will hold the coded data.
225 // writer.mem must be freed using the call 'free(writer.mem)'.
  /external/webp/src/demux/
demux.c 113 static int RemapMemBuffer(MemBuffer* const mem,
115 if (size < mem->buf_size_) return 0; // can't remap to a shorter buffer!
117 mem->buf_ = data;
118 mem->end_ = mem->buf_size_ = size;
122 static int InitMemBuffer(MemBuffer* const mem,
124 memset(mem, 0, sizeof(*mem));
125 return RemapMemBuffer(mem, data, size);
128 // Return the remaining data size available in 'mem'
308 MemBuffer* const mem = &dmux->mem_; local
353 MemBuffer* const mem = &dmux->mem_; local
425 MemBuffer* const mem = &dmux->mem_; local
466 MemBuffer* const mem = &dmux->mem_; local
697 MemBuffer mem; local
    [all...]
  /external/webp/src/enc/
picture.c 56 uint8_t* mem; local
93 mem = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*mem));
94 if (mem == NULL) return 0;
97 picture->memory_ = (void*)mem;
103 picture->y = mem;
104 mem += y_size;
106 picture->u = mem;
107 mem += uv_size;
108 picture->v = mem;
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 78 91011