Searched defs:zone (Results 1 - 25 of 198) sorted by last modified time

12345678

/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/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c220 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \
221 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \
226 MALLOC_TRACE(#fnname "(%p, %llu)", zone, (ULong)n ); \
421 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p); \
422 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p) \
425 MALLOC_TRACE(#fnname "(%p, %p)\n", zone, p ); \
551 ( void *zone, SizeT nmemb, SizeT size ); \
553 ( void *zone, SizeT nmemb, SizeT size ) \
558 MALLOC_TRACE("zone_calloc(%p, %llu,%llu)", zone, (ULong)nmemb, (ULong)size ); \
610 ( void *zone, voi
1004 my_malloc_size( void* zone, void* ptr ) argument
[all...]
/external/v8/src/arm/
H A Dlithium-arm.h2258 zone_(graph->isolate()->zone()),
2288 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/
H A Dast.h45 #include "zone-inl.h"
54 // Nodes are allocated in a separate zone, which allows faster
204 void* operator new(size_t size, Zone* zone) { argument
205 return zone->New(static_cast<int>(size));
243 // current zone from the TLS.
2635 zone_(isolate_->zone()) { }
H A Ddata-flow.h36 #include "zone-inl.h"
88 BitVector(int length, Zone* zone) argument
91 data_(zone->NewArray<uint32_t>(data_length_)) {
96 BitVector(const BitVector& other, Zone* zone) argument
99 data_(zone->NewArray<uint32_t>(data_length_)) {
H A Dfull-codegen.h809 // A map from property names to getter/setter pairs allocated in the zone.
814 explicit AccessorTable(Zone* zone) : argument
818 zone_(zone) { }
H A Dhydrogen-instructions.cc506 void HValue::AddNewRange(Range* r, Zone* zone) { argument
507 if (!HasRange()) ComputeInitialRange(zone);
508 if (!HasRange()) range_ = new(zone) Range();
522 void HValue::ComputeInitialRange(Zone* zone) { argument
524 range_ = InferRange(zone);
1020 Range* HValue::InferRange(Zone* zone) { argument
1022 Range* result = new(zone) Range();
1028 Range* HChange::InferRange(Zone* zone) { argument
1036 ? input_range->Copy(zone)
1037 : HValue::InferRange(zone);
1043 InferRange(Zone* zone) argument
1053 InferRange(Zone* zone) argument
1071 InferRange(Zone* zone) argument
1088 InferRange(Zone* zone) argument
1104 InferRange(Zone* zone) argument
1122 InferRange(Zone* zone) argument
1147 InferRange(Zone* zone) argument
1358 InferRange(Zone* zone) argument
1376 InferRange(Zone* zone) argument
1392 InferRange(Zone* zone) argument
1418 InferRange(Zone* zone) argument
1434 InferRange(Zone* zone) argument
2126 NewHMod(Zone* zone, HValue* context, HValue* left, HValue* right) argument
2149 NewHDiv(Zone* zone, HValue* context, HValue* left, HValue* right) argument
2171 NewHBitwise(Zone* zone, Token::Value op, HValue* context, HValue* left, HValue* right) argument
2228 NewHShr(Zone* zone, HValue* context, HValue* left, HValue* right) argument
[all...]
H A Dhydrogen-instructions.h40 #include "zone.h"
240 Range* CopyClearLower(Zone* zone) const {
241 return new(zone) Range(kMinInt, upper_);
243 Range* CopyClearUpper(Zone* zone) const {
244 return new(zone) Range(lower_, kMaxInt);
246 Range* Copy(Zone* zone) const {
247 Range* result = new(zone) Range(lower_, upper_);
694 void AddNewRange(Range* r, Zone* zone);
696 void ComputeInitialRange(Zone* zone);
741 virtual Range* InferRange(Zone* zone);
4314 InferRange(Zone* zone) argument
4367 InferRange(Zone* zone) argument
[all...]
H A Dhydrogen.cc79 loop_information_ = new(zone()) HLoopInformation(this);
111 HBlockEntry* entry = new(zone()) HBlockEntry();
123 if (has_uses == HDeoptimize::kNoUses) return new(zone()) HDeoptimize(0);
126 HDeoptimize* instr = new(zone()) HDeoptimize(environment->length());
145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count);
170 AddInstruction(new(zone()) HLeaveInlined);
174 HGoto* instr = new(zone()) HGoto(block);
184 AddInstruction(new(zone()) HLeaveInlined);
188 HGoto* instr = new(zone()) HGoto(target);
566 HConstant* constant = new(zone()) HConstan
1155 HValueMap(Zone* zone, const HValueMap* other) argument
1369 SparseSet(Zone* zone, int capacity) argument
1443 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED
1742 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED
7798 Zone* zone = closure()->GetIsolate()->zone(); local
[all...]
H A Dhydrogen.h38 #include "zone.h"
160 inline Zone* zone();
249 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::HGraph
383 Zone* HBasicBlock::zone() { return graph_->zone(); } function in class:v8::internal::HBasicBlock
606 inline Zone* zone();
1129 Zone* zone() { return zone_; } function in class:v8::internal::HGraphBuilder
1160 Zone* AstContext::zone() { return owner_->zone(); } function in class:v8::internal::AstContext
[all...]
H A Disolate.h47 #include "zone.h"
839 Zone* zone() { return &zone_; } function in class:v8::internal::Isolate
1397 #define ZONE (v8::internal::Isolate::Current()->zone())
H A Dlithium-allocator.cc90 void UseInterval::SplitAt(LifetimePosition pos, Zone* zone) { argument
92 UseInterval* after = new(zone) UseInterval(pos, end_);
129 LiveRange::LiveRange(int id, Zone* zone) argument
141 spill_operand_(new(zone) LOperand()),
147 Zone* zone) {
151 ConvertOperands(zone);
155 void LiveRange::MakeSpilled(Zone* zone) { argument
160 ConvertOperands(zone);
228 LOperand* LiveRange::CreateAssignedOperand(Zone* zone) { argument
242 LUnallocated* unalloc = new(zone) LUnallocate
145 set_assigned_register(int reg, RegisterKind register_kind, Zone* zone) argument
274 SplitAt(LifetimePosition position, LiveRange* result, Zone* zone) argument
388 EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone) argument
413 AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone) argument
443 AddUsePosition(LifetimePosition pos, LOperand* operand, Zone* zone) argument
469 ConvertOperands(Zone* zone) argument
[all...]
H A Dlithium-allocator.h35 #include "zone.h"
219 void SplitAt(LifetimePosition pos, Zone* zone);
280 LiveRange(int id, Zone* zone);
291 LOperand* CreateAssignedOperand(Zone* zone);
296 Zone* zone);
297 void MakeSpilled(Zone* zone);
321 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
362 Zone* zone);
365 Zone* zone);
368 Zone* zone);
411 Add(int value, Zone* zone) argument
423 EnsureCapacity(int value, Zone* zone) argument
[all...]
H A Dparser.h288 Zone* zone() { return zone_; } function in class:v8::internal::RegExpBuilder
400 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::RegExpParser
549 Zone* zone() { return isolate_->zone(); } function in class:v8::internal::Parser
H A Dzone-inl.h31 #include "zone.h"
91 // in the destructor. For a zone-allocated tree, nodes will be
98 // operator that takes the zone in which the object should be
104 void* ZoneObject::operator new(size_t size, Zone* zone) { argument
105 return zone->New(static_cast<int>(size));
121 void* ZoneList<T>::operator new(size_t size, Zone* zone) { argument
122 return zone->New(static_cast<int>(size));
128 isolate_->zone()->scope_nesting_++;
133 return isolate_->zone()->scope_nesting_ == 1 && mode_ == DELETE_ON_EXIT;
138 return Isolate::Current()->zone()
[all...]
H A Dzone.h42 // Zone scopes are in one of two modes. Either they delete the zone
109 // Report zone excess when allocation exceeds this limit.
114 // the zone.
117 // Each isolate gets its own zone.
152 INLINE(void* operator new(size_t size, Zone* zone));
161 // Zone::DeleteAll() to delete all zone objects in one go.
163 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } argument
172 // Allocate 'size' bytes of memory in the zone.
188 INLINE(void* operator new(size_t size, Zone* zone));
202 void operator delete(void* pointer, Zone* zone) { UNREACHABL argument
[all...]
/external/v8/src/ia32/
H A Dlithium-ia32.h2356 zone_(graph->isolate()->zone()),
2386 Zone* zone() { return zone_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/mips/
H A Dlithium-mips.h2238 zone_(graph->isolate()->zone()),
2268 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/x64/
H A Dlithium-x64.h2220 zone_(graph->isolate()->zone()),
2250 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/test/cctest/
H A Dtest-dataflow.cc40 Zone* zone = ZONE; local
42 BitVector v(15, zone);
49 BitVector w(15, zone);
57 BitVector v(64, zone);
75 BitVector v(15, zone);
77 BitVector w(15, zone);
85 BitVector v(15, zone);
87 BitVector w(15, zone);
91 BitVector u(w, zone);
100 BitVector v(35, zone);
[all...]
/external/smack/src/org/xbill/DNS/
H A DMessage.java90 * and the zone are filled in.
91 * @param zone The zone to be updated
94 newUpdate(Name zone) { argument
95 return new Update(zone);
H A DUpdate.java21 * @param zone The name of the zone being updated.
22 * @param dclass The class of the zone being updated.
25 Update(Name zone, int dclass) { argument
27 if (!zone.isAbsolute())
28 throw new RelativeNameException(zone);
31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN);
33 this.origin = zone;
39 * @param zone The name of the zone bein
42 Update(Name zone) argument
[all...]
H A DZone.java19 /** A primary zone */
22 /** A secondary zone */
120 " does not match zone origin " +
129 * @param zone The name of the zone.
134 Zone(Name zone, String file) throws IOException { argument
137 if (zone == null)
138 throw new IllegalArgumentException("no zone name specified");
139 Master m = new Master(file, zone);
142 origin = zone;
155 Zone(Name zone, Record [] records) argument
197 Zone(Name zone, int dclass, String remote) argument
[all...]
H A DZoneTransferIn.java32 * or an indication that the zone is up to date.
71 * All changes between two versions of a zone in an IXFR response.
170 ZoneTransferIn(Name zone, int xfrtype, long serial, boolean fallback, argument
175 if (zone.isAbsolute())
176 zname = zone;
179 zname = Name.concatenate(zone, Name.root);
194 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer).
195 * @param zone The zone to transfer.
196 * @param address The host/port from which to transfer the zone
202 newAXFR(Name zone, SocketAddress address, TSIG key) argument
216 newAXFR(Name zone, String host, int port, TSIG key) argument
233 newAXFR(Name zone, String host, TSIG key) argument
251 newIXFR(Name zone, long serial, boolean fallback, SocketAddress address, TSIG key) argument
271 newIXFR(Name zone, long serial, boolean fallback, String host, int port, TSIG key) argument
293 newIXFR(Name zone, long serial, boolean fallback, String host, TSIG key) argument
[all...]
/external/qemu/
H A Dkvm-all.c357 struct kvm_coalesced_mmio_zone zone; local
359 zone.addr = start;
360 zone.size = size;
362 ret = kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
376 struct kvm_coalesced_mmio_zone zone; local
378 zone.addr = start;
379 zone.size = size;
381 ret = kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);

Completed in 475 milliseconds

12345678