Searched refs:zone (Results 1 - 25 of 628) sorted by relevance

1234567891011>>

/external/v8/src/compiler/
H A Dbytecode-liveness-map.cc11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone) argument
12 : in(new (zone) BytecodeLivenessState(register_count, zone)),
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {}
15 BytecodeLivenessMap::BytecodeLivenessMap(int bytecode_size, Zone* zone) argument
18 ZoneAllocationPolicy(zone)) {}
24 Zone* zone) {
27 [&]() { return BytecodeLiveness(register_count, zone); },
28 ZoneAllocationPolicy(zone))
22 InitializeLiveness(int offset, int register_count, Zone* zone) argument
[all...]
H A Dzone-stats.cc5 #include "src/compiler/zone-stats.h"
16 for (Zone* zone : zone_stats_->zones_) {
17 size_t size = static_cast<size_t>(zone->allocation_size());
19 initial_values_.insert(std::make_pair(zone, size));
36 for (Zone* zone : zone_stats_->zones_) {
37 total += static_cast<size_t>(zone->allocation_size());
39 InitialValues::iterator it = initial_values_.find(zone);
52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { argument
56 // Drop zone from initial value map.
57 InitialValues::iterator it = initial_values_.find(zone);
88 Zone* zone = new Zone(allocator_, zone_name); local
93 ReturnZone(Zone* zone) argument
[all...]
H A Dlive-range-separator.h8 #include "src/zone/zone.h"
22 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone) argument
23 : data_(data), zone_(zone) {}
29 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
40 LiveRangeMerger(RegisterAllocationData* data, Zone* zone) argument
41 : data_(data), zone_(zone) {}
47 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
H A Dcommon-node-cache.h25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} argument
29 return int32_constants_.Find(zone(), value);
33 return int64_constants_.Find(zone(), value);
38 return float32_constants_.Find(zone(), bit_cast<int32_t>(value));
43 return float64_constants_.Find(zone(), bit_cast<int64_t>(value));
49 return pointer_constants_.Find(zone(), value);
54 return number_constants_.Find(zone(), bit_cast<int64_t>(value));
60 return relocatable_int32_constants_.Find(zone(),
65 return relocatable_int64_constants_.Find(zone(),
72 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
[all...]
H A Dload-elimination.h11 #include "src/zone/zone-handle-set.h"
30 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone) argument
31 : AdvancedReducer(editor), node_states_(zone), jsgraph_(jsgraph) {}
44 explicit AbstractChecks(Zone* zone) { argument
49 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) { argument
53 AbstractChecks const* Extend(Node* node, Zone* zone) const {
54 AbstractChecks* that = new (zone) AbstractChecks(*this);
61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) cons
76 AbstractElements(Zone* zone) argument
81 AbstractElements(Node* object, Node* index, Node* value, Zone* zone) argument
120 AbstractField(Zone* zone) argument
121 AbstractField(Node* object, Node* value, Zone* zone) argument
164 AbstractMaps(Zone* zone) argument
165 AbstractMaps(Node* object, ZoneHandleSet<Map> maps, Zone* zone) argument
246 AbstractStateForEffectNodes(Zone* zone) argument
250 Zone* zone() const { return info_for_node_.get_allocator().zone(); } function in class:v8::internal::compiler::final::final
283 Zone* zone() const { return node_states_.zone(); } function in class:v8::internal::compiler::final
[all...]
H A 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());
161 Zone* zone() { return &zone_; } function in class:v8::internal::compiler::final
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTimeZoneAdapter.java42 private TimeZone zone; field in class:TimeZoneAdapter
56 return zone;
62 public TimeZoneAdapter(TimeZone zone) { argument
63 this.zone = zone;
64 super.setID(zone.getID());
68 * TimeZone API; calls through to wrapped time zone.
73 zone.setID(ID);
77 * TimeZone API; calls through to wrapped time zone.
82 zone
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTimeZoneAdapter.java41 private TimeZone zone; field in class:TimeZoneAdapter
55 return zone;
61 public TimeZoneAdapter(TimeZone zone) { argument
62 this.zone = zone;
63 super.setID(zone.getID());
67 * TimeZone API; calls through to wrapped time zone.
72 zone.setID(ID);
76 * TimeZone API; calls through to wrapped time zone.
81 zone
[all...]
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dmalloc_zone-protected.cc15 malloc_zone_t *zone = malloc_create_zone(0, 0); local
16 zone->malloc = pwn;
17 void *v = malloc_zone_malloc(zone, 1);
H A Dmalloc_set_zone_name-mprotect.cc23 // Try to allocate a page-aligned malloc zone. Otherwise the mprotect() call
25 malloc_zone_t *zone = NULL; local
28 zone = malloc_create_zone(0, 0);
29 if (((uintptr_t)zone & (~0xfff)) == (uintptr_t)zone) {
35 printf("Warning: couldn't allocate a page-aligned zone.");
38 // malloc_set_zone_name() calls mprotect(zone, 4096, PROT_READ | PROT_WRITE),
39 // modifies the zone contents and then calls mprotect(zone, 4096, PROT_READ).
40 malloc_set_zone_name(zone, "fooba
[all...]
/external/icu/icu4c/source/i18n/
H A Dvzone.cpp41 vzone_close(VZone* zone) { argument
42 delete (VTimeZone*)zone;
46 vzone_clone(const VZone *zone) { argument
47 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone());
56 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { argument
58 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s);
67 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { argument
69 ((VTimeZone*)zone)->VTimeZone::setTZURL(s);
73 vzone_getLastModified(VZone* zone, UDate& lastModified) { argument
74 return ((VTimeZone*)zone)
78 vzone_setLastModified(VZone* zone, UDate lastModified) argument
83 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) argument
95 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode& status) argument
107 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status) argument
119 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, UErrorCode& status) argument
125 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, int32_t monthLength, UErrorCode& status) argument
132 vzone_getOffset3(VZone* zone, UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) argument
138 vzone_setRawOffset(VZone* zone, int32_t offsetMillis) argument
143 vzone_getRawOffset(VZone* zone) argument
148 vzone_useDaylightTime(VZone* zone) argument
153 vzone_inDaylightTime(VZone* zone, UDate date, UErrorCode& status) argument
158 vzone_hasSameRules(VZone* zone, const VZone* other) argument
163 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) argument
168 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) argument
173 vzone_countTransitionRules(VZone* zone, UErrorCode& status) argument
178 vzone_getStaticClassID(VZone* zone) argument
183 vzone_getDynamicClassID(VZone* zone) argument
[all...]
H A Dvzone.h41 * Creates a vzone from the given time zone ID.
42 * @param ID The time zone ID, such as America/New_York
44 * @return A vzone object initialized by the time zone ID,
67 vzone_close(VZone* zone);
71 * @param zone the original vzone
75 vzone_clone(const VZone *zone);
91 * @param zone, the vzone to use
97 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength);
101 * @param zone, the vzone to use
106 vzone_setTZURL(VZone* zone, UCha
[all...]
/external/v8/src/zone/
H A Dzone.h15 #include "src/zone/accounting-allocator.h"
53 // Seals the zone to prevent any further allocation.
78 // Report zone excess when allocation exceeds this limit.
84 // The number of bytes allocated in this zone so far.
89 // the zone.
120 void* operator new(size_t size, Zone* zone) { return zone->New(size); } argument
129 // Zone::DeleteAll() to delete all zone objects in one go.
131 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } argument
138 explicit ZoneAllocationPolicy(Zone* zone) argument
141 Zone* zone() const { return zone_; } function in class:v8::internal::final
156 ZoneList(int capacity, Zone* zone) argument
160 ZoneList(std::initializer_list<T> list, Zone* zone) argument
166 operator new(size_t size, Zone* zone) argument
169 ZoneList(const ZoneList<T>& other, Zone* zone) argument
177 Add(const T& element, Zone* zone) argument
180 AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone) argument
183 AddAll(const Vector<T>& other, Zone* zone) argument
186 InsertAt(int index, const T& element, Zone* zone) argument
190 AddBlock(T value, int count, Zone* zone) argument
194 Allocate(int length, Zone* zone) argument
197 Initialize(int capacity, Zone* zone) argument
203 operator delete(void* pointer, Zone* zone) argument
212 ZoneSplayTree(Zone* zone) argument
221 operator new(size_t size, Zone* zone) argument
224 operator delete(void* pointer, Zone* zone) argument
[all...]
/external/freetype/src/pshinter/
H A Dpshglob.c157 PSH_Blue_Zone zones, zone; local
161 /* read blue zone entry, and select target top/bottom zone */
183 zone = zones;
184 for ( ; count > 0; count--, zone++ )
186 if ( reference < zone->org_ref )
189 if ( reference == zone->org_ref )
191 FT_Int delta0 = zone->org_delta;
199 zone->org_delta = delta;
204 zone
274 PSH_Blue_Zone zone = top_table->zones; local
297 PSH_Blue_Zone zone = bot_table->zones; local
320 PSH_Blue_Zone zone; local
431 PSH_Blue_Zone zone; local
556 PSH_Blue_Zone zone; local
[all...]
/external/v8/src/ast/
H A Dmodules.h9 #include "src/zone/zone-containers.h"
22 explicit ModuleDescriptor(Zone* zone) argument
23 : module_requests_(zone),
24 special_exports_(1, zone),
25 namespace_imports_(1, zone),
26 regular_exports_(zone),
27 regular_imports_(zone) {}
38 Zone* zone);
43 const Scanner::Location loc, Zone* zone);
151 AddSpecialExport(const Entry* entry, Zone* zone) argument
167 AddNamespaceImport(const Entry* entry, Zone* zone) argument
[all...]
/external/icu/icu4c/source/samples/datefmt/answers/
H A Dmain_2.cpp20 * TimeZone::createTimeZone() will return a GMT zone object. In order
21 * to detect this error, we check the ID of the returned zone against
26 TimeZone* zone = TimeZone::createTimeZone(id); local
27 if (zone->getID(str) != id) {
28 delete zone;
31 printf(") returned zone with ID ");
36 return zone;
42 TimeZone *zone; local
66 zone = createZone("GMT"); // Create a GMT zone
[all...]
H A Dmain_3.cpp20 * TimeZone::createTimeZone() will return a GMT zone object. In order
21 * to detect this error, we check the ID of the returned zone against
26 TimeZone* zone = TimeZone::createTimeZone(id); local
27 if (zone->getID(str) != id) {
28 delete zone;
31 printf(") returned zone with ID ");
36 return zone;
42 TimeZone *zone; local
66 zone = createZone("GMT"); // Create a GMT zone
[all...]
H A Dmain_0.cpp21 * TimeZone::createTimeZone() will return a GMT zone object. In order
22 * to detect this error, we check the ID of the returned zone against
27 TimeZone* zone = TimeZone::createTimeZone(id); local
28 if (zone->getID(str) != id) {
29 delete zone;
32 printf(") returned zone with ID ");
37 return zone;
H A Dmain_1.cpp20 * TimeZone::createTimeZone() will return a GMT zone object. In order
21 * to detect this error, we check the ID of the returned zone against
26 TimeZone* zone = TimeZone::createTimeZone(id); local
27 if (zone->getID(str) != id) {
28 delete zone;
31 printf(") returned zone with ID ");
36 return zone;
/external/icu/icu4c/source/samples/datefmt/
H A Dmain.cpp20 * TimeZone::createTimeZone() will return a GMT zone object. In order
21 * to detect this error, we check the ID of the returned zone against
26 TimeZone* zone = TimeZone::createTimeZone(id); local
27 if (zone->getID(str) != id) {
28 delete zone;
31 printf(") returned zone with ID ");
36 return zone;
42 TimeZone *zone; local
66 zone = createZone("GMT"); // Create a GMT zone
[all...]
/external/jemalloc/src/
H A 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_
48 zone_size(malloc_zone_t *zone, void *ptr) argument
64 zone_malloc(malloc_zone_t *zone, size_t size) argument
71 zone_calloc(malloc_zone_t *zone, size_t num, size_t size) argument
78 zone_valloc(malloc_zone_t *zone, size_t size) argument
88 zone_free(malloc_zone_t *zone, void *ptr) argument
100 zone_realloc(malloc_zone_t *zone, void *ptr, size_t size) argument
111 zone_memalign(malloc_zone_t *zone, size_t alignment, size_t size) argument
123 zone_free_definite_size(malloc_zone_t *zone, void *ptr, size_t size) argument
139 zone_destroy(malloc_zone_t *zone) argument
148 zone_good_size(malloc_zone_t *zone, size_t size) argument
157 zone_force_lock(malloc_zone_t *zone) argument
165 zone_force_unlock(malloc_zone_t *zone) argument
262 malloc_zone_t *zone; local
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-removable-simulates.cc16 explicit State(Zone* zone) argument
17 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { }
19 State* Process(HInstruction* instr, Zone* zone) { argument
92 Zone* zone) {
94 ? pred_state->Copy(succ_block, pred_block, zone)
95 : succ_state->Merge(succ_block, pred_state, pred_block, zone);
98 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { argument
139 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { argument
140 State* copy = new(zone) Stat
88 Merge(State* succ_state, HBasicBlock* succ_block, State* pred_state, HBasicBlock* pred_block, Zone* zone) argument
149 Merge(HBasicBlock* succ_block, State* pred_state, HBasicBlock* pred_block, Zone* zone) argument
175 Effects(Zone* zone) argument
177 Process(HInstruction* instr, Zone* zone) argument
179 Union(Effects* that, Zone* zone) argument
[all...]
H A Dhydrogen-bce.h18 explicit BoundsCheckTable(Zone* zone);
20 INLINE(BoundsCheckBbData** LookupOrInsert(BoundsCheckKey* key, Zone* zone));
21 INLINE(void Insert(BoundsCheckKey* key, BoundsCheckBbData* data, Zone* zone));
32 : HPhase("H_Bounds checks elimination", graph), table_(zone()) { }
/external/iproute2/include/uapi/linux/tc_act/
H A Dtc_connmark.h12 __u16 zone; member in struct:tc_connmark
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_connmark.h12 __u16 zone; member in struct:tc_connmark

Completed in 551 milliseconds

1234567891011>>