/external/oprofile/libutil++/ |
D | child_reader.cpp | 31 pos2(0), end2(0), in child_reader() 140 if (end2 >= sz_buf2) { in block_read() 145 ssize_t temp = read(fd2, buf2 + end2, sz_buf2 - end2); in block_read() 147 end2 += temp; in block_read() 151 bool ret = !(end1 == 0 && end2 == 0); in block_read() 155 if (end2 == -1) in block_read() 156 end2 = 0; in block_read() 171 int temp = end2; in getline() 194 if (ok && temp != end2) in getline() 212 err.write(buf2, end2); in get_data() [all …]
|
D | child_reader.h | 97 ssize_t end2; variable
|
/external/icu4c/tools/genprops/misc/ |
D | ucdmerge.c | 55 char *end1, *end2; in sameData() local 64 end2=endOfData(l2); in sameData() 68 return length==(end2-l2) && 0==memcmp(l1, l2, length); in sameData()
|
/external/icu4c/tools/genprops/ |
D | ucdmerge.c | 55 char *end1, *end2; in sameData() local 64 end2=endOfData(l2); in sameData() 68 return length==(end2-l2) && 0==memcmp(l1, l2, length); in sameData()
|
/external/oprofile/libpp/ |
D | diff_container.cpp | 130 symbol_container::symbols_t::iterator end2 = pc2.end_symbol(); in get_symbols() local 132 while (it1 != end1 && it2 != end2) { in get_symbols() 149 for (; it2 != end2; ++it2) in get_symbols()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSDOMGlobalObject.cpp | 61 JSDOMConstructorMap::iterator end2 = constructors().end(); in markChildren() local 62 for (JSDOMConstructorMap::iterator it2 = constructors().begin(); it2 != end2; ++it2) in markChildren()
|
/external/chromium/chrome/browser/sync/engine/ |
D | syncer.h | 147 Iterator2 begin2, Iterator2 end2) { in SortedCollectionsIntersect() argument 150 while (i1 != end1 && i2 != end2) { in SortedCollectionsIntersect()
|
/external/chromium/base/ |
D | file_util.cc | 140 std::string::size_type end2 = line2.find_last_not_of("\r\n"); in TextContentsEqual() local 141 if (end2 == std::string::npos) in TextContentsEqual() 143 else if (end2 + 1 < line2.length()) in TextContentsEqual() 144 line2.erase(end2 + 1); in TextContentsEqual()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | logging.cc | 384 const char* end2 = ::strrchr(file, '\\'); in DescribeFile() local 385 if (!end1 && !end2) in DescribeFile() 388 return (end1 > end2) ? end1 + 1 : end2 + 1; in DescribeFile()
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
D | httpread.c | 121 int end2 = 0; in word_eq() local 130 end2 = !isgraph(c2); in word_eq() 131 if (end1 || end2 || c1 != c2) in word_eq() 134 return end1 && end2; /* reached end of both words? */ in word_eq()
|
D | wps_upnp_ssdp.c | 41 int end2 = 0; in token_eq() local 50 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq() 51 if (end1 || end2 || c1 != c2) in token_eq() 54 return end1 && end2; /* reached end of both words? */ in token_eq()
|
/external/wpa_supplicant_8/src/wps/ |
D | httpread.c | 121 int end2 = 0; in word_eq() local 130 end2 = !isgraph(c2); in word_eq() 131 if (end1 || end2 || c1 != c2) in word_eq() 134 return end1 && end2; /* reached end of both words? */ in word_eq()
|
D | wps_upnp_ssdp.c | 40 int end2 = 0; in token_eq() local 49 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq() 50 if (end1 || end2 || c1 != c2) in token_eq() 53 return end1 && end2; /* reached end of both words? */ in token_eq()
|
/external/libxml2/include/libxml/ |
D | parserInternals.h | 493 xmlChar end2, 501 xmlChar end2, 591 xmlChar end2,
|
/external/quake/quake/src/WinQuake/ |
D | sys_linux.cpp | 114 static char end2[] = 124 printf("%s", end2); in Sys_Quit()
|
/external/collada/src/modules/STLDatabase/ |
D | daeSTLDatabase.cpp | 474 vector< daeElement* >::iterator end2 = vec.end(); in getElementCount() local 475 while( i != end2 ) in getElementCount() 632 vector< daeElement* >::iterator end2 = vec.end(); in getElement() local 633 while( i != end2 ) in getElement()
|
/external/valgrind/main/memcheck/ |
D | mc_leakcheck.c | 980 Addr end2 = ch2->data + ch2->szB - 1; in MC_() local 991 } else if (start1 >= start2 && end1 <= end2 && isCustom1 && !isCustom2) { in MC_() 999 } else if (start2 >= start1 && end2 <= end1 && isCustom2 && !isCustom1) { in MC_() 1009 start1, end1, start1, end2); in MC_()
|
/external/bluetooth/bluez/audio/ |
D | liba2dp.c | 648 uint64_t begin, end, begin2, end2; in avdtp_write() local 670 end2 = get_microseconds(); in avdtp_write() 671 print_time("poll", begin2, end2); in avdtp_write() 702 end2 = get_microseconds(); in avdtp_write() 703 print_time("send", begin2, end2); in avdtp_write()
|
/external/libxml2/ |
D | legacy.c | 32 xmlChar end2, xmlChar end3); 52 xmlChar end2 ATTRIBUTE_UNUSED, in htmlDecodeEntities() 413 xmlChar end2 ATTRIBUTE_UNUSED, in xmlDecodeEntities()
|
/external/webkit/Source/WebCore/loader/cache/ |
D | CachedResource.cpp | 442 HashCountedSet<CachedResourceClient*>::iterator end2 = m_clients.end(); in switchClientsToRevalidatedResource() local 443 for (HashCountedSet<CachedResourceClient*>::iterator it = m_clients.begin(); it != end2; ++it) { in switchClientsToRevalidatedResource()
|
/external/quake/quake/src/QW/progs/ |
D | files.dat | 168 2 progs/end2.mdl 214 2 end2.bin
|
D | models.qc | 240 $modelname end2 241 $cd /raid/quake/id1/models/end2
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | about_window_controller.mm | 695 NSRange* end2 = &end_oss; 702 end2 = &end_chr; 722 end2->location - 725 sub_str = [license substringWithRange:NSMakeRange(NSMaxRange(*end2), 727 NSMaxRange(*end2))];
|
/external/oprofile/pp/ |
D | opreport.cpp | 553 list<inverted_profile>::iterator const end2 = iprofiles2.end(); in opreport() local 555 for (; it2 != end2; ++it2) in opreport()
|
/external/valgrind/main/coregrind/m_aspacemgr/ |
D | aspacemgr-linux.c | 2746 Addr end2 = end1; in VG_() local 2749 if (extra > 0) end2 += extra; in VG_() 2754 aspacem_assert(VG_IS_PAGE_ALIGNED(end2+1)); in VG_() 2757 endI = find_nsegment_idx( end2 ); in VG_() 2771 aspacem_assert(end2 <= nsegments[startI].end); in VG_()
|