HomeSort by relevance Sort by last modified time
    Searched refs:zone (Results 26 - 50 of 391) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
func-name-inferrer.cc 37 FuncNameInferrer::FuncNameInferrer(Isolate* isolate, Zone* zone)
39 entries_stack_(10, zone),
40 names_stack_(5, zone),
41 funcs_to_infer_(4, zone),
42 zone_(zone) {
52 names_stack_.Add(Name(name, kEnclosingConstructorName), zone());
59 names_stack_.Add(Name(name, kLiteralName), zone());
66 names_stack_.Add(Name(name, kVariableName), zone());
hydrogen-infer-types.h 40 : HPhase("H_Inferring types", graph), worklist_(8, zone()),
41 in_worklist_(graph->GetMaximumValueID(), zone()) { }
zone-inl.h 31 #include "zone.h"
42 inline void* Zone::New(int size) {
71 T* Zone::NewArray(int length) {
76 bool Zone::excess_allocation() {
81 void Zone::adjust_segment_bytes_allocated(int delta) {
90 // in the destructor. For a zone-allocated tree, nodes will be
91 // freed by the Zone.
96 void* ZoneObject::operator new(size_t size, Zone* zone) {
97 return zone->New(static_cast<int>(size))
    [all...]
small-pointer-list.h 33 #include "zone.h"
47 SmallPointerList(int capacity, Zone* zone) : data_(kEmptyTag) {
48 Reserve(capacity, zone);
51 void Reserve(int capacity, Zone* zone) {
56 list()->AddBlock(NULL, capacity - list()->capacity(), zone);
60 PointerList* list = new(zone) PointerList(capacity, zone);
62 list->Add(single_value(), zone); local
94 list->Add(single_value(), zone); local
    [all...]
typing.h 39 #include "zone.h"
50 void* operator new(size_t size, Zone* zone) {
51 return zone->New(static_cast<int>(size));
53 void operator delete(void* pointer, Zone* zone) { }
70 Zone* zone() const { return info_->zone(); } function in class:v8::internal::AstTyper
effects.h 104 explicit EffectsMixin(Zone* zone) : Base(zone) {}
151 Effect::Forget(Base::isolate()), Effects(Base::zone()) };
199 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {}
208 Zone* zone() { return map_->allocator().zone(); function in class:v8::internal::EffectsBase
279 Zone* zone() { return node_->zone; } function in class:v8::internal::NestedEffectsBase
306 Zone* zone; member in struct:v8::internal::NestedEffectsBase::Node
    [all...]
data-flow.h 36 #include "zone-inl.h"
88 BitVector(int length, Zone* zone)
91 data_(zone->NewArray<uint32_t>(data_length_)) {
96 BitVector(const BitVector& other, Zone* zone)
99 data_(zone->NewArray<uint32_t>(data_length_)) {
206 Iterator(const GrowableBitVector* target, Zone* zone)
208 ? new(zone) BitVector(1, zone
    [all...]
func-name-inferrer.h 48 FuncNameInferrer(Isolate* isolate, Zone* zone);
58 entries_stack_.Add(names_stack_.length(), zone());
69 funcs_to_infer_.Add(func_to_infer, zone());
108 Zone* zone() const { return zone_; } function in class:v8::internal::FuncNameInferrer
123 Zone* zone_;
hydrogen-minus-zero.h 41 visited_(graph->GetMaximumValueID(), zone()) { }
interface.h 31 #include "zone-inl.h" // For operator new.
62 static Interface* NewUnknown(Zone* zone) {
63 return new(zone) Interface(NONE);
76 static Interface* NewModule(Zone* zone) {
77 return new(zone) Interface(MODULE);
85 void Add(Handle<String> name, Interface* interface, Zone* zone, bool* ok) {
86 DoAdd(name.location(), name->Hash(), interface, zone, ok)
    [all...]
hydrogen-environment-liveness.cc 41 live_at_block_start_(block_count_, zone()),
42 first_simulate_(block_count_, zone()),
43 first_simulate_invalid_for_index_(block_count_, zone()),
44 markers_(maximum_environment_size_, zone()),
47 went_live_since_last_simulate_(maximum_environment_size_, zone()) {
51 new(zone()) BitVector(maximum_environment_size_, zone()), zone());
52 first_simulate_.Add(NULL, zone());
54 new(zone()) BitVector(maximum_environment_size_, zone()), zone())
    [all...]
lithium.h 152 LUnallocated* CopyUnconstrained(Zone* zone) {
153 LUnallocated* result = new(zone) LUnallocated(ANY);
322 static LConstantOperand* Create(int index, Zone* zone) {
325 return new(zone) LConstantOperand(index);
358 static LStackSlot* Create(int index, Zone* zone) {
361 return new(zone) LStackSlot(index);
383 static LDoubleStackSlot* Create(int index, Zone* zone)
461 move_operands_.Add(LMoveOperands(from, to), zone); local
550 Zone* zone() const { return zone_; } function in class:v8::internal::V8_FINAL
770 Zone* zone() const { return info_->zone(); } function in class:v8::internal::LChunk
    [all...]
safepoint-table.h 34 #include "zone.h"
186 void DefinePointerSlot(int index, Zone* zone) { indexes_->Add(index, zone); }
187 void DefinePointerRegister(Register reg, Zone* zone);
201 explicit SafepointTableBuilder(Zone* zone)
202 : deoptimization_info_(32, zone),
203 deopt_index_list_(32, zone),
    [all...]
scopes.cc 59 VariableMap::VariableMap(Zone* zone)
60 : ZoneHashMap(Match, 8, ZoneAllocationPolicy(zone)),
61 zone_(zone) {}
74 ZoneAllocationPolicy(zone()));
78 p->value = new(zone()) Variable(scope,
105 Scope::Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone)
106 : isolate_(zone->isolate()),
107 inner_scopes_(4, zone),
    [all...]
hydrogen-osr.cc 43 Zone* zone = builder_->zone(); local
69 osr_values_ = new(zone) ZoneList<HUnknownOSRValue*>(length, zone);
75 osr_values_->Add(osr_value, zone);
84 osr_values_->Add(osr_value, zone);
unique.h 34 #include "zone.h"
157 void Add(Unique<T> uniq, Zone* zone) {
164 Grow(size_ + 1, zone);
172 Grow(size_ + 1, zone);
223 UniqueSet<T>* Intersect(UniqueSet<T>* that, Zone* zone) const {
224 if (that->size_ == 0 || this->size_ == 0) return new(zone) UniqueSet<T>();
226 UniqueSet<T>* out = new(zone) UniqueSet<T>();
227 out->Grow(Min(this->size_, that->size_), zone); local
    [all...]
  /external/v8/src/
zone-inl.h 31 #include "zone.h"
42 inline void* Zone::New(int size) {
72 T* Zone::NewArray(int length) {
77 bool Zone::excess_allocation() {
82 void Zone::adjust_segment_bytes_allocated(int delta) {
91 // in the destructor. For a zone-allocated tree, nodes will be
92 // freed by the Zone.
98 // operator that takes the zone in which the object should be
101 return ZONE->New(static_cast<int>(size));
104 void* ZoneObject::operator new(size_t size, Zone* zone)
    [all...]
  /external/zlib/src/test/
infcover.c 75 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->highwater
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/
asan_malloc_mac.cc 54 // 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) {
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) {
161 void *mz_malloc(malloc_zone_t *zone, size_t size) {
170 void *mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) {
186 void *mz_valloc(malloc_zone_t *zone, size_t size)
    [all...]
  /external/smack/src/org/xbill/DNS/tests/
primary.java 40 Zone zone = new Zone(origin, file); local
43 Iterator it = zone.AXFR();
48 Iterator it = zone.iterator();
53 System.out.println(zone);
  /external/v8/src/mips/
lithium-mips.cc 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
554 chunk_ = new(zone()) LChunk(info(), graph());
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
554 chunk_ = new(zone()) LChunk(info(), graph());
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 472 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
547 chunk_ = new(zone()) LChunk(info(), graph());
578 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
584 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
600 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
606 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
612 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
617 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
622 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
658 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_sxnet.c 91 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...]
  /external/openssl/crypto/x509v3/
v3_sxnet.c 91 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 4223 milliseconds

12 3 4 5 6 7 8 91011>>