OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:src_bytes
(Results
1 - 2
of
2
) sorted by null
/external/pcre/dist2/src/
pcre2_serialize.c
152
const uint8_t *
src_bytes
;
local
169
src_bytes
= bytes + sizeof(pcre2_serialized_data);
177
memcpy(tables,
src_bytes
, tables_length);
179
src_bytes
+= tables_length;
190
memcpy(&blocksize,
src_bytes
+ offsetof(pcre2_real_code, blocksize),
213
src_bytes
+ sizeof(pcre2_memctl), blocksize - sizeof(pcre2_memctl));
226
src_bytes
+= blocksize;
/art/runtime/mirror/
object.cc
83
uint8_t*
src_bytes
= reinterpret_cast<uint8_t*>(src.Ptr()) + offset;
local
86
DCHECK_ALIGNED(
src_bytes
, sizeof(uintptr_t));
91
reinterpret_cast<Atomic<uintptr_t>*>(
src_bytes
)->LoadRelaxed());
92
src_bytes
+= sizeof(uintptr_t);
99
reinterpret_cast<Atomic<uint32_t>*>(
src_bytes
)->LoadRelaxed());
100
src_bytes
+= sizeof(uint32_t);
108
reinterpret_cast<Atomic<uint8_t>*>(
src_bytes
)->LoadRelaxed());
109
src_bytes
+= sizeof(uint8_t);
Completed in 79 milliseconds