Home
last modified time | relevance | path

Searched defs:zone (Results 1 – 25 of 386) sorted by relevance

12345678910>>...16

/external/v8/src/zone/
Dzone-containers.h27 explicit ZoneVector(Zone* zone) in ZoneVector()
32 ZoneVector(size_t size, Zone* zone) in ZoneVector()
37 ZoneVector(size_t size, T def, Zone* zone) in ZoneVector()
47 explicit ZoneDeque(Zone* zone) in ZoneDeque()
59 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList()
70 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue()
81 explicit ZoneQueue(Zone* zone) in ZoneQueue()
91 explicit ZoneStack(Zone* zone) in ZoneStack()
101 explicit ZoneSet(Zone* zone) in ZoneSet()
113 explicit ZoneMap(Zone* zone) in ZoneMap()
[all …]
Dzone.h124 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new()
135 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete()
142 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) {} in ZoneAllocationPolicy()
145 Zone* zone() const { return zone_; } in zone() function
160 ZoneList(int capacity, Zone* zone) in ZoneList()
164 ZoneList(std::initializer_list<T> list, Zone* zone) in ZoneList()
170 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new()
173 ZoneList(const ZoneList<T>& other, Zone* zone) in ZoneList()
181 void Add(const T& element, Zone* zone) { in Add()
184 void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone) { in AddAll()
[all …]
Daccounting-allocator.h49 virtual void ZoneCreation(const Zone* zone) {} in ZoneCreation()
50 virtual void ZoneDestruction(const Zone* zone) {} in ZoneDestruction()
Dzone-segment.h25 Zone* zone() const { return zone_; } in zone() function
26 void set_zone(Zone* const zone) { zone_ = zone; } in set_zone()
/external/icu/icu4c/source/i18n/
Dvzone.cpp41 vzone_close(VZone* zone) { in vzone_close()
46 vzone_clone(const VZone *zone) { in vzone_clone()
56 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { in vzone_getTZURL()
67 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { in vzone_setTZURL()
73 vzone_getLastModified(VZone* zone, UDate& lastModified) { in vzone_getLastModified()
78 vzone_setLastModified(VZone* zone, UDate lastModified) { in vzone_setLastModified()
83 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) { in vzone_write()
95 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode&… in vzone_writeFromStart()
107 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& sta… in vzone_writeSimple()
119 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, in vzone_getOffset()
[all …]
/external/jemalloc/src/
Dzone.c48 zone_size(malloc_zone_t *zone, void *ptr) in zone_size()
64 zone_malloc(malloc_zone_t *zone, size_t size) in zone_malloc()
71 zone_calloc(malloc_zone_t *zone, size_t num, size_t size) in zone_calloc()
78 zone_valloc(malloc_zone_t *zone, size_t size) in zone_valloc()
88 zone_free(malloc_zone_t *zone, void *ptr) in zone_free()
100 zone_realloc(malloc_zone_t *zone, void *ptr, size_t size) in zone_realloc()
111 zone_memalign(malloc_zone_t *zone, size_t alignment, size_t size) in zone_memalign()
123 zone_free_definite_size(malloc_zone_t *zone, void *ptr, size_t size) in zone_free_definite_size()
139 zone_destroy(malloc_zone_t *zone) in zone_destroy()
148 zone_good_size(malloc_zone_t *zone, size_t size) in zone_good_size()
[all …]
/external/v8/src/compiler/
Dtype-hint-analyzer.h21 explicit TypeHintAnalysis(Infos const& infos, Zone* zone) in TypeHintAnalysis()
31 Zone* zone() const { return zone_; } in zone() function
41 explicit TypeHintAnalyzer(Zone* zone) : zone_(zone) {} in TypeHintAnalyzer()
46 Zone* zone() const { return zone_; } in zone() function
Dlive-range-separator.h22 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone) in LiveRangeSeparator()
29 Zone* zone() const { return zone_; } in zone() function
40 LiveRangeMerger(RegisterAllocationData* data, Zone* zone) in LiveRangeMerger()
47 Zone* zone() const { return zone_; } in zone() function
Dtypes.h305 static Type* New(double value, Zone* zone) { in New()
376 static Type* New(double min, double max, Zone* zone) { in New()
384 static Type* New(Limits lim, Zone* zone) { in New()
432 StructuralType(Kind kind, int length, i::Zone* zone) in StructuralType()
455 TupleType(int length, Zone* zone) : StructuralType(kTuple, length, zone) {} in TupleType()
457 static Type* New(int length, Zone* zone) { in New()
479 UnionType(int length, Zone* zone) : StructuralType(kUnion, length, zone) {} in UnionType()
481 static Type* New(int length, Zone* zone) { in New()
510 static Type* OtherNumberConstant(double value, Zone* zone) { in OtherNumberConstant()
513 static Type* HeapConstant(i::Handle<i::HeapObject> value, Zone* zone) { in HeapConstant()
[all …]
Dmemory-optimizer.h66 static AllocationState const* Empty(Zone* zone) { in Empty()
69 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) { in Closed()
73 Node* top, Zone* zone) { in Open()
133 Zone* zone() const { return zone_; } in zone() function
Dzone-stats.cc52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned()
88 Zone* zone = new Zone(allocator_, zone_name); in NewEmptyZone() local
93 void ZoneStats::ReturnZone(Zone* zone) { in ReturnZone()
Dredundancy-elimination.h49 explicit PathChecksForEffectNodes(Zone* zone) : info_for_node_(zone) {} in PathChecksForEffectNodes()
65 Zone* zone() const { return zone_; } in zone() function
/external/v8/src/crankshaft/
Dhydrogen-removable-simulates.cc15 explicit State(Zone* zone) in State()
18 State* Process(HInstruction* instr, Zone* zone) { in Process()
91 Zone* zone) { in Merge()
97 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { in Finish()
138 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { in Copy()
151 Zone* zone) { in Merge()
174 explicit Effects(Zone* zone) { } in Effects()
176 void Process(HInstruction* instr, Zone* zone) { } in Process()
178 void Union(Effects* that, Zone* zone) { } in Union()
Dhydrogen-flow-engine.h18 explicit NoEffects(Zone* zone) { } in NoEffects()
27 inline void Process(HInstruction* value, Zone* zone) { in Process()
30 inline void Union(NoEffects* other, Zone* zone) { in Union()
39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) { in Copy()
42 inline NoState* Process(HInstruction* value, Zone* zone) { in Process()
45 inline NoState* Merge(HBasicBlock* succ, NoState* other, Zone* zone) { in Merge()
70 HFlowEngine(HGraph* graph, Zone* zone) in HFlowEngine()
Dunique.h153 UniqueSet(int capacity, Zone* zone) in UniqueSet()
160 UniqueSet(Unique<T> uniq, Zone* zone) in UniqueSet()
166 void Add(Unique<T> uniq, Zone* zone) { in Add()
235 UniqueSet<T>* Intersect(const UniqueSet<T>* that, Zone* zone) const { in Intersect()
262 UniqueSet<T>* Union(const UniqueSet<T>* that, Zone* zone) const { in Union()
295 UniqueSet<T>* Subtract(const UniqueSet<T>* that, Zone* zone) const { in Subtract()
314 UniqueSet<T>* Copy(Zone* zone) const { in Copy()
344 void Grow(int size, Zone* zone) { in Grow()
Dhydrogen-load-elimination.cc28 HFieldApproximation* Copy(Zone* zone) { in Copy()
43 HLoadEliminationTable(Zone* zone, HAliasAnalyzer* aliasing) in HLoadEliminationTable()
47 HLoadEliminationTable* Process(HInstruction* instr, Zone* zone) { in Process()
125 Zone* zone) { in Merge()
138 Zone* zone) { in Finish()
146 Zone* zone) { in Copy()
162 HBasicBlock* that_block, Zone* zone) { in Merge()
437 explicit HLoadEliminationEffects(Zone* zone) in HLoadEliminationEffects()
445 void Process(HInstruction* instr, Zone* zone) { in Process()
475 void Union(HLoadEliminationEffects* that, Zone* zone) { in Union()
/external/v8/src/ast/
Dast-types.h406 static AstType* New(i::Handle<i::Map> map, Zone* zone) { in New()
436 static AstType* New(i::Handle<i::Object> value, Zone* zone) { in New()
484 AstBitsetType::bitset representation, Zone* zone) { in New()
493 Zone* zone) { in New()
528 static AstType* New(AstType* outer, Zone* zone) { in New()
557 static AstType* New(AstType* element, Zone* zone) { in New()
595 AstStructuralType(Kind kind, int length, i::Zone* zone) in AstStructuralType()
621 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone) in AstFunctionType()
628 Zone* zone) { in New()
652 AstTupleType(int length, Zone* zone) in AstTupleType()
[all …]
Dmodules.cc14 const AstRawString* module_request, Scanner::Location loc, Zone* zone) { in AddImport()
25 Scanner::Location loc, Zone* zone) { in AddStarImport()
39 Scanner::Location loc, Zone* zone) { in AddExport()
49 const AstRawString* module_request, Scanner::Location loc, Zone* zone) { in AddExport()
61 const AstRawString* module_request, Scanner::Location loc, Zone* zone) { in AddStarExport()
183 void ModuleDescriptor::MakeIndirectExportsExplicit(Zone* zone) { in MakeIndirectExportsExplicit()
290 Zone* zone) { in Validate()
/external/v8/src/parsing/
Dparse-info.cc13 ParseInfo::ParseInfo(Zone* zone) in ParseInfo()
34 ParseInfo::ParseInfo(Zone* zone, Handle<SharedFunctionInfo> shared) in ParseInfo()
63 ParseInfo::ParseInfo(Zone* zone, Handle<Script> script) : ParseInfo(zone) { in ParseInfo()
/external/v8/src/
Dbit-vector.h65 BitVector(int length, Zone* zone) in BitVector()
73 BitVector(const BitVector& other, Zone* zone) in BitVector()
197 Iterator(const GrowableBitVector* target, Zone* zone) in Iterator()
209 GrowableBitVector(int length, Zone* zone) in GrowableBitVector()
217 void Add(int value, Zone* zone) { in Add()
222 void Union(const GrowableBitVector& other, Zone* zone) { in Union()
239 void EnsureCapacity(int value, Zone* zone) { in EnsureCapacity()
Deffects.h79 explicit EffectsMixin(Zone* zone) : Base(zone) {} in EffectsMixin()
174 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {} in EffectsBase()
183 Zone* zone() { return map_->allocator().zone(); } in zone() function
224 explicit Effects(Zone* zone) in Effects()
233 explicit NestedEffectsBase(Zone* zone) : node_(new(zone) Node(zone)) {} in NestedEffectsBase()
253 Zone* zone() { return node_->zone; } in zone() function
279 Zone* zone; member
283 : zone(zone), effects(zone), previous(previous) {} in zone() function
312 explicit NestedEffects(Zone* zone) : in NestedEffects()
/external/boringssl/src/crypto/x509v3/
Dv3_sxnet.c157 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen) in SXNET_add_id_asc()
187 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user, in SXNET_add_id_INTEGER()
235 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone) in SXNET_get_id_asc()
262 ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone) in SXNET_get_id_INTEGER()
/external/v8/src/asmjs/
Dasm-types.h141 AsmFunctionType(Zone* zone, AsmType* return_type) in AsmFunctionType()
168 explicit AsmOverloadedFunctionType(Zone* zone) : overloads_(zone) {} in AsmOverloadedFunctionType()
241 static AsmType* Function(Zone* zone, AsmType* ret) { in Function()
248 static AsmType* OverloadedFunction(Zone* zone) { in OverloadedFunction()
260 static AsmType* FFIType(Zone* zone) { in FFIType()
266 static AsmType* FunctionTableType(Zone* zone, size_t length, in FunctionTableType()
/external/icu/icu4c/source/samples/datefmt/answers/
Dmain_2.cpp26 TimeZone* zone = TimeZone::createTimeZone(id); in createZone() local
42 TimeZone *zone; in main() local
/external/icu/icu4c/source/samples/datefmt/
Dmain.cpp26 TimeZone* zone = TimeZone::createTimeZone(id); in createZone() local
42 TimeZone *zone; in main() local

12345678910>>...16