Searched refs:zone (Results 126 - 150 of 483) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.h20 string_maps_(kStringMapsSize, zone()) {
24 graph->isolate()->factory()->name##_map()), zone());
H A Dhydrogen-escape-analysis.h19 captured_(0, zone()),
23 block_states_(graph->blocks()->length(), zone()) { }
H A Dhydrogen-infer-types.cc33 worklist_.Add(phi, zone());
44 worklist_.Add(use, zone());
H A Dhydrogen-mark-deoptimize.cc28 worklist_.Add(phi, zone());
37 worklist_.Add(HPhi::cast(input), zone());
H A Dlithium-codegen.cc49 zone_(info->zone()),
181 ZoneList<Handle<Map> > maps(1, zone());
182 ZoneList<Handle<JSObject> > objects(1, zone());
183 ZoneList<Handle<Cell> > cells(1, zone());
191 cells.Add(cell, zone());
196 maps.Add(map, zone());
199 objects.Add(object, zone());
202 cells.Add(cell, zone());
H A Dtype-info.cc23 Handle<Context> native_context, Zone* zone)
24 : native_context_(native_context), zone_(zone) {
183 *left_type = *right_type = *combined_type = Type::None(zone());
199 *left_type = CompareICState::StateToType(zone(), stub.left());
200 *right_type = CompareICState::StateToType(zone(), stub.right());
201 *combined_type = CompareICState::StateToType(zone(), stub.state(), map);
204 *combined_type = stub.GetType(zone(), map);
205 *left_type = *right_type = stub.GetInputType(zone(), map);
223 *left = *right = *result = Type::None(zone());
233 *left = state.GetLeftType(zone());
21 TypeFeedbackOracle( Handle<Code> code, Handle<TypeFeedbackVector> feedback_vector, Handle<Context> native_context, Zone* zone) argument
[all...]
H A Dscopes.h9 #include "src/zone.h"
20 explicit VariableMap(Zone* zone);
32 Zone* zone() const { return zone_; } function in class:v8::internal::VariableMap
45 explicit DynamicScopePart(Zone* zone) { argument
47 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
76 AstValueFactory* value_factory, Zone* zone);
84 Zone* zone);
98 Zone* zone() const { return zone_; } function in class:v8::internal::Scope
605 AstValueFactory* value_factory, Zone* zone);
[all...]
H A Dlithium.h14 #include "src/zone-allocator.h"
132 LUnallocated* CopyUnconstrained(Zone* zone) { argument
133 LUnallocated* result = new(zone) LUnallocated(ANY);
308 static LSubKindOperand* Create(int index, Zone* zone) { argument
311 return new(zone) LSubKindOperand(index);
338 explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { } argument
340 void AddMove(LOperand* from, LOperand* to, Zone* zone) { argument
341 move_operands_.Add(LMoveOperands(from, to), zone); local
357 explicit LPointerMap(Zone* zone) argument
390 LEnvironment(Handle<JSFunction> closure, FrameType frame_type, BailoutId ast_id, int parameter_count, int argument_count, int value_count, LEnvironment* outer, HEnterInlined* entry, Zone* zone) argument
429 Zone* zone() const { return zone_; } function in class:v8::internal::FINAL
667 Zone* zone() const { return info_->zone(); } function in class:v8::internal::LChunk
740 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
[all...]
H A Djsregexp.h10 #include "src/zone-inl.h"
246 Zone* zone);
267 Zone* zone);
272 Zone* zone);
284 Zone* zone);
295 // integers (< 32). May do zone-allocation.
299 OutSet* Extend(unsigned value, Zone* zone);
307 void Set(unsigned value, Zone* zone);
312 ZoneList<OutSet*>* successors(Zone* zone) { return successors_; } argument
327 explicit DispatchTable(Zone* zone) argument
337 AddValue(int value, Zone* zone) argument
668 Zone* zone() const { return zone_; } function in class:v8::internal::QuickCheckDetails
967 EndNode(Action action, Zone* zone) argument
996 NegativeSubmatchSuccess(int stack_pointer_reg, int position_reg, int clear_capture_count, int clear_capture_start, Zone* zone) argument
1053 ChoiceNode(int expected_size, Zone* zone) argument
1133 NegativeLookaheadChoiceNode(GuardedAlternative this_must_fail, GuardedAlternative then_do_this, Zone* zone) argument
1167 LoopChoiceNode(bool body_can_be_zero_length, Zone* zone) argument
1251 BoyerMoorePositionInfo(Zone* zone) argument
1556 DispatchTableConstructor(DispatchTable* table, bool ignore_case, Zone* zone) argument
[all...]
H A Dprettyprinter.h18 explicit PrettyPrinter(Zone* zone);
30 static void PrintOut(Zone* zone, AstNode* node);
64 explicit AstPrinter(Zone* zone);
/external/kernel-headers/original/uapi/linux/
H A Dtipc.h62 static inline __u32 tipc_addr(unsigned int zone, argument
66 return (zone << 24) | (cluster << 12) | node;
/external/chromium_org/v8/src/compiler/
H A Dgeneric-algorithm.h12 #include "src/zone-containers.h"
40 static void Visit(GenericGraphBase* graph, Zone* zone, argument
47 NodeStateStack stack((ZoneDeque<NodeState>(zone)));
48 BoolVector visited(Traits::max_id(graph), false, zone); local
96 static void Visit(GenericGraphBase* graph, Zone* zone, argument
99 Visit<Visitor, Traits>(graph, zone, &array[0], &array[1], visitor);
H A Dcode-generator.h31 Isolate* isolate() const { return zone()->isolate(); }
39 Zone* zone() const { return code()->zone(); } function in class:v8::internal::compiler::FINAL
H A Dcontrol-builders.h35 Zone* zone() const { return builder_->zone(); } function in class:v8::internal::compiler::ControlBuilder
99 body_environments_(case_count, zone()) {}
H A Dgeneric-node-inl.h12 #include "src/zone.h"
20 : BaseClass(graph->zone()),
142 void GenericNode<B, S>::EnsureAppendableInputs(Zone* zone) { argument
144 void* deque_buffer = zone->New(sizeof(InputDeque));
145 InputDeque* deque = new (deque_buffer) InputDeque(zone);
155 void GenericNode<B, S>::AppendInput(Zone* zone, GenericNode<B, S>* to_append) { argument
156 EnsureAppendableInputs(zone);
157 Use* new_use = new (zone) Use;
169 void GenericNode<B, S>::InsertInput(Zone* zone, int index, argument
173 AppendInput(zone, InputA
232 Zone* zone = graph->zone(); local
[all...]
H A Dregister-allocator.h13 #include "src/zone.h"
130 void SplitAt(LifetimePosition pos, Zone* zone);
185 LiveRange(int id, Zone* zone);
196 InstructionOperand* CreateAssignedOperand(Zone* zone);
199 void set_assigned_register(int reg, Zone* zone);
200 void MakeSpilled(Zone* zone);
234 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
277 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone);
278 void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone);
280 InstructionOperand* hint, Zone* zone);
346 inline Zone* zone() { return &zone_; } function in class:v8::internal::compiler::BASE_EMBEDDED
[all...]
/external/iptables/extensions/
H A Dlibxt_CT.c19 " --zone ID Assign/Lookup connection in zone ID\n"
32 " --zone ID Assign/Lookup connection in zone ID\n"
52 {.name = "zone", .id = O_ZONE, .type = XTTYPE_UINT16,
53 .flags = XTOPT_PUT, XTOPT_POINTER(s, zone)},
67 {.name = "zone", .id = O_ZONE, .type = XTTYPE_UINT16,
68 .flags = XTOPT_PUT, XTOPT_POINTER(s, zone)},
188 if (info->zone)
189 printf("zone
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzregts.cpp132 errln("Fail: Fix test to start with non-DST zone");
269 TimeZone *zone = TimeZone::createTimeZone(ZONES[i]);
271 if (zone->getID(id) != ZONES[i])
278 ostream.writeObject(zone);
285 //logln("Zone: " + zone);
287 if (!zone.equals(frankenZone)) {
288 logln("TimeZone " + zone.getID() +
575 //errln("zone 1 = " + tz1);
576 //errln("zone 2 = " + tz2);
621 SimpleTimeZone *zone local
875 UnicodeString zone [4];// = new String[4]; local
898 logln(UnicodeString("") + i + ": " + d + " / " + zone[i]); local
1141 SimpleTimeZone* zone = NULL; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtzregts.cpp132 errln("Fail: Fix test to start with non-DST zone");
269 TimeZone *zone = TimeZone::createTimeZone(ZONES[i]);
271 if (zone->getID(id) != ZONES[i])
278 ostream.writeObject(zone);
285 //logln("Zone: " + zone);
287 if (!zone.equals(frankenZone)) {
288 logln("TimeZone " + zone.getID() +
575 //errln("zone 1 = " + tz1);
576 //errln("zone 2 = " + tz2);
621 SimpleTimeZone *zone local
875 UnicodeString zone [4];// = new String[4]; local
898 logln(UnicodeString("") + i + ": " + d + " / " + zone[i]); local
1141 SimpleTimeZone* zone = NULL; local
[all...]
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1decode.c366 T1_Decoder_Zone zone; local
394 decoder->zone = decoder->zones;
395 zone = decoder->zones;
414 zone->base = charstring_base;
415 limit = zone->limit = charstring_base + charstring_len;
416 ip = zone->cursor = zone->base;
1354 if ( zone - decoder->zones >= T1_MAX_SUBRS_CALLS )
1361 zone->cursor = ip; /* save current instruction pointer */
1363 zone
[all...]
/external/chromium_org/v8/src/ic/
H A Dic-state.h133 Type* GetLeftType(Zone* zone) const { return KindToType(left_kind_, zone); }
134 Type* GetRightType(Zone* zone) const { return KindToType(right_kind_, zone); }
135 Type* GetResultType(Zone* zone) const;
149 static Type* KindToType(Kind kind, Zone* zone);
199 static Type* StateToType(Zone* zone, State state,
/external/freetype/src/psaux/
H A Dt1decode.c366 T1_Decoder_Zone zone; local
394 decoder->zone = decoder->zones;
395 zone = decoder->zones;
414 zone->base = charstring_base;
415 limit = zone->limit = charstring_base + charstring_len;
416 ip = zone->cursor = zone->base;
1354 if ( zone - decoder->zones >= T1_MAX_SUBRS_CALLS )
1361 zone->cursor = ip; /* save current instruction pointer */
1363 zone
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dt1decode.c366 T1_Decoder_Zone zone; local
394 decoder->zone = decoder->zones;
395 zone = decoder->zones;
414 zone->base = charstring_base;
415 limit = zone->limit = charstring_base + charstring_len;
416 ip = zone->cursor = zone->base;
1354 if ( zone - decoder->zones >= T1_MAX_SUBRS_CALLS )
1361 zone->cursor = ip; /* save current instruction pointer */
1363 zone
[all...]
/external/smack/src/org/xbill/DNS/
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...]
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c239 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \
240 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \
245 trigger_memcheck_error_if_undefined((ULong)(UWord) zone); \
247 MALLOC_TRACE(#fnname "(%p, %llu)", zone, (ULong)n ); \
443 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p); \
444 void VG_REPLACE_FUNCTION_EZU(10040,soname,fnname) (void *zone, void *p) \
447 trigger_memcheck_error_if_undefined((ULong)(UWord) zone); \
448 MALLOC_TRACE(#fnname "(%p, %p)\n", zone, p ); \
574 ( void *zone, SizeT nmemb, SizeT size ); \
576 ( void *zone, Size
1038 my_malloc_size( void* zone, void* ptr ) argument
[all...]

Completed in 621 milliseconds

1234567891011>>