/external/freetype/src/pshinter/ |
D | pshglob.c | 157 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/icu4c/i18n/ |
D | vzone.cpp | 39 vzone_close(VZone* zone) { in vzone_close() argument 40 delete (VTimeZone*)zone; in vzone_close() 44 vzone_clone(const VZone *zone) { in vzone_clone() argument 45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); in vzone_clone() 54 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { in vzone_getTZURL() argument 56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s); in vzone_getTZURL() 65 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { in vzone_setTZURL() argument 67 return ((VTimeZone*)zone)->VTimeZone::setTZURL(url); in vzone_setTZURL() 71 vzone_getLastModified(VZone* zone, UDate& lastModified) { in vzone_getLastModified() argument 72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified); in vzone_getLastModified() [all …]
|
D | vzone.h | 64 vzone_close(VZone* zone); 72 vzone_clone(const VZone *zone); 94 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength); 103 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength); 115 vzone_getLastModified(VZone* zone, UDate& lastModified); 123 vzone_setLastModified(VZone* zone, UDate lastModified); 133 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status); 145 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode&… 161 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& sta… 188 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, [all …]
|
D | ucal.cpp | 32 TimeZone* zone = NULL; in _createTimeZone() local 40 zone = TimeZone::createTimeZone(zoneStrID); in _createTimeZone() 41 if (zone == NULL) { in _createTimeZone() 45 return zone; in _createTimeZone() 69 TimeZone* zone = TimeZone::createDefault(); in ucal_getDefaultTimeZone() local 70 if (zone == NULL) { in ucal_getDefaultTimeZone() 74 zone->getID(id); in ucal_getDefaultTimeZone() 75 delete zone; in ucal_getDefaultTimeZone() 84 TimeZone* zone = _createTimeZone(zoneID, -1, ec); in ucal_setDefaultTimeZone() local 85 if (zone != NULL) { in ucal_setDefaultTimeZone() [all …]
|
/external/kernel-headers/original/linux/ |
D | mmzone.h | 139 struct zone { struct 289 struct zone *zones[MAX_NUMNODES * MAX_NR_ZONES + 1]; // NULL delimited argument 306 struct zone node_zones[MAX_NR_ZONES]; 349 void wakeup_kswapd(struct zone *zone, int order); 350 int zone_watermark_ok(struct zone *z, int order, unsigned long mark, 353 extern int init_currently_empty_zone(struct zone *zone, unsigned long start_pfn, 369 #define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones) argument 371 static inline int populated_zone(struct zone *zone) in populated_zone() argument 373 return (!!zone->present_pages); in populated_zone() 392 static inline int is_highmem(struct zone *zone) in is_highmem() argument [all …]
|
/external/icu4c/stubdata/ |
D | icudt48l-default.txt | 546 zone/res_index.res 547 zone/pool.res 548 zone/root.res 549 zone/af.res 550 zone/am.res 551 zone/ar.res 552 zone/be.res 553 zone/bg.res 554 zone/ca.res 555 zone/cs.res [all …]
|
/external/compiler-rt/lib/asan/ |
D | asan_malloc_mac.cc | 39 malloc_zone_t *zone = malloc_zone_from_ptr(ptr); in free() local 40 if (zone) { in free() 43 if ((zone->version >= 6) && (zone->free_definite_size)) { in free() 44 zone->free_definite_size(zone, ptr, malloc_size(ptr)); in free() 46 malloc_zone_free(zone, ptr); in free() 49 malloc_zone_free(zone, ptr); in free() 65 size_t mz_size(malloc_zone_t* zone, const void* ptr) { in mz_size() argument 75 void *mz_malloc(malloc_zone_t *zone, size_t size) { in mz_malloc() argument 93 void *mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) { in mz_calloc() argument 109 void *mz_valloc(malloc_zone_t *zone, size_t size) { in mz_valloc() argument [all …]
|
/external/zlib/test/ |
D | infcover.c | 75 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/v8/test/cctest/ |
D | test-dataflow.cc | 40 Zone* zone = ZONE; in TEST() local 42 BitVector v(15, zone); in TEST() 49 BitVector w(15, zone); in TEST() 57 BitVector v(64, zone); in TEST() 75 BitVector v(15, zone); in TEST() 77 BitVector w(15, zone); in TEST() 85 BitVector v(15, zone); in TEST() 87 BitVector w(15, zone); in TEST() 91 BitVector u(w, zone); in TEST() 100 BitVector v(35, zone); in TEST() [all …]
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | CheckedMalloc.cpp | 42 static void* checkedMalloc(malloc_zone_t* zone, size_t size) in checkedMalloc() argument 46 return savedMalloc(zone, size); in checkedMalloc() 49 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size) in checkedRealloc() argument 53 return savedRealloc(zone, ptr, size); in checkedRealloc() 71 malloc_zone_t* zone = malloc_default_zone(); in makeLargeMallocFailSilently() local 74 …mach_vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getp… in makeLargeMallocFailSilently() 77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t); in makeLargeMallocFailSilently() 82 savedMalloc = zone->malloc; in makeLargeMallocFailSilently() 83 savedRealloc = zone->realloc; in makeLargeMallocFailSilently() 84 zone->malloc = checkedMalloc; in makeLargeMallocFailSilently() [all …]
|
/external/v8/src/ia32/ |
D | lithium-ia32.cc | 474 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block); in AddInstruction() 549 chunk_ = new(zone()) LChunk(info(), graph()); in Build() 580 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated() 586 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated() 602 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister() 608 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart() 614 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister() 619 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use() 624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart() 660 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny() [all …]
|
/external/v8/src/mips/ |
D | lithium-mips.cc | 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block); in AddInstruction() 554 chunk_ = new(zone()) LChunk(info(), graph()); in Build() 585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated() 591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated() 607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister() 613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart() 619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister() 624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use() 629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart() 665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny() [all …]
|
/external/v8/src/arm/ |
D | lithium-arm.cc | 479 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block); in AddInstruction() 554 chunk_ = new(zone()) LChunk(info(), graph()); in Build() 585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated() 591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated() 607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister() 613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart() 619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister() 624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use() 629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart() 665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny() [all …]
|
/external/v8/src/x64/ |
D | lithium-x64.cc | 472 LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block); in AddInstruction() 547 chunk_ = new(zone()) LChunk(info(), graph()); in Build() 578 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated() 584 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated() 600 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister() 606 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart() 612 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister() 617 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use() 622 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart() 658 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny() [all …]
|
/external/chromium/base/third_party/nspr/ |
D | prtime.cc | 525 TIME_TOKEN zone = TT_UNKNOWN; in PR_ParseTimeString() local 556 else if (zone == TT_UNKNOWN && in PR_ParseTimeString() 559 zone = TT_AST; in PR_ParseTimeString() 566 if (zone == TT_UNKNOWN && in PR_ParseTimeString() 569 zone = TT_BST; in PR_ParseTimeString() 572 if (zone == TT_UNKNOWN && in PR_ParseTimeString() 575 zone = TT_CDT; in PR_ParseTimeString() 576 else if (zone == TT_UNKNOWN && in PR_ParseTimeString() 579 zone = TT_CST; in PR_ParseTimeString() 588 if (zone == TT_UNKNOWN && in PR_ParseTimeString() [all …]
|
/external/openssl/crypto/x509v3/ |
D | v3_sxnet.c | 91 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER), 115 tmp = i2s_ASN1_INTEGER(NULL, id->zone); 152 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, in SXNET_add_id_asc() argument 156 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) { in SXNET_add_id_asc() 183 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user, in SXNET_add_id_INTEGER() argument 188 if(!psx || !zone || !user) { in SXNET_add_id_INTEGER() 202 if(SXNET_get_id_INTEGER(sx, zone)) { in SXNET_add_id_INTEGER() 212 id->zone = zone; in SXNET_add_id_INTEGER() 223 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone) in SXNET_get_id_asc() argument 227 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) { in SXNET_get_id_asc() [all …]
|
/external/icu4c/samples/datefmt/answers/ |
D | main_2.cpp | 22 TimeZone* zone = TimeZone::createTimeZone(id); in createZone() local 23 if (zone->getID(str) != id) { in createZone() 24 delete zone; in createZone() 32 return zone; in createZone() 38 TimeZone *zone; in main() local 62 zone = createZone("GMT"); // Create a GMT zone in main() 63 cal->adoptTimeZone(zone); in main()
|
D | main_3.cpp | 22 TimeZone* zone = TimeZone::createTimeZone(id); in createZone() local 23 if (zone->getID(str) != id) { in createZone() 24 delete zone; in createZone() 32 return zone; in createZone() 38 TimeZone *zone; in main() local 62 zone = createZone("GMT"); // Create a GMT zone in main() 63 cal->adoptTimeZone(zone); in main()
|
/external/mdnsresponder/mDNSShared/ |
D | dnsextd_parser.y | 400 DNSZone * zone; in ParseConfig() local 410 zone = d->zones; in ParseConfig() 412 while ( zone ) in ParseConfig() 414 DNSZone * next = zone->next; in ParseConfig() 416 key = zone->updateKeys; in ParseConfig() 427 key = zone->queryKeys; in ParseConfig() 438 free( zone ); in ParseConfig() 440 zone = next; in ParseConfig() 456 zone = ( DNSZone* ) malloc( sizeof( DNSZone ) ); in ParseConfig() 457 require_action( zone, exit, err = 1 ); in ParseConfig() [all …]
|
/external/icu4c/samples/datefmt/ |
D | main.cpp | 22 TimeZone* zone = TimeZone::createTimeZone(id); in createZone() local 23 if (zone->getID(str) != id) { in createZone() 24 delete zone; in createZone() 32 return zone; in createZone() 38 TimeZone *zone; in main() local 62 zone = createZone("GMT"); // Create a GMT zone in main() 63 cal->adoptTimeZone(zone); in main()
|
/external/v8/src/ |
D | zone-inl.h | 104 void* ZoneObject::operator new(size_t size, Zone* zone) { in new() argument 105 return zone->New(static_cast<int>(size)); in new() 121 void* ZoneList<T>::operator new(size_t size, Zone* zone) { in new() argument 122 return zone->New(static_cast<int>(size)); in new() 128 isolate_->zone()->scope_nesting_++; in ZoneScope() 133 return isolate_->zone()->scope_nesting_ == 1 && mode_ == DELETE_ON_EXIT; in ShouldDeleteOnExit() 138 return Isolate::Current()->zone()->scope_nesting_; in nesting()
|
D | hydrogen.cc | 79 loop_information_ = new(zone()) HLoopInformation(this); in AttachLoopInformation() 111 HBlockEntry* entry = new(zone()) HBlockEntry(); in AddInstruction() 123 if (has_uses == HDeoptimize::kNoUses) return new(zone()) HDeoptimize(0); in CreateDeoptimize() 126 HDeoptimize* instr = new(zone()) HDeoptimize(environment->length()); in CreateDeoptimize() 145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count); in CreateSimulate() 170 AddInstruction(new(zone()) HLeaveInlined); in Goto() 174 HGoto* instr = new(zone()) HGoto(block); in Goto() 184 AddInstruction(new(zone()) HLeaveInlined); in AddLeaveInlined() 188 HGoto* instr = new(zone()) HGoto(target); in AddLeaveInlined() 566 HConstant* constant = new(zone()) HConstant(Handle<Object>(value), in GetConstant() [all …]
|
D | hydrogen-instructions.cc | 506 void HValue::AddNewRange(Range* r, Zone* zone) { in AddNewRange() argument 507 if (!HasRange()) ComputeInitialRange(zone); in AddNewRange() 508 if (!HasRange()) range_ = new(zone) Range(); in AddNewRange() 522 void HValue::ComputeInitialRange(Zone* zone) { in ComputeInitialRange() argument 524 range_ = InferRange(zone); in ComputeInitialRange() 1020 Range* HValue::InferRange(Zone* zone) { in InferRange() argument 1022 Range* result = new(zone) Range(); in InferRange() 1028 Range* HChange::InferRange(Zone* zone) { in InferRange() argument 1036 ? input_range->Copy(zone) in InferRange() 1037 : HValue::InferRange(zone); in InferRange() [all …]
|
/external/freetype/src/psaux/ |
D | t1decode.c | 360 T1_Decoder_Zone zone; in t1_decoder_parse_charstrings() local 388 decoder->zone = decoder->zones; in t1_decoder_parse_charstrings() 389 zone = decoder->zones; in t1_decoder_parse_charstrings() 408 zone->base = charstring_base; in t1_decoder_parse_charstrings() 409 limit = zone->limit = charstring_base + charstring_len; in t1_decoder_parse_charstrings() 410 ip = zone->cursor = zone->base; in t1_decoder_parse_charstrings() 1348 if ( zone - decoder->zones >= T1_MAX_SUBRS_CALLS ) in t1_decoder_parse_charstrings() 1355 zone->cursor = ip; /* save current instruction pointer */ in t1_decoder_parse_charstrings() 1357 zone++; in t1_decoder_parse_charstrings() 1362 zone->base = decoder->subrs[idx]; in t1_decoder_parse_charstrings() [all …]
|
/external/icu4c/tools/tzcode/ |
D | tz.alias | 15 # For example, ICU has always defined the zone name "PST" to indicate 16 # the zone America/Los_Angeles. Unless we continue to have a zone with 19 # This list is read by tz2icu to incorporate legacy ICU zone aliases 20 # into the ICU system zone data. 39 # EET Europe/Istanbul # EET is a standard UNIX zone 45 # MET Asia/Tehran # MET is a standard UNIX zone
|