OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:raw_addr
(Results
1 - 10
of
10
) sorted by null
/art/runtime/mirror/
object.h
99
byte*
raw_addr
= reinterpret_cast<byte*>(this) +
local
101
int32_t* word_addr = reinterpret_cast<int32_t*>(
raw_addr
);
194
const byte*
raw_addr
= reinterpret_cast<const byte*>(this) + field_offset.Int32Value();
local
195
const int32_t* word_addr = reinterpret_cast<const int32_t*>(
raw_addr
);
208
byte*
raw_addr
= reinterpret_cast<byte*>(this) + field_offset.Int32Value();
local
209
uint32_t* word_addr = reinterpret_cast<uint32_t*>(
raw_addr
);
object-inl.h
243
const byte*
raw_addr
= reinterpret_cast<const byte*>(this) + field_offset.Int32Value();
local
244
const int64_t* addr = reinterpret_cast<const int64_t*>(
raw_addr
);
256
byte*
raw_addr
= reinterpret_cast<byte*>(this) + field_offset.Int32Value();
local
257
int64_t* addr = reinterpret_cast<int64_t*>(
raw_addr
);
/external/chromium_org/net/tools/quic/
quic_client.cc
122
sockaddr_storage
raw_addr
;
local
123
socklen_t raw_addr_len = sizeof(
raw_addr
);
124
CHECK(client_address_.ToSockAddr(reinterpret_cast<sockaddr*>(&
raw_addr
),
127
reinterpret_cast<const sockaddr*>(&
raw_addr
),
128
sizeof(
raw_addr
));
quic_server.cc
124
sockaddr_storage
raw_addr
;
local
125
socklen_t raw_addr_len = sizeof(
raw_addr
);
126
CHECK(address.ToSockAddr(reinterpret_cast<sockaddr*>(&
raw_addr
),
129
reinterpret_cast<const sockaddr*>(&
raw_addr
),
130
sizeof(
raw_addr
));
/art/runtime/native/
sun_misc_Unsafe.cc
29
byte*
raw_addr
= reinterpret_cast<byte*>(obj) + offset;
local
30
volatile int32_t* address = reinterpret_cast<volatile int32_t*>(
raw_addr
);
39
byte*
raw_addr
= reinterpret_cast<byte*>(obj) + offset;
local
40
volatile int64_t* address = reinterpret_cast<volatile int64_t*>(
raw_addr
);
51
byte*
raw_addr
= reinterpret_cast<byte*>(obj) + offset;
local
52
int32_t* address = reinterpret_cast<int32_t*>(
raw_addr
);
/external/v8/src/
platform-posix.cc
105
uint64_t
raw_addr
= (rnd1 << 32) ^ rnd2;
local
109
raw_addr
&= V8_UINT64_C(0x3ffffffff000);
111
uint32_t
raw_addr
= V8::RandomPrivate(isolate);
115
raw_addr
&= 0x3ffff000;
116
raw_addr
+= 0x20000000;
118
return reinterpret_cast<void*>(
raw_addr
);
platform-openbsd.cc
85
uint64_t
raw_addr
= (rnd1 << 32) ^ rnd2;
local
89
raw_addr
&= V8_UINT64_C(0x3ffffffff000);
91
uint32_t
raw_addr
= V8::RandomPrivate(isolate);
94
raw_addr
&= 0x3ffff000;
95
raw_addr
+= 0x20000000;
97
return reinterpret_cast<void*>(
raw_addr
);
/external/chromium_org/v8/src/
platform-posix.cc
215
uintptr_t
raw_addr
;
local
216
isolate->random_number_generator()->NextBytes(&
raw_addr
, sizeof(
raw_addr
));
221
raw_addr
&= V8_UINT64_C(0x3ffffffff000);
223
raw_addr
&= 0x3ffff000;
235
raw_addr
+= 0x80000000;
240
raw_addr
+= 0x20000000;
243
return reinterpret_cast<void*>(
raw_addr
);
/art/runtime/gc/
heap.cc
734
const byte*
raw_addr
= reinterpret_cast<const byte*>(obj) +
local
736
const mirror::Class* c = *reinterpret_cast<mirror::Class* const *>(
raw_addr
);
745
raw_addr
= reinterpret_cast<const byte*>(c) + mirror::Object::ClassOffset().Int32Value();
746
const mirror::Class* c_c = *reinterpret_cast<mirror::Class* const *>(
raw_addr
);
747
raw_addr
= reinterpret_cast<const byte*>(c_c) + mirror::Object::ClassOffset().Int32Value();
748
const mirror::Class* c_c_c = *reinterpret_cast<mirror::Class* const *>(
raw_addr
);
[
all
...]
/art/runtime/interpreter/
interpreter.cc
213
byte*
raw_addr
= reinterpret_cast<byte*>(obj) + offset;
local
214
volatile int32_t* address = reinterpret_cast<volatile int32_t*>(
raw_addr
);
[
all
...]
Completed in 867 milliseconds