HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 1 - 25 of 5692) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/language.support/support.limits/support.limits.general/
memory.version.pass.cpp 11 // <memory> feature macros
25 #include <memory>
31 // ensure that the macros that are supposed to be defined in <memory> are defined.
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/
enabled_hash.pass.cpp 12 // <memory>
14 // Test that <memory> provides all of the arithmetic, enum, and pointer
17 #include <memory>
  /external/libcxx/test/libcxx/diagnostics/
nodiscard_extensions.fail.cpp 26 #include <memory>
nodiscard_extensions.pass.cpp 14 // This test intentionally leaks memory, so it is unsupported under ASAN.
21 #include <memory>
27 std::get_temporary_buffer<int>(1); // intentional memory leak.
  /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...]
  /external/googletest/googlemock/test/
gmock-function-mocker_nc.cc 3 #include <memory>
  /external/libcxx/test/libcxx/depr/depr.auto.ptr/auto.ptr/
auto_ptr.cxx1z.pass.cpp 10 // <memory>
17 // is defined before including <memory>, then auto_ptr will be restored.
23 #include <memory>
  /external/libcxx/test/libcxx/utilities/memory/
version.pass.cpp 10 // <memory>
12 #include <memory>
  /external/libcxx/test/std/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 10 // <memory>
15 #include <memory>
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.temp.fail.cpp 10 // <memory>
14 #include <memory>
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
dereference.single.pass.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.create/
make_unique.array2.fail.cpp 10 #include <memory>
make_unique.array3.fail.cpp 10 #include <memory>
make_unique.array4.fail.cpp 10 #include <memory>
  /external/ltp/testcases/kernel/controllers/memcg/functional/
memcg_stat_test.sh 24 # Description: Tests memory.stat.
64 echo 1 > memory.use_hierarchy
67 echo $PAGESIZE > memory.limit_in_bytes
68 echo $((PAGESIZE*2)) > subgroup/memory.limit_in_bytes
80 echo 0 > memory.use_hierarchy
83 echo $PAGESIZE > memory.limit_in_bytes
84 echo $((PAGESIZE*2)) > subgroup/memory.limit_in_bytes
101 echo 1 > memory.use_hierarchy
104 echo $PAGESIZE > memory.limit_in_bytes
105 echo $PAGESIZE > memory.memsw.limit_in_byte
    [all...]
memcg_use_hierarchy_test.sh 24 # Description: Tests memory.use_hierarchy.
37 echo 1 > memory.use_hierarchy
38 echo $PAGESIZE > memory.limit_in_bytes
52 EXPECT_FAIL echo 1 \> memory.use_hierarchy
60 echo 1 > memory.use_hierarchy
62 EXPECT_FAIL echo 0 \> subgroup/memory.use_hierarchy
memcg_force_empty.sh 33 # Test memory.force_empty
44 EXPECT_PASS echo 1 \> memory.force_empty
51 EXPECT_PASS echo 0 \> memory.force_empty
56 EXPECT_PASS echo 1.0 \> memory.force_empty
61 EXPECT_PASS echo 1xx \> memory.force_empty
66 EXPECT_PASS echo xx \> memory.force_empty
73 EXPECT_FAIL echo 1 \> /dev/memcg/memory.force_empty
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
addressof.hpp 17 # include <memory>
shared_ptr.hpp 17 # include <memory>
weak_ptr.hpp 17 # include <memory>
  /external/linux-kselftest/tools/testing/selftests/memory-hotplug/
mem-on-off-test.sh 25 if ! ls $SYSFS/devices/system/memory/memory* > /dev/null 2>&1; then
26 echo $msg memory hotplug is not supported >&2
30 if ! grep -q 1 $SYSFS/devices/system/memory/memory*/removable; then
31 echo $msg no hot-pluggable memory >&2
37 # list all hot-pluggable memory
43 for memory in $SYSFS/devices/system/memory/memory*; d
    [all...]
  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module.c 35 char * const memory = (char*)malloc(sizeof(int)); local
36 memory[sizeof(int)] = '!';
37 free(memory);
41 char * const memory = (char*)malloc(sizeof(int)); local
42 memory[-1] = '!';
43 free(memory);
  /external/ImageMagick/tests/
validate-formats-memory.tap 23 ${VALIDATE} -validate formats-memory && echo "ok" || echo "not ok"
  /external/u-boot/arch/arm/dts/
skeleton.dtsi 3 * add a compatible value. The bootloader will typically populate the memory
12 memory { device_type = "memory"; reg = <0 0>; };
skeleton64.dtsi 4 * bootloader will typically populate the memory node.
12 memory { device_type = "memory"; reg = <0 0 0 0>; };

Completed in 864 milliseconds

1 2 3 4 5 6 7 8 91011>>