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

1234567891011>>

/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/interpreter/
H A Dbytecode-array-random-iterator.cc13 Handle<BytecodeArray> bytecode_array, Zone* zone)
14 : BytecodeArrayAccessor(bytecode_array, 0), offsets_(zone) {
12 BytecodeArrayRandomIterator( Handle<BytecodeArray> bytecode_array, Zone* zone) argument
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DDangiCalendar.java36 * The time zone used for performing astronomical computations for
86 * Construct a <code>DangiCalendar</code> with the default time zone and locale.
97 * Construct a <code>DangiCalendar</code> with the give date set in the default time zone
112 * with the given time zone with the given locale.
113 * @param zone the given time zone
120 public DangiCalendar(TimeZone zone, ULocale locale) { argument
121 super(zone, locale, DANGI_EPOCH_YEAR, KOREA_ZONE);
/external/icu/icu4c/source/samples/datefmt/answers/
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;
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...]
/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/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DDangiCalendar.java34 * The time zone used for performing astronomical computations for
84 * Construct a <code>DangiCalendar</code> with the default time zone and locale.
95 * Construct a <code>DangiCalendar</code> with the give date set in the default time zone
110 * with the given time zone with the given locale.
111 * @param zone the given time zone
118 public DangiCalendar(TimeZone zone, ULocale locale) { argument
119 super(zone, locale, DANGI_EPOCH_YEAR, KOREA_ZONE);
/external/iproute2/include/uapi/linux/tc_act/
H A Dtc_connmark.h12 __u16 zone; member in struct:tc_connmark
/external/iptables/include/linux/netfilter/
H A Dxt_CT.h16 __u16 zone; member in struct:xt_ct_target_info
27 __u16 zone; member in struct:xt_ct_target_info_v1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CT.h21 __u16 zone; member in struct:xt_ct_target_info
32 __u16 zone; member in struct:xt_ct_target_info_v1
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_connmark.h12 __u16 zone; member in struct:tc_connmark
/external/v8/src/asmjs/
H A Dswitch-logic.cc29 CaseNode* OrderCases(ZoneVector<int>* cases, Zone* zone) { argument
36 ZoneVector<size_t> table_breaks(zone);
43 ZoneVector<CaseNode*> nodes(zone);
50 nodes.push_back(new (zone) CaseNode(begin, end));
54 nodes.push_back(new (zone)
/external/v8/src/ast/
H A Dast-type-bounds.h11 #include "src/zone/zone-containers.h"
20 explicit AstTypeBounds(Zone* zone) : bounds_map_(zone) {} argument
/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 Dcontrol-flow-optimizer.h10 #include "src/zone/zone-containers.h"
25 MachineOperatorBuilder* machine, Zone* zone);
40 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
H A Descape-analysis-reducer.h25 EscapeAnalysis* escape_analysis, Zone* zone);
51 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
H A Descape-analysis.h26 EscapeAnalysis(Graph* graph, CommonOperatorBuilder* common, Zone* zone);
71 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::EscapeAnalysis
H A Dgraph-trimmer.cc13 GraphTrimmer::GraphTrimmer(Zone* zone, Graph* graph) argument
14 : graph_(graph), is_live_(graph, 2), live_(zone) {
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 Dunwinding-info-writer.h31 explicit UnwindingInfoWriter(Zone* zone) {} argument
/external/v8/src/crankshaft/
H A Dcompilation-phase.h11 #include "src/zone/zone.h"
27 Zone* zone() { return &zone_; } function in class:v8::internal::BASE_EMBEDDED
/external/v8/src/
H A Dsignature.h8 #include "src/zone/zone.h"
49 Builder(Zone* zone, size_t return_count, size_t parameter_count) argument
52 zone_(zone),
55 buffer_(zone->NewArray<T>(

Completed in 428 milliseconds

1234567891011>>