HomeSort by relevance Sort by last modified time
    Searched refs:zone (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /external/icu4c/i18n/
vzone.cpp 39 vzone_close(VZone* zone) {
40 delete (VTimeZone*)zone;
44 vzone_clone(const VZone *zone) {
45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone());
54 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) {
56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s);
65 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) {
67 ((VTimeZone*)zone)->VTimeZone::setTZURL(s);
71 vzone_getLastModified(VZone* zone, UDate& lastModified) {
72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified)
    [all...]
vzone.h 38 * Creates a vzone from the given time zone ID.
39 * @param ID The time zone ID, such as America/New_York
41 * @return A vzone object initialized by the time zone ID,
64 vzone_close(VZone* zone);
68 * @param zone the original vzone
72 vzone_clone(const VZone *zone);
88 * @param zone, the vzone to use
94 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength);
98 * @param zone, the vzone to use
103 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength)
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
CheckedMalloc.cpp 42 static void* checkedMalloc(malloc_zone_t* zone, size_t size)
46 return savedMalloc(zone, size);
49 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size)
53 return savedRealloc(zone, ptr, size);
71 malloc_zone_t* zone = malloc_default_zone(); local
74 mach_vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getpagesize() - 1));
77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t);
82 savedMalloc = zone->malloc;
83 savedRealloc = zone->realloc;
84 zone->malloc = checkedMalloc
    [all...]
  /external/v8/test/cctest/
test-dataflow.cc 40 Zone* zone = ZONE; local
42 BitVector v(15, zone);
49 BitVector w(15, zone);
57 BitVector v(64, zone);
75 BitVector v(15, zone);
77 BitVector w(15, zone);
85 BitVector v(15, zone);
87 BitVector w(15, zone);
    [all...]
  /external/freetype/src/pshinter/
pshglob.c 157 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->org_delta = delta
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
534 PSH_Blue_Zone zone; local
    [all...]
  /external/kernel-headers/original/linux/
mmzone.h 35 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
37 * cachelines. There are very few zone structures in the machine, so space
64 NUMA_INTERLEAVE_HIT, /* interleaver preferred this zone */
103 * allocator in the gfp_mask, in the zone modifier bits. These bits
106 * the gfp_mask should be considered as zone modifiers. Each valid
107 * combination of the zone modifier bits has a corresponding list
108 * of zones (in node_zonelists). Thus for two zone modifiers there
111 * combinations of zone modifiers in "zone modifier space"
139 struct zone { struct
    [all...]
  /external/icu4c/samples/datefmt/answers/
main_2.cpp 16 * 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...]
main_3.cpp 16 * 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...]
main_0.cpp 17 * 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;
main_1.cpp 16 * 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;
  /external/icu4c/samples/datefmt/
main.cpp 16 * 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/iptables/include/linux/netfilter/
xt_CT.h 8 __u16 zone; member in struct:xt_ct_target_info
  /external/v8/src/
zone-inl.h 31 #include "zone.h"
42 inline void* Zone::New(int size) {
72 T* Zone::NewArray(int length) {
77 bool Zone::excess_allocation() {
82 void Zone::adjust_segment_bytes_allocated(int delta) {
91 // in the destructor. For a zone-allocated tree, nodes will be
92 // freed by the Zone.
98 // operator that takes the zone in which the object should be
101 return ZONE->New(static_cast<int>(size));
104 void* ZoneObject::operator new(size_t size, Zone* zone)
    [all...]
zone.h 42 // Zone scopes are in one of two modes. Either they delete the zone
52 // The Zone supports very fast allocation of small chunks of
54 // the Zone supports deallocating all chunks in one fast
55 // operation. The Zone is used to hold temporary data structures like
58 // Note: There is no need to initialize the Zone; the first time an
65 class Zone {
67 // Allocate 'size' bytes of memory in the Zone; expands the Zone by
74 // Deletes all objects and free all memory allocated in the Zone. Keeps on
    [all...]
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 79 INTERCEPTOR(void, malloc_set_zone_name, malloc_zone_t *zone, const char *name) {
84 if (name && zone->introspect == asan_zone.introspect) {
90 // since that appropriately changes VM region protections on the zone.
91 REAL(malloc_set_zone_name)(zone, name);
147 size_t mz_size(malloc_zone_t* zone, const void* ptr) {
151 void *mz_malloc(malloc_zone_t *zone, size_t size) {
160 void *mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) {
176 void *mz_valloc(malloc_zone_t *zone, size_t size) {
203 void mz_free(malloc_zone_t *zone, void *ptr) {
204 free_common(zone, ptr)
    [all...]
  /external/zlib/src/test/
infcover.c 75 struct mem_zone *zone = mem; local
79 if (zone == NULL || (zone->limit && zone->total + len > zone->limit))
99 item->next = zone->first;
100 zone->first = item;
103 zone->total += item->size;
104 if (zone->total > zone->highwater
115 struct mem_zone *zone = mem; local
160 struct mem_zone *zone; local
178 struct mem_zone *zone = strm->opaque; local
186 struct mem_zone *zone = strm->opaque; local
194 struct mem_zone *zone = strm->opaque; local
204 struct mem_zone *zone = strm->opaque; local
    [all...]
  /external/smack/src/org/xbill/DNS/tests/
primary.java 40 Zone zone = new Zone(origin, file); local
43 Iterator it = zone.AXFR();
48 Iterator it = zone.iterator();
53 System.out.println(zone);
  /external/v8/src/mips/
lithium-mips.cc 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
554 chunk_ = new(zone()) LChunk(info(), graph());
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
554 chunk_ = new(zone()) LChunk(info(), graph());
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 472 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
547 chunk_ = new(zone()) LChunk(info(), graph());
578 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
584 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
600 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
606 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
612 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
617 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
622 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
658 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]
  /external/openssl/crypto/x509v3/
v3_sxnet.c 91 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
115 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
150 /* Add an id given the zone as an ASCII number */
152 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
156 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
163 /* Add an id given the zone as an unsigned long */
178 /* Add an id given the zone as an ASN1_INTEGER.
183 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
188 if(!psx || !zone || !user) {
202 if(SXNET_get_id_INTEGER(sx, zone)) {
    [all...]
  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 31 void setTimeZone(String zone);
  /external/chromium/net/http/
url_security_manager_win.cc 17 // URL security zone manager. See the MSDN page "URL Security Zones" at
19 // info on the Internet Security Manager and Internet Zone Manager objects.
77 // not located in the Intranet zone". TODO(wtc): Note that it's
86 DWORD zone = 0; local
87 hr = security_manager_->MapUrlToZone(url_w.c_str(), &zone, 0);
92 return zone <= URLZONE_INTRANET;
106 // TODO(cbentzel): Could this just use the security zone as well? Apparently
  /external/mdnsresponder/mDNSShared/
dnsextd_parser.y 116 %token ZONE
219 ZONE QUOTEDSTRING zonecontent
241 ZONE QUOTEDSTRING IN zonecontent
400 DNSZone * zone;
408 // Tear down the current zone specifiers
410 zone = d->zones;
412 while ( zone )
414 DNSZone * next = zone->next;
416 key = zone->updateKeys;
427 key = zone->queryKeys
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 474 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
549 chunk_ = new(zone()) LChunk(info(), graph());
580 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
586 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
602 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
608 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
614 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
619 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
660 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY))
    [all...]

Completed in 2185 milliseconds

1 2 3 4 5 6 7 8