Home
last modified time | relevance | path

Searched refs:zone (Results 1 – 25 of 1151) sorted by relevance

12345678910>>...47

/external/freetype/src/pshinter/
Dpshglob.c157 PSH_Blue_Zone zones, zone; in psh_blues_set_zones_0() local
183 zone = zones; in psh_blues_set_zones_0()
184 for ( ; count > 0; count--, zone++ ) in psh_blues_set_zones_0()
186 if ( reference < zone->org_ref ) in psh_blues_set_zones_0()
189 if ( reference == zone->org_ref ) in psh_blues_set_zones_0()
191 FT_Int delta0 = zone->org_delta; in psh_blues_set_zones_0()
199 zone->org_delta = delta; in psh_blues_set_zones_0()
204 zone->org_delta = delta; in psh_blues_set_zones_0()
211 zone[count] = zone[count-1]; in psh_blues_set_zones_0()
213 zone->org_ref = reference; in psh_blues_set_zones_0()
[all …]
/external/icu/icu4c/source/i18n/
Dvzone.cpp41 vzone_close(VZone* zone) { in vzone_close() argument
42 delete (VTimeZone*)zone; in vzone_close()
46 vzone_clone(const VZone *zone) { in vzone_clone() argument
47 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); in vzone_clone()
56 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { in vzone_getTZURL() argument
58 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s); in vzone_getTZURL()
67 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { in vzone_setTZURL() argument
69 ((VTimeZone*)zone)->VTimeZone::setTZURL(s); in vzone_setTZURL()
73 vzone_getLastModified(VZone* zone, UDate& lastModified) { in vzone_getLastModified() argument
74 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified); in vzone_getLastModified()
[all …]
Dvzone.h67 vzone_close(VZone* zone);
75 vzone_clone(const VZone *zone);
97 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength);
106 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength);
118 vzone_getLastModified(VZone* zone, UDate& lastModified);
126 vzone_setLastModified(VZone* zone, UDate lastModified);
136 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status);
148 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode&…
164 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& sta…
191 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
[all …]
/external/v8/src/zone/
Dzone.h120 void* operator new(size_t size, Zone* zone) { return zone->New(size); } in new() argument
131 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete() argument
138 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) {} in ZoneAllocationPolicy() argument
139 void* New(size_t size) { return zone()->New(size); } in New()
141 Zone* zone() const { return zone_; } in zone() function
156 ZoneList(int capacity, Zone* zone) in ZoneList() argument
157 : List<T, ZoneAllocationPolicy>(capacity, ZoneAllocationPolicy(zone)) {} in ZoneList()
160 ZoneList(std::initializer_list<T> list, Zone* zone) in ZoneList() argument
162 ZoneAllocationPolicy(zone)) { in ZoneList()
163 for (auto& i : list) Add(i, zone); in ZoneList()
[all …]
Dzone-containers.h27 explicit ZoneVector(Zone* zone) in ZoneVector() argument
28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {} in ZoneVector()
32 ZoneVector(size_t size, Zone* zone) in ZoneVector() argument
33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {} in ZoneVector()
37 ZoneVector(size_t size, T def, Zone* zone) in ZoneVector() argument
38 : std::vector<T, zone_allocator<T>>(size, def, zone_allocator<T>(zone)) {} in ZoneVector()
43 ZoneVector(InputIt first, InputIt last, Zone* zone) in ZoneVector() argument
45 zone_allocator<T>(zone)) {} in ZoneVector()
54 explicit ZoneDeque(Zone* zone) in ZoneDeque() argument
55 : std::deque<T, zone_allocator<T>>(zone_allocator<T>(zone)) {} in ZoneDeque()
[all …]
/external/v8/src/compiler/
Dload-elimination.h30 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone) in NON_EXPORTED_BASE()
31 : AdvancedReducer(editor), node_states_(zone), jsgraph_(jsgraph) {} in NON_EXPORTED_BASE()
44 explicit AbstractChecks(Zone* zone) { in NON_EXPORTED_BASE()
49 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) { in NON_EXPORTED_BASE()
53 AbstractChecks const* Extend(Node* node, Zone* zone) const { in NON_EXPORTED_BASE()
54 AbstractChecks* that = new (zone) AbstractChecks(*this); in NON_EXPORTED_BASE()
61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE()
76 explicit AbstractElements(Zone* zone) { in NON_EXPORTED_BASE()
81 AbstractElements(Node* object, Node* index, Node* value, Zone* zone) in NON_EXPORTED_BASE()
82 : AbstractElements(zone) { in NON_EXPORTED_BASE()
[all …]
Dtype-cache.h30 Type::Union(kUint8, Type::MinusZeroOrNaN(), zone());
39 Type::Union(Type::SignedSmall(), Type::Hole(), zone());
46 Type::Union(kSingletonZero, Type::Undefined(), zone());
48 Type::Union(kSingletonTen, Type::Undefined(), zone());
51 Type::Union(CreateRange(-1.0, 1.0), Type::MinusZero(), zone()),
52 Type::NaN(), zone());
54 Type* const kZeroOrOneOrNaN = Type::Union(kZeroOrOne, Type::NaN(), zone());
58 Type::Union(kSingletonZero, Type::MinusZeroOrNaN(), zone());
61 Type::Union(kInteger, Type::MinusZero(), zone());
63 Type::Union(kIntegerOrMinusZero, Type::NaN(), zone());
[all …]
Dzone-stats.cc16 for (Zone* zone : zone_stats_->zones_) { in StatsScope()
17 size_t size = static_cast<size_t>(zone->allocation_size()); in StatsScope()
19 initial_values_.insert(std::make_pair(zone, size)); in StatsScope()
36 for (Zone* zone : zone_stats_->zones_) { in GetCurrentAllocatedBytes()
37 total += static_cast<size_t>(zone->allocation_size()); in GetCurrentAllocatedBytes()
39 InitialValues::iterator it = initial_values_.find(zone); in GetCurrentAllocatedBytes()
52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned() argument
57 InitialValues::iterator it = initial_values_.find(zone); in ZoneReturned()
77 for (Zone* zone : zones_) { in GetCurrentAllocatedBytes()
78 total += static_cast<size_t>(zone->allocation_size()); in GetCurrentAllocatedBytes()
[all …]
Dload-elimination.cc172 AbstractChecks const* that, Zone* zone) const { in Merge()
174 AbstractChecks* copy = new (zone) AbstractChecks(zone); in Merge()
211 Zone* zone) const { in Kill()
215 AbstractElements* that = new (zone) AbstractElements(zone); in Kill()
267 Zone* zone) const { in Merge()
269 AbstractElements* copy = new (zone) AbstractElements(zone); in Merge()
304 Node* object, Zone* zone) const { in Kill()
307 AbstractField* that = new (zone) AbstractField(zone); in Kill()
337 Node* object, Zone* zone) const { in Kill()
340 AbstractMaps* that = new (zone) AbstractMaps(zone); in Kill()
[all …]
Doperation-typer.cc19 OperationTyper::OperationTyper(Isolate* isolate, Zone* zone) in OperationTyper() argument
20 : zone_(zone), cache_(TypeCache::Get()) { in OperationTyper()
22 infinity_ = Type::NewConstant(factory->infinity_value(), zone); in OperationTyper()
23 minus_infinity_ = Type::NewConstant(factory->minus_infinity_value(), zone); in OperationTyper()
27 singleton_false_ = Type::HeapConstant(factory->false_value(), zone); in OperationTyper()
28 singleton_true_ = Type::HeapConstant(factory->true_value(), zone); in OperationTyper()
29 singleton_the_hole_ = Type::HeapConstant(factory->the_hole_value(), zone); in OperationTyper()
30 signed32ish_ = Type::Union(Type::Signed32(), truncating_to_zero, zone); in OperationTyper()
31 unsigned32ish_ = Type::Union(Type::Unsigned32(), truncating_to_zero, zone); in OperationTyper()
35 return Type::Union(left, right, zone()); in Merge()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneAdapter.java41 private TimeZone zone; field in TimeZoneAdapter
55 return zone; in unwrap()
61 public TimeZoneAdapter(TimeZone zone) { in TimeZoneAdapter() argument
62 this.zone = zone; in TimeZoneAdapter()
63 super.setID(zone.getID()); in TimeZoneAdapter()
72 zone.setID(ID); in setID()
81 zone.hasSameRules(((TimeZoneAdapter)other).zone); in hasSameRules()
90 return zone.getOffset(era, year, month, day, dayOfWeek, millis); in getOffset()
98 return zone.getRawOffset(); in getRawOffset()
106 zone.setRawOffset(offsetMillis); in setRawOffset()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneAdapter.java42 private TimeZone zone; field in TimeZoneAdapter
56 return zone; in unwrap()
62 public TimeZoneAdapter(TimeZone zone) { in TimeZoneAdapter() argument
63 this.zone = zone; in TimeZoneAdapter()
64 super.setID(zone.getID()); in TimeZoneAdapter()
73 zone.setID(ID); in setID()
82 zone.hasSameRules(((TimeZoneAdapter)other).zone); in hasSameRules()
91 return zone.getOffset(era, year, month, day, dayOfWeek, millis); in getOffset()
99 return zone.getRawOffset(); in getRawOffset()
107 zone.setRawOffset(offsetMillis); in setRawOffset()
[all …]
/external/freetype/src/psaux/
Dpsblues.c192 blues->zone[blues->count].csBottomEdge = in cf2_blues_init()
194 blues->zone[blues->count].csTopEdge = in cf2_blues_init()
197 zoneHeight = SUB_INT32( blues->zone[blues->count].csTopEdge, in cf2_blues_init()
198 blues->zone[blues->count].csBottomEdge ); in cf2_blues_init()
216 blues->zone[blues->count].csTopEdge += 2 * font->darkenY; in cf2_blues_init()
217 blues->zone[blues->count].csBottomEdge += 2 * font->darkenY; in cf2_blues_init()
223 blues->zone[blues->count].bottomZone = in cf2_blues_init()
225 blues->zone[blues->count].csFlatEdge = in cf2_blues_init()
226 blues->zone[blues->count].csTopEdge; in cf2_blues_init()
230 blues->zone[blues->count].bottomZone = in cf2_blues_init()
[all …]
/external/jemalloc/src/
Dzone.c23 static size_t zone_size(malloc_zone_t *zone, void *ptr);
24 static void *zone_malloc(malloc_zone_t *zone, size_t size);
25 static void *zone_calloc(malloc_zone_t *zone, size_t num, size_t size);
26 static void *zone_valloc(malloc_zone_t *zone, size_t size);
27 static void zone_free(malloc_zone_t *zone, void *ptr);
28 static void *zone_realloc(malloc_zone_t *zone, void *ptr, size_t size);
30 static void *zone_memalign(malloc_zone_t *zone, size_t alignment,
34 static void zone_free_definite_size(malloc_zone_t *zone, void *ptr,
37 static void *zone_destroy(malloc_zone_t *zone);
38 static size_t zone_good_size(malloc_zone_t *zone, size_t size);
[all …]
/external/v8/src/regexp/
Dregexp-parser.cc23 JSRegExp::Flags flags, Isolate* isolate, Zone* zone) in RegExpParser() argument
25 zone_(zone), in RegExpParser()
81 } else if (zone()->excess_allocation()) { in Advance()
180 nullptr, ignore_case(), unicode(), zone()); in ParseDisjunction()
220 body = new (zone()) RegExpGroup(body); in ParseDisjunction()
225 body = new (zone()) RegExpLookaround( in ParseDisjunction()
252 new (zone()) RegExpAssertion(RegExpAssertion::START_OF_LINE)); in ParseDisjunction()
255 new (zone()) RegExpAssertion(RegExpAssertion::START_OF_INPUT)); in ParseDisjunction()
265 builder->AddAssertion(new (zone()) RegExpAssertion(assertion_type)); in ParseDisjunction()
272 new (zone()) ZoneList<CharacterRange>(2, zone()); in ParseDisjunction()
[all …]
/external/v8/src/
Deffects.h38 static Effect Unknown(Zone* zone) { in Unknown()
42 static Effect Forget(Zone* zone) { in Forget()
47 static Effect Seq(Effect e1, Effect e2, Zone* zone) { in Seq()
49 return Effect(AstBounds::Either(e1.bounds, e2.bounds, zone), e1.modality); in Seq()
53 static Effect Alt(Effect e1, Effect e2, Zone* zone) { in Alt()
54 return Effect(AstBounds::Either(e1.bounds, e2.bounds, zone), in Alt()
79 explicit EffectsMixin(Zone* zone) : Base(zone) {} in EffectsMixin() argument
84 ? locator.value() : Effect::Unknown(Base::zone()); in Lookup()
97 effect = Effect::Seq(locator.value(), effect, Base::zone()); in Seq()
111 effect = Effect::Alt(locator.value(), effect, Base::zone()); in Alt()
[all …]
/external/v8/src/ast/
Dast-types.h404 static AstType* New(i::Handle<i::Map> map, Zone* zone) { in New() argument
405 return AsType(new (zone->New(sizeof(AstClassType))) in New()
434 static AstType* New(i::Handle<i::Object> value, Zone* zone) { in New() argument
436 return AsType(new (zone->New(sizeof(AstConstantType))) in New()
482 AstBitsetType::bitset representation, Zone* zone) { in New() argument
483 return New(Limits(min, max), representation, zone); in New()
491 Zone* zone) { in New() argument
498 return AsType(new (zone->New(sizeof(AstRangeType))) in New()
526 static AstType* New(AstType* outer, Zone* zone) { in New() argument
527 return AsType(new (zone->New(sizeof(AstContextType))) in New()
[all …]
Dmodules.h22 explicit ModuleDescriptor(Zone* zone) in ModuleDescriptor() argument
23 : module_requests_(zone), in ModuleDescriptor()
24 special_exports_(1, zone), in ModuleDescriptor()
25 namespace_imports_(1, zone), in ModuleDescriptor()
26 regular_exports_(zone), in ModuleDescriptor()
27 regular_imports_(zone) {} in ModuleDescriptor()
38 Zone* zone);
43 const Scanner::Location loc, Zone* zone);
57 const Scanner::Location loc, Zone* zone);
64 Zone* zone);
[all …]
/external/v8/src/parsing/
Dparser.cc186 body = new (zone()) ZoneList<Statement*>(call_super ? 2 : 1, zone()); in DefaultConstructor()
198 new (zone()) ZoneList<Expression*>(1, zone()); in DefaultConstructor()
202 args->Add(spread_args, zone()); in DefaultConstructor()
205 body->Add(factory()->NewReturnStatement(call, pos), zone()); in DefaultConstructor()
365 auto args = new (zone()) ZoneList<Expression*>(2, zone()); in BuildIteratorResult()
366 args->Add(value, zone()); in BuildIteratorResult()
367 args->Add(factory()->NewBooleanLiteral(done, pos), zone()); in BuildIteratorResult()
376 ZoneList<Expression*>* args = new (zone()) ZoneList<Expression*>(2, zone()); in NewThrowError()
377 args->Add(factory()->NewSmiLiteral(message, pos), zone()); in NewThrowError()
378 args->Add(factory()->NewStringLiteral(arg, pos), zone()); in NewThrowError()
[all …]
/external/zlib/src/test/
Dinfcover.c75 struct mem_zone *zone = mem; in mem_alloc() local
79 if (zone == NULL || (zone->limit && zone->total + len > zone->limit)) in mem_alloc()
99 item->next = zone->first; in mem_alloc()
100 zone->first = item; in mem_alloc()
103 zone->total += item->size; in mem_alloc()
104 if (zone->total > zone->highwater) in mem_alloc()
105 zone->highwater = zone->total; in mem_alloc()
115 struct mem_zone *zone = mem; in mem_free() local
118 if (zone == NULL) { in mem_free()
125 next = zone->first; in mem_free()
[all …]
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc313 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
318 return new (zone()) in ToUnallocated()
345 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
350 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseRegisterAndClobber()
356 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
379 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
394 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
401 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
408 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
453 instr->set_pointer_map(new(zone()) LPointerMap(zone())); in AssignPointerMap()
[all …]
/external/v8/src/crankshaft/
Dhydrogen-removable-simulates.cc16 explicit State(Zone* zone) in State() argument
17 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { } in State()
19 State* Process(HInstruction* instr, Zone* zone) { in Process() argument
92 Zone* zone) { in Merge() argument
94 ? pred_state->Copy(succ_block, pred_block, zone) in Merge()
95 : succ_state->Merge(succ_block, pred_state, pred_block, zone); in Merge()
98 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { in Finish() argument
139 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { in Copy() argument
140 State* copy = new(zone) State(*this); in Copy()
152 Zone* zone) { in Merge() argument
[all …]
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc360 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
363 return LStackSlot::Create(index, zone()); in GetNextSpillSlot()
370 chunk_ = new (zone()) LPlatformChunk(info(), graph()); in Build()
395 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
400 return new (zone()) in ToUnallocated()
417 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
422 return Use(value, new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
428 return Use(value, new (zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
433 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE)); in Use()
438 return Use(value, new (zone()) in UseAtStart()
[all …]
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc347 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
350 return LStackSlot::Create(index, zone()); in GetNextSpillSlot()
357 chunk_ = new(zone()) LPlatformChunk(info(), graph()); in Build()
382 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
387 return new (zone()) in ToUnallocated()
403 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
409 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
415 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
420 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
425 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
[all …]
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc167 return new(zone()) LDebugBreak(); in DoDebugBreak()
354 return LDoubleStackSlot::Create(index, zone()); in GetNextSpillSlot()
357 return LStackSlot::Create(index, zone()); in GetNextSpillSlot()
364 chunk_ = new(zone()) LPlatformChunk(info(), graph()); in Build()
389 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
394 return new (zone()) in ToUnallocated()
410 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
416 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
422 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
427 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
[all …]

12345678910>>...47