Home
last modified time | relevance | path

Searched refs:new_start (Results 1 – 11 of 11) sorted by relevance

/external/syslinux/gpxe/src/arch/i386/core/
Drelocate.c47 unsigned long new_start, new_end; in relocate() local
159 new_start = new_end - padded_size; in relocate()
160 new_start += ( start - new_start ) & ( max_align - 1 ); in relocate()
161 new_end = new_start + size; in relocate()
164 start, end, new_start, new_end ); in relocate()
168 ix86->regs.edi = new_start; in relocate()
/external/v8/src/wasm/
Dwasm-code-specialization.cc68 Address new_start, in RelocateMemoryReferences() argument
72 DCHECK(old_start != new_start || old_size != new_size); in RelocateMemoryReferences()
75 new_mem_start = new_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()
83 new_globals_start = new_start; in RelocateGlobals()
Dwasm-code-specialization.h30 Address new_start, uint32_t new_size);
32 void RelocateGlobals(Address old_start, Address new_start);
/external/toybox/toys/pending/
Dfdisk.c575 sector_t new_start; in delete_partition() local
612 new_start = partitions[i + 1].start_offset + swap_le32toh(q->start4) - extended_offset; in delete_partition()
613 new_start = SWAP_LE32(new_start); in delete_partition()
614 memcpy(p->start4, (void *)&new_start, 4); in delete_partition()
1146 sector_t start, num, new_start, end; in move_begning() local
1162 new_start = ask_value(mesg, 0, end, start); in move_begning()
1163 if (new_start != start) { in move_begning()
1164 set_levalue(p->start4, new_start - pe->start_offset); in move_begning()
1165 set_levalue(p->size4, end - new_start +1); in move_begning()
1167 set_hsc(p, new_start, end); in move_begning()
/external/pdfium/fpdfsdk/
Dfpdf_dataavail_embeddertest.cpp90 size_t new_start = std::min<size_t>(start_it->first, range.first); in SetDataAvailable() local
94 available_ranges_.insert(std::make_pair(new_start, new_end)); in SetDataAvailable()
/external/e2fsprogs/lib/ext2fs/
Dblkmap64_rb.c492 __u64 new_start, new_count; in rb_remove_extent() local
512 new_start = start + count; in rb_remove_extent()
513 new_count = (ext->start + ext->count) - new_start; in rb_remove_extent()
517 rb_insert_extent(new_start, new_count, bp); in rb_remove_extent()
/external/mesa3d/src/intel/tools/
Daubinator.c1135 uint32_t *new_start = realloc(file->map, new_size); in aub_file_data_grow() local
1137 file->cursor = new_start + (file->cursor - file->map); in aub_file_data_grow()
1138 file->end = new_start + (file->end - file->map); in aub_file_data_grow()
1139 file->map = new_start; in aub_file_data_grow()
/external/blktrace/
Dblkparse.c327 char *new_start; in resize_cpu_info() local
338 new_start = (char *)cpus + (ncpus * sizeof(struct per_cpu_info)); in resize_cpu_info()
340 memset(new_start, 0, new_space); in resize_cpu_info()
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-solaris.c674 Addr new_start, new_end; in set_stack() local
686 new_start = (Addr)st->ss_sp; in set_stack()
687 new_end = new_start + st->ss_size - 1; in set_stack()
693 if (new_start == cur_start && new_size == cur_size) { in set_stack()
708 new_start = new_end + 1 - new_size; in set_stack()
715 new_start, new_end, tid); in set_stack()
716 tst->os_state.stk_id = VG_(register_stack)(new_start, new_end); in set_stack()
721 new_start, new_end, tid); in set_stack()
722 VG_(change_stack)(tst->os_state.stk_id, new_start, new_end); in set_stack()
/external/python/cpython2/Lib/
Dmailbox.py672 new_start = new_file.tell()
679 new_toc[key] = (new_start, new_file.tell())
/external/v8/src/heap/
Dheap.cc3189 Address new_start = old_start + bytes_to_trim; in LeftTrimFixedArray() local
3195 ObjectMarking::MarkBitFrom(HeapObject::FromAddress(new_start)))) { in LeftTrimFixedArray()
3197 HeapObject::FromAddress(new_start)); in LeftTrimFixedArray()
3224 FixedArrayBase::cast(HeapObject::FromAddress(new_start)); in LeftTrimFixedArray()