/external/chromium_org/third_party/codesighs/ |
D | codesighs.c | 494 void* moved = NULL; in codesighs() local 496 moved = realloc(modules, sizeof(ModuleStats) * (moduleCount + 1)); in codesighs() 497 if(NULL != moved) in codesighs() 499 modules = (ModuleStats*)moved; in codesighs() 793 void* moved = NULL; in initOptions() local 795 … moved = realloc(outOptions->mMatchClasses, sizeof(char*) * (outOptions->mMatchClassCount + 1)); in initOptions() 796 if(NULL != moved) in initOptions() 798 outOptions->mMatchClasses = (char**)moved; in initOptions() 821 void* moved = NULL; in initOptions() local 823 … moved = realloc(outOptions->mMatchScopes, sizeof(char*) * (outOptions->mMatchScopeCount + 1)); in initOptions() [all …]
|
D | msmap2tsv.c | 462 void* moved = NULL; in readSymDB() local 488 …moved = realloc((*outDB)->mSymbols, sizeof(SymDB_Symbol) * ((*outDB)->mSymbolCapacity + SYMDB_SYMB… in readSymDB() 489 if(NULL != moved) in readSymDB() 491 (*outDB)->mSymbols = (SymDB_Symbol*)moved; in readSymDB() 545 … moved = realloc(dbSymbol->mSections, sizeof(SymDB_Section) * (dbSymbol->mSectionCount + 1)); in readSymDB() 546 if(NULL != moved) in readSymDB() 548 dbSymbol->mSections = (SymDB_Section*)moved; in readSymDB() 591 … moved = realloc(dbSection->mSizes, sizeof(SymDB_Size) * (dbSection->mSizeCount + 1)); in readSymDB() 592 if(NULL != moved) in readSymDB() 594 dbSection->mSizes = (SymDB_Size*)moved; in readSymDB() [all …]
|
D | maptsvdifftool.c | 460 void* moved = NULL; in difftool() local 462 moved = realloc(modules, sizeof(ModuleStats) * (1 + moduleCount)); in difftool() 463 if(NULL != moved) in difftool() 465 modules = (ModuleStats*)moved; in difftool() 498 void* moved = NULL; in difftool() local 500 … moved = realloc(theModule->mSegments, sizeof(SegmentStats) * (theModule->mSegmentCount + 1)); in difftool() 501 if(NULL != moved) in difftool() 503 theModule->mSegments = (SegmentStats*)moved; in difftool() 537 void* moved = NULL; in difftool() local 539 … moved = realloc(theSegment->mObjects, sizeof(ObjectStats) * (1 + theSegment->mObjectCount)); in difftool() [all …]
|
D | msdump2symdb.c | 487 void* moved = NULL; in processLine() local 502 …moved = realloc(inContainer->mReadState.mCurrentObject->mSections, sizeof(MSDump_Section) * sectio… in processLine() 503 if(NULL != moved) in processLine() 507 … inContainer->mReadState.mCurrentObject->mSections = (MSDump_Section*)moved; in processLine() 590 void* moved = NULL; in processLine() local 596 …moved = realloc(inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols, sizeof(M… in processLine() 597 if(NULL != moved) in processLine() 607 … inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mSymbols = (MSDump_Symbol*)moved; in processLine()
|
/external/valgrind/main/none/tests/linux/ |
D | mremap.stderr.exp-glibc27 | 3 grow, nomove: p=0x........ np=0x........: shrink moved?! 4 grow, maymove: p=0x........ np=0x........: shrink moved?!
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
D | array_unittest.cc | 57 bool moved() const { return moved_; } in moved() function in mojo::test::__anon140f99770111::MoveOnlyType 300 EXPECT_FALSE(array[i].moved()); in TEST_F() 306 EXPECT_FALSE(array[i].moved()); in TEST_F() 314 EXPECT_FALSE(array[i].moved()); in TEST_F() 322 EXPECT_FALSE(array[i].moved()); in TEST_F() 330 EXPECT_TRUE(array[i].moved()); in TEST_F() 334 EXPECT_FALSE(array[i].moved()); in TEST_F() 392 EXPECT_TRUE(array[i].moved()); in TEST_F() 407 EXPECT_TRUE(array[i].moved()); in TEST_F()
|
/external/chromium_org/ash/desktop_background/ |
D | desktop_background_controller.cc | 230 bool moved = false; in ReparentBackgroundWidgets() local 241 moved |= in ReparentBackgroundWidgets() 257 moved |= animating_controller->Reparent( in ReparentBackgroundWidgets() 263 return moved; in ReparentBackgroundWidgets()
|
/external/chromium_org/chrome/browser/history/ |
D | top_sites_backend.cc | 119 for (size_t i = 0; i < delta.moved.size(); ++i) in UpdateTopSitesOnDBThread() 120 db_->UpdatePageRank(delta.moved[i].url, delta.moved[i].rank); in UpdateTopSitesOnDBThread()
|
D | top_sites_impl.cc | 429 MostVisitedURLWithRank moved; in DiffMostVisited() local 430 moved.url = new_list[i]; in DiffMostVisited() 431 moved.rank = rank; in DiffMostVisited() 432 delta->moved.push_back(moved); in DiffMostVisited() 798 if (!delta.deleted.empty() || !delta.added.empty() || !delta.moved.empty()) { in SetTopSites() 802 last_num_urls_changed_ = delta.added.size() + delta.moved.size(); in SetTopSites()
|
D | top_sites_impl_unittest.cc | 492 ASSERT_EQ(1u, delta.moved.size()); in TEST_F() 493 EXPECT_TRUE(gets_moved_1 == delta.moved[0].url.url); in TEST_F() 494 EXPECT_EQ(3, delta.moved[0].rank); in TEST_F() 548 ASSERT_EQ(3u, delta.moved.size()); in TEST_F() 549 EXPECT_TRUE(new_last_forced_time == delta.moved[0].url.url); in TEST_F() 550 EXPECT_EQ(-1, delta.moved[0].rank); in TEST_F() 551 EXPECT_EQ(base::Time::FromJsTime(4000), delta.moved[0].url.last_forced_time); in TEST_F() 552 EXPECT_TRUE(move_to_forced == delta.moved[1].url.url); in TEST_F() 553 EXPECT_EQ(-1, delta.moved[1].rank); in TEST_F() 554 EXPECT_EQ(base::Time::FromJsTime(6000), delta.moved[1].url.last_forced_time); in TEST_F() [all …]
|
/external/llvm/test/Transforms/TailCallElim/ |
D | reorder_load.ll | 12 ; This load can be moved above the call because the function won't write to it 32 ; This load can be moved above the call because the function won't write to it 59 ; This load can be safely moved above the call (even though it's from an 79 ; The second load can be safely moved above the call even though it's from an
|
D | dont_reorder_load.ll | 11 ; This load can't be safely moved above the call because the load is from an 30 ; This load can't be safely moved above the call because function may write to the pointer. 48 ; This load can't be safely moved above the call because that would change the
|
/external/llvm/test/CodeGen/X86/ |
D | tailcallbyval64.ll | 17 ; Expect argument 4 to be moved directly to register edx. 20 ; Expect argument 6 to be moved directly to register r8.
|
D | 2010-02-19-TailCallRetAddrBug.ll | 2 ; Check that lowered argumens do not overwrite the return address before it is moved. 8 ; taken that the return address is moved / or stored in a register before
|
/external/clang/docs/ |
D | Block-ABI-Apple.txt | 1 *NOTE* This document has moved to http://clang.llvm.org/docs/Block-ABI-Apple.html.
|
/external/llvm/docs/ |
D | TableGenFundamentals.rst | 8 The TableGen fundamentals documentation has moved to a directory on its own
|
/external/chromium_org/ppapi/api/dev/ |
D | ppb_cursor_control_dev.idl | 28 * This method causes the cursor to be moved to the center of the 37 * indicate the position the cursor would have been moved to had
|
/external/eigen/Eigen/ |
D | Array | 8 …#error The Eigen/Array header does no longer exist in Eigen3. All that functionality has moved to …
|
/external/opencv/cv/src/ |
D | cvsnakes.cpp | 170 int moved = 0; in icvSnake8uC1R() local 384 moved++; in icvSnake8uC1R() 387 converged = (moved == 0); in icvSnake8uC1R() 390 if( (criteria.type & CV_TERMCRIT_EPS) && (moved <= criteria.epsilon) ) in icvSnake8uC1R()
|
/external/chromium_org/third_party/skia/gyp/ |
D | skia_for_chromium_defines.gypi | 13 # If these become 'permanent', they should be moved into skia_common.gypi
|
D | skia_for_android_framework_defines.gypi | 13 # If these become 'permanent', they should be moved into common_variables.gypi
|
/external/chromium_org/ui/base/cocoa/ |
D | hover_button.mm | 52 // moved under the mouse during tab resize, instead of the mouse moving over 96 // Update the button's state if the button has moved.
|
/external/skia/gyp/ |
D | skia_for_chromium_defines.gypi | 13 # If these become 'permanent', they should be moved into skia_common.gypi
|
/external/llvm/test/Transforms/Inline/ |
D | alloca_test.ll | 2 ; function are moved to the top of the function they are inlined into.
|
/external/chromium_org/extensions/shell/browser/ |
D | DEPS | 22 # Only used in API tests that should be moved to extensions/browser/api/...
|