Home
last modified time | relevance | path

Searched refs:old_start (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/wasm/
Dwasm-code-specialization.cc66 void CodeSpecialization::RelocateMemoryReferences(Address old_start, in RelocateMemoryReferences() argument
72 DCHECK(old_start != new_start || old_size != new_size); in RelocateMemoryReferences()
73 old_mem_start = old_start; in RelocateMemoryReferences()
79 void CodeSpecialization::RelocateGlobals(Address old_start, Address new_start) { in RelocateGlobals() argument
81 DCHECK(old_start != 0 || new_start != 0); in RelocateGlobals()
82 old_globals_start = old_start; in RelocateGlobals()
Dwasm-code-specialization.h29 void RelocateMemoryReferences(Address old_start, uint32_t old_size,
32 void RelocateGlobals(Address old_start, Address new_start);
/external/curl/packages/vms/
Dbuild_gnv_curl_pcsi_desc.com177 $ old_start = f$locate("[gnv.usr", pathname)
178 $ if old_start .lt. f$length(pathname)
294 $ old_start = f$locate("[gnv.usr", pathname)
295 $ if old_start .lt. f$length(pathname)
346 $ old_start = f$locate("[gnv.usr", pathname)
347 $ if old_start .lt. f$length(pathname)
424 $ old_start = f$locate("[gnv.usr", destname)
425 $ if old_start .lt. f$length(destname)
452 $ old_start = f$locate("[gnv.usr", destname)
453 $ if old_start .lt. f$length(destname)
/external/webp/src/dec/
Didec_dec.c170 const uint8_t* const old_start = mem->buf_ + mem->start_; in AppendToMemBuffer() local
172 need_compressed_alpha ? dec->alpha_data_ : old_start; in AppendToMemBuffer()
181 const size_t new_mem_start = old_start - old_base; in AppendToMemBuffer()
200 DoRemap(idec, mem->buf_ + mem->start_ - old_start); in AppendToMemBuffer()
208 const uint8_t* const old_start = old_buf + mem->start_; in RemapMemBuffer() local
216 DoRemap(idec, mem->buf_ + mem->start_ - old_start); in RemapMemBuffer()
/external/perf_data_converter/src/
Dperf_data_handler.cc364 uint64 old_start = mapping->start; in UpdateMapsWithMMapEvent() local
368 mapping->file_offset = old_start; in UpdateMapsWithMMapEvent()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToStream.java1262 final int old_start = start; in cdata() local
1311 super.fireCDATAEvent(ch, old_start, length); in cdata()
/external/v8/src/heap/
Dheap.cc3188 Address old_start = object->address(); in LeftTrimFixedArray() local
3189 Address new_start = old_start + bytes_to_trim; in LeftTrimFixedArray()
3203 CreateFillerObjectAt(old_start, bytes_to_trim, ClearRecordedSlots::kYes); in LeftTrimFixedArray()
3209 Page* page = Page::FromAddress(old_start); in LeftTrimFixedArray()
3211 page->AddressToMarkbitIndex(old_start), in LeftTrimFixedArray()
3212 page->AddressToMarkbitIndex(old_start + bytes_to_trim)); in LeftTrimFixedArray()