/external/v8/src/debug/ |
D | debug-type-profile.cc | 54 FeedbackNexus nexus(vector, slot); in Collect() local 56 std::vector<int> source_positions = nexus.GetSourcePositions(); in Collect() 59 entries->emplace_back(position, nexus.GetTypesForSourcePositions( in Collect() 64 nexus.ResetTypeProfile(); in Collect() 102 FeedbackNexus nexus(vector, slot); in SelectMode() local 103 nexus.ResetTypeProfile(); in SelectMode()
|
/external/v8/src/compiler/ |
D | js-heap-broker.cc | 4560 KeyedAccessMode KeyedAccessMode::FromNexus(FeedbackNexus const& nexus) { in FromNexus() argument 4561 FeedbackSlotKind kind = nexus.kind(); in FromNexus() 4563 return KeyedAccessMode(AccessMode::kLoad, nexus.GetKeyedAccessLoadMode()); in FromNexus() 4566 return KeyedAccessMode(AccessMode::kHas, nexus.GetKeyedAccessLoadMode()); in FromNexus() 4569 return KeyedAccessMode(AccessMode::kStore, nexus.GetKeyedAccessStoreMode()); in FromNexus() 4574 nexus.GetKeyedAccessStoreMode()); in FromNexus() 4686 FeedbackNexus nexus(source.vector, source.slot, feedback_nexus_config()); in GetFeedbackSlotKind() local 4687 return nexus.kind(); in GetFeedbackSlotKind() 4767 bool JSHeapBroker::CanUseFeedback(const FeedbackNexus& nexus) const { in CanUseFeedback() 4770 return !is_native_context_independent() && !nexus.IsUninitialized(); in CanUseFeedback() [all …]
|
D | js-heap-broker.h | 220 base::Optional<NameRef> GetNameFeedback(FeedbackNexus const& nexus); 308 bool CanUseFeedback(const FeedbackNexus& nexus) const;
|
D | processed-feedback.h | 103 static KeyedAccessMode FromNexus(FeedbackNexus const& nexus);
|
/external/testng/ |
D | README.dev | 20 <id>sonatype-nexus-snapshots</id> 25 <id>sonatype-nexus-staging</id>
|
D | build.gradle | 24 classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
|
/external/ImageMagick/MagickWand/ |
D | display.c | 527 *nexus; in DisplayImageCommand() local 534 nexus=XDisplayImage(display,&resource_info,argv,argc, in DisplayImageCommand() 536 if (nexus == (Image *) NULL) in DisplayImageCommand() 538 while ((nexus != (Image *) NULL) && ((state & ExitState) == 0)) in DisplayImageCommand() 543 if (nexus->montage != (char *) NULL) in DisplayImageCommand() 548 display_image=nexus; in DisplayImageCommand() 551 next=XDisplayImage(display,&resource_info,argv,argc,&nexus, in DisplayImageCommand() 554 (GetNextImageInList(nexus) != (Image *) NULL)) in DisplayImageCommand() 556 display_image=GetNextImageInList(nexus); in DisplayImageCommand() 557 nexus=NewImageList(); in DisplayImageCommand() [all …]
|
/external/v8/src/objects/ |
D | feedback-vector.cc | 467 FeedbackNexus nexus(*this, slot); in ClearSlots() local 468 feedback_updated |= nexus.Clear(); in ClearSlots() 1433 FeedbackIterator::FeedbackIterator(const FeedbackNexus* nexus) in FeedbackIterator() argument 1435 DCHECK(IsLoadICKind(nexus->kind()) || in FeedbackIterator() 1436 IsStoreICKind(nexus->kind()) | IsKeyedLoadICKind(nexus->kind()) || in FeedbackIterator() 1437 IsKeyedStoreICKind(nexus->kind()) || IsStoreOwnICKind(nexus->kind()) || in FeedbackIterator() 1438 IsStoreDataPropertyInLiteralKind(nexus->kind()) || in FeedbackIterator() 1439 IsStoreInArrayLiteralICKind(nexus->kind()) || in FeedbackIterator() 1440 IsKeyedHasICKind(nexus->kind())); in FeedbackIterator() 1443 auto pair = nexus->GetFeedbackPair(); in FeedbackIterator() [all …]
|
D | feedback-vector.h | 857 explicit FeedbackIterator(const FeedbackNexus* nexus);
|
/external/v8/src/ic/ |
D | ic.h | 140 const FeedbackNexus* nexus() const { return &nexus_; } in nexus() function 141 FeedbackNexus* nexus() { return &nexus_; } in nexus() function 147 nexus()->ExtractMaps(&target_maps_); in FindTargetMaps() 295 return nexus()->GetKeyedAccessStoreMode(); in GetKeyedAccessStoreMode()
|
D | ic.cc | 92 (state() == NO_FEEDBACK) ? NO_FEEDBACK : nexus()->ic_state(); in TraceIC() 106 KeyedAccessLoadMode mode = nexus()->GetKeyedAccessLoadMode(); in TraceIC() 109 KeyedAccessStoreMode mode = nexus()->GetKeyedAccessStoreMode(); in TraceIC() 221 nexus()->FindHandlerForMap(lookup_start_object_map()); in ShouldRecomputeHandler() 245 Name stub_name = nexus()->GetName(); in RecomputeHandlerForName() 281 FeedbackVector vector = nexus()->vector(); in OnFeedbackChanged() 282 FeedbackSlot slot = nexus()->slot(); in OnFeedbackChanged() 343 nexus()->ConfigureMegamorphic(key->IsName() ? PROPERTY : ELEMENT); in ConfigureVectorState() 356 nexus()->ConfigureHandlerMode(handler); in ConfigureVectorState() 360 nexus()->ConfigureMonomorphic(name, map, handler); in ConfigureVectorState() [all …]
|
D | ic-inl.h | 40 (state() != MEGAMORPHIC || nexus()->GetKeyType() != ELEMENT)); in vector_needs_update()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 913 FeedbackNexus nexus(vector, FeedbackVector::ToSlot(index)); in RUNTIME_FUNCTION() local 914 if (nexus.ic_state() == UNINITIALIZED) { in RUNTIME_FUNCTION() 916 nexus.ConfigureMonomorphic(name, handle(object->map(), isolate), in RUNTIME_FUNCTION() 919 nexus.ConfigureMegamorphic(PROPERTY); in RUNTIME_FUNCTION() 921 } else if (nexus.ic_state() == MONOMORPHIC) { in RUNTIME_FUNCTION() 922 if (nexus.GetFirstMap() != object->map() || nexus.GetName() != *name) { in RUNTIME_FUNCTION() 923 nexus.ConfigureMegamorphic(PROPERTY); in RUNTIME_FUNCTION() 980 FeedbackNexus nexus(vector, vector->GetTypeProfileSlot()); in RUNTIME_FUNCTION() local 981 nexus.Collect(type, position->value()); in RUNTIME_FUNCTION()
|
/external/ImageMagick/MagickCore/ |
D | animate.c | 375 *nexus; in XMagickCommand() local 389 nexus=NewImageList(); in XMagickCommand() 476 nexus=GetFirstImageInList(images); in XMagickCommand() 681 return(nexus); in XMagickCommand() 1328 *nexus; in XAnimateImages() local 1545 nexus=NewImageList(); in XAnimateImages() 2022 nexus=NewImageList(); in XAnimateImages() 2221 nexus=XMagickCommand(display,resource_info,windows, in XAnimateImages() 2378 nexus=ReadImage(resource_info->image_info,exception); in XAnimateImages() 2380 if (nexus != (Image *) NULL) in XAnimateImages() [all …]
|
D | display.c | 7083 *nexus; in XMagickCommand() local 7117 nexus=NewImageList(); in XMagickCommand() 7130 nexus=XOpenImage(display,resource_info,windows,MagickFalse); in XMagickCommand() 7168 nexus=XOpenImage(display,resource_info,windows,MagickTrue); in XMagickCommand() 7257 nexus=ReadImage(image_info,exception); in XMagickCommand() 7268 nexus=XVisualDirectoryImage(display,resource_info,windows,exception); in XMagickCommand() 8995 nexus=ReadImage(resource_info->image_info,exception); in XMagickCommand() 9177 nexus=CloneImage(*image,0,0,MagickTrue,exception); in XMagickCommand() 9178 if (nexus != (Image *) NULL) in XMagickCommand() 9208 nexus=CloneImage(*image,0,0,MagickTrue,exception); in XMagickCommand() [all …]
|
/external/testng/gradle/ |
D | publishing-maven.gradle | 8 apply plugin: 'io.codearte.nexus-staging'
|
/external/cpuinfo/scripts/ |
D | android-armv7-mock.sh | 55 adb push build/android/armeabi-v7a/nexus-s-test /data/local/tmp/nexus-s-test
|
/external/cpuinfo/ |
D | CMakeLists.txt | 468 ADD_EXECUTABLE(nexus-s-test test/mock/nexus-s.cc) 469 TARGET_INCLUDE_DIRECTORIES(nexus-s-test BEFORE PRIVATE test/mock) 470 TARGET_LINK_LIBRARIES(nexus-s-test PRIVATE cpuinfo_mock gtest) 471 ADD_TEST(nexus-s-test nexus-s-test)
|
D | CMakeLists.txt.orig | 467 ADD_EXECUTABLE(nexus-s-test test/mock/nexus-s.cc) 468 TARGET_INCLUDE_DIRECTORIES(nexus-s-test BEFORE PRIVATE test/mock) 469 TARGET_LINK_LIBRARIES(nexus-s-test PRIVATE cpuinfo_mock gtest) 470 ADD_TEST(nexus-s-test nexus-s-test)
|
/external/v8/src/diagnostics/ |
D | objects-printer.cc | 923 FeedbackNexus nexus(*this, slot); in FeedbackSlotPrint() local 924 nexus.Print(os); in FeedbackSlotPrint()
|
/external/v8/src/deoptimizer/ |
D | deoptimizer.cc | 4285 FeedbackNexus nexus(feedback_vector_handle_, feedback_slot_); in DoUpdateFeedback() local 4286 nexus.SetSpeculationMode(SpeculationMode::kDisallowSpeculation); in DoUpdateFeedback()
|
/external/strace/ |
D | ChangeLog-CVS | 2465 2004-09-05 Phil Blundell <pb@nexus.co.uk>
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | ospd.txt.gz |
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 136270 nexus %21543 nˈɛksəs
|
D | internal_raw_IPA.txt | 114542 nexus %33447 nˈɛksəs
|