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

12 3 4 5 6 7 8 91011>>

  /external/iptables/include/linux/
kernel.h 15 unsigned long totalram; /* Total usable main memory size */
16 unsigned long freeram; /* Available memory size */
17 unsigned long sharedram; /* Amount of shared memory */
18 unsigned long bufferram; /* Memory used by buffers */
23 unsigned long totalhigh; /* Total high memory size */
24 unsigned long freehigh; /* Available high memory size */
25 unsigned int mem_unit; /* Memory unit size in bytes */
  /external/kernel-headers/original/uapi/linux/
sysinfo.h 10 __kernel_ulong_t totalram; /* Total usable main memory size */
11 __kernel_ulong_t freeram; /* Available memory size */
12 __kernel_ulong_t sharedram; /* Amount of shared memory */
13 __kernel_ulong_t bufferram; /* Memory used by buffers */
18 __kernel_ulong_t totalhigh; /* Total high memory size */
19 __kernel_ulong_t freehigh; /* Available high memory size */
20 __u32 mem_unit; /* Memory unit size in bytes */
  /external/pdfium/tools/drmemory/
README 2 # Dr. Memory
4 Dr. Memory (www.drmemory.org) is an open-source dynamic memory
7 ## About Dr. Memory
9 Dr. Memory operates on unmodified application binaries running on
11 It is capable of identifying memory-related programming errors including:
12 * accesses of uninitialized memory
13 * accesses to unaddressable memory (heap underflow and overflow)
14 * accesses to freed memory
16 * memory leak
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
kernel.h 15 unsigned long totalram; /* Total usable main memory size */
16 unsigned long freeram; /* Available memory size */
17 unsigned long sharedram; /* Amount of shared memory */
18 unsigned long bufferram; /* Memory used by buffers */
23 unsigned long totalhigh; /* Total high memory size */
24 unsigned long freehigh; /* Available high memory size */
25 unsigned int mem_unit; /* Memory unit size in bytes */
  /external/clang/test/Analysis/
NewDeleteLeaks-PR19102.cpp 25 new int; // expected-warning@+1 {{Potential memory leak}}
26 new A0; // expected-warning@+1 {{Potential memory leak}}
27 new A1(0); // expected-warning@+1 {{Potential memory leak}}
28 new A2; // expected-warning@+1 {{Potential memory leak}}
32 new A2(s); // expected-warning@+1 {{Potential memory leak}}
33 new A2(&(s.i)); // expected-warning@+1 {{Potential memory leak}}
39 A2 *a2p1 = new A2; // expected-warning@+1 {{Potential leak of memory}}
40 A2 *a2p2 = new A2(ps); // expected-warning@+1 {{Potential leak of memory}}
41 A2 *a2p3 = new A2(*ps, 1); // expected-warning@+1 {{Potential leak of memory}}
42 A2 *a2p4 = new A2(1, &ps); // expected-warning@+1 {{Potential leak of memory}}
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/vms/
ftsystem.c 28 /* memory-mapping includes and definitions */
74 /* MEMORY MANAGEMENT INTERFACE */
85 /* The memory allocation function. */
88 /* memory :: A pointer to the memory object. */
96 ft_alloc( FT_Memory memory,
99 FT_UNUSED( memory );
111 /* The memory reallocation function. */
114 /* memory :: A pointer to the memory object. *
297 FT_Memory memory; local
    [all...]
  /external/autotest/client/site_tests/platform_CompressedSwap/
control 23 Memory hogs are started to allocate and touch pages to consume free memory.
24 As free memory approaches 0, swap space starts to be used.
26 Verify we get low memory notification.
27 Verify low memory notification goes away after some memory is freed.
  /external/autotest/client/tests/kvm/tests/
balloon_check.py 8 Check Memory ballooning:
10 2) Change the memory between 60% to 95% of memory of guest using ballooning
11 3) check memory info
19 Verify the actual memory reported by monitor command info balloon. If
36 Baloon memory to new_mem and verifies on both qemu monitor and
39 @param new_mem: New desired memory.
43 logging.info("Changing VM memory to %s", new_mem)
50 # Verify whether the VM machine reports the correct new memory
52 logging.error("Memory ballooning failed while changing memory
    [all...]
  /external/avahi/docs/
MALLOC 1 Avahi supports pluggable memory allocator implemenations. See
4 Currently, Avahi does not deal well with out-of-memory
5 situations. Therefore we recommend the usage of memory allocators that
  /external/llvm/unittests/Support/
MemoryTest.cpp 10 #include "llvm/Support/Memory.h"
28 // Adds RW flags to permit testing of the resulting memory
31 case Memory::MF_READ:
32 case Memory::MF_WRITE:
33 case Memory::MF_READ|Memory::MF_WRITE:
34 return Memory::MF_READ|Memory::MF_WRITE;
35 case Memory::MF_READ|Memory::MF_EXEC
    [all...]
  /external/blktrace/
barrier.h 5 #define store_barrier() asm volatile ("mf" ::: "memory")
7 #define store_barrier() asm volatile("sfence" ::: "memory")
9 #define store_barrier() asm volatile ("": : :"memory")
11 #define store_barrier() asm volatile ("eieio" : : : "memory")
13 #define store_barrier() asm volatile ("bcr 15,0" : : : "memory")
15 #define store_barrier() asm volatile("wmb": : :"memory")
17 #define store_barrier() asm volatile("":::"memory")
19 #define store_barrier() asm volatile("":::"memory")
21 #define store_barrier() asm volatile("":::"memory")
  /external/eigen/bench/btl/libs/mtl4/
.kdbgrc.main 10 [Memory]
  /external/freetype/src/base/
ftsystem.c 21 /* low-level, i.e. memory management, i/o access as well as thread */
39 /* MEMORY MANAGEMENT INTERFACE */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory,
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. *
289 FT_Memory memory; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftsystem.c 21 /* low-level, i.e. memory management, i/o access as well as thread */
39 /* MEMORY MANAGEMENT INTERFACE */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory,
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. *
289 FT_Memory memory; local
    [all...]
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
pch.h 6 #include <memory>
  /external/pdfium/third_party/freetype/src/base/
ftsystem.c 21 /* low-level, i.e. memory management, i/o access as well as thread */
39 /* MEMORY MANAGEMENT INTERFACE */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory,
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. *
289 FT_Memory memory; local
    [all...]
  /external/webrtc/tools/valgrind-webrtc/gtest_exclude/
common_video_unittests.gtest-drmemory_win32.txt 1 # Too slow on Dr Memory Full.
  /frameworks/av/media/libstagefright/codecs/common/include/
cmnMemory.h 19 Content: memory operator implementation header file
35 * Allocate memory
37 * \param uSize [in] size of memory
38 * \return value is the allocated memory address. NULL is failed.
43 * Free up memory
45 * \param pMem [in] address of memory
51 * memory set function
53 * \param pBuff [in/out] address of memory
61 * memory copy function
63 * \param pDest [in/out] address of destination memory
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
expr1.t 3 MEMORY
  /art/cmdline/
memory_representation.h 28 // An integral representation of bytes of memory.
31 struct Memory {
34 static Memory<kDivisor> FromBytes(size_t bytes) {
36 return Memory<kDivisor>(bytes);
39 Memory() : Value(0u) {}
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5]
52 str = "Memory<" + std::to_string(kDivisor) + '>';
62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) {
63 return stream << memory.Value << '*' << kDivisor
    [all...]
  /external/curl/tests/data/
test1132 5 memory-includes
17 Verify memory #include files in libcurl's C source files
  /external/dng_sdk/source/
dng_jpeg_memory_source.h 1 // Provides an implementation of jpeg_source_mgr for in-memory data sources.
13 // Creates a jpeg_source_mgr for an in-memory data source based on the given
dng_ref_counted_block.h 30 /// for small memory allocations.
32 /// This class does not use dng_memory_allocator for memory allocation.
66 /// Construct an empty memory buffer using malloc.
71 /// Construct memory buffer of size bytes using malloc.
72 /// \param size Number of bytes of memory needed.
77 /// Release memory buffer using free.
89 /// Clear existing memory buffer and allocate new memory of size bytes.
90 /// \param size Number of bytes of memory needed.
95 /// Release any allocated memory using free. Object is still valid an
    [all...]
  /external/fio/arch/
arch-alpha.h 22 #define read_barrier() __asm__ __volatile__("mb": : :"memory")
23 #define write_barrier() __asm__ __volatile__("wmb": : :"memory")
arch-hppa.h 23 #define read_barrier() __asm__ __volatile__ ("" : : : "memory")
24 #define write_barrier() __asm__ __volatile__ ("" : : : "memory")

Completed in 1731 milliseconds

12 3 4 5 6 7 8 91011>>