Searched refs:new_start (Results 1 - 11 of 11) sorted by path

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

Completed in 477 milliseconds