HomeSort by relevance Sort by last modified time
    Searched full:memory (Results 151 - 175 of 21927) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
ftmemory.h 5 /* The FreeType memory management macros (specification). */
114 ft_mem_alloc( FT_Memory memory,
119 ft_mem_qalloc( FT_Memory memory,
124 ft_mem_realloc( FT_Memory memory,
132 ft_mem_qrealloc( FT_Memory memory,
140 ft_mem_free( FT_Memory memory,
145 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
151 ft_mem_free( memory, (ptr) ); \
159 FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \
167 FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, \
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftutil.c 5 /* FreeType utility file for memory and list management (body). */
50 ft_mem_alloc( FT_Memory memory,
55 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
66 ft_mem_qalloc( FT_Memory memory,
76 block = memory->alloc( memory, size );
92 ft_mem_realloc( FT_Memory memory,
102 block = ft_mem_qrealloc( memory, item_size,
114 ft_mem_qrealloc( FT_Memory memory,
135 ft_mem_free( memory, block )
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/internal/
ftmemory.h 5 /* The FreeType memory management macros (specification). */
114 ft_mem_alloc( FT_Memory memory,
119 ft_mem_qalloc( FT_Memory memory,
124 ft_mem_realloc( FT_Memory memory,
132 ft_mem_qrealloc( FT_Memory memory,
140 ft_mem_free( FT_Memory memory,
145 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
151 ft_mem_free( memory, (ptr) ); \
159 FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \
167 FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, \
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftutil.c 5 /* FreeType utility file for memory and list management (body). */
50 ft_mem_alloc( FT_Memory memory,
55 FT_Pointer block = ft_mem_qalloc( memory, size, &error );
66 ft_mem_qalloc( FT_Memory memory,
76 block = memory->alloc( memory, size );
92 ft_mem_realloc( FT_Memory memory,
102 block = ft_mem_qrealloc( memory, item_size,
114 ft_mem_qrealloc( FT_Memory memory,
135 ft_mem_free( memory, block )
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
memry.h 21 * Functional interface for the memory manager, exported by the DSP
69 * Allocate memory from the paged or non-paged pools.
72 * type: Type of memory to allocate; one of:
73 * - MEM_PAGED: Allocate from the pageable memory.
74 * - MEM_NONPAGED:Allocate from page locked memory.
76 * Pointer to a block of memory; or NULL if memory couldn't be
80 * PVOID pointer returned is a valid memory location.
90 * pVA: Ptr to reserved memory allocated by MEMRY_ReserveVM().
91 * pPA: Ptr to a physical memory location
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
memry.h 21 * Functional interface for the memory manager, exported by the DSP
69 * Allocate memory from the paged or non-paged pools.
72 * type: Type of memory to allocate; one of:
73 * - MEM_PAGED: Allocate from the pageable memory.
74 * - MEM_NONPAGED:Allocate from page locked memory.
76 * Pointer to a block of memory; or NULL if memory couldn't be
80 * PVOID pointer returned is a valid memory location.
90 * pVA: Ptr to reserved memory allocated by MEMRY_ReserveVM().
91 * pPA: Ptr to a physical memory location
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.c 5 return &x; // expected-warning{{Address of stack memory associated with local variable 'x' returned}} expected-warning{{address of stack memory associated with local variable 'x' returned}}
9 return &y; // expected-warning{{Address of stack memory associated with local variable 'y' returned}} expected-warning{{address of stack memory associated with local variable 'y' returned}}
18 return y; // expected-warning{{Address of stack memory associated with local variable 'w' returned to caller}}
23 return &(unsigned short){((unsigned short)0x22EF)}; // expected-warning{{Address of stack memory}}
29 return &((struct s){ 2, 0.4, 5 * 8 }); // expected-warning{{Address of stack memory}}
33 return p; // expected-warning{{Address of stack memory}}
38 return p; // expected-warning{{Address of stack memory}}
80 return a; // expected-warning 2 {{ddress of stack memory associated with local variable 'a' returned}
    [all...]
  /external/compiler-rt/test/msan/
dtor-member.cc 1 // RUN: %clangxx_msan %s -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
4 // RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
7 // RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
10 // RUN: %clangxx_msan %s -fsanitize=memory -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
13 // RUN: %clangxx_msan -fsanitize=memory -fsanitize-memory-use-after-dtor %s -o %t && MSAN_OPTIONS=poison_in_dtor=0 %run %t >%t.out 2>&1
34 // memory location &buf. Since objects made in this way must be explicitl
    [all...]
use-after-dtor.cc 1 // RUN: %clangxx_msan %s -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t >%t.out 2>&1
4 // RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t >%t.out 2>&1
7 // RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t >%t.out 2>&1
10 // RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -fsanitize-memory-track-origins -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t >%t.out 2>&1
40 // CHECK-ORIGINS: Memory was marked as uninitialize
    [all...]
  /external/libchrome/base/memory/
shared_memory.h 14 #include "base/memory/shared_memory_handle.h"
31 // Options for creating a shared memory object.
45 // If true, and the shared memory already exists, Create() will open the
46 // existing shared memory and ignore the size parameter. If false,
47 // shared memory must not exist. This flag is meaningless unless
52 // Size of the shared memory object to be created.
63 // Platform abstraction for shared memory. Provides a C++ wrapper
64 // around the OS primitive for a memory mapped file.
77 // shared memory file.
87 // shared memory file that was created by a remote process and not share
208 void* memory() const { return memory_; } function in class:base::SharedMemory
    [all...]
  /external/skia/include/core/
SkTraceMemoryDump.h 16 * Interface for memory tracing.
17 * This interface is meant to be passed as argument to the memory dump methods of Skia objects.
26 // Dump only the minimal details to get the total memory usage (Usually just the totals).
34 * Appends a new memory dump (i.e. a row) to the trace memory infrastructure.
54 * Sets the memory backing for an existing dump.
55 * backingType and backingObjectId are used by the embedder to associate the memory dumped via
56 * dumpNumericValue with the corresponding dump that backs the memory.
63 * Specialization for memory backed by discardable memory
    [all...]
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
memory_pool.h 34 // Try to delete the memory pool. Fail with return value -1 if there is
35 // outstanding memory.
39 // Get/return unused memory.
40 int32_t PopMemory(MemoryType*& memory);
41 int32_t PushMemory(MemoryType*& memory);
106 int32_t MemoryPool<MemoryType>::PopMemory(MemoryType*& memory)
108 return _ptrImpl->PopMemory(memory);
112 int32_t MemoryPool<MemoryType>::PushMemory(MemoryType*& memory)
114 if(memory == NULL)
118 return _ptrImpl->PushMemory(memory);
    [all...]
  /frameworks/base/docs/html/topic/performance/
memory.jd 1 page.title=Manage Your App's Memory
2 page.tags=ram,low memory,OutOfMemoryError,onTrimMemory
11 <li><a href="#monitor">Monitor Available Memory and Memory Usage</a>
14 <li><a href="#release">Release memory in response to events</a></li>
15 <li><a href="#CheckHowMuchMemory">Check how much memory you should use</a></li>
24 <li><a href="#churn">Avoid memory churn</a></li>
27 <li><a href="#remove">Remove Memory-Intensive Resources and Libraries</a>
37 <li><a href="{@docRoot}training/articles/memory-overview.html">Overview of Android Memory Management</a
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Memory.c 27 /* This function is used for memory allocation and free. It can be called in */
30 /* hInstance = NULL Returns the memory requirements */
31 /* hInstance = Instance handle Returns the memory requirements and */
34 /* When this function is called for memory allocation (hInstance=NULL) the memory */
37 /* When the function is called for free (hInstance = Instance Handle) the memory */
38 /* table returns the allocated memory and base addresses used during initialisation. */
42 /* pMemoryTable Pointer to an empty memory definition table */
76 * Fill in the memory table
105 * Instance memory
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
ResourceLimits.h 19 // Pixel cache limit in bytes. Requests for memory above this limit
24 // Pixel cache limit in bytes. Requests for memory above this limit
41 // Pixel cache limit in bytes. Once this memory limit is exceeded,
46 // Pixel cache limit in bytes. Once this memory limit is exceeded,
48 // memory mapped files.
49 static void memory(const MagickSizeType limit_);
50 static MagickSizeType memory(void);
  /external/google-breakpad/src/processor/
map_serializers.h 50 // StdMapSerializer allocates memory and serializes an std::map instance into a
51 // chunk of memory data.
55 // Calculate the memory size of serialized data.
58 // Writes the serialized data to memory with start address = dest,
61 // NOTE: caller has to allocate enough memory before invoke Write() method.
64 // Serializes a std::map object into a chunk of memory data with format
68 // Caller has the ownership of memory allocated as "new char[]".
76 // AddressMapSerializer allocates memory and serializes an AddressMap into a
77 // chunk of memory data.
81 // Calculate the memory size of serialized data
    [all...]
  /external/libchrome/base/trace_event/
memory_dump_request_args.h 8 // This file defines the types and structs used to issue memory dump requests.
9 // These are also used in the IPCs for coordinating inter-process memory dumps.
20 // Captures the reason why a memory dump is being requested. This is to allow
23 TASK_BEGIN, // Dumping memory at the beginning of a message-loop task.
24 TASK_END, // Dumping memory at the ending of a message-loop task.
25 PERIODIC_INTERVAL, // Dumping memory at periodic intervals.
40 // Initial request arguments for a global memory dump. (see
  /external/llvm/lib/Support/
Memory.cpp 1 //===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
10 // This file defines some helpful functions for allocating memory and dealing
11 // with memory mapped files
15 #include "llvm/Support/Memory.h"
21 #include "Unix/Memory.inc"
24 #include "Windows/Memory.inc"
  /external/mesa3d/docs/
MESA_agp_offset.spec 35 This extensions provides a way to convert pointers in an AGP memory
65 3.6 AGP Memory Access
67 On "PC" computers, AGP memory can be allocated with glXAllocateMemoryNV
69 block of AGP memory is located with respect to the start of the AGP
74 Returns the offset of the given memory block from the start of AGP
75 memory in basic machine units (i.e. bytes). If pointer is invalid
85 an AGP memory region.
  /external/skia/src/core/
SkRWBuffer.h 19 * Contains a read-only, thread-sharable block of memory. To access the memory, the caller must
20 * instantiate a local iterator, as the memory is stored in 1 or more contiguous blocks.
37 * Return the current continuous block of memory, or nullptr if the iterator is exhausted
42 * Returns the number of bytes in the current continguous block of memory, or 0 if the
48 * Advance to the next contiguous block of memory, returning true if there is another
69 * Accumulates bytes of memory that are "appended" to it, growing internal storage as needed.
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MemoryCacheManager.java 25 * is memory pressure provide a callback to reclaim the memory in the caches.
36 * Extend this interface to provide a reclaim method on a memory cache.
43 * Register the memory cache with the application.
52 * Unregister the memory cache with the application.
61 * Reclaim memory in all the memory caches in the application.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
kernel.h 14 unsigned long totalram; /* Total usable main memory size */
15 unsigned long freeram; /* Available memory size */
16 unsigned long sharedram; /* Amount of shared memory */
17 unsigned long bufferram; /* Memory used by buffers */
22 unsigned long totalhigh; /* Total high memory size */
23 unsigned long freehigh; /* Available high memory size */
24 unsigned int mem_unit; /* Memory unit size in bytes */
  /frameworks/av/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 53 /* Memory table*/
54 #define LVREV_NR_MEMORY_REGIONS 4 /* Number of memory regions */
93 /* Memory table containing the region definitions */
144 /* This function is used to obtain the LVREV module memory requirements to support */
145 /* memory allocation. It can also be used to return the memory base address provided */
146 /* during memory allocation to support freeing of memory when the LVREV module is no */
149 /* hInstance = NULL Returns the memory requirements */
150 /* hInstance = Instance handle Returns the memory requirements and allocated *
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
cod_main.h 21 * Static memory in the encoder *
35 Word16 mem_decim[2 * L_FILT16k]; /* speech decimated filter memory */
36 Word16 mem_sig_in[6]; /* hp50 filter memory */
37 Word16 mem_preemph; /* speech preemph filter memory */
41 Word16 mem_levinson[M + 2]; /* levinson routine memory */
45 Word16 mem_wsp; /* wsp vector memory */
46 Word16 mem_decim2[3]; /* wsp decimation filter memory */
47 Word16 mem_w0; /* target vector memory */
48 Word16 mem_syn[M]; /* synthesis memory */
54 Word16 gp_clip[2]; /* gain of pitch clipping memory */
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 2 * Memory pools library, Public interface
6 * This package provides a memory allocation subsystem based on pools of
9 * Instrumentation is available for reporting memory utilization both
18 * creates and provides individual memory pools
21 * memory pool: An object for allocating homogenous memory blocks.
24 * bcm_mpm_* Memory pool manager
25 * bcm_mp_* Memory pool
27 * There are two main types of memory pools:
29 * prealloc: The contiguous memory block of objects can either be supplie
    [all...]

Completed in 1906 milliseconds

1 2 3 4 5 67 8 91011>>