HomeSort by relevance Sort by last modified time
    Searched refs:new_end (Results 1 - 25 of 32) sorted by null

1 2

  /external/ceres-solver/internal/ceres/
stl_util.h 64 ForwardIterator new_end = unique(begin, end); local
65 while (begin != new_end) {
  /art/runtime/gc/space/
bump_pointer_space-inl.h 68 uint8_t* new_end; local
71 new_end = old_end + num_bytes;
73 if (UNLIKELY(new_end > growth_end_)) {
76 } while (!end_.CompareExchangeWeakSequentiallyConsistent(old_end, new_end));
malloc_space.cc 135 uint8_t* new_end = original_end + increment; local
139 CHECK_LE(new_end, Begin() + Capacity());
151 CHECK_MEMORY_CALL(madvise, (new_end, size, MADV_DONTNEED), GetName());
152 CHECK_MEMORY_CALL(mprotect, (new_end, size, PROT_NONE), GetName());
155 SetEnd(new_end);
  /external/e2fsprogs/lib/ext2fs/
bitmaps.c 205 errcode_t ext2fs_resize_inode_bitmap(__u32 new_end, __u32 new_real_end,
209 new_end, new_real_end, bmap));
212 errcode_t ext2fs_resize_inode_bitmap2(__u64 new_end, __u64 new_real_end,
215 return (ext2fs_resize_generic_bmap(bmap, new_end, new_real_end));
218 errcode_t ext2fs_resize_block_bitmap(__u32 new_end, __u32 new_real_end,
222 new_end, new_real_end, bmap));
225 errcode_t ext2fs_resize_block_bitmap2(__u64 new_end, __u64 new_real_end,
228 return (ext2fs_resize_generic_bmap(bmap, new_end, new_real_end));
blkmap64_ba.c 124 __u64 new_end, __u64 new_real_end)
135 if (new_end > bmap->end) {
137 if (bitno > new_end)
138 bitno = new_end;
143 bmap->end = new_end;
158 bmap->end = new_end;
bmap64.h 74 __u64 new_end,
gen_bitmap.c 303 __u32 new_end, __u32 new_real_end,
317 if (new_end > bmap->end) {
319 if (bitno > new_end)
320 bitno = new_end;
325 bmap->end = new_end;
340 bmap->end = new_end;
ext2fsP.h 124 __u64 new_end,
gen_bitmap64.c 343 __u64 new_end,
350 return ext2fs_resize_generic_bitmap(bmap->magic, new_end,
358 return bmap->bitmap_ops->resize_bmap(bmap, new_end, new_real_end);
ext2fs.h 772 extern errcode_t ext2fs_resize_inode_bitmap(__u32 new_end, __u32 new_real_end,
774 extern errcode_t ext2fs_resize_inode_bitmap2(__u64 new_end,
777 extern errcode_t ext2fs_resize_block_bitmap(__u32 new_end, __u32 new_real_end,
779 extern errcode_t ext2fs_resize_block_bitmap2(__u64 new_end,
    [all...]
blkmap64_rb.c 298 __u64 new_end, __u64 new_real_end)
303 bmap->end = new_end;
315 bmap->end = new_end;
  /external/webrtc/webrtc/modules/desktop_capture/x11/
shared_x_display.cc 55 std::vector<XEventHandler*>::iterator new_end =
57 handlers->second.erase(new_end, handlers->second.end());
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 76 const char* new_end = std::find(cur_char, pEnd, '%'); local
77 pOutStr.append(cur_char, new_end);
78 cur_char = new_end;
  /external/webrtc/webrtc/base/
messagequeue.cc 391 PriorityQueue::container_type::iterator new_end = dmsgq_.container().begin(); local
392 for (PriorityQueue::container_type::iterator it = new_end;
401 *new_end++ = *it;
404 dmsgq_.container().erase(new_end, dmsgq_.container().end());
  /art/runtime/gc/accounting/
space_bitmap.cc 81 void SpaceBitmap<kAlignment>::SetHeapLimit(uintptr_t new_end) {
82 DCHECK_ALIGNED(new_end, kBitsPerIntPtrT * kAlignment);
83 size_t new_size = OffsetToIndex(new_end - heap_begin_) * sizeof(intptr_t);
space_bitmap.h 180 void SetHeapLimit(uintptr_t new_end);
  /external/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.cc 185 StanzaHandlerVector::iterator new_end = local
190 if (new_end != stanza_handlers_[level]->end()) {
191 stanza_handlers_[level]->erase(new_end, stanza_handlers_[level]->end());
  /external/opencv3/modules/features2d/src/
keypoint.cpp 84 std::vector<KeyPoint>::const_iterator new_end = local
88 keypoints.resize(new_end - keypoints.begin());
  /art/runtime/
mem_map.cc 515 MemMap* MemMap::RemapAtEnd(uint8_t* new_end, const char* tail_name, int tail_prot,
517 DCHECK_GE(new_end, Begin());
518 DCHECK_LE(new_end, End());
523 DCHECK_ALIGNED(new_end, kPageSize);
526 uint8_t* new_base_end = new_end;
531 size_ = new_end - reinterpret_cast<uint8_t*>(begin_);
534 size_t tail_size = old_end - new_end;
    [all...]
leb128_test.cc 266 const uint8_t* new_end = encoded_data; local
267 EXPECT_EQ(DecodeUnsignedLeb128(&new_end), new_value);
269 EXPECT_EQ(new_end, old_end);
mem_map.h 171 MemMap* RemapAtEnd(uint8_t* new_end,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
iterator_range_core.hpp 586 new_end = boost::end( r ); local
588 std::advance( new_end, advance_end );
589 return make_iterator_range( new_begin, new_end );
  /art/cmdline/
token_range.h 407 TokenList::iterator new_end = local
409 token_list->erase(new_end, token_list->end());
  /art/runtime/mirror/
array-inl.h 136 uint8_t* new_end = reinterpret_cast<uint8_t*>(array->GetRawData(1U << component_size_shift_, local
139 memset(old_end, 0, new_end - old_end);
  /system/extras/perfprofd/tests/
perfprofd_test.cc 129 auto new_end = std::unique(result.begin(), result.end(), bothWhiteSpace); local
130 result.erase(new_end, result.end());

Completed in 510 milliseconds

1 2