HomeSort by relevance Sort by last modified time
    Searched defs:memory (Results 101 - 125 of 219) sorted by null

1 2 3 45 6 7 8 9

  /external/chromium/chrome/browser/themes/
browser_theme_pack.cc 278 // Returns a piece of memory with the contents of the file |path|.
510 scoped_refptr<RefCountedMemory> memory;
512 memory = data_pack_->GetStaticMemory(prs_id);
516 memory = it->second;
520 if (memory.get()) {
523 if (!gfx::PNGCodec::Decode(memory->front(), memory->size(),
540 RefCountedMemory* memory = NULL; local
545 memory = data_pack_->GetStaticMemory(prs_id);
549 memory = it->second
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
bg.js 11 "about:memory": "transform!.mp3",
  /external/freetype/include/freetype/internal/
ftobjs.h 437 /* memory :: A handle to the memory manager. */
443 FT_Memory memory; member in struct:FT_ModuleRec_
452 #define FT_MODULE_MEMORY( x ) FT_MODULE( x )->memory
529 #define FT_FACE_MEMORY( x ) FT_FACE( x )->memory
826 FT_Memory memory; \/* library's memory manager *\/ member in struct:FT_LibraryRec_
914 FT_Done_Memory( FT_Memory memory ); variable
    [all...]
  /external/freetype/src/autofit/
afcjk.c 77 af_glyph_hints_init( hints, face->memory );
896 FT_Memory memory = hints->memory; local
1000 memory, &edge );
    [all...]
aflatin.c 63 af_glyph_hints_init( hints, face->memory );
730 FT_Memory memory = hints->memory; local
869 error = af_axis_hints_new_segment( axis, memory, &segment );
1044 FT_Memory memory = hints->memory; local
    [all...]
  /external/freetype/src/base/
ftobjs.c 132 FT_Memory memory; local
144 memory = library->memory;
149 stream->memory = memory;
153 /* create a memory-based stream */
185 stream->memory = memory; /* just to be certain */
200 FT_Memory memory = stream->memory; local
239 FT_Memory memory = driver->root.memory; local
267 FT_Memory memory = FT_FACE_MEMORY( slot->face ); local
298 FT_Memory memory = FT_FACE_MEMORY( slot->face ); local
349 FT_Memory memory = driver->root.memory; local
382 FT_Memory memory; local
430 FT_Memory memory = driver->root.memory; local
1115 FT_Memory memory; local
1281 FT_Memory memory = stream->memory; local
1302 FT_Memory memory; local
1341 FT_Memory memory = library->memory; local
1474 FT_Memory memory = library->memory; local
1544 FT_Memory memory = library->memory; local
1686 FT_Memory memory = library->memory; local
1753 FT_Memory memory = library->memory; local
1864 FT_Memory memory = library->memory; local
2001 FT_Memory memory; local
2333 FT_Memory memory; local
2374 FT_Memory memory; local
2435 FT_Memory memory; local
3179 FT_Memory memory = FT_FACE_MEMORY(face); local
3195 FT_Memory memory = FT_FACE_MEMORY( face ); local
3243 FT_Memory memory; local
3467 FT_Memory memory = FT_FACE_MEMORY( face ); local
3495 FT_Memory memory = FT_FACE_MEMORY( face ); local
3529 FT_Memory memory = FT_FACE_MEMORY( face ); local
3859 FT_Memory memory = library->memory; local
3907 FT_Memory memory = library->memory; local
4100 FT_Memory memory = module->memory; local
4132 FT_Memory memory; local
4503 FT_Memory memory; local
    [all...]
  /external/freetype/src/cff/
cfftypes.h 61 /* bytes :: If the index is loaded in memory, its bytes. */
222 FT_Memory memory; member in struct:CFF_FontRec_
  /external/freetype/src/psaux/
afmparse.c 400 FT_Memory memory = parser->memory; local
526 FT_Memory memory,
543 parser->memory = memory;
555 FT_Memory memory = parser->memory; local
597 FT_Memory memory = parser->memory; local
695 FT_Memory memory = parser->memory local
846 FT_Memory memory = parser->memory; local
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 67 FT_Memory memory )
178 FT_Memory memory )
1141 FT_Memory memory = glyph->memory; local
1144 psh_hint_table_done( &glyph->hint_tables[1], memory );
1145 psh_hint_table_done( &glyph->hint_tables[0], memory );
1153 glyph->memory = 0;
1265 FT_Memory memory; local
1888 FT_Memory memory = glyph->memory; local
2190 FT_Memory memory; local
    [all...]
pshalgo.h 211 FT_Memory memory; member in struct:PSH_GlyphRec_
  /external/freetype/src/sfnt/
ttcmap.c 2669 FT_Memory memory; member in struct:TT_CMap14Rec_
2677 FT_Memory memory = cmap->memory; local
    [all...]
  /external/freetype/src/truetype/
ttgload.c 862 FT_Memory memory = loader->face->memory; local
1351 FT_Memory memory = loader->face->memory; local
1445 FT_Memory memory = face->root.memory; local
    [all...]
  /external/icu4c/common/
normalizer2impl.h 199 Normalizer2Impl() : memory(NULL), normTrie(NULL) {
483 UDataMemory *memory; member in class:Normalizer2Impl
  /external/quake/quake/src/QW/client/
cd_audio.c 797 char *memory; local
842 memory = dos_getmemory(sizeof(struct cd_request
844 if (memory == NULL)
846 Con_DPrintf("CDAudio_Init: Unable to allocate low memory.\n");
850 cdRequest = (struct cd_request *)memory;
854 readInfo = (union readInfo_u *)(memory + sizeof(struct cd_request));
  /external/quake/quake/src/WinQuake/
cd_audio.cpp 803 char *memory; local
846 memory = dos_getmemory(sizeof(struct cd_request
848 if (memory == NULL)
850 Con_DPrintf("CDAudio_Init: Unable to allocate low memory.\n");
854 cdRequest = (struct cd_request *)memory;
858 readInfo = (union readInfo_u *)(memory + sizeof(struct cd_request));
  /external/v8/src/
platform-cygwin.cc 96 __asm__ __volatile__("" : : : "memory");
207 PosixMemoryMappedFile(FILE* file, void* memory, int size)
208 : file_(file), memory_(memory), size_(size) { }
210 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
226 void* memory = local
228 return new PosixMemoryMappedFile(file, memory, size);
241 void* memory = local
243 return new PosixMemoryMappedFile(file, memory, size);
325 // The mmap-based virtual memory implementation as it is used on most posix
327 // This causes VirtualMemory::Commit to not always commit the memory regio
    [all...]
platform-freebsd.cc 103 __asm__ __volatile__("" : : : "memory");
217 PosixMemoryMappedFile(FILE* file, void* memory, int size)
218 : file_(file), memory_(memory), size_(size) { }
220 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
236 void* memory = local
238 return new PosixMemoryMappedFile(file, memory, size);
251 void* memory = local
253 return new PosixMemoryMappedFile(file, memory, size);
369 // Unmap extra memory reserved before and after the desired block.
platform-macos.cc 144 // defined tag 255 This helps identify V8-allocated regions in memory analysis
197 PosixMemoryMappedFile(FILE* file, void* memory, int size)
198 : file_(file), memory_(memory), size_(size) { }
200 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
216 void* memory = local
223 return new PosixMemoryMappedFile(file, memory, size);
236 void* memory = local
243 return new PosixMemoryMappedFile(file, memory, size);
378 // Unmap extra memory reserved before and after the desired block.
platform-solaris.cc 125 __asm__ __volatile__("" : : : "memory");
223 PosixMemoryMappedFile(FILE* file, void* memory, int size)
224 : file_(file), memory_(memory), size_(size) { }
226 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
242 void* memory = local
244 return new PosixMemoryMappedFile(file, memory, size);
257 void* memory = local
259 return new PosixMemoryMappedFile(file, memory, size);
359 // Unmap extra memory reserved before and after the desired block.
  /external/webp/src/enc/
picture.c 120 void* memory; local
127 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
128 if (memory == NULL) return 0;
131 picture->memory_argb_ = memory;
132 picture->argb = (uint32_t*)memory;
157 // into 'dst'. Mark 'dst' as not owning any memory.
183 // Release memory owned by 'picture' (both YUV and ARGB buffers).
469 // WebPMemoryWriter: Write-to-memory
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
ainstr_iw.h 60 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:iwffff_wave::__anon23837
61 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_iw.h 60 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:iwffff_wave::__anon25427
61 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ainstr_iw.h 63 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:iwffff_wave::__anon26203
64 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_iw.h 60 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:iwffff_wave::__anon26939
61 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ainstr_iw.h 63 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:iwffff_wave::__anon27715
64 unsigned char *ptr; /* pointer to waveform in system memory */

Completed in 582 milliseconds

1 2 3 45 6 7 8 9