Home
last modified time | relevance | path

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

12345678910>>...44

/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/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/jemalloc_new/src/
Dzone.c75 extern void malloc_zone_register(malloc_zone_t *zone);
77 extern void malloc_zone_unregister(malloc_zone_t *zone);
97 static size_t zone_size(malloc_zone_t *zone, const void *ptr);
98 static void *zone_malloc(malloc_zone_t *zone, size_t size);
99 static void *zone_calloc(malloc_zone_t *zone, size_t num, size_t size);
100 static void *zone_valloc(malloc_zone_t *zone, size_t size);
101 static void zone_free(malloc_zone_t *zone, void *ptr);
102 static void *zone_realloc(malloc_zone_t *zone, void *ptr, size_t size);
103 static void *zone_memalign(malloc_zone_t *zone, size_t alignment,
105 static void zone_free_definite_size(malloc_zone_t *zone, void *ptr,
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneAdapter.java43 private TimeZone zone; field in TimeZoneAdapter
58 return zone; in unwrap()
64 public TimeZoneAdapter(TimeZone zone) { in TimeZoneAdapter() argument
65 this.zone = zone; in TimeZoneAdapter()
66 super.setID(zone.getID()); in TimeZoneAdapter()
75 zone.setID(ID); in setID()
84 zone.hasSameRules(((TimeZoneAdapter)other).zone); in hasSameRules()
93 return zone.getOffset(era, year, month, day, dayOfWeek, millis); in getOffset()
101 return zone.getRawOffset(); in getRawOffset()
109 zone.setRawOffset(offsetMillis); in setRawOffset()
[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/libicu/cts_headers/
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/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 …]
Dt1decode.c448 T1_Decoder_Zone zone; in t1_decoder_parse_charstrings() local
476 decoder->zone = decoder->zones; in t1_decoder_parse_charstrings()
477 zone = decoder->zones; in t1_decoder_parse_charstrings()
491 zone->base = charstring_base; in t1_decoder_parse_charstrings()
492 limit = zone->limit = charstring_base + charstring_len; in t1_decoder_parse_charstrings()
493 ip = zone->cursor = zone->base; in t1_decoder_parse_charstrings()
1465 if ( zone - decoder->zones >= T1_MAX_SUBRS_CALLS ) in t1_decoder_parse_charstrings()
1472 zone->cursor = ip; /* save current instruction pointer */ in t1_decoder_parse_charstrings()
1474 zone++; in t1_decoder_parse_charstrings()
1479 zone->base = decoder->subrs[idx]; in t1_decoder_parse_charstrings()
[all …]
/external/zlib/contrib/tests/
Dinfcover.cc90 struct mem_zone *zone = static_cast<struct mem_zone *>(mem); in mem_alloc() local
94 if (zone == NULL || (zone->limit && zone->total + len > zone->limit)) in mem_alloc()
114 item->next = zone->first; in mem_alloc()
115 zone->first = item; in mem_alloc()
118 zone->total += item->size; in mem_alloc()
119 if (zone->total > zone->highwater) in mem_alloc()
120 zone->highwater = zone->total; in mem_alloc()
130 struct mem_zone *zone = static_cast<struct mem_zone *>(mem); in mem_free() local
133 if (zone == NULL) { in mem_free()
140 next = zone->first; in mem_free()
[all …]
/external/rust/crates/libz-sys/src/zlib/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/cldr/tools/java/org/unicode/cldr/util/data/
DlocaleReplacements.txt110 zone deprecated Africa/Timbuktu Africa/Bamako
111 zone deprecated Atlantic/Jan_Mayen Europe/Oslo
112 zone deprecated CST6CDT America/Chicago
113 zone deprecated EST America/Indianapolis
114 zone deprecated EST5EDT America/New_York
115 zone deprecated Europe/Belfast Europe/London
116 zone deprecated HST Pacific/Honolulu
117 zone deprecated MST America/Phoenix
118 zone deprecated MST7MDT America/Denver
119 zone deprecated Pacific/Yap Pacific/Truk
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/
Dinfcover.c80 struct mem_zone *zone = mem; in mem_alloc() local
84 if (zone == NULL || (zone->limit && zone->total + len > zone->limit)) in mem_alloc()
104 item->next = zone->first; in mem_alloc()
105 zone->first = item; in mem_alloc()
108 zone->total += item->size; in mem_alloc()
109 if (zone->total > zone->highwater) in mem_alloc()
110 zone->highwater = zone->total; in mem_alloc()
119 struct mem_zone *zone = mem; in mem_free() local
122 if (zone == NULL) { in mem_free()
129 next = zone->first; in mem_free()
[all …]
/external/libchrome/base/third_party/nspr/
Dprtime.cc465 TIME_TOKEN zone = TT_UNKNOWN; in PR_ParseTimeString() local
497 else if (zone == TT_UNKNOWN && in PR_ParseTimeString()
500 zone = TT_AST; in PR_ParseTimeString()
507 if (zone == TT_UNKNOWN && in PR_ParseTimeString()
510 zone = TT_BST; in PR_ParseTimeString()
513 if (zone == TT_UNKNOWN && in PR_ParseTimeString()
516 zone = TT_CDT; in PR_ParseTimeString()
517 else if (zone == TT_UNKNOWN && in PR_ParseTimeString()
520 zone = TT_CST; in PR_ParseTimeString()
529 if (zone == TT_UNKNOWN && in PR_ParseTimeString()
[all …]
/external/grpc-grpc/src/core/lib/gpr/
Darena.cc79 typedef struct zone { struct
80 zone* next; argument
81 } zone; typedef
88 zone initial_zone;
89 zone* last_zone;
112 zone* z = arena->initial_zone.next; in gpr_arena_destroy()
115 zone* next_z = z->next; in gpr_arena_destroy()
135 zone* z = static_cast<zone*>( in gpr_arena_alloc()
136 zalloc_aligned(GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(zone)) + size)); in gpr_arena_alloc()
141 GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(zone)); in gpr_arena_alloc()
/external/cldr/tools/java/org/unicode/cldr/test/
DTestMetazones.java161 String zone = parts.getAttributeValue(-2, "type"); in fillMetazoneData() local
163 mzoneToData.put(mzone, new DateRangeAndZone(zone, range)); in fillMetazoneData()
164 zoneToDateRanges.put(zone, new DateRangeAndZone(mzone, range)); in fillMetazoneData()
202 OlsonTimeZone timezone1 = new OlsonTimeZone(value.zone); in checkMetazoneConsistency()
203 OlsonTimeZone timezone2 = new OlsonTimeZone(value2.zone); in checkMetazoneConsistency()
207 errln("Zones " + showZone(value.zone) + " and " + showZone(value2.zone) in checkMetazoneConsistency()
217 private String showZone(String zone) { in showZone() argument
219 return zone + " [" + supplementalData.getZone_territory(zone) + "]"; in showZone()
365 for (String zone : zoneToDateRanges.keySet()) { in checkGapsAndOverlaps()
367 errorLog.println(zone); in checkGapsAndOverlaps()
[all …]
/external/compiler-rt/test/tsan/Darwin/
Dmalloc_size.mm1 // Test that malloc_zone_from_ptr returns a valid zone for a 0-sized allocation.
16 fprintf(stderr, "zone = %p\n", z);
18 fprintf(stderr, "zone = no zone\n");
31 // CHECK: zone = 0x{{[0-9a-f]+}}
38 // CHECK: zone = 0x{{[0-9a-f]+}}
45 // CHECK: zone = no zone
56 // CHECK: zone = no zone
/external/llvm-project/compiler-rt/test/tsan/Darwin/
Dmalloc_size.mm1 // Test that malloc_zone_from_ptr returns a valid zone for a 0-sized allocation.
16 fprintf(stderr, "zone = %p\n", z);
18 fprintf(stderr, "zone = no zone\n");
31 // CHECK: zone = 0x{{[0-9a-f]+}}
38 // CHECK: zone = 0x{{[0-9a-f]+}}
45 // CHECK: zone = no zone
56 // CHECK: zone = no zone
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc9 // This file contains Mac-specific malloc interceptors and a custom zone
40 // zone enumeration.
64 // Prevent the client app from overwriting the zone contents.
65 // Library functions that need to modify the zone will set PROT_WRITE on it.
68 // We're explicitly *NOT* registering the zone.
72 INTERCEPTOR(void, malloc_destroy_zone, malloc_zone_t *zone) {
75 // don't to unregister. Just un-mprotect and free() the zone.
78 mprotect(zone, allocated_size, PROT_READ | PROT_WRITE);
79 if (zone->zone_name) {
80 COMMON_MALLOC_FREE((void *)zone->zone_name);
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/
Dv3_sxnet.c97 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
121 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
157 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen) in SXNET_add_id_asc() argument
160 if (!(izone = s2i_ASN1_INTEGER(NULL, zone))) { in SXNET_add_id_asc()
187 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user, in SXNET_add_id_INTEGER() argument
192 if (!psx || !zone || !user) { in SXNET_add_id_INTEGER()
210 if (SXNET_get_id_INTEGER(sx, zone)) { in SXNET_add_id_INTEGER()
224 id->zone = zone; in SXNET_add_id_INTEGER()
235 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone) in SXNET_get_id_asc() argument
239 if (!(izone = s2i_ASN1_INTEGER(NULL, zone))) { in SXNET_get_id_asc()
[all …]
/external/iptables/extensions/
Dlibxt_CT.man23 \fB\-\-zone-orig\fP {\fIid\fP|\fBmark\fP}
24 For traffic coming from ORIGINAL direction, assign this packet to zone
25 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
26 instead of \fIid\fP, the zone is derived from the packet nfmark.
28 \fB\-\-zone-reply\fP {\fIid\fP|\fBmark\fP}
29 For traffic coming from REPLY direction, assign this packet to zone
30 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
31 instead of \fIid\fP, the zone is derived from the packet nfmark.
33 \fB\-\-zone\fP {\fIid\fP|\fBmark\fP}
34 Assign this packet to zone \fIid\fP and only have lookups done in that zone.
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc10 // This file contains Mac-specific malloc interceptors and a custom zone
44 // Prevent the client app from overwriting the zone contents.
45 // Library functions that need to modify the zone will set PROT_WRITE on it.
79 INTERCEPTOR(void, malloc_set_zone_name, malloc_zone_t *zone, const char *name) {
86 if (name && zone->introspect == sanitizer_zone.introspect) {
92 // since that appropriately changes VM region protections on the zone.
93 REAL(malloc_set_zone_name)(zone, name);
148 size_t __sanitizer_mz_size(malloc_zone_t* zone, const void* ptr) {
155 void *__sanitizer_mz_malloc(malloc_zone_t *zone, uptr size) {
163 void *__sanitizer_mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) {
[all …]
/external/tensorflow/tensorflow/core/platform/cloud/
Dcompute_engine_zone_provider_test.cc42 string zone; in TEST_F() local
44 TF_EXPECT_OK(provider.GetZone(&zone)); in TEST_F()
45 EXPECT_EQ("us-west1-b", zone); in TEST_F()
47 TF_EXPECT_OK(provider.GetZone(&zone)); in TEST_F()
63 string zone; in TEST_F() local
65 TF_EXPECT_OK(provider.GetZone(&zone)); in TEST_F()
66 EXPECT_EQ("", zone); in TEST_F()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestMetazoneTransitions.java151 TimeZone zone = TimeZone.getTimeZone(tzid); in ZoneTransitions() local
153 zone, date)) { in ZoneTransitions()
154 addIfDifferent(zone, date, allowDaylight); in ZoneTransitions()
158 private void addIfDifferent(TimeZone zone, long date, in addIfDifferent() argument
160 int offset = zone.getOffset(date); in addIfDifferent()
162 int delta = getDSTSavings(zone, date); in addIfDifferent()
262 for (String zone : supplementalData.getCanonicalZones()) { in run()
263 ZoneTransitions transitions = new ZoneTransitions(zone, in run()
265 partition.put(transitions, zone); in run()
266 transitions = new ZoneTransitions(zone, in run()
[all …]
/external/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_lookup.cc123 const char* zone = ":localtime"; in local_time_zone() local
127 zone = sysprop; in local_time_zone()
138 zone = &buffer[0]; in local_time_zone()
151 if (tz_env) zone = tz_env; in local_time_zone()
154 if (*zone == ':') ++zone; in local_time_zone()
159 if (strcmp(zone, "localtime") == 0) { in local_time_zone()
164 zone = "/etc/localtime"; // System-specific default. in local_time_zone()
167 if (localtime_env) zone = localtime_env; in local_time_zone()
170 const std::string name = zone; in local_time_zone()

12345678910>>...44