Searched refs:zone (Results 51 - 75 of 483) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.h38 : RawMachineAssembler(new (test->zone()) Graph(test->zone()),
39 MakeMachineSignature(test->zone(), return_type)),
44 new (test->zone()) Graph(test->zone()),
45 MakeMachineSignature(test->zone(), return_type, parameter0_type)),
50 new (test->zone()) Graph(test->zone()),
51 MakeMachineSignature(test->zone(), return_type, parameter0_type,
58 new (test->zone()) Grap
76 MakeMachineSignature(Zone* zone, MachineType return_type) argument
83 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type) argument
91 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type, MachineType parameter1_type) argument
101 MakeMachineSignature(Zone* zone, MachineType return_type, MachineType parameter0_type, MachineType parameter1_type, MachineType parameter2_type) argument
[all...]
H A Dcommon-node-cache.h18 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} argument
38 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::FINAL
H A Dgraph-inl.h18 this, zone(), node, visitor);
31 this, zone(), end(), visitor);
H A Dnode-cache.h30 Node** Find(Zone* zone, Key key);
42 bool Resize(Zone* zone);
H A Dinstruction-selector-impl.h24 return Define(node, new (zone())
29 return Define(result, new (zone())
34 return Define(node, new (zone())
40 return Define(node, new (zone())
48 return ConstantOperand::Create(node->id(), zone());
58 new (zone()) UnallocatedOperand(
63 return Use(node, new (zone())
71 return Use(node, new (zone()) UnallocatedOperand(UnallocatedOperand::ANY));
77 return Use(node, new (zone())
82 return Use(node, new (zone())
140 Zone* zone() const { return selector()->instruction_zone(); } function in class:v8::internal::compiler::OperandGenerator
[all...]
H A Dlinkage-impl.h29 static CallDescriptor* GetJSCallDescriptor(Zone* zone, argument
35 LocationSignature::Builder locations(zone, return_count, parameter_count);
36 MachineSignature::Builder types(zone, return_count, parameter_count);
57 return new (zone) CallDescriptor(CallDescriptor::kCallJSFunction, // kind
72 Zone* zone, Runtime::FunctionId function_id, int js_parameter_count,
84 LocationSignature::Builder locations(zone, return_count, parameter_count);
85 MachineSignature::Builder types(zone, return_count, parameter_count);
117 return new (zone) CallDescriptor(CallDescriptor::kCallCodeObject, // kind
132 Zone* zone, CallInterfaceDescriptor descriptor, int stack_parameter_count,
143 LocationSignature::Builder locations(zone, return_coun
71 GetRuntimeCallDescriptor( Zone* zone, Runtime::FunctionId function_id, int js_parameter_count, Operator::Properties properties) argument
131 GetStubCallDescriptor( Zone* zone, CallInterfaceDescriptor descriptor, int stack_parameter_count, CallDescriptor::Flags flags) argument
182 GetSimplifiedCDescriptor(Zone* zone, MachineSignature* msig) argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-node-cache.cc19 Node** pos = cache.Find(graph.zone(), i);
22 Node** npos = cache.Find(graph.zone(), i);
32 CommonOperatorBuilder common(graph.zone());
41 *cache.Find(graph.zone(), k) = nodes[i] = node;
46 CHECK_EQ(nodes[i], *cache.Find(graph.zone(), k));
55 Node** nodes = graph.zone()->NewArray<Node*>(kSize);
56 CommonOperatorBuilder common(graph.zone());
61 *cache.Find(graph.zone(), v) = nodes[i];
67 Node** pos = cache.Find(graph.zone(), v);
82 Node** pos = cache.Find(graph.zone(),
[all...]
H A Dgraph-builder-tester.h38 MachineCallHelper(Zone* zone, MachineSignature* machine_sig);
61 explicit GraphAndBuilders(Zone* zone) argument
62 : main_graph_(new (zone) Graph(zone)),
63 main_common_(zone),
64 main_simplified_(zone) {}
/external/chromium_org/v8/src/
H A Ddata-flow.h13 #include "src/zone-inl.h"
65 BitVector(int length, Zone* zone) argument
68 data_(zone->NewArray<uint32_t>(data_length_)) {
73 BitVector(const BitVector& other, Zone* zone) argument
76 data_(zone->NewArray<uint32_t>(data_length_)) {
197 Iterator(const GrowableBitVector* target, Zone* zone) argument
199 ? new(zone) BitVector(1, zone)
209 GrowableBitVector(int length, Zone* zone) argument
210 : bits_(new(zone) BitVecto
217 Add(int value, Zone* zone) argument
222 Union(const GrowableBitVector& other, Zone* zone) argument
237 EnsureCapacity(int value, Zone* zone) argument
[all...]
H A Dfunc-name-inferrer.h9 #include "src/zone.h"
31 FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone);
41 entries_stack_.Add(names_stack_.length(), zone());
52 funcs_to_infer_.Add(func_to_infer, zone());
90 Zone* zone() const { return zone_; } function in class:v8::internal::FuncNameInferrer
H A Dinterface.h9 #include "src/zone-inl.h" // For operator new.
40 static Interface* NewUnknown(Zone* zone) { argument
41 return new(zone) Interface(NONE);
54 static Interface* NewModule(Zone* zone) { argument
55 return new(zone) Interface(MODULE);
63 void Add(const AstRawString* name, Interface* interface, Zone* zone, argument
65 DoAdd(name, name->hash(), interface, zone, ok);
70 void Unify(Interface* that, Zone* zone, bool* ok);
139 Interface* Lookup(Handle<String> name, Zone* zone);
212 void DoAdd(const void* name, uint32_t hash, Interface* interface, Zone* zone,
[all...]
H A Dtyping.h17 #include "src/zone.h"
27 void* operator new(size_t size, Zone* zone) { argument
28 return zone->New(static_cast<int>(size));
30 void operator delete(void* pointer, Zone* zone) { } argument
52 e->set_bounds(Bounds::Both(e->bounds(), b, zone()));
55 e->set_bounds(Bounds::NarrowLower(e->bounds(), t, zone()));
H A Dhydrogen-environment-liveness.cc18 live_at_block_start_(block_count_, zone()),
19 first_simulate_(block_count_, zone()),
20 first_simulate_invalid_for_index_(block_count_, zone()),
21 markers_(maximum_environment_size_, zone()),
24 went_live_since_last_simulate_(maximum_environment_size_, zone()) {
28 new(zone()) BitVector(maximum_environment_size_, zone()), zone());
29 first_simulate_.Add(NULL, zone());
31 new(zone()) BitVecto
[all...]
H A Dhydrogen-load-elimination.cc27 HFieldApproximation* Copy(Zone* zone) { argument
28 HFieldApproximation* copy = new(zone) HFieldApproximation();
31 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone);
42 HLoadEliminationTable(Zone* zone, HAliasAnalyzer* aliasing) argument
43 : zone_(zone), fields_(kMaxTrackedFields, zone), aliasing_(aliasing) { }
46 HLoadEliminationTable* Process(HInstruction* instr, Zone* zone) { argument
124 Zone* zone) {
127 return pred_state->Copy(succ_block, pred_block, zone);
129 return succ_state->Merge(succ_block, pred_state, pred_block, zone);
120 Merge(HLoadEliminationTable* succ_state, HBasicBlock* succ_block, HLoadEliminationTable* pred_state, HBasicBlock* pred_block, Zone* zone) argument
135 Finish(HLoadEliminationTable* state, HBasicBlock* block, Zone* zone) argument
144 Copy(HBasicBlock* succ, HBasicBlock* from_block, Zone* zone) argument
160 Merge(HBasicBlock* succ, HLoadEliminationTable* that, HBasicBlock* that_block, Zone* zone) argument
438 HLoadEliminationEffects(Zone* zone) argument
446 Process(HInstruction* instr, Zone* zone) argument
476 Union(HLoadEliminationEffects* that, Zone* zone) argument
[all...]
H A Dsafepoint-table.h11 #include "src/zone.h"
165 void DefinePointerSlot(int index, Zone* zone) { indexes_->Add(index, zone); }
166 void DefinePointerRegister(Register reg, Zone* zone);
180 explicit SafepointTableBuilder(Zone* zone)
181 : deoptimization_info_(32, zone),
182 deopt_index_list_(32, zone),
183 indexes_(32, zone),
184 registers_(32, zone),
187 zone_(zone) { }
[all...]
H A Dunique.h12 #include "src/zone.h"
139 UniqueSet(int capacity, Zone* zone) argument
141 array_(zone->NewArray<Unique<T> >(capacity)) {
146 UniqueSet(Unique<T> uniq, Zone* zone) argument
147 : size_(1), capacity_(1), array_(zone->NewArray<Unique<T> >(1)) {
152 void Add(Unique<T> uniq, Zone* zone) { argument
159 Grow(size_ + 1, zone);
167 Grow(size_ + 1, zone);
221 UniqueSet<T>* Intersect(const UniqueSet<T>* that, Zone* zone) const {
222 if (that->size_ == 0 || this->size_ == 0) return new(zone) UniqueSe
330 Grow(int size, Zone* zone) argument
[all...]
H A Dscopes.cc27 VariableMap::VariableMap(Zone* zone) argument
28 : ZoneHashMap(ZoneHashMap::PointersMatch, 8, ZoneAllocationPolicy(zone)),
29 zone_(zone) {}
43 true, ZoneAllocationPolicy(zone()));
47 p->value = new (zone())
71 AstValueFactory* ast_value_factory, Zone* zone)
72 : isolate_(zone->isolate()),
73 inner_scopes_(4, zone),
74 variables_(zone),
75 internals_(4, zone),
70 Scope(Scope* outer_scope, ScopeType scope_type, AstValueFactory* ast_value_factory, Zone* zone) argument
93 Scope(Scope* inner_scope, ScopeType scope_type, Handle<ScopeInfo> scope_info, AstValueFactory* value_factory, Zone* zone) argument
121 Scope(Scope* inner_scope, const AstRawString* catch_variable_name, AstValueFactory* value_factory, Zone* zone) argument
187 DeserializeScopeChain(Context* context, Scope* global_scope, Zone* zone) argument
[all...]
H A Dhydrogen-osr.cc20 Zone* zone = builder_->zone(); local
46 osr_values_ = new(zone) ZoneList<HUnknownOSRValue*>(length, zone);
52 osr_values_->Add(osr_value, zone);
61 osr_values_->Add(osr_value, zone);
H A Dhydrogen-gvn.cc14 HInstructionMap(Zone* zone, SideEffectsTracker* side_effects_tracker) argument
22 ResizeLists(kInitialSize, zone);
23 Resize(kInitialSize, zone);
28 void Add(HInstruction* instr, Zone* zone) { argument
30 Insert(instr, zone);
35 HInstructionMap* Copy(Zone* zone) const {
36 return new(zone) HInstructionMap(zone, this);
52 HInstructionMap(Zone* zone, const HInstructionMap* other);
54 void Resize(int new_size, Zone* zone);
214 Resize(int new_size, Zone* zone) argument
259 ResizeLists(int new_size, Zone* zone) argument
282 Insert(HInstruction* instr, Zone* zone) argument
676 CreateEntry(Zone* zone, HBasicBlock* entry_block, HInstructionMap* entry_map) argument
687 next_in_dominator_tree_traversal( Zone* zone, HBasicBlock** dominator) argument
710 Initialize(HBasicBlock* block, HInstructionMap* map, HSideEffectMap* dominators, bool copy_map, Zone* zone) argument
725 GvnBasicBlockState(GvnBasicBlockState* previous, HBasicBlock* block, HInstructionMap* map, HSideEffectMap* dominators, Zone* zone) argument
734 next_dominated(Zone* zone) argument
751 push(Zone* zone, HBasicBlock* block) argument
[all...]
/external/zlib/src/test/
H A Dinfcover.c75 struct mem_zone *zone = mem; local
79 if (zone == NULL || (zone->limit && zone->total + len > zone->limit))
99 item->next = zone->first;
100 zone->first = item;
103 zone->total += item->size;
104 if (zone->total > zone
115 struct mem_zone *zone = mem; local
160 struct mem_zone *zone; local
178 struct mem_zone *zone = strm->opaque; local
186 struct mem_zone *zone = strm->opaque; local
194 struct mem_zone *zone = strm->opaque; local
204 struct mem_zone *zone = strm->opaque; local
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_malloc_mac.cc54 // Prevent the client app from overwriting the zone contents.
55 // Library functions that need to modify the zone will set PROT_WRITE on it.
89 INTERCEPTOR(void, malloc_set_zone_name, malloc_zone_t *zone, const char *name) { argument
94 if (name && zone->introspect == asan_zone.introspect) {
100 // since that appropriately changes VM region protections on the zone.
101 REAL(malloc_set_zone_name)(zone, name);
157 size_t mz_size(malloc_zone_t* zone, const void* ptr) { argument
161 void *mz_malloc(malloc_zone_t *zone, size_t size) { argument
170 void *mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) { argument
186 void *mz_valloc(malloc_zone_t *zone, size_
179 CHECK(allocated < kCallocPoolSize); return mem; } GET_STACK_TRACE_MALLOC; return asan_calloc(nmemb, size, &stack); } void *mz_valloc(malloc_zone_t *zone, size_t size) { if (UNLIKELY(!asan_inited)) { CHECK(system_malloc_zone); return malloc_zone_valloc(system_malloc_zone, size); } GET_STACK_TRACE_MALLOC; return asan_memalign(GetPageSizeCached(), size, &stack, FROM_MALLOC); } void ALWAYS_INLINE free_common(void *context, void *ptr) { if (!ptr) return; GET_STACK_TRACE_FREE; if (!flags()->mac_ignore_invalid_free) argument
213 mz_free(malloc_zone_t *zone, void *ptr) argument
217 mz_realloc(malloc_zone_t *zone, void *ptr, size_t size) argument
236 mz_destroy(malloc_zone_t* zone) argument
244 mz_memalign(malloc_zone_t *zone, size_t align, size_t size) argument
270 mi_good_size(malloc_zone_t *zone, size_t size) argument
275 mi_check(malloc_zone_t *zone) argument
279 mi_print(malloc_zone_t *zone, boolean_t verbose) argument
283 mi_log(malloc_zone_t *zone, void *address) argument
287 mi_force_lock(malloc_zone_t *zone) argument
291 mi_force_unlock(malloc_zone_t *zone) argument
295 mi_statistics(malloc_zone_t *zone, malloc_statistics_t *stats) argument
304 mi_zone_locked(malloc_zone_t *zone) argument
[all...]
/external/smack/src/org/xbill/DNS/tests/
H A Dprimary.java40 Zone zone = new Zone(origin, file);
43 Iterator it = zone.AXFR();
48 Iterator it = zone.iterator();
53 System.out.println(zone);
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc41 #include "src/zone-inl.h"
89 Zone zone(CcTest::i_isolate());
93 &reader, false, &result, &zone);
99 Zone zone(CcTest::i_isolate());
103 &reader, false, &result, &zone));
107 result.tree->Print(os, &zone);
114 Zone zone(CcTest::i_isolate());
118 &reader, false, &result, &zone));
132 Zone zone(CcTest::i_isolate());
136 &reader, false, &result, &zone));
500 Compile(const char* input, bool multiline, bool is_one_byte, Zone* zone) argument
631 table.AddRange(CharacterRange(range[j], range[j + 1]), i, &zone); local
1356 RegExpMacroAssemblerIrregexp m(Vector<byte>(codes, 1024), &zone); local
1429 ranges->Add(CharacterRange(from, to), &zone); local
1622 base->Add(CharacterRange::Everything(), &zone); local
1776 l1.Add(CharacterRange::Range(offset, offset + 21), &zone); local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_sxnet.c95 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
119 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
154 /* Add an id given the zone as an ASCII number */
156 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
160 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
167 /* Add an id given the zone as an unsigned long */
182 /* Add an id given the zone as an ASN1_INTEGER.
187 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
192 if(!psx || !zone || !user) {
206 if(SXNET_get_id_INTEGER(sx, zone)) {
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_sxnet.c91 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
115 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
150 /* Add an id given the zone as an ASCII number */
152 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
156 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
163 /* Add an id given the zone as an unsigned long */
178 /* Add an id given the zone as an ASN1_INTEGER.
183 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
188 if(!psx || !zone || !user) {
202 if(SXNET_get_id_INTEGER(sx, zone)) {
[all...]

Completed in 423 milliseconds

1234567891011>>