/external/v8/src/ |
zone-containers.h | 16 #include "src/zone-allocator.h" 22 // that uses a zone allocator. 27 explicit ZoneVector(Zone* zone) 28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {} 32 ZoneVector(size_t size, Zone* zone) 33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {} 37 ZoneVector(size_t size, T def, Zone* zone) [all...] |
zone-allocator.h | 10 #include "src/zone.h" 29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} 60 Zone* zone() { return zone_; } function in class:v8::internal::zone_allocator 64 Zone* zone_;
|
zone.cc | 5 #include "src/zone.h" 76 Zone::Zone() 84 Zone::~Zone() { 92 void* Zone::New(size_t size) { 125 void Zone::DeleteAll() { 178 void Zone::DeleteKeptSegment() { 203 Segment* Zone::NewSegment(size_t size) { 215 void Zone::DeleteSegment(Segment* segment, size_t size) [all...] |
effects.h | 37 static Effect Unknown(Zone* zone) { 41 static Effect Forget(Zone* zone) { 46 static Effect Seq(Effect e1, Effect e2, Zone* zone) { 48 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality); 52 static Effect Alt(Effect e1, Effect e2, Zone* zone) { 54 Bounds::Either(e1.bounds, e2.bounds, zone), 183 Zone* zone() { return map_->allocator().zone(); } function in class:v8::internal::EffectsBase 253 Zone* zone() { return node_->zone; } function in class:v8::internal::NestedEffectsBase 279 Zone* zone; member in struct:v8::internal::NestedEffectsBase::Node [all...] |
/external/v8/src/compiler/ |
branch-elimination.h | 19 BranchElimination(Editor* editor, JSGraph* js_graph, Zone* zone); 41 const ControlPathConditions* AddCondition(Zone* zone, Node* condition, 43 static const ControlPathConditions* Empty(Zone* zone); 66 PathConditionsForControlNodes(Zone* zone, size_t size_hint) 67 : info_for_node_(size_hint, nullptr, zone) {} 89 Zone* zone_ [all...] |
js-inlining.h | 24 JSInliner(Editor* editor, Zone* local_zone, CompilationInfo* info, 39 Zone* local_zone_;
|
zone-pool.cc | 5 #include "src/compiler/zone-pool.h" 16 for (auto zone : zone_pool_->used_) { 17 size_t size = static_cast<size_t>(zone->allocation_size()); 19 initial_values_.insert(std::make_pair(zone, size)); 39 for (Zone* zone : zone_pool_->used_) { 40 total += static_cast<size_t>(zone->allocation_size()); 42 InitialValues::iterator it = initial_values_.find(zone); 56 void ZonePool::StatsScope::ZoneReturned(Zone* zone) { 100 Zone* zone; local [all...] |
instruction-scheduler.h | 9 #include "src/zone-containers.h" 29 InstructionScheduler(Zone* zone, InstructionSequence* sequence); 43 ScheduleGraphNode(Zone* zone, Instruction* instr); 135 Zone* zone() { return zone_; } function in class:v8::internal::compiler::final 138 Zone* zone_;
|
loop-peeling.h | 35 Zone* tmp_zone);
|
scheduler.h | 12 #include "src/compiler/zone-pool.h" 13 #include "src/zone-containers.h" 36 static Schedule* ComputeSchedule(Zone* zone, Graph* graph, Flags flags); 39 static BasicBlockVector* ComputeSpecialRPO(Zone* zone, Schedule* schedule); 63 Zone* zone_; 75 Scheduler(Zone* zone, Graph* graph, Schedule* schedule, Flags flags);
|
ast-loop-assignment-analyzer.h | 10 #include "src/zone-containers.h" 36 explicit LoopAssignmentAnalysis(Zone* zone) : list_(zone) {} 44 AstLoopAssignmentAnalyzer(Zone* zone, CompilationInfo* info); 56 Zone* zone_;
|
common-node-cache.h | 25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} 29 return int32_constants_.Find(zone(), value); 33 return int64_constants_.Find(zone(), value); 38 return float32_constants_.Find(zone(), bit_cast<int32_t>(value)); 43 return float64_constants_.Find(zone(), bit_cast<int64_t>(value)); 50 return number_constants_.Find(zone(), bit_cast<int64_t>(value)); 58 Zone* zone() const { return zone_; function in class:v8::internal::compiler::final [all...] |
escape-analysis-reducer.h | 29 EscapeAnalysis* escape_analysis, Zone* zone); 48 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 53 Zone* const zone_;
|
fast-accessor-assembler.h | 24 class Zone; 84 Zone* zone() { return &zone_; } function in class:v8::internal::compiler::FastAccessorAssembler 86 Zone zone_;
|
register-allocator-verifier.h | 8 #include "src/zone-containers.h" 19 RegisterAllocatorVerifier(Zone* zone, const RegisterConfiguration* config, 60 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final 76 Zone* const zone_;
|
simplified-lowering.h | 28 SimplifiedLowering(JSGraph* jsgraph, Zone* zone, 48 Zone* const zone_; 67 Zone* zone() { return jsgraph_->zone(); } function in class:v8::internal::compiler::final
|
pipeline.cc | 64 #include "src/compiler/zone-pool.h" 81 outer_zone_(info_->zone()), 87 graph_zone_(graph_zone_scope_.zone()), 97 instruction_zone_(instruction_zone_scope_.zone()), 101 register_allocation_zone_(register_allocation_zone_scope_.zone()), 138 instruction_zone_(instruction_zone_scope_.zone()), 142 register_allocation_zone_(register_allocation_zone_scope_.zone()), 166 instruction_zone_(sequence->zone()), 170 register_allocation_zone_(register_allocation_zone_scope_.zone()), 194 Zone* graph_zone() const { return graph_zone_; 456 Zone* zone() { return zone_scope_.zone(); } function in class:v8::internal::compiler::__anon25046::PipelineRunScope [all...] |
/external/v8/src/wasm/ |
encoder.h | 9 #include "src/zone-containers.h" 31 WasmFunctionEncoder(Zone* zone, LocalType return_type, bool exported, 69 WasmFunctionEncoder* Build(Zone* zone, WasmModuleBuilder* mb) const; 72 explicit WasmFunctionBuilder(Zone* zone); 88 WasmDataSegmentEncoder(Zone* zone, const byte* data, uint32_t size, 114 WasmModuleIndex* WriteTo(Zone* zone) const [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
RoundRectangle.java | 45 private enum Zone { 53 private final EnumSet<Zone> close = EnumSet.of(Zone.CLOSE_OUTSIDE, Zone.CLOSE_INSIDE); 54 private final EnumSet<Zone> far = EnumSet.of(Zone.FAR_OUTSIDE, Zone.FAR_INSIDE); 196 private Zone classify(double coord, double side1, double arcSize1, double side2, 199 return Zone.CLOSE_OUTSIDE; 201 return Zone.CLOSE_INSIDE [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/route53/ |
test_zone.py | 23 from boto.route53.zone import Zone 30 zone = Zone(mock_connection, {}) 31 zone.id = None 53 result_rrs = zone.find_records('amazon.com', 'A', all=True)
|
/external/v8/src/ast/ |
modules.cc | 15 Zone* zone, bool* ok) { 19 ZoneAllocationPolicy allocator(zone); 22 exports_ = new (zone->New(sizeof(ZoneHashMap))) 41 Zone* zone) { 45 requested_modules_.Add(module_specifier, zone); 50 const AstRawString* export_name, Zone* zone) {
|
/external/v8/src/parsing/ |
func-name-inferrer.h | 9 #include "src/zone.h" 31 FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone); 64 funcs_to_infer_.Add(func_to_infer, zone()); 94 void Enter() { entries_stack_.Add(names_stack_.length(), zone()); } 102 Zone* zone() const { return zone_; } function in class:v8::internal::FuncNameInferrer 118 Zone* zone_;
|
/prebuilts/go/darwin-x86/src/net/ |
ipsock_test.go | 12 var testInetaddr = func(ip IPAddr) Addr { return &TCPAddr{IP: ip.IP, Port: 5682, Zone: ip.Zone} } 66 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 72 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 83 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 93 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 101 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 109 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 123 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 133 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"} [all...] |
/prebuilts/go/linux-x86/src/net/ |
ipsock_test.go | 12 var testInetaddr = func(ip IPAddr) Addr { return &TCPAddr{IP: ip.IP, Port: 5682, Zone: ip.Zone} } 66 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 72 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 83 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 93 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 101 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 109 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"}, 123 {IP: ParseIP("fe80::1"), Zone: "eth0"}, 133 &TCPAddr{IP: ParseIP("fe80::1"), Port: 5682, Zone: "eth0"} [all...] |
/external/v8/src/regexp/ |
regexp-parser.h | 10 #include "src/zone.h" 32 void Add(T* value, Zone* zone) { 35 list_ = new (zone) ZoneList<T*>(initial_size, zone); 37 list_->Add(last_, zone); 82 ZoneList<T*>* GetList(Zone* zone) { 84 list_ = new (zone) ZoneList<T*>(initial_size, zone); 119 Zone* zone() const { return zone_; } function in class:v8::internal::RegExpBuilder 246 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED [all...] |