HomeSort by relevance Sort by last modified time
    Searched defs:dst_bytes (Results 1 - 2 of 2) sorted by null

  /external/pcre/dist2/src/
pcre2_serialize.c 77 uint8_t *dst_bytes; local
123 dst_bytes = bytes + sizeof(pcre2_serialized_data);
124 memcpy(dst_bytes, tables, tables_length);
125 dst_bytes += tables_length;
130 memcpy(dst_bytes, (char *)re, re->blocksize);
131 dst_bytes += re->blocksize;
  /art/runtime/mirror/
object.cc 83 uint8_t* dst_bytes = reinterpret_cast<uint8_t*>(dest.Ptr()) + offset; local
86 DCHECK_ALIGNED(dst_bytes, sizeof(uintptr_t));
89 reinterpret_cast<Atomic<uintptr_t>*>(dst_bytes)->StoreRelaxed(
92 dst_bytes += sizeof(uintptr_t);
97 reinterpret_cast<Atomic<uint32_t>*>(dst_bytes)->StoreRelaxed(
100 dst_bytes += sizeof(uint32_t);
106 reinterpret_cast<Atomic<uint8_t>*>(dst_bytes)->StoreRelaxed(
109 dst_bytes += sizeof(uint8_t);

Completed in 227 milliseconds