/external/valgrind/none/tests/arm64/ |
memory.vgtest | 1 prog: memory
|
/external/e2fsprogs/tests/e_brel_bma/ |
name | 1 block relocation table using the memory array implementation
|
/external/e2fsprogs/tests/e_irel_ima/ |
name | 1 inode relocation table using the memory array implementation
|
/external/valgrind/none/tests/linux/ |
mremap.stderr.exp | 2 mremap(grow, nomove, constrained): Cannot allocate memory
|
/external/autotest/client/site_tests/platform_MemCheck/ |
control | 2 PURPOSE = 'Verify memory values look reasonable.' 5 - Total Memory 6 - Free Memory 9 - Virtual Memory 21 Verifies that memory levels look sane. 25 Total Memory 26 Free Memory 28 Virtual Memory Total 29 Memory Speed 31 We are assuming that we should have at least 1/2 of total memory free an [all...] |
/external/autotest/client/site_tests/graphics_dEQP/expectations/rogue/ |
dEQP-GLES2.stress.NotSupported.bz2 | |
/external/webrtc/webrtc/base/ |
byteorder.h | 26 // Reading and writing of little and big-endian numbers from memory 30 inline void Set8(void* memory, size_t offset, uint8_t v) { 31 static_cast<uint8_t*>(memory)[offset] = v; 34 inline uint8_t Get8(const void* memory, size_t offset) { 35 return static_cast<const uint8_t*>(memory)[offset]; 38 inline void SetBE16(void* memory, uint16_t v) { 39 Set8(memory, 0, static_cast<uint8_t>(v >> 8)); 40 Set8(memory, 1, static_cast<uint8_t>(v >> 0)); 43 inline void SetBE32(void* memory, uint32_t v) { 44 Set8(memory, 0, static_cast<uint8_t>(v >> 24)) [all...] |
/art/test/074-gc-thrash/ |
info.txt | 1 This thrashes the memory allocator and garbage collector for a brief period.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
region-alias-2.t | 0 MEMORY
|
region-alias-3.t | 0 MEMORY
|
region-alias-4.t | 0 MEMORY
|
include-mem.t | 2 MEMORY {
|
region-alias-1.t | 0 MEMORY
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
test_instancetype.py | 26 <name>m1.small</name><cpu>1</cpu><disk>5</disk><memory>256</memory> 30 <name>t1.micro</name><cpu>1</cpu><disk>5</disk><memory>256</memory> 34 <name>m1.medium</name><cpu>1</cpu><disk>10</disk><memory>512</memory> 38 <name>c1.medium</name><cpu>2</cpu><disk>10</disk><memory>512</memory> 42 <name>m1.large</name><cpu>2</cpu><disk>10</disk><memory>512</memory> [all...] |
/external/autotest/client/site_tests/platform_MemoryMonitor/ |
control | 2 PURPOSE = 'Monitor the memory usage over time. This is NOT a pass/fail test.' 12 This test is used to monitor the memory usage trend of each build. 16 General memory usage (total, use, free) 18 Top 10 processes by resident memory consumption 19 Resident memory grouped by command line 20 Resident memory grouped by service
|
/external/fio/arch/ |
arch-generic.h | 7 #define read_barrier() __asm__ __volatile__("": : :"memory") 8 #define write_barrier() __asm__ __volatile__("": : :"memory")
|
arch-mips.h | 21 #define read_barrier() __asm__ __volatile__("": : :"memory") 22 #define write_barrier() __asm__ __volatile__("": : :"memory") 23 #define nop __asm__ __volatile__("": : :"memory")
|
/art/test/476-checker-ctor-memory-barrier/ |
info.txt | 1 Tests if we add memory barriers on constructors when needed (i.e when the
|
/external/compiler-rt/test/safestack/ |
utils.h | 5 __asm__ __volatile__("" : : "r" (arg) : "memory");
|
/external/autotest/client/tests/memory_api/ |
control | 4 memory api tests run through a series of memory allocation calls which may 5 then be used to analyze the kernel mappings of the corresponding memory areas.
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
CMakeLists.txt | 0 # Memory tests 22 add_library(deqp-vk-memory STATIC ${DEQP_VK_MEMORY_SRCS}) 23 target_link_libraries(deqp-vk-memory ${DEQP_VK_MEMORY_LIBS})
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
MemoryLimitException.java | 13 * Thrown when the memory usage limit given to the XZ decompressor 16 * The amount of memory required and the memory usage limit are 28 * The amount of memory needed and the memory usage limit are 31 * @param memoryNeeded amount of memory needed as kibibytes (KiB) 32 * @param memoryLimit specified memory usage limit as kibibytes (KiB) 35 super("" + memoryNeeded + " KiB of memory would be needed; limit was " 43 * Gets how much memory is required to decompress the data. 45 * @return amount of memory needed as kibibytes (KiB [all...] |
/external/webrtc/webrtc/modules/audio_conference_mixer/source/ |
memory_pool_posix.h | 26 int32_t PopMemory(MemoryType*& memory); 27 int32_t PushMemory(MemoryType*& memory); 63 // Trigger assert if there is outstanding memory. 70 int32_t MemoryPoolImpl<MemoryType>::PopMemory(MemoryType*& memory) 75 memory = NULL; 79 // _memoryPool empty create new memory. 83 memory = NULL; 87 memory = _memoryPool.front(); 94 int32_t MemoryPoolImpl<MemoryType>::PushMemory(MemoryType*& memory) 96 if(memory == NULL 132 MemoryType* memory = _memoryPool.front(); local 146 MemoryType* memory = new MemoryType(); local [all...] |
/external/autotest/client/site_tests/hardware_Memtester/ |
control | 7 PURPOSE = 'Verify memory integrity using memtester.' 8 CRITERIA = 'Fails if memory corrupt' 14 This test uses memtester to find memory subsystem faults. Amount of memory 15 to test is all of the free memory plus buffer and cache region with 30MB
|
/external/v8/src/base/ |
accounting-allocator.cc | 17 void* memory = malloc(bytes); local 18 if (memory) NoBarrier_AtomicIncrement(¤t_memory_usage_, bytes); 19 return memory; 22 void AccountingAllocator::Free(void* memory, size_t bytes) { 23 free(memory);
|