Searched defs:memory (Results 151 - 175 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftgloadr.h81 FT_Memory memory; member in struct:FT_GlyphLoaderRec_
97 FT_GlyphLoader_New( FT_Memory memory,
/external/chromium_org/third_party/freetype/src/base/
H A Dftglyph.c285 FT_Memory memory = library->memory; local
617 FT_Memory memory = glyph->library->memory; local
/external/chromium_org/third_party/freetype/src/cache/
H A Dftccmap.c103 FT_Memory memory = cache->memory; local
119 FT_Memory memory = cache->memory; local
H A Dftcsbits.c45 FT_Memory memory )
71 FT_Memory memory = cache->memory; local
94 * out-of-memory condition. For all other errors (e.g., corresponding
99 * function below to see how out-of-memory is handled during a lookup.
110 FT_Memory memory = manager->memory; local
180 error = ftc_sbit_copy_bitmap( sbit, bitmap, memory );
212 FT_Memory memory = cache->memory; local
[all...]
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dpngshim.c183 FT_Memory memory,
178 Load_SBit_Png( FT_Bitmap* map, FT_Int x_offset, FT_Int y_offset, FT_Int pix_bits, TT_SBit_Metrics metrics, FT_Memory memory, FT_Byte* data, FT_UInt png_len ) argument
H A Dsfdriver.c227 /* shouldn't happen, but just in case to avoid memory leaks */
257 FT_Memory memory = face->root.memory; local
299 FT_Memory memory = face->root.memory; local
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttpload.c286 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/skia/src/ports/
H A DSkFontHost_fontconfig.cpp139 const void* memory = stream->getMemoryBase(); local
140 if (memory) {
141 return new SkMemoryStream(memory, length, true);
/external/chromium_org/third_party/webrtc/base/
H A Dbyteorder.h26 // Reading and writing of little and big-endian numbers from memory
30 inline void Set8(void* memory, size_t offset, uint8 v) { argument
31 static_cast<uint8*>(memory)[offset] = v;
34 inline uint8 Get8(const void* memory, size_t offset) { argument
35 return static_cast<const uint8*>(memory)[offset];
38 inline void SetBE16(void* memory, uint16 v) { argument
39 Set8(memory, 0, static_cast<uint8>(v >> 8));
40 Set8(memory, 1, static_cast<uint8>(v >> 0));
43 inline void SetBE32(void* memory, uint32 v) { argument
44 Set8(memory,
50 SetBE64(void* memory, uint64 v) argument
61 GetBE16(const void* memory) argument
66 GetBE32(const void* memory) argument
73 GetBE64(const void* memory) argument
84 SetLE16(void* memory, uint16 v) argument
89 SetLE32(void* memory, uint32 v) argument
96 SetLE64(void* memory, uint64 v) argument
107 GetLE16(const void* memory) argument
112 GetLE32(const void* memory) argument
119 GetLE64(const void* memory) argument
[all...]
H A Dstringutils.cc16 bool memory_check(const void* memory, int c, size_t count) { argument
17 const char* char_memory = static_cast<const char*>(memory);
/external/chromium_org/ui/gl/
H A Dgl_image_memory.cc94 bool GLImageMemory::Initialize(const unsigned char* memory) { argument
100 DCHECK(memory);
102 memory_ = memory;
/external/freetype/include/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
99 * A function used to release a given block of memory
332 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/freetype/include/internal/
H A Dftgloadr.h81 FT_Memory memory; member in struct:FT_GlyphLoaderRec_
97 FT_GlyphLoader_New( FT_Memory memory,
/external/freetype/src/base/
H A Dftglyph.c285 FT_Memory memory = library->memory; local
613 FT_Memory memory = glyph->library->memory; local
/external/freetype/src/cache/
H A Dftccmap.c103 FT_Memory memory = cache->memory; local
119 FT_Memory memory = cache->memory; local
H A Dftcsbits.c45 FT_Memory memory )
71 FT_Memory memory = cache->memory; local
94 * out-of-memory condition. For all other errors (e.g., corresponding
99 * function below to see how out-of-memory is handled during a lookup.
110 FT_Memory memory = manager->memory; local
180 error = ftc_sbit_copy_bitmap( sbit, bitmap, memory );
212 FT_Memory memory = cache->memory; local
[all...]
/external/freetype/src/sfnt/
H A Dsfdriver.c227 /* shouldn't happen, but just in case to avoid memory leaks */
257 FT_Memory memory = face->root.memory; local
299 FT_Memory memory = face->root.memory; local
/external/freetype/src/truetype/
H A Dttpload.c286 FT_Memory memory = stream->memory; local
488 FT_Memory memory = stream->memory; local
562 FT_Memory memory = stream->memory; local
/external/markdown/
H A Dtest-markdown.py48 def memory(since=0.0): function
49 '''Return memory usage in bytes.
56 '''Return resident memory usage in bytes.
188 mem = memory()
192 construction_mem = memory(mem)
244 mem = memory()
249 conversion_mem = memory(mem)
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
94 (*FT_AllocDebug_Func)( FT_Memory memory,
339 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dftgloadr.h81 FT_Memory memory; member in struct:FT_GlyphLoaderRec_
97 FT_GlyphLoader_New( FT_Memory memory,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsystem.h38 /* How FreeType manages memory and i/o. */
41 /* This section contains various definitions related to memory */
43 /* information if you want to use a custom memory manager or you own */
62 * A handle to a given memory manager object, defined with an
75 * A function used to allocate `size' bytes from `memory'.
78 * memory ::
79 * A handle to the source memory manager.
85 * Address of new memory block. 0~in case of failure.
89 (*FT_Alloc_Func)( FT_Memory memory,
94 (*FT_AllocDebug_Func)( FT_Memory memory,
339 FT_Memory memory; member in struct:FT_StreamRec_
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dftgloadr.h81 FT_Memory memory; member in struct:FT_GlyphLoaderRec_
97 FT_GlyphLoader_New( FT_Memory memory,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dfxft_ftglyph.c285 FT_Memory memory = library->memory; local
617 FT_Memory memory = glyph->library->memory; local
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidgload.c51 FT_Memory memory = face->root.memory; local

Completed in 4520 milliseconds

1234567891011>>