Searched refs:moved (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium_org/third_party/codesighs/
H A Dcodesighs.c494 void* moved = NULL; local
496 moved = realloc(modules, sizeof(ModuleStats) * (moduleCount + 1));
497 if(NULL != moved)
499 modules = (ModuleStats*)moved;
793 void* moved = NULL; local
795 moved = realloc(outOptions->mMatchClasses, sizeof(char*) * (outOptions->mMatchClassCount + 1));
796 if(NULL != moved)
798 outOptions->mMatchClasses = (char**)moved;
821 void* moved = NULL; local
823 moved
849 void* moved = NULL; local
877 void* moved = NULL; local
905 void* moved = NULL; local
933 void* moved = NULL; local
[all...]
H A Dmsmap2tsv.c462 void* moved = NULL; local
488 moved = realloc((*outDB)->mSymbols, sizeof(SymDB_Symbol) * ((*outDB)->mSymbolCapacity + SYMDB_SYMBOL_GROWBY));
489 if(NULL != moved)
491 (*outDB)->mSymbols = (SymDB_Symbol*)moved;
545 moved = realloc(dbSymbol->mSections, sizeof(SymDB_Section) * (dbSymbol->mSectionCount + 1));
546 if(NULL != moved)
548 dbSymbol->mSections = (SymDB_Section*)moved;
591 moved = realloc(dbSection->mSizes, sizeof(SymDB_Size) * (dbSection->mSizeCount + 1));
592 if(NULL != moved)
594 dbSection->mSizes = (SymDB_Size*)moved;
1179 void* moved = NULL; local
1304 void* moved = NULL; local
1400 void* moved = NULL; local
2010 void* moved = NULL; local
[all...]
H A Dmaptsvdifftool.c460 void* moved = NULL; local
462 moved = realloc(modules, sizeof(ModuleStats) * (1 + moduleCount));
463 if(NULL != moved)
465 modules = (ModuleStats*)moved;
498 void* moved = NULL; local
500 moved = realloc(theModule->mSegments, sizeof(SegmentStats) * (theModule->mSegmentCount + 1));
501 if(NULL != moved)
503 theModule->mSegments = (SegmentStats*)moved;
537 void* moved = NULL; local
539 moved
575 void* moved = NULL; local
[all...]
H A Dmsdump2symdb.c487 void* moved = NULL; local
502 moved = realloc(inContainer->mReadState.mCurrentObject->mSections, sizeof(MSDump_Section) * sectionIndex1);
503 if(NULL != moved)
507 inContainer->mReadState.mCurrentObject->mSections = (MSDump_Section*)moved;
590 void* moved = NULL; local
596 moved = realloc(inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols, sizeof(MSDump_Symbol) * (inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbolCount + 1));
597 if(NULL != moved)
607 inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols = (MSDump_Symbol*)moved;
/external/chromium_org/third_party/icu/source/test/testdata/
H A Dtstfiles.mk6 # Not everything has been moved to this file yet, as this is a new facility.
/external/icu/icu4c/source/test/testdata/
H A Dtstfiles.mk6 # Not everything has been moved to this file yet, as this is a new facility.
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_backend.cc119 for (size_t i = 0; i < delta.moved.size(); ++i)
120 db_->UpdatePageRank(delta.moved[i].url, delta.moved[i].rank);
H A Dtop_sites_impl_unittest.cc472 AppendMostVisitedURL(&old_list, gets_moved_1); // 2 (moved to 3)
478 AppendMostVisitedURL(&new_list, gets_moved_1); // 3 (moved from 2)
492 ASSERT_EQ(1u, delta.moved.size());
493 EXPECT_TRUE(gets_moved_1 == delta.moved[0].url.url);
494 EXPECT_EQ(3, delta.moved[0].rank);
548 ASSERT_EQ(3u, delta.moved.size());
549 EXPECT_TRUE(new_last_forced_time == delta.moved[0].url.url);
550 EXPECT_EQ(-1, delta.moved[0].rank);
551 EXPECT_EQ(base::Time::FromJsTime(4000), delta.moved[0].url.last_forced_time);
552 EXPECT_TRUE(move_to_forced == delta.moved[
[all...]
H A Dtop_sites_impl.cc402 // Check all the URLs in the new set to see which ones are new or just moved.
429 MostVisitedURLWithRank moved; local
430 moved.url = new_list[i];
431 moved.rank = rank;
432 delta->moved.push_back(moved);
798 if (!delta.deleted.empty() || !delta.added.empty() || !delta.moved.empty()) {
802 last_num_urls_changed_ = delta.added.size() + delta.moved.size();
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_controller.cc230 bool moved = false; local
241 moved |=
257 moved |= animating_controller->Reparent(
263 return moved;
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Darray_unittest.cc57 bool moved() const { return moved_; } function in class:mojo::test::__anon8773::MoveOnlyType
300 EXPECT_FALSE(array[i].moved());
306 EXPECT_FALSE(array[i].moved());
314 EXPECT_FALSE(array[i].moved());
322 EXPECT_FALSE(array[i].moved());
330 EXPECT_TRUE(array[i].moved());
334 EXPECT_FALSE(array[i].moved());
392 EXPECT_TRUE(array[i].moved());
407 EXPECT_TRUE(array[i].moved());
/external/opencv/cv/src/
H A Dcvsnakes.cpp170 int moved = 0; local
384 moved++;
387 converged = (moved == 0);
390 if( (criteria.type & CV_TERMCRIT_EPS) && (moved <= criteria.epsilon) )
/external/webrtc/
H A Dandroid-webrtc.mk25 # TODO(kma): figure out if the above define could be moved to NDK build only.
/external/guava/guava/src/com/google/common/collect/
H A DMinMaxPriorityQueue.java395 // Last element is moved to before index, swapped with trickled element.
401 // has now been moved after index.
501 * bubble up there. If it moved before {@code removeIndex} this method
513 // If toTrickle is moved up to a parent of removeIndex, the parent is
518 // has already been moved.
692 * @return the position of the new hole (where the lowest grandchild moved
778 "iterator moved past last element in queue.");
788 MoveDesc<E> moved = removeAt(cursor);
789 if (moved != null) {
794 forgetMeNot.add(moved
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_pred_luma_dc.s193 vmov d28, r14, r5 @src[2nt+1]+2+src[2nt-1] moved to d28
213 vdup.16 q12, d11[0] @3*dc + 2 (moved to all lanes)
435 vmov d28, r14, r5 @src[2nt+1]+2+src[2nt-1] moved to d28
454 vdup.16 q12, d11[0] @3*dc + 2 (moved to all lanes)
H A Dihevc_weighted_pred_bi.s154 vmov.s16 d7[0],r6 @moved for scalar multiplication
158 vmov.s16 d7[1],r8 @moved for scalar multiplication
H A Dihevc_weighted_pred_uni.s139 vmov.s16 d0[0],r4 @moved for scalar multiplication
/external/llvm/test/MC/Mips/mips4/
H A Dinvalid-mips64.s3 # FIXME: This test should be moved to the mips5 directory when mips5 is supported
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsymbol.c560 int count = 0, moved = 0; local
588 ++moved;
598 return count + moved;
613 int count = 0, moved = 0; local
709 ++moved;
721 return count + moved;
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_selection_controller_unittest.cc140 bool moved = caret_moved_; local
142 return moved;
146 bool moved = selection_moved_; local
148 return moved;
/external/chromium_org/ui/login/account_picker/
H A Duser_pod_row.css430 .action-box-area.active ~ .action-box-menu:not(.menu-moved-up) {
434 .action-box-area.active ~ .action-box-menu.menu-moved-up {
438 .action-box-area.menu-moved-up {
/external/llvm/lib/Support/Unix/
H A DSignals.inc244 // We need to call c_str() on every element which would have been moved by
/external/chromium_org/components/history/core/browser/
H A Dhistory_types.h433 MostVisitedURLWithRankList moved; member in struct:history::TopSitesDelta
/external/e2fsprogs/resize/
H A Dresize2fs.c23 * a. If blocks have been moved, update the block
729 * In this phase we adjust determine which blocks need to be moved, in
792 * mark it as a block to be moved.
848 * bitmap. It also determines which blocks need to be moved and
869 retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
1019 * aren't to be moved.
1094 continue; /* inode table not moved */
1219 int to_move, moved; local
1246 to_move = moved = 0;
1318 moved
1724 int j, to_move, moved; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibvideo.c304 moved palette creation here from "DIB_VideoInit" */
414 moved palette creation to "DIB_CreatePalette" */
996 BOOL moved = 0; local
1007 moved = 1;
1011 return moved;

Completed in 604 milliseconds

1234