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

1 2 3

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
logging.cc 37 const char* end2 = ::strrchr(file, '\\'); local
38 if (!end1 && !end2)
41 return (end1 > end2) ? end1 + 1 : end2 + 1;
  /external/oprofile/libutil++/
child_reader.cpp 31 pos2(0), end2(0),
140 if (end2 >= sz_buf2) {
145 ssize_t temp = read(fd2, buf2 + end2, sz_buf2 - end2);
147 end2 += temp;
151 bool ret = !(end1 == 0 && end2 == 0);
155 if (end2 == -1)
156 end2 = 0;
171 int temp = end2;
194 if (ok && temp != end2)
    [all...]
child_reader.h 97 ssize_t end2; member in class:child_reader
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 102 const char *end2 = end; local
103 while (line != end2 && (end2[-1] == ' ' || end2[-1] == '\t'))
104 end2--;
119 s.templ = (char*)InternalAlloc(end2 - line + 1);
120 internal_memcpy(s.templ, line, end2 - line);
121 s.templ[end2 - line] = 0;
sanitizer_posix.cc 222 uptr start2, uptr end2) {
224 CHECK(start2 <= end2);
225 return (end1 < start2) || (end2 < start1);
  /external/chromium_org/extensions/common/permissions/
base_set_operators.h 127 const_iterator end2 = rhs.end(); local
129 while (it1 != end1 && it2 != end2) {
142 return it2 == end2;
152 const const_iterator end2 = set2.end(); local
154 while (it1 != end1 && it2 != end2) {
182 const const_iterator end2 = set2.end(); local
184 while (it1 != end1 && it2 != end2) {
206 const const_iterator end2 = set2.end(); local
210 while (it2 != end2) {
216 if (it2 == end2) {
    [all...]
  /external/oprofile/libpp/
diff_container.cpp 130 symbol_container::symbols_t::iterator end2 = pc2.end_symbol(); local
132 while (it1 != end1 && it2 != end2) {
149 for (; it2 != end2; ++it2)
  /external/chromium_org/base/files/
file_util.cc 117 std::string::size_type end2 = line2.find_last_not_of("\r\n"); local
118 if (end2 == std::string::npos)
120 else if (end2 + 1 < line2.length())
121 line2.erase(end2 + 1);
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 134 ThreadEvent end2 = ThreadEvent.end(threadId+1); local
135 hprofData.addThreadEvent(end2);
136 assertEquals(Arrays.asList(start1, end2), hprofData.getThreadHistory());
142 assertEquals(Arrays.asList(start1, end2, end1), hprofData.getThreadHistory());
151 assertEquals(Arrays.asList(start1, end2, end1), hprofData.getThreadHistory());
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.cc 183 Rows::const_iterator end2 = region2.rows_.end(); local
184 if (it1 == end1 || it2 == end2)
187 while (it1 != end1 && it2 != end2) {
191 std::swap(end1, end2);
232 RowSpanSet::const_iterator end2 = set2.end(); local
233 assert(it1 != end1 && it2 != end2);
239 std::swap(end1, end2);
260 } while (it1 != end1 && it2 != end2);
  /external/chromium_org/ui/views/widget/
root_view_unittest.cc 231 ui::GestureEvent end2(
233 details = root_view->OnEventFromSource(&end2);
316 ui::GestureEvent end2(
318 details = root_view->OnEventFromSource(&end2);
  /external/wpa_supplicant_8/src/wps/
httpread.c 113 int end2 = 0; local
122 end2 = !isgraph(c2);
123 if (end1 || end2 || c1 != c2)
126 return end1 && end2; /* reached end of both words? */
wps_upnp_ssdp.c 43 int end2 = 0; local
52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-');
53 if (end1 || end2 || c1 != c2)
56 return end1 && end2; /* reached end of both words? */
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticIntersection.cpp 339 double end2 = i.fCoincidentT[1][cIndex + 1]; local
342 xy_at_t(q2, end2, ends2[1].x, ends2[1].y);
355 if (approximately_less_than_zero(start2) || approximately_less_than_zero(end2)) {
357 } else if (approximately_greater_than_one(start2) || approximately_greater_than_one(end2)) {
360 start2 = (start2 + end2) / 2;
  /external/skia/experimental/Intersection/
QuadraticIntersection.cpp 339 double end2 = i.fCoincidentT[1][cIndex + 1]; local
342 xy_at_t(q2, end2, ends2[1].x, ends2[1].y);
355 if (approximately_less_than_zero(start2) || approximately_less_than_zero(end2)) {
357 } else if (approximately_greater_than_one(start2) || approximately_greater_than_one(end2)) {
360 start2 = (start2 + end2) / 2;
  /external/chromium_org/third_party/libxml/src/include/libxml/
parserInternals.h 493 xmlChar end2,
501 xmlChar end2,
591 xmlChar end2,
  /external/libxml2/include/libxml/
parserInternals.h 526 xmlChar end2,
534 xmlChar end2,
624 xmlChar end2,
  /external/chromium_org/net/disk_cache/blockfile/
rankings.h 180 // Walks a list in the desired direction until the nodes |end1| or |end2| are
183 int CheckListSection(List list, Addr end1, Addr end2, bool forward,
  /external/chromium_org/third_party/webrtc/base/
logging.cc 389 const char* end2 = ::strrchr(file, '\\'); local
390 if (!end1 && !end2)
393 return (end1 > end2) ? end1 + 1 : end2 + 1;
  /external/chromium_org/base/i18n/
streaming_utf8_validator_unittest.cc 276 Iterator2 end2,
281 for (Iterator2 it2 = begin2; it2 != end2; ++it2) {
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 331 BasicBlock::iterator end2 = Block2->getTerminator(); local
335 if (iter2 != end2)
  /external/chromium_org/third_party/cython/src/Cython/Utility/
MemoryView_C.c 684 void *start1, *end1, *start2, *end2; variable
687 __pyx_get_array_memory_extents(slice2, &start2, &end2, ndim, itemsize);
689 return (start1 < end2) && (start2 < end1);
  /external/chromium_org/third_party/libxml/src/
legacy.c 32 xmlChar end2, xmlChar end3);
39 * @end2: an end marker xmlChar, 0 if none
52 xmlChar end2 ATTRIBUTE_UNUSED,
394 * @end2: an end marker xmlChar, 0 if none
413 xmlChar end2 ATTRIBUTE_UNUSED,
    [all...]
  /external/libxml2/
legacy.c 32 xmlChar end2, xmlChar end3);
39 * @end2: an end marker xmlChar, 0 if none
52 xmlChar end2 ATTRIBUTE_UNUSED,
394 * @end2: an end marker xmlChar, 0 if none
413 xmlChar end2 ATTRIBUTE_UNUSED,
    [all...]
  /external/chromium_org/v8/tools/
codemap.js 157 var start2 = node.key, end2 = start2 + node.value.size;
158 if (start2 < end && start < end2) to_delete.push(start2);

Completed in 576 milliseconds

1 2 3