Searched defs:zone (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/compiler-rt/test/asan/TestCases/Darwin/
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...]
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);
/external/v8/src/compiler/
H A Dgraph.cc21 Graph::Graph(Zone* zone) : GenericGraph<Node>(zone), decorators_(zone) {} argument
H A Dvalue-numbering-reducer.h16 explicit ValueNumberingReducer(Zone* zone);
22 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::FINAL
H A Dnode-aux-data-inl.h17 NodeAuxData<T>::NodeAuxData(Zone* zone) argument
18 : aux_data_(zone) {}
H A Dpipeline.h48 Zone* zone() { return info_->zone(); } function in class:v8::internal::compiler::Pipeline
H A Dsimplified-lowering.h46 Zone* zone() { return jsgraph_->zone(); } function in class:v8::internal::compiler::SimplifiedLowering
H A Dcommon-node-cache.h18 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} argument
38 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::FINAL
H A Dgeneric-graph.h19 explicit GenericGraphBase(Zone* zone) : zone_(zone), next_node_id_(0) {} argument
21 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::GenericGraphBase
34 explicit GenericGraph(Zone* zone) argument
35 : GenericGraphBase(zone), start_(NULL), end_(NULL) {}
/external/icu/icu4c/source/samples/datefmt/answers/
H A Dmain_0.cpp17 * TimeZone::createTimeZone() will return a GMT zone object. In order
18 * to detect this error, we check the ID of the returned zone against
23 TimeZone* zone = TimeZone::createTimeZone(id); local
24 if (zone->getID(str) != id) {
25 delete zone;
28 printf(") returned zone with ID ");
33 return zone;
H A Dmain_1.cpp16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
H A Dmain_2.cpp16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
[all...]
H A Dmain_3.cpp16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
[all...]
/external/icu/icu4c/source/samples/datefmt/
H A Dmain.cpp16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DDangiCalendar.java32 * The time zone used for performing astronomical computations for
82 * Construct a <code>DangiCalendar</code> with the default time zone and locale.
93 * Construct a <code>DangiCalendar</code> with the give date set in the default time zone
108 * with the given time zone with the given locale.
109 * @param zone the given time zone
116 public DangiCalendar(TimeZone zone, ULocale locale) { argument
117 super(zone, locale, DANGI_EPOCH_YEAR, KOREA_ZONE);
/external/iptables/include/linux/netfilter/
H A Dxt_CT.h13 __u16 zone; member in struct:xt_ct_target_info
24 __u16 zone; member in struct:xt_ct_target_info_v1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CT.h14 __u16 zone; member in struct:xt_ct_target_info
25 __u16 zone; member in struct:xt_ct_target_info_v1
/external/v8/src/
H A Dfunc-name-inferrer.cc16 Zone* zone)
18 entries_stack_(10, zone),
19 names_stack_(5, zone),
20 funcs_to_infer_(4, zone),
21 zone_(zone) {
30 names_stack_.Add(Name(name, kEnclosingConstructorName), zone());
37 names_stack_.Add(Name(name, kLiteralName), zone());
44 names_stack_.Add(Name(name, kVariableName), zone());
15 FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone) argument
H A Dtype-info.h11 #include "src/zone-inl.h"
24 Handle<Context> native_context, Zone* zone);
91 Zone* zone() const { return zone_; } function in class:v8::internal::TypeFeedbackOracle
H A Dzone-containers.h12 #include "src/zone-allocator.h"
18 // that uses a zone allocator.
23 explicit ZoneVector(Zone* zone) argument
24 : std::vector<T, zone_allocator<T> >(zone_allocator<T>(zone)) {}
28 ZoneVector(int size, T def, Zone* zone) argument
29 : std::vector<T, zone_allocator<T> >(size, def, zone_allocator<T>(zone)) {
34 // that uses a zone allocator.
38 explicit ZoneDeque(Zone* zone) argument
39 : std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone)) {}
43 // that uses a zone allocato
48 ZoneQueue(Zone* zone) argument
[all...]
H A Dzone-inl.h8 #include "src/zone.h"
41 // in the destructor. For a zone-allocated tree, nodes will be
47 void* ZoneObject::operator new(size_t size, Zone* zone) { argument
48 return zone->New(static_cast<int>(size));
58 void* ZoneList<T>::operator new(size_t size, Zone* zone) { argument
59 return zone->New(static_cast<int>(size));
64 void* ZoneSplayTree<T>::operator new(size_t size, Zone* zone) { argument
65 return zone->New(static_cast<int>(size));
/external/v8/src/test/
H A Dtest-utils.h10 #include "src/zone.h"
75 Zone* zone() { return &zone_; } function in class:v8::internal::TestWithZone
/external/v8/test/cctest/compiler/
H A Dgraph-builder-tester.cc14 MachineCallHelper::MachineCallHelper(Zone* zone, MachineSignature* machine_sig) argument
15 : CallHelper(zone->isolate(), machine_sig),
26 parameters_ = graph_->zone()->NewArray<Node*>(param_count);
37 Zone* zone = graph_->zone(); local
38 CompilationInfo info(zone->isolate(), zone);
40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_));
/external/icu/icu4c/source/i18n/
H A Dudateintervalformat.cpp47 TimeZone *zone = TimeZone::createTimeZone(UnicodeString((UBool)(tzIDLength == -1), tzID, tzIDLength)); local
48 if(zone == NULL) {
52 formatter->adoptTimeZone(zone);
/external/jetty/src/java/org/eclipse/jetty/util/ajax/
H A DJSONDateConvertor.java58 public JSONDateConvertor(String format,TimeZone zone,boolean fromJSON) argument
61 _dateCache.setTimeZone(zone);
64 _format.setTimeZone(zone);
67 public JSONDateConvertor(String format, TimeZone zone, boolean fromJSON, Locale locale) argument
70 _dateCache.setTimeZone(zone);
73 _format.setTimeZone(zone);

Completed in 458 milliseconds

12345678910