Home
last modified time | relevance | path

Searched refs:nexus (Results 1 – 25 of 25) sorted by relevance

/external/v8/src/debug/
Ddebug-type-profile.cc54 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/
Djs-heap-broker.cc4560 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 …]
Djs-heap-broker.h220 base::Optional<NameRef> GetNameFeedback(FeedbackNexus const& nexus);
308 bool CanUseFeedback(const FeedbackNexus& nexus) const;
Dprocessed-feedback.h103 static KeyedAccessMode FromNexus(FeedbackNexus const& nexus);
/external/testng/
DREADME.dev20 <id>sonatype-nexus-snapshots</id>
25 <id>sonatype-nexus-staging</id>
Dbuild.gradle24 classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
/external/ImageMagick/MagickWand/
Ddisplay.c527 *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/
Dfeedback-vector.cc467 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 …]
Dfeedback-vector.h857 explicit FeedbackIterator(const FeedbackNexus* nexus);
/external/v8/src/ic/
Dic.h140 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()
Dic.cc92 (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 …]
Dic-inl.h40 (state() != MEGAMORPHIC || nexus()->GetKeyType() != ELEMENT)); in vector_needs_update()
/external/v8/src/runtime/
Druntime-object.cc913 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/
Danimate.c375 *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 …]
Ddisplay.c7083 *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/
Dpublishing-maven.gradle8 apply plugin: 'io.codearte.nexus-staging'
/external/cpuinfo/scripts/
Dandroid-armv7-mock.sh55 adb push build/android/armeabi-v7a/nexus-s-test /data/local/tmp/nexus-s-test
/external/cpuinfo/
DCMakeLists.txt468 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)
DCMakeLists.txt.orig467 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/
Dobjects-printer.cc923 FeedbackNexus nexus(*this, slot); in FeedbackSlotPrint() local
924 nexus.Print(os); in FeedbackSlotPrint()
/external/v8/src/deoptimizer/
Ddeoptimizer.cc4285 FeedbackNexus nexus(feedback_vector_handle_, feedback_slot_); in DoUpdateFeedback() local
4286 nexus.SetSpeculationMode(SpeculationMode::kDisallowSpeculation); in DoUpdateFeedback()
/external/strace/
DChangeLog-CVS2465 2004-09-05 Phil Blundell <pb@nexus.co.uk>
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dospd.txt.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt136270 nexus %21543 nˈɛksəs
Dinternal_raw_IPA.txt114542 nexus %33447 nˈɛksəs