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

1 2 3 45 6 7 8 91011>>

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
fxft_ftinit.c 127 FT_Memory memory; local
135 memory = library->memory;
159 FT_Memory memory; local
166 memory = library->memory;
236 FT_Memory memory; local
242 memory = FT_New_Memory();
243 if ( !memory )
245 FT_ERROR(( "FT_Init_FreeType: cannot find memory manager\n" ))
269 FT_Memory memory = library->memory; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
t1cmap.c 278 FT_Memory memory = FT_FACE_MEMORY( face ); local
282 return psnames->unicodes_init( memory,
295 FT_Memory memory = FT_FACE_MEMORY( face ); local
  /external/bison/lib/
printf-parse.c 106 argument *memory; \
113 /* Overflow, would lead to out of memory. */ \
115 memory = (argument *) (a->arg != a->direct_alloc_arg \
118 if (memory == NULL) \
119 /* Out of memory. */ \
122 memcpy (memory, a->arg, a->count * sizeof (argument)); \
123 a->arg = memory; \
170 /* n too large, would lead to out of memory later. */
247 /* n too large, would lead to out of memory later. */
304 /* n too large, would lead to out of memory
585 DIRECTIVE *memory; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
software_frame_manager_unittest.cc 9 #include "base/memory/scoped_vector.h"
10 #include "base/memory/shared_memory.h"
42 scoped_ptr<base::SharedMemory> memory = local
44 memory->CreateAnonymous(4);
46 4, memory->handle(), base::GetCurrentProcessHandle(), frame.bitmap_id);
47 allocated_memory_.push_back(memory.release());
236 // Take out a reference on the current frame and make the memory manager
  /external/chromium_org/content/common/
host_shared_bitmap_manager.cc 8 #include "base/memory/ref_counted.h"
24 scoped_ptr<base::SharedMemory> memory; member in class:content::BitmapData
34 // Holds a reference on the memory to keep it alive.
91 if (!data->memory->memory()) {
94 if (!data->memory->Map(data->buffer_size)) {
100 data->memory.get(), id, base::Bind(&FreeSharedMemory, it->second)));
124 data->memory = make_scoped_ptr(
127 data->memory =
144 LOG(ERROR) << "Cannot create shared memory buffer"
    [all...]
  /external/chromium_org/content/renderer/gpu/
compositor_software_output_device.h 8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/scoped_vector.h"
10 #include "base/memory/shared_memory.h"
44 // Internal buffer class that manages shared memory lifetime and ownership.
55 void* memory() const { return shared_bitmap_->pixels(); } function in class:content::CompositorSoftwareOutputDevice::Buffer
  /external/chromium_org/courgette/
memory_allocator.cc 17 // NOTE: Since the file will be used as backing for a memory allocation,
110 void* TempMapping::memory() const { function in class:courgette::TempMapping
  /external/chromium_org/ppapi/tests/
test_char_set.cc 42 pp::Memory_Dev memory; local
49 memory.MemFree(utf8result);
58 memory.MemFree(utf8result);
78 memory.MemFree(utf8result);
87 memory.MemFree(utf8result);
99 memory.MemFree(utf8result);
225 pp::Memory_Dev memory; local
235 memory.MemFree(utf16result);
246 memory.MemFree(utf16result);
255 memory.MemFree(utf16result)
382 pp::Memory_Dev memory; local
    [all...]
  /external/chromium_org/sandbox/win/src/
process_thread_interception.cc 67 void* memory = GetGlobalIPCMemory(); local
68 if (NULL == memory)
71 SharedMemIPCClient ipc(memory);
145 void* memory = GetGlobalIPCMemory(); local
146 if (NULL == memory)
149 SharedMemIPCClient ipc(memory);
190 void* memory = GetGlobalIPCMemory(); local
191 if (NULL == memory)
194 SharedMemIPCClient ipc(memory);
235 void* memory = GetGlobalIPCMemory() local
288 void* memory = GetGlobalIPCMemory(); local
347 void* memory = GetGlobalIPCMemory(); local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
Common.h 49 void* memory = GetGlobalPoolAllocator()->allocate(sizeof(TString)); local
50 return new(memory) TString(s);
54 // Persistent string memory. Should only be used for strings that survive
PoolAlloc.cpp 69 // be obtained to allocate memory.
216 // much memory the caller asked for. allocationSize is the total
232 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset; local
236 return initializeAllocation(inUseList, memory, numBytes);
249 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]);
250 if (memory == 0)
254 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
255 inUseList = memory;
260 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip);
266 tHeader* memory; local
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.c 164 FT_Memory memory; local
168 memory = face->memory;
199 FT_Memory memory = globals->face->memory; local
261 FT_Memory memory = globals->face->memory; local
  /external/chromium_org/third_party/freetype/src/base/
ftgloadr.c 70 FT_GlyphLoader_New( FT_Memory memory,
79 loader->memory = memory;
107 FT_Memory memory = loader->memory; local
132 FT_Memory memory = loader->memory; local
169 FT_Memory memory = loader->memory; local
205 FT_Memory memory = loader->memory local
280 FT_Memory memory = loader->memory; local
    [all...]
ftglyph.c 285 FT_Memory memory = library->memory; local
617 FT_Memory memory = glyph->library->memory; local
  /external/chromium_org/third_party/freetype/src/cache/
ftcmanag.h 36 /* total amount of `cache memory' within the manager. */
94 FT_Memory memory; member in struct:FTC_ManagerRec_
  /external/chromium_org/third_party/freetype/src/cff/
cf2font.h 57 FT_Memory memory; member in struct:CF2_FontRec_
  /external/chromium_org/third_party/freetype/src/sfnt/
ttpost.c 160 FT_Memory memory = stream->memory; local
312 FT_Memory memory = stream->memory; local
417 FT_Memory memory = face->root.memory; local
  /external/chromium_org/third_party/freetype/src/truetype/
ttpload.c 286 FT_Memory memory = stream->memory; local
488 FT_Memory memory = stream->memory; local
562 FT_Memory memory = stream->memory; local
  /external/chromium_org/third_party/libwebp/dec/
webpi.h 40 void* memory; // overall scratch memory for the output work. member in struct:WebPDecParams
87 // Internal functions regarding WebPDecBuffer memory (in buffer.c).
92 // memory and setting up the stride information. Validate the parameters. Return
93 // an error code in case of problem (no memory, or invalid stride / size /
107 // memory (still held by 'src').
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_fontconfig.cpp 182 const void* memory = stream->getMemoryBase(); local
183 if (NULL != memory) {
184 return new SkMemoryStream(memory, length, true);
  /external/chromium_org/tools/perf/measurements/
page_cycler.py 14 Finally, various memory and IO statistics are gathered at the very end of
23 from metrics import memory namespace
86 self._memory_metric = memory.MemoryMetric(browser)
111 memory.MemoryMetric.CustomizeBrowserOptions(options)
  /external/e2fsprogs/intl/
printf-parse.c 76 /* Out of memory. */
89 argument *memory; \
96 /* Overflow, would lead to out of memory. */ \
98 memory = (a->arg \
101 if (memory == NULL) \
102 /* Out of memory. */ \
104 a->arg = memory; \
151 /* n too large, would lead to out of memory later. */
221 /* n too large, would lead to out of memory later. */
278 /* n too large, would lead to out of memory
505 DIRECTIVE *memory; local
    [all...]
  /external/freetype/src/autofit/
afglobal.c 311 FT_Memory memory; local
315 memory = face->memory;
350 FT_Memory memory = globals->face->memory; local
420 FT_Memory memory = globals->face->memory; local
  /external/freetype/src/base/
ftgloadr.c 70 FT_GlyphLoader_New( FT_Memory memory,
79 loader->memory = memory;
107 FT_Memory memory = loader->memory; local
132 FT_Memory memory = loader->memory; local
169 FT_Memory memory = loader->memory; local
205 FT_Memory memory = loader->memory local
283 FT_Memory memory = loader->memory; local
    [all...]
ftglyph.c 285 FT_Memory memory = library->memory; local
613 FT_Memory memory = glyph->library->memory; local

Completed in 748 milliseconds

1 2 3 45 6 7 8 91011>>