HomeSort by relevance Sort by last modified time
    Searched defs:memory (Results 201 - 225 of 502) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/libwebp/enc/
picture.c 66 void* memory; local
78 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
79 if (memory == NULL) {
83 picture->memory_argb_ = memory;
84 picture->argb = (uint32_t*)memory;
177 // WebPMemoryWriter: Write-to-memory
  /external/chromium_org/third_party/libxml/src/
threads.c 451 "xmlGlobalInitMutexLock: out of memory\n");
556 * global state. It is is used here to reclaim memory resources.
563 /* free any memory allocated in the thread's xmlLastError */
585 "xmlGetGlobalState: out of memory\n");
601 void *memory; member in struct:_xmlGlobalStateCleanupHelperParams
611 xmlFreeGlobalState(params->memory);
618 void *memory; member in struct:_xmlGlobalStateCleanupHelperParams
692 globalval = (xmlGlobalState *) (p ? p->memory : NULL);
703 "xmlGetGlobalState: out of memory\n");
707 p->memory = tsd
    [all...]
  /external/chromium_org/v8/src/
platform-cygwin.cc 63 PosixMemoryMappedFile(FILE* file, void* memory, int size)
64 : file_(file), memory_(memory), size_(size) { }
66 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
82 void* memory = local
84 return new PosixMemoryMappedFile(file, memory, size);
97 void* memory = local
99 return new PosixMemoryMappedFile(file, memory, size);
176 // The mmap-based virtual memory implementation as it is used on most posix
178 // This causes VirtualMemory::Commit to not always commit the memory region
189 // Use a multiple of 64k to prevent committing unused memory
    [all...]
platform-freebsd.cc 72 PosixMemoryMappedFile(FILE* file, void* memory, int size)
73 : file_(file), memory_(memory), size_(size) { }
75 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
91 void* memory = local
93 return new PosixMemoryMappedFile(file, memory, size);
106 void* memory = local
108 return new PosixMemoryMappedFile(file, memory, size);
199 // Unmap extra memory reserved before and after the desired block.
platform-linux.cc 18 // Ubuntu Dapper requires memory pages to be marked as
129 PosixMemoryMappedFile(FILE* file, void* memory, int size)
130 : file_(file), memory_(memory), size_(size) { }
132 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
148 void* memory = local
155 return new PosixMemoryMappedFile(file, memory, size);
168 void* memory = local
175 return new PosixMemoryMappedFile(file, memory, size);
309 // Unmap extra memory reserved before and after the desired block.
platform-macos.cc 47 // defined tag 255 This helps identify V8-allocated regions in memory analysis
72 PosixMemoryMappedFile(FILE* file, void* memory, int size)
73 : file_(file), memory_(memory), size_(size) { }
75 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
91 void* memory = local
98 return new PosixMemoryMappedFile(file, memory, size);
111 void* memory = local
118 return new PosixMemoryMappedFile(file, memory, size);
201 // Unmap extra memory reserved before and after the desired block.
platform-openbsd.cc 70 PosixMemoryMappedFile(FILE* file, void* memory, int size)
71 : file_(file), memory_(memory), size_(size) { }
73 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
89 void* memory = local
91 return new PosixMemoryMappedFile(file, memory, size);
104 void* memory = local
106 return new PosixMemoryMappedFile(file, memory, size);
230 // Unmap extra memory reserved before and after the desired block.
platform-qnx.cc 18 // QNX requires memory pages to be marked as executable.
121 PosixMemoryMappedFile(FILE* file, void* memory, int size)
122 : file_(file), memory_(memory), size_(size) { }
124 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
140 void* memory = local
147 return new PosixMemoryMappedFile(file, memory, size);
160 void* memory = local
167 return new PosixMemoryMappedFile(file, memory, size);
266 // Unmap extra memory reserved before and after the desired block.
platform-solaris.cc 88 PosixMemoryMappedFile(FILE* file, void* memory, int size)
89 : file_(file), memory_(memory), size_(size) { }
91 virtual void* memory() { return memory_; } function in class:v8::internal::PosixMemoryMappedFile
107 void* memory = local
109 return new PosixMemoryMappedFile(file, memory, size);
122 void* memory = local
124 return new PosixMemoryMappedFile(file, memory, size);
172 // Unmap extra memory reserved before and after the desired block.
  /external/e2fsprogs/intl/
relocatable.c 115 char *memory; local
119 memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);
121 if (memory != NULL)
124 memcpy (memory, orig_prefix_arg, orig_prefix_len + 1);
125 orig_prefix = memory;
126 memory += orig_prefix_len + 1;
127 memcpy (memory, curr_prefix_arg, curr_prefix_len + 1);
128 curr_prefix = memory;
134 /* Don't worry about wasted memory here - this function is usually only
vasnprintf.c 1 /* vsprintf with automatic memory allocation.
188 CHAR_T *memory; \
197 memory = (CHAR_T *) malloc (memory_size); \
199 memory = (CHAR_T *) realloc (result, memory_size); \
200 if (memory == NULL) \
203 memcpy (memory, result, length * sizeof (CHAR_T)); \
204 result = memory; \
492 /* Overflow, would lead to out of memory. */
496 /* Out of memory. */
854 /* Shrink the allocated memory if possible. *
855 CHAR_T *memory; local
    [all...]
  /external/elfutils/0.153/libebl/
eblgstrtab.c 87 char memory[0]; member in struct:memoryblock
94 struct memoryblock *memory; member in struct:Ebl_GStrtab
149 newmem->next = st->memory;
150 st->memory = newmem;
151 st->backp = newmem->memory;
152 st->left = len - offsetof (struct memoryblock, memory);
159 struct memoryblock *mb = st->memory;
184 /* Make sure there is enough room in the memory block. */
264 /* Allocate memory for the new string and its associated information. */
282 /* We have an exact match with a substring. Free the memory
    [all...]
eblstrtab.c 87 char memory[0]; member in struct:memoryblock
94 struct memoryblock *memory; member in struct:Ebl_Strtab
140 size_t overhead = offsetof (struct memoryblock, memory);
150 newmem->next = st->memory;
151 st->memory = newmem;
152 st->backp = newmem->memory;
162 struct memoryblock *mb = st->memory;
184 /* Make sure there is enough room in the memory block. */
250 /* Allocate memory for the new string and its associated information. */
269 /* We have an exact match with a substring. Free the memory
    [all...]
  /external/freetype/src/autofit/
afloader.c 33 FT_Memory memory = module->root.library->memory; local
38 af_glyph_hints_init( &loader->hints, memory );
42 return FT_GlyphLoader_New( memory, &loader->gloader );
  /external/freetype/src/base/
ftbitmap.c 47 FT_Memory memory = library->memory; local
100 ft_bitmap_assure_buffer( FT_Memory memory,
143 /* if no need to allocate memory */
288 error = ft_bitmap_assure_buffer( library->memory, bitmap, xstr, ystr );
433 FT_Memory memory; local
439 memory = library->memory;
733 FT_Memory memory; local
742 memory = library->memory
    [all...]
ftrfork.c 162 FT_Memory memory = library->memory; local
371 raccess_make_file_name( FT_Memory memory,
494 FT_Memory memory; local
499 memory = library->memory;
500 newpath = raccess_make_file_name( memory, base_file_name, "._" );
527 FT_Memory memory; local
533 memory = library->memory;
563 FT_Memory memory; local
595 FT_Memory memory; local
622 FT_Memory memory; local
649 FT_Memory memory; local
680 FT_Memory memory; local
    [all...]
  /external/freetype/src/cache/
ftccache.h 153 FT_Memory memory; member in struct:FTC_CacheRec_
226 /* NOTE: _nodcomp() may change the linked list to reduce memory. */ \
298 * loop to flush the cache repeatedly in case of memory overflows.
  /external/freetype/src/cff/
cf2glue.h 133 FT_Memory memory; member in struct:CF2_OutlineCallbacksRec_
cffdrivr.c 336 FT_Memory memory = face->root.memory; local
cffgload.h 45 /* memory :: The current memory object. */
83 FT_Memory memory; member in struct:CFF_Builder_
cffparse.c 782 FT_Memory memory = library->memory; local
796 FT_Memory memory = library->memory; local
  /external/freetype/src/gzip/
ftgzip.c 114 /* it is better to use FreeType memory routines instead of raw
118 ft_gzip_alloc( FT_Memory memory,
133 ft_gzip_free( FT_Memory memory,
174 FT_Memory memory; /* memory allocator */ member in struct:FT_GZipFileRec_
283 zip->memory = stream->memory;
303 zstream->opaque = stream->memory;
334 zip->memory = NULL;
488 /* Yes, that is not too efficient, but it saves memory :-) *
549 FT_Memory memory = stream->memory; local
606 FT_Memory memory = source->memory; local
    [all...]
  /external/freetype/src/pfr/
pfrload.c 352 FT_Memory memory = phy_font->memory; local
453 FT_Memory memory = phy_font->memory; local
481 FT_Memory memory = phy_font->memory; local
525 FT_Memory memory = phy_font->memory; local
631 FT_Memory memory,
669 FT_Memory memory )
718 FT_Memory memory = stream->memory; local
    [all...]
  /external/freetype/src/pshinter/
pshglob.c 623 FT_Memory memory; local
626 memory = globals->memory;
645 psh_globals_new( FT_Memory memory,
659 globals->memory = memory;
pshglob.h 137 FT_Memory memory; member in struct:PSH_GlobalsRec_

Completed in 1113 milliseconds

1 2 3 4 5 6 7 891011>>