Searched refs:memory (Results 1 - 25 of 1625) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dmemory_header_test.cpp8 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Ddefault03.fail.cpp10 // <memory>
18 #include <memory>
H A Dpointer03.fail.cpp10 // <memory>
18 #include <memory>
H A Ddefault02.fail.cpp10 // <memory>
18 #include <memory>
H A Dpointer02.fail.cpp10 // <memory>
16 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Ddefault03.fail.cpp10 // <memory>
16 #include <memory>
H A Dpointer03.fail.cpp10 // <memory>
16 #include <memory>
H A Ddefault02.fail.cpp10 // <memory>
16 #include <memory>
H A Dpointer02.fail.cpp10 // <memory>
16 #include <memory>
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DConsole.idl33 readonly attribute MemoryInfo memory;
/external/chromium_org/third_party/webrtc/base/
H A Dbyteorder.h26 // Reading and writing of little and big-endian numbers from memory
30 inline void Set8(void* memory, size_t offset, uint8 v) { argument
31 static_cast<uint8*>(memory)[offset] = v;
34 inline uint8 Get8(const void* memory, size_t offset) { argument
35 return static_cast<const uint8*>(memory)[offset];
38 inline void SetBE16(void* memory, uint16 v) { argument
39 Set8(memory, 0, static_cast<uint8>(v >> 8));
40 Set8(memory, 1, static_cast<uint8>(v >> 0));
43 inline void SetBE32(void* memory, uint32 v) { argument
44 Set8(memory,
50 SetBE64(void* memory, uint64 v) argument
61 GetBE16(const void* memory) argument
66 GetBE32(const void* memory) argument
73 GetBE64(const void* memory) argument
84 SetLE16(void* memory, uint16 v) argument
89 SetLE32(void* memory, uint32 v) argument
96 SetLE64(void* memory, uint64 v) argument
107 GetLE16(const void* memory) argument
112 GetLE32(const void* memory) argument
119 GetLE64(const void* memory) argument
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Dmemoize.py8 memory = {}
11 if full_args not in memory:
12 memory[full_args] = fn(*args, **optargs)
13 return memory[full_args]
/external/libcxx/test/utilities/memory/allocator.tag/
H A Dallocator_arg.pass.cpp10 // <memory>
15 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array2.fail.cpp10 #include <memory>
H A Dmake_unique.array3.fail.cpp10 #include <memory>
H A Dmake_unique.array4.fail.cpp10 #include <memory>
H A Dmake_unique.array1.fail.cpp10 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A Ddereference.fail.cpp10 // <memory>
16 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
H A Ddereference.pass.cpp10 // <memory>
16 #include <memory>
/external/libcxx/test/utilities/memory/
H A Dversion.pass.cpp10 // <memory>
12 #include <memory>
/external/cmockery/cmockery_0_1_2/src/example/
H A Dallocate_module.c35 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/chromium_org/base/memory/
H A Ddiscardable_memory_unittest.cc5 #include "base/memory/discardable_memory.h"
55 // discardable memory natively, then we'll have to add a 'never supported
66 const scoped_ptr<DiscardableMemory> memory(CreateLockedMemory(kSize));
67 ASSERT_TRUE(memory);
68 void* addr = memory->Memory();
71 memory->Unlock();
73 EXPECT_NE(DISCARDABLE_MEMORY_LOCK_STATUS_FAILED, memory->Lock());
74 addr = memory->Memory();
77 memory->Unlock();
80 // Test delete a discardable memory whil
[all...]
/external/chromium_org/tools/android/memconsumer/
H A Dmemconsumer_hook.cc14 jlong memory);
33 jlong memory) {
37 if (memory == 0) {
41 g_memory = static_cast<uint32_t*>(malloc(memory));
46 memory);
48 // If memory allocation failed, try to allocate as much as possible.
50 memory /= 2;
51 g_memory = static_cast<uint32_t*>(malloc(memory));
53 for (int i = 0; i < memory / sizeof(uint32_t); ++i)
30 Java_org_chromium_memconsumer_ResidentService_nativeUseMemory( JNIEnv* env, jobject clazz, jlong memory) argument
/external/libcxx/test/utilities/memory/pointer.traits/
H A Delement_type.pass.cpp10 // <memory>
19 #include <memory>
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
H A Dvoid.fail.cpp10 // <memory>
16 #include <memory>

Completed in 5749 milliseconds

1234567891011>>