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

1 23 4 5 6 7 8 91011>>

  /external/freetype/src/cff/
cffcmap.c 151 FT_Memory memory = FT_FACE_MEMORY( face ); local
164 return psnames->unicodes_init( memory,
177 FT_Memory memory = FT_FACE_MEMORY( face ); local
  /external/freetype/src/psaux/
psarrst.c 57 FT_Memory memory,
64 arrstack->memory = memory;
78 FT_Memory memory = arrstack->memory; /* for FT_FREE */ local
93 /* return false on memory error */
102 FT_Memory memory = arrstack->memory; /* for FT_REALLOC */ local
209 /* return false on memory error */
psarrst.h 53 FT_Memory memory; member in struct:CF2_ArrStackRec_
69 FT_Memory memory,
psstack.c 53 cf2_stack_init( FT_Memory memory,
65 stack->memory = memory;
88 FT_Memory memory = stack->memory; local
  /external/freetype/src/pshinter/
pshmod.c 54 FT_Memory memory = module->root.memory; local
58 ps_hints_init( &module->ps_hints, memory );
  /external/freetype/src/raster/
ftrend1.c 103 FT_Memory memory = render->root.memory; local
  /external/freetype/src/tools/
test_afm.c 94 library->memory,
131 stream.memory = library->memory;
138 FT_Memory memory = library->memory; local
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 48 private MemoryOutput memory; field in class:FileBackedOutputStream
93 memory = new MemoryOutput();
94 out = memory;
136 memory.getBuffer(), 0, memory.getCount());
151 if (memory == null) {
152 memory = new MemoryOutput();
154 memory.reset();
156 out = memory;
195 if (file == null && (memory.getCount() + len > fileThreshold))
    [all...]
  /external/libxcam/xcore/
image_file_handle.cpp 45 uint8_t *memory = NULL; local
50 memory = buf->map ();
56 if (fread (memory + info.offsets [index] + i * info.strides [index], 1, line_bytes, _fp) != line_bytes) {
75 uint8_t *memory = NULL; local
80 memory = buf->map ();
86 if (fwrite (memory + info.offsets [index] + i * info.strides [index], 1, line_bytes, _fp) != line_bytes) {
  /external/libxml2/
testRelax.c 53 static int memory = 0; variable
69 if ((!strcmp(argv[i], "-memory")) || (!strcmp(argv[i], "--memory"))) {
70 memory++;
88 if (memory) {
173 printf("\t--debug : dump a debug tree of the in-memory document\n");
178 printf("\t--memory : test the schemas in memory parsing\n");
testSchemas.c 53 static int memory = 0; variable
69 if ((!strcmp(argv[i], "-memory")) || (!strcmp(argv[i], "--memory"))) {
70 memory++;
84 if (memory) {
164 printf("\t--debug : dump a debug tree of the in-memory document\n");
168 printf("\t--memory : test the schemas in memory parsing\n");
  /external/skia/bench/
RefCntBench.cpp 7 #include <memory>
87 char memory[sizeof(PlacedRefCnt)]; variable
89 PlacedRefCnt* ref = new (memory) PlacedRefCnt();
173 char memory[sizeof(PlacedWeakRefCnt)]; variable
175 PlacedWeakRefCnt* ref = new (memory) PlacedWeakRefCnt();
  /external/skqp/bench/
RefCntBench.cpp 7 #include <memory>
87 char memory[sizeof(PlacedRefCnt)]; variable
89 PlacedRefCnt* ref = new (memory) PlacedRefCnt();
173 char memory[sizeof(PlacedWeakRefCnt)]; variable
175 PlacedWeakRefCnt* ref = new (memory) PlacedWeakRefCnt();
  /external/tensorflow/tensorflow/core/lib/core/
arena_test.cc 25 // Write random data to allocated memory
27 // Check that we can memset the entire memory
30 // Do some memory allocation to check that the arena doesn't mess up
31 // the internal memory allocator
39 // Free up the allocated memory;
44 // Check that we can memset the entire memory
50 char* memory = a.Alloc(100); local
51 ASSERT_NE(memory, nullptr);
52 TestMemory(memory, 100);
55 memory = a.Alloc(100)
78 char* memory = a.Alloc(1024); local
94 char* memory = a.Alloc(768); local
108 char* memory = a.Alloc(10240); local
    [all...]
  /frameworks/compile/mclinker/lib/MC/
InputBuilder.cpp 124 MemoryArea* memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm); local
125 pInput.setMemArea(memory);
130 MemoryArea* memory = m_pMemFactory->produce(pMemBuffer, pSize); local
131 pInput.setMemArea(memory);
  /hardware/interfaces/tests/memory/1.0/default/
MemoryTest.cpp 17 #define LOG_TAG "android.hardware.tests.memory@1.0"
26 #include <android/hidl/memory/1.0/IMemory.h>
28 using android::hidl::memory::V1_0::IMemory;
33 namespace memory { namespace in namespace:android::hardware::tests
37 // Methods from ::android::hardware::tests::memory::V1_0::IMemoryTest follow.
38 Return<void> Memory::haveSomeMemory(const hidl_memory& mem, haveSomeMemory_cb _hidl_cb) {
43 Return<void> Memory::fillMemory(const hidl_memory& memory_in, uint8_t filler) {
44 sp<IMemory> memory = mapMemory(memory_in); local
46 if (memory == nullptr) {
51 uint8_t* data = static_cast<uint8_t*>(static_cast<void*>(memory->getPointer()))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/memory/
ByteBufferDirectPool.java 17 package com.android.camera.processing.memory;
  /system/core/libunwindstack/
MapInfo.cpp 21 #include <memory>
28 #include <unwindstack/Memory.h>
32 Memory* MapInfo::GetFileMemory() {
33 std::unique_ptr<MemoryFileAtOffset> memory(new MemoryFileAtOffset);
35 if (memory->Init(name, 0)) {
36 return memory.release();
52 if (!memory->Init(name, offset, map_size)) {
58 Elf::GetInfo(memory.get(), &valid, &max_size);
61 if (memory->Init(name, 0)) {
63 return memory.release()
95 Memory* memory = GetFileMemory(); local
126 Memory* memory = CreateMemory(process_memory); local
    [all...]
  /system/core/libunwindstack/tools/
unwind_symbols.cpp 28 #include <unwindstack/Memory.h>
62 unwindstack::MemoryFileAtOffset* memory = new unwindstack::MemoryFileAtOffset; local
63 if (!memory->Init(argv[1], 0)) {
68 unwindstack::Elf elf(memory);
  /system/extras/memory_replay/
Pointers.cpp 35 void* memory = mmap(nullptr, pointers_size_, PROT_READ | PROT_WRITE, local
37 if (memory == MAP_FAILED) {
41 memset(memory, 0, pointers_size_);
42 pointers_ = reinterpret_cast<pointer_data*>(memory);
  /system/libhidl/transport/allocator/1.0/default/
AshmemAllocator.cpp 44 static void cleanup(hidl_memory&& memory) {
45 if (memory.handle() == nullptr) {
49 native_handle_close(const_cast<native_handle_t *>(memory.handle()));
50 native_handle_delete(const_cast<native_handle_t *>(memory.handle()));
54 hidl_memory memory = allocateOne(size); local
55 _hidl_cb(memory.handle() != nullptr /* success */, memory);
56 cleanup(std::move(memory));
  /system/libhidl/transport/memory/1.0/default/
AshmemMemory.cpp 23 namespace memory { namespace in namespace:android::hidl
27 AshmemMemory::AshmemMemory(const hidl_memory& memory, void* data)
28 : mMemory(memory),
38 // Methods from ::android::hidl::memory::V1_0::IMemory follow.
40 // NOOP (since non-remoted memory)
45 // NOOP (since non-remoted memory)
50 // NOOP (since non-remoted memory)
55 // NOOP (since non-remoted memory)
60 // NOOP (since non-remoted memory)
74 } // namespace memory
    [all...]
  /development/tools/logblame/
logs.py 53 def memory(self): member in class:LogLine
54 """Return an estimate of how much memory is used for the log.
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
process_info.h 28 ProcessMemoryStats memory; member in struct:ProcessSnapshot
  /external/curl/docs/examples/
xmlstream.c 43 char *memory; member in struct:MemoryStruct
62 free(state->characters.memory);
63 state->characters.memory = NULL;
72 mem->memory = realloc(mem->memory, mem->size + len + 1);
73 if(mem->memory == NULL) {
74 /* Out of memory. */
75 fprintf(stderr, "Not enough memory (realloc returned NULL).\n");
80 memcpy(&(mem->memory[mem->size]), s, len);
82 mem->memory[mem->size] = 0
    [all...]

Completed in 1087 milliseconds

1 23 4 5 6 7 8 91011>>