/aosp12/art/test/1960-obsolete-jit-multithread-native/ |
H A D | expected-stdout.txt | 3 Thread 0: Hello - End method sayHi 6 Thread 0: Hello - End method sayHi 9 Thread 0: goodbye - End method sayHi 13 Thread 1: Hello - End method sayHi 16 Thread 1: Hello - End method sayHi 19 Thread 1: goodbye - End method sayHi 23 Thread 2: Hello - End method sayHi 26 Thread 2: Hello - End method sayHi 33 Thread 3: Hello - End method sayHi 36 Thread 3: Hello - End method sayHi [all …]
|
/aosp12/art/test/1961-obsolete-jit-multithread/ |
H A D | expected-stdout.txt | 3 Thread 0: Hello - End method sayHi 6 Thread 0: Hello - End method sayHi 9 Thread 0: goodbye - End method sayHi 13 Thread 1: Hello - End method sayHi 16 Thread 1: Hello - End method sayHi 19 Thread 1: goodbye - End method sayHi 23 Thread 2: Hello - End method sayHi 26 Thread 2: Hello - End method sayHi 33 Thread 3: Hello - End method sayHi 36 Thread 3: Hello - End method sayHi [all …]
|
/aosp12/system/extras/perf2cfg/doc/ |
H A D | FSM.dot | 5 "End"; 13 "Start" -> "End" [ label = "EOF" ]; 23 "Skip Method" -> "End" [ label = "EOF" ]; 40 "Skip Pass" -> "End CFG" [ label = "'end_cfg'" ]; 53 "HIR Instruction" -> "End HIR" [ label = "'end_HIR'" ]; 61 "End HIR" -> "End Block" [ label = "'end_block'" ]; 62 "End HIR" -> "Error" [ label = "EOF OR NOT('end_block')" ]; 64 "End Block" -> "Parse Flags" [ label = "'begin_block'" ]; 65 "End Block" -> "End CFG" [ label = "'end_cfg'" ]; 68 "End CFG" -> "Is Disassembly Pass" [ label = "'begin_cfg'" ]; [all …]
|
/aosp12/build/blueprint/parser/ |
H A D | modify.go | 61 Start, End int member 73 if patch.Start > patch.End { 74 return fmt.Errorf("invalid patch, start %d is after end %d", patch.Start, patch.End) 77 if (patch.Start >= p.Start && patch.Start < p.End) || 78 (patch.End >= p.Start && patch.End < p.End) || 79 (p.Start >= patch.Start && p.Start < patch.End) || 80 (p.Start == patch.Start && p.End == patch.End) { 82 patch.Start, patch.End, p.Start, p.End)) 116 offset += int64(patch.End - patch.Start)
|
H A D | ast.go | 27 End() scanner.Position 54 func (a *Assignment) End() scanner.Position { return a.Value.End() } func 87 func (m *Module) End() scanner.Position { return m.Map.End() } func 108 func (p *Property) End() scanner.Position { return p.Value.End() } func 212 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func 226 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func 250 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func 308 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func 416 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func 427 func (c Comment) End() scanner.Position { func [all …]
|
/aosp12/build/soong/androidmk/parser/ |
H A D | ast.go | 24 End() Pos 49 func (x *Assignment) End() Pos { return x.Value.End() } func 61 func (x *Comment) End() Pos { return Pos(int(x.CommentPos) + len(x.Comment)) } func 75 func (x *Directive) End() Pos { func 79 return x.Args.End() 98 func (x *Rule) End() Pos { return Pos(int(x.RecipePos) + len(x.Recipe)) } func 105 func (x *Variable) End() Pos { return x.Name.End() } func
|
/aosp12/art/runtime/gc/space/ |
H A D | malloc_space.cc | 65 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(mem_map_.End()), kGcCardSize); in MallocSpace() 152 uint8_t* original_end = End(); in MoreCore() 188 DCHECK_ALIGNED(End(), accounting::CardTable::kCardSize); in CreateZygoteSpace() 190 DCHECK_ALIGNED(End(), kPageSize); in CreateZygoteSpace() 199 << "End " << reinterpret_cast<const void*>(End()) << "\n" in CreateZygoteSpace() 213 End(), alloc_space_name, PROT_READ | PROT_WRITE, &error_msg); in CreateZygoteSpace() 225 End(), in CreateZygoteSpace() 230 SetLimit(End()); in CreateZygoteSpace() 231 live_bitmap_.SetHeapLimit(reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace() 233 mark_bitmap_.SetHeapLimit(reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace() [all …]
|
H A D | zygote_space.cc | 55 reinterpret_cast<uintptr_t>(mem_map.End()), visitor); in Create() 80 mem_map.End(), in ZygoteSpace() 81 mem_map.End(), in ZygoteSpace() 89 << ",end=" << reinterpret_cast<void*>(End()) in Dump()
|
H A D | region_space.cc | 92 CHECK_ALIGNED(mem_map.End(), kRegionSize); in CreateMemMap() 106 mem_map.End(), in RegionSpace() 107 mem_map.End(), in RegionSpace() 140 CHECK_EQ(regions_[num_regions_ - 1].End(), Limit()); in RegionSpace() 404 rb_table->Clear(r->Begin(), r->End()); in SetFromSpace() 462 clear_block_end = r->End(); in ClearFromSpace() 869 pos = r->End() - largest_partial_tlab->first; in AllocNewTlab() 871 DCHECK_GT(r->End(), pos); in AllocNewTlab() 886 r->SetTop(r->End()); in AllocNewTlab() 887 self->SetTlab(start, start + tlab_size, r->End()); in AllocNewTlab() [all …]
|
/aosp12/art/test/960-default-smali/ |
H A D | expected-stdout.txt | 6 End testing for type A 14 End testing for type B 22 End testing for type C 32 End testing for type D 42 End testing for type E 54 End testing for type F 62 End testing for type G 66 End testing for type H 76 End testing for type I 84 End testing for type J [all …]
|
/aosp12/art/test/969-iface-super/ |
H A D | expected-stdout.txt | 4 End testing for type A 9 End testing for type B 13 End testing for type C 18 End testing for type D 23 End testing for type E 30 End testing for type F 40 End testing for type G 47 End testing for type H
|
/aosp12/build/soong/ui/tracer/ |
H A D | microfactory.go | 28 End uint64 member 42 cpus[cpu] = entry.End 48 cpus = append(cpus, entry.End) 55 Dur: entry.End - entry.Begin, 94 End: timestamp,
|
/aosp12/art/compiler/debug/ |
H A D | elf_debug_writer.cc | 98 line_writer.End(); in WriteDebugInfo() 109 info_writer.End(); in WriteDebugInfo() 140 builder->End(); in MakeMiniDebugInfoInternal() 200 builder->End(); in MakeElfFileForJIT() 285 strtab->End(); in PackElfFileForJIT() 317 debug_frame->End(); in PackElfFileForJIT() 319 builder->End(); in PackElfFileForJIT() 340 builder->End(); in PackElfFileForJIT() 365 info_writer.End(); in WriteDebugElfFileForClasses() 367 builder->End(); in WriteDebugElfFileForClasses()
|
/aosp12/frameworks/base/tools/aapt2/compile/ |
H A D | Pseudolocalizer.h | 34 virtual std::string End() { return {}; } in End() function 50 std::string End() { return impl_->End(); } in End() function
|
/aosp12/art/runtime/gc/collector/ |
H A D | immune_spaces_test.cc | 52 map.End()), in FakeImageSpace() 112 std::unique_ptr<FakeOatFile> oat_file(new FakeOatFile(oat_map.Begin(), oat_map.End())); in CreateImageSpace() 184 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit()); in TEST_F() 228 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), in TEST_F() 243 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), space.Limit()); in TEST_F() 310 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), in TEST_F() 321 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), in TEST_F() 362 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), in TEST_F() 400 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), space5->Limit()); in TEST_F()
|
/aosp12/hardware/google/camera/common/hal/hidl_service/ |
H A D | hidl_profiler.cc | 131 latency_profiler_->End(kFirstFrame, Profiler::kInvalidRequestId); in FirstFrameEnd() 132 latency_profiler_->End(kHalTotal, Profiler::kInvalidRequestId); in FirstFrameEnd() 202 latency_profiler_->End(kOverall, Profiler::kInvalidRequestId); in DeleteProfilerLocked() 215 latency_profiler_->End(kIdleString, idle_count_ - 1); in IdleEndLocked() 313 profiler_->End(kHalTotal, Profiler::kInvalidRequestId); in ~HidlScopedProfiler() 314 profiler_->End(name_, id_); in ~HidlScopedProfiler()
|
/aosp12/art/dex2oat/linker/ |
H A D | elf_writer_quick.cc | 110 bool End() override; 211 builder_->GetRoData()->End(); in EndRoData() 224 builder_->GetText()->End(); in EndText() 237 builder_->GetDataBimgRelRo()->End(); in EndDataBimgRelRo() 291 bool ElfWriterQuick<ElfTypes>::End() { in End() function in art::linker::ElfWriterQuick 292 builder_->End(); in End()
|
/aosp12/bionic/libm/x86/ |
H A D | e_hypot.S | 80 # -- End static_func 199 # -- End hypot 203 # End file scope ASM 220 # End
|
H A D | s_cos.S | 188 # -- End static_func 314 # -- End cos 318 # End file scope ASM 892 # End
|
H A D | s_sin.S | 189 # -- End static_func 321 # -- End sin 325 # End file scope ASM 907 # End
|
/aosp12/packages/modules/NeuralNetworks/tools/test_generator/tests/P_implicit_parameter/ |
H A D | stdout.txt.expect | 68 }, // End of an example 89 }, // End of an example 150 }, // End of an example 171 }, // End of an example 232 }, // End of an example 253 }, // End of an example
|
/aosp12/art/compiler/utils/ |
H A D | swap_space.cc | 189 CHECK_LE(prev->End(), chunk.Start()); in Free() 190 if (prev->End() == chunk.Start()) { in Free() 201 CHECK_LE(chunk.End(), it->Start()); in Free() 202 if (chunk.End() == it->Start()) { in Free()
|
/aosp12/packages/modules/NeuralNetworks/tools/test_generator/tests/P_vts_implicit_parameter/ |
H A D | stdout.txt.expect | 105 }, // End of an example 126 }, // End of an example 228 }, // End of an example 249 }, // End of an example 351 }, // End of an example 372 }, // End of an example
|
/aosp12/system/logging/logd/ |
H A D | ReplayMessages.cpp | 157 virtual void End() {} in End() function in Operation 318 End(); in Operation() 323 void End() override { in End() function in PrintLogs 351 void End() override { in End() function in PrintLatency 391 void End() override { in End() function in PrintAllLogs 487 operation->End(); in main()
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/src/filesystem/ |
H A D | operations.cpp | 108 auto End = getAfterBack(); in peek() local 109 return TkEnd == End ? nullptr : TkEnd; in peek() 113 const PosPtr End = getAfterBack(); in increment() local 115 if (Start == End) in increment() 131 if (SepEnd != End) { in increment() 281 if (P == End || *P != '/') in consumeSeparator() 283 const int Inc = P < End ? 1 : -1; in consumeSeparator() 285 while (P != End && *P == '/') in consumeSeparator() 291 if (P == End || *P == '/') in consumeName() 293 const int Inc = P < End ? 1 : -1; in consumeName() [all …]
|