/external/v8/src/wasm/ |
wasm-js.cc | 67 i::Zone zone; 69 isolate, &zone, buffer.start, buffer.end, true, false); 91 i::Zone zone; local 92 result = internal::wasm::DecodeWasmFunction(isolate, &zone, nullptr, 113 i::Zone zone; 115 isolate, &zone, buffer.start, buffer.end, true, false); 142 v8::internal::AsmTyper typer(info->isolate(), info->zone(), *(info->script()) 170 i::Zone zone; local 203 i::Zone zone; local 253 i::Zone zone; local [all...] |
encoder.cc | 9 #include "src/zone-containers.h" 66 WasmFunctionBuilder::WasmFunctionBuilder(Zone* zone) 68 locals_(zone), 71 body_(zone), 72 local_indices_(zone), 73 name_(zone) {} 158 WasmFunctionEncoder* WasmFunctionBuilder::Build(Zone* zone, 161 new (zone) WasmFunctionEncoder(zone, return_type_, exported_, external_) [all...] |
wasm-module.h | 170 compiler::CallDescriptor* GetWasmCallDescriptor(Zone* zone, FunctionSig* sig); 171 compiler::CallDescriptor* GetCallDescriptor(Zone* zone, uint32_t index);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
snapshot.py | 27 from boto.ec2.zone import Zone 130 def create_volume(self, zone, size=None, volume_type=None, iops=None, 135 :type zone: string or :class:`boto.ec2.zone.Zone` 136 :param zone: The availability zone in which the Volume will be created. 150 if isinstance(zone, Zone) [all...] |
/external/v8/src/compiler/ |
code-stub-assembler.cc | 21 #include "src/zone.h" 28 CodeStubAssembler::CodeStubAssembler(Isolate* isolate, Zone* zone, 32 isolate, new (zone) Graph(zone), 33 Linkage::GetStubCallDescriptor(isolate, zone, descriptor, 0, 171 Zone* CodeStubAssembler::zone() { return raw_assembler_->zone(); } function in class:v8::internal::compiler::CodeStubAssembler
|
node-cache.cc | 9 #include "src/zone.h" 10 #include "src/zone-containers.h" 31 bool NodeCache<Key, Hash, Pred>::Resize(Zone* zone) { 39 entries_ = zone->NewArray<Entry>(num_entries); 64 Node** NodeCache<Key, Hash, Pred>::Find(Zone* zone, Key key) { 69 entries_ = zone->NewArray<Entry>(num_entries); 90 if (!Resize(zone)) break; // Don't grow past the maximum size.
|
coalesced-live-ranges.h | 9 #include "src/zone-containers.h" 121 explicit CoalescedLiveRanges(Zone* zone) : intervals_(zone) {}
|
node-aux-data.h | 9 #include "src/zone-containers.h" 21 explicit NodeAuxData(Zone* zone) : aux_data_(zone) {}
|
select-lowering.cc | 20 merges_(Merges::key_compare(), Merges::allocator_type(graph->zone())) {} 66 Zone zone; local 67 std::queue<Node*, NodeDeque> queue((NodeDeque(&zone))); 68 BoolVector visited(graph()->NodeCount(), false, &zone);
|
branch-elimination.cc | 16 Zone* zone) 18 node_conditions_(zone, js_graph->graph()->NodeCount()), 19 zone_(zone), 185 BranchElimination::ControlPathConditions::Empty(Zone* zone) { 186 return new (zone->New(sizeof(ControlPathConditions))) 222 BranchElimination::ControlPathConditions::AddCondition(Zone* zone, 227 BranchCondition* new_head = new (zone->New(sizeof(BranchCondition)) [all...] |
graph.h | 8 #include "src/zone.h" 9 #include "src/zone-containers.h" 34 explicit Graph(Zone* zone); 90 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::Graph 108 Zone* const zone_;
|
interpreter-assembler.h | 22 class Zone; 35 InterpreterAssembler(Isolate* isolate, Zone* zone, 206 Zone* zone();
|
node.cc | 11 Node::OutOfLineInputs* Node::OutOfLineInputs::New(Zone* zone, int capacity) { 14 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); 52 Node* Node::New(Zone* zone, NodeId id, const Operator* op, int input_count, 73 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity); 76 void* node_buffer = zone->New(sizeof(Node)); 95 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); 119 Node* Node::Clone(Zone* zone, NodeId id, const Node* node) [all...] |
node.h | 11 #include "src/zone-containers.h" 44 static Node* New(Zone* zone, NodeId id, const Operator* op, int input_count, 46 static Node* Clone(Zone* zone, NodeId id, const Node* node); 101 void AppendInput(Zone* zone, Node* new_to); 102 void InsertInput(Zone* zone, int index, Node* new_to); 201 static OutOfLineInputs* New(Zone* zone, int capacity) [all...] |
register-allocator-verifier.cc | 77 Zone* zone, const RegisterConfiguration* config, 79 : zone_(zone), config_(config), sequence_(sequence), constraints_(zone) { 88 auto* op_constraints = zone->NewArray<OperandConstraint>(operand_count); 273 const PhiData* first_pred_phi, Zone* zone) 278 operands(zone) { 292 explicit PhiMap(Zone* zone) : ZoneMap<int, PhiData*>(zone) { 659 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::RegisterAllocatorVerifier::BlockMaps [all...] |
/external/v8/src/interpreter/ |
constant-array-builder.cc | 14 ConstantArrayBuilder::ConstantArraySlice::ConstantArraySlice(Zone* zone, 20 constants_(zone) {} 56 ConstantArrayBuilder::ConstantArrayBuilder(Isolate* isolate, Zone* zone) 58 idx8_slice_(zone, 0, kLowCapacity), 59 idx16_slice_(zone, kLowCapacity, kHighCapacity), 60 constants_map_(isolate->heap(), zone) {
|
/external/v8/test/cctest/compiler/ |
test-multiple-return.cc | 26 CallDescriptor* GetCallDescriptor(Zone* zone, int return_count, 28 MachineSignature::Builder msig(zone, return_count, param_count); 29 LocationSignature::Builder locations(zone, return_count, param_count); 55 return new (zone) CallDescriptor( // -- 72 Zone zone; local 73 CallDescriptor* desc = GetCallDescriptor(&zone, 3, 2);
|
/external/v8/src/parsing/ |
func-name-inferrer.cc | 15 Zone* zone) 17 entries_stack_(10, zone), 18 names_stack_(5, zone), 19 funcs_to_infer_(4, zone), 20 zone_(zone) { 29 names_stack_.Add(Name(name, kEnclosingConstructorName), zone()); 36 names_stack_.Add(Name(name, kLiteralName), zone()); 43 names_stack_.Add(Name(name, kVariableName), zone());
|
/external/v8/test/unittests/compiler/ |
instruction-selector-unittest.h | 41 new (test->zone()) Graph(test->zone()), 42 MakeCallDescriptor(test->zone(), return_type), 49 test->isolate(), new (test->zone()) Graph(test->zone()), 50 MakeCallDescriptor(test->zone(), return_type, parameter0_type), 57 test->isolate(), new (test->zone()) Graph(test->zone()), 58 MakeCallDescriptor(test->zone(), return_type, parameter0_type, 67 test->isolate(), new (test->zone()) Graph(test->zone()) [all...] |
/prebuilts/go/darwin-x86/src/net/ |
ipraw_test.go | 35 {"ip", "::1%en0", &IPAddr{IP: ParseIP("::1"), Zone: "en0"}, nil}, 36 {"ip6", "::1%911", &IPAddr{IP: ParseIP("::1"), Zone: "911"}, nil},
|
/prebuilts/go/linux-x86/src/net/ |
ipraw_test.go | 35 {"ip", "::1%en0", &IPAddr{IP: ParseIP("::1"), Zone: "en0"}, nil}, 36 {"ip6", "::1%911", &IPAddr{IP: ParseIP("::1"), Zone: "911"}, nil},
|
/external/v8/src/ |
compiler.h | 13 #include "src/zone.h" 131 CompilationInfo(CodeStub* stub, Isolate* isolate, Zone* zone); 132 CompilationInfo(const char* debug_name, Isolate* isolate, Zone* zone); 159 Zone* zone() { return zone_; } function in class:v8::internal::CompilationInfo 451 Zone* zone); 492 // The zone from which the compilation pipeline working on thi 713 Zone* zone() { return &zone_; } function in class:v8::internal::BASE_EMBEDDED [all...] |
/external/v8/test/cctest/ |
test-regexp.cc | 95 Zone zone; local 99 CcTest::i_isolate(), &zone, &reader, false, false, &result); 106 Zone zone; local 110 CcTest::i_isolate(), &zone, &reader, false, unicode, &result)); 114 result.tree->Print(os, &zone); 124 Zone zone; local 128 CcTest::i_isolate(), &zone, &reader, false, false, &result)) 142 Zone zone; local 453 Zone zone; local 522 Zone zone; local 571 Zone zone; local 609 Zone zone; local 676 Zone zone; local 681 table.AddRange(CharacterRange(range[j], range[j + 1]), i, &zone); local 788 Zone zone; local 826 Zone zone; local 893 Zone zone; local 966 Zone zone; local 1007 Zone zone; local 1057 Zone zone; local 1110 Zone zone; local 1170 Zone zone; local 1229 Zone zone; local 1331 Zone zone; local 1370 Zone zone; local 1418 Zone zone; local 1420 &zone); local 1486 Zone zone; local 1493 ranges->Add(CharacterRange(from, to), &zone); local 1507 Zone zone; local 1620 Zone zone; local 1685 Zone zone; local 1688 base->Add(CharacterRange::Everything(), &zone); local 1712 Zone zone; local 1773 Zone zone; local 1842 l1.Add(CharacterRange::Range(offset, offset + 21), &zone); local [all...] |
/prebuilts/go/darwin-x86/src/time/ |
format_test.go | 113 hasTZ bool // contains a time zone 204 _, offset := t1.Zone() 206 t.Fatalf("ParseInLocation(Feb 01 2013 AST, Baghdad).Zone = _, %d, want _, %d", offset, 3*60*60) 222 _, offset = t1.Zone() 224 t.Fatalf("ParseInLocation(Feb 01 2013 AST, Blanc-Sablon).Zone = _, %d, want _, %d", offset, -4*60*60) 240 // Ignore the time zone in the test. If it parses, it'll be OK. 246 // Problematic time zone format needs special tests. 286 name, offset := time.Zone() 455 // Check that a time without a Zone still produces a (numeric) time zone [all...] |
/prebuilts/go/linux-x86/src/time/ |
format_test.go | 113 hasTZ bool // contains a time zone 204 _, offset := t1.Zone() 206 t.Fatalf("ParseInLocation(Feb 01 2013 AST, Baghdad).Zone = _, %d, want _, %d", offset, 3*60*60) 222 _, offset = t1.Zone() 224 t.Fatalf("ParseInLocation(Feb 01 2013 AST, Blanc-Sablon).Zone = _, %d, want _, %d", offset, -4*60*60) 240 // Ignore the time zone in the test. If it parses, it'll be OK. 246 // Problematic time zone format needs special tests. 286 name, offset := time.Zone() 455 // Check that a time without a Zone still produces a (numeric) time zone [all...] |