HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 51 - 75 of 621) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/freetype/src/raster/
ftmisc.h 61 typedef void* (*FT_Alloc_Func)( FT_Memory memory,
64 typedef void (*FT_Free_Func)( FT_Memory memory,
67 typedef void* (*FT_Realloc_Func)( FT_Memory memory,
  /frameworks/base/libs/binder/
MemoryHeapPmem.cpp 171 sp<MemoryPmem> memory = createMemory(offset, size); local
172 if (memory != 0) {
174 mAllocations.add(memory);
176 return memory;
182 sp<SubRegionMemory> memory; local
184 memory = new SubRegionMemory(this, offset, size);
185 return memory;
235 sp<MemoryPmem> memory(allocations[i].promote());
236 if (memory != 0)
237 memory->revoke()
    [all...]
  /external/freetype/src/base/
ftrfork.c 160 FT_Memory memory = library->memory; local
347 raccess_make_file_name( FT_Memory memory,
498 FT_Memory memory; local
503 memory = library->memory;
504 newpath = raccess_make_file_name( memory, base_file_name, "._" );
531 FT_Memory memory; local
537 memory = library->memory;
567 FT_Memory memory; local
599 FT_Memory memory; local
626 FT_Memory memory; local
653 FT_Memory memory; local
684 FT_Memory memory; local
    [all...]
ftgloadr.c 69 FT_GlyphLoader_New( FT_Memory memory,
78 loader->memory = memory;
106 FT_Memory memory = loader->memory; local
131 FT_Memory memory = loader->memory; local
168 FT_Memory memory = loader->memory; local
204 FT_Memory memory = loader->memory local
279 FT_Memory memory = loader->memory; local
    [all...]
ftsnames.c 63 FT_Memory memory = face->memory; local
  /system/core/sh/
redir.c 103 * stdout, is saved in memory.
114 char memory[10]; /* file descriptors to write to memory */ local
117 memory[i] = 0;
118 memory[1] = flags & REDIR_BACKQ;
143 openredirect(n, memory, flags);
165 openredirect(n, memory, flags);
167 if (memory[1])
169 if (memory[2])
175 openredirect(union node *redir, char memory[10], int flags
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 5 shouldThrow('s = "a"; while (1) { s += s; }', '"Error: Out of memory"'); // Expand at end of string
6 shouldThrow('s = "a"; while (1) { s += ("a" + s); }', '"Error: Out of memory"'); // Expand at beginning of string
7 shouldThrow('s = "a"; while (1) { s = [s, s].join(); }', '"Error: Out of memory"'); // Expand using UString::append.
11 'We also verify that the the string is stil functional after the out of memory exception is raised. In <a href="rdar://problem/5352887">rdar://problem/5352887</a>, accessing the string after the exception would crash.'
19 debug('PASS: String ' + stringName + ' was functional after ' + testName + ' raised out of memory exception.');
  /external/dbus/dbus/
dbus-memory.c 2 /* dbus-memory.c D-Bus memory handling
25 #include "dbus-memory.h"
32 * @defgroup DBusMemory Memory Allocation
37 * blocks of memory.
42 * @defgroup DBusMemoryInternals Memory allocation implementation details
47 * of memory.
61 * allocate as arguments, and returns a memory block
66 * @returns the new memory block or #NULL on failure
74 * allocate as arguments, and returns a memory bloc
    [all...]
  /external/chromium/base/metrics/
stats_table.cc 8 #include "base/memory/scoped_ptr.h"
23 // The StatsTable uses a shared memory segment that is laid out as follows
54 // At the shared-memory level, we have a lock. This lock protects the
55 // shared-memory table only, and is used when we create new counters (e.g.
57 // data from the table does not require any locking at the shared memory
67 // In order for external viewers to be able to read our shared memory,
92 // shared memory segment. Use this class to keep the data structure
96 // Various header information contained in the memory mapped segment.
150 void InitializeTable(void* memory, int size, int max_counters,
153 // Initializes our in-memory pointers into a pre-created StatsTable
    [all...]
  /external/bluetooth/glib/glib/gnulib/
printf-parse.c 59 /* Out of memory. */
71 argument *memory; \
75 memory = (a->arg \
78 if (memory == NULL) \
79 /* Out of memory. */ \
81 a->arg = memory; \
475 char_directive *memory; local
478 memory = realloc (d->dir, d_allocated * sizeof (char_directive));
479 if (memory == NULL)
480 /* Out of memory. *
    [all...]
  /external/freetype/src/autofit/
afloader.h 47 FT_Memory memory );
  /external/stlport/test/unit/
shared_ptr_test.cpp 1 #include <memory>
  /external/tremolo/Tremolo/
os.h 71 # include <memory.h>
  /external/webkit/Source/WebCore/page/
Performance.cpp 69 MemoryInfo* Performance::memory() const function in class:WebCore::Performance
Performance.h 52 MemoryInfo* memory() const;
  /external/webkit/Source/WebCore/platform/win/
Win32Handle.h 28 #include <memory>
  /ndk/tests/device/test-gnustl-full/unit/
shared_ptr_test.cpp 1 #include <memory>
  /ndk/tests/device/test-stlport/unit/
shared_ptr_test.cpp 1 #include <memory>
  /system/core/libcutils/
Android.mk 107 LOCAL_SRC_FILES += memory.c atomic-android-sh.c
111 LOCAL_SRC_FILES += arch-x86/android_memset16.S arch-x86/android_memset32.S memory.c
113 LOCAL_SRC_FILES += memory.c
133 LOCAL_SRC_FILES := str_parms.c hashmap.c memory.c
memory.c 17 #include <cutils/memory.h>
  /external/clang/INPUTS/
all-std-headers.cpp 36 #include <memory>
  /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
  /external/flac/libFLAC/
Android.mk 13 memory.c \
  /external/freetype/src/pshinter/
pshrec.h 133 FT_Memory memory; member in struct:PS_HintsRec_
146 FT_Memory memory );
  /external/llvm/autoconf/m4/
func_mmap_file.m4 23 AC_DEFINE([HAVE_MMAP_FILE],[],[Define if mmap() can map files into memory])

Completed in 1814 milliseconds

1 23 4 5 6 7 8 91011>>