HomeSort by relevance Sort by last modified time
    Searched refs:raw_addr (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/net/tools/quic/
quic_server.cc 117 sockaddr_storage raw_addr; local
118 socklen_t raw_addr_len = sizeof(raw_addr);
119 CHECK(address.ToSockAddr(reinterpret_cast<sockaddr*>(&raw_addr),
122 reinterpret_cast<const sockaddr*>(&raw_addr),
123 sizeof(raw_addr));
quic_client.cc 117 sockaddr_storage raw_addr; local
118 socklen_t raw_addr_len = sizeof(raw_addr);
119 CHECK(client_address_.ToSockAddr(reinterpret_cast<sockaddr*>(&raw_addr),
122 reinterpret_cast<const sockaddr*>(&raw_addr),
123 sizeof(raw_addr));
  /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);
  /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 177 uint64_t raw_addr = (rnd1 << 32) ^ rnd2; local
181 raw_addr &= V8_UINT64_C(0x3ffffffff000);
183 uint32_t raw_addr = V8::RandomPrivate(isolate);
185 raw_addr &= 0x3ffff000;
197 raw_addr += 0x80000000;
202 raw_addr += 0x20000000;
205 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 352 milliseconds