OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:memory_pointer
(Results
1 - 2
of
2
) sorted by null
/system/extras/memory_replay/tests/
PointersTest.cpp
25
void*
memory_pointer
= pointers.Remove(0x1234);
local
26
ASSERT_EQ(reinterpret_cast<void*>(0xabcd),
memory_pointer
);
33
void*
memory_pointer
= pointers.Remove(0x1234);
local
34
ASSERT_EQ(reinterpret_cast<void*>(0xabcd),
memory_pointer
);
36
memory_pointer
= pointers.Remove(0x1234);
37
ASSERT_EQ(reinterpret_cast<void*>(0x5555),
memory_pointer
);
48
void*
memory_pointer
= pointers.Remove(0x11234);
local
49
ASSERT_EQ(reinterpret_cast<void*>(0xabcf),
memory_pointer
);
50
memory_pointer
= pointers.Remove(0x1234);
51
ASSERT_EQ(reinterpret_cast<void*>(0xabcd),
memory_pointer
);
62
void*
memory_pointer
= pointers.Remove(0x1236);
local
[
all
...]
/external/webrtc/webrtc/system_wrappers/source/
aligned_malloc.cc
65
void*
memory_pointer
= malloc(size + sizeof(uintptr_t) + alignment - 1);
local
66
if (
memory_pointer
== NULL) {
72
uintptr_t align_start_pos = reinterpret_cast<uintptr_t>(
memory_pointer
);
81
uintptr_t memory_start = reinterpret_cast<uintptr_t>(
memory_pointer
);
Completed in 372 milliseconds