Searched refs:end1 (Results 1 - 25 of 64) sorted by relevance

123

/external/speex/libspeex/
H A Dbuffer.c71 int end1; local
79 end1 = end;
80 if (end1 > st->size)
81 end1 = st->size;
82 SPEEX_COPY(st->data + st->write_ptr, data, end1 - st->write_ptr);
86 SPEEX_COPY(st->data, data+end1 - st->write_ptr, end);
105 int end1; local
111 end1 = end;
112 if (end1 > st->size)
113 end1
134 int end, end1; local
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Dlogging.cc37 const char* end1 = ::strrchr(file, '/'); local
39 if (!end1 && !end2)
42 return (end1 > end2) ? end1 + 1 : end2 + 1;
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dgc-test.cc31 void *beg1, *end1; local
34 __asan_addr_is_in_fake_stack(fake_stack, ptr, &beg1, &end1);
37 assert(end == end1);
/external/python/cpython3/Tools/scripts/
H A Dabitype.py74 end1 = end-1
75 while tokens[end1][0] in ('ws', 'comment'):
76 end1 -= 1
77 fields.append(''.join(t[1] for t in tokens[pos:end1+1]))
/external/libcxx/test/support/
H A Dfilesystem_test_helper.hpp354 Iter1 start1, Iter1 const end1
358 while (start1 != end1 && start2 != end2) {
364 return (start1 == end1 && start2 == end2);
370 Iter1 const start1, Iter1 end1
374 while (start1 != end1 && start2 != end2) {
375 --end1; --end2;
376 if (*end1 != *end2) {
380 return (start1 == end1 && start2 == end2);
/external/libchrome/base/files/
H A Dfile_util.cc107 std::string::size_type end1 = line1.find_last_not_of("\r\n"); local
108 if (end1 == std::string::npos)
110 else if (end1 + 1 < line1.length())
111 line1.erase(end1 + 1);
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc181 Rows::const_iterator end1 = region1.rows_.end(); local
184 if (it1 == end1 || it2 == end2)
187 while (it1 != end1 && it2 != end2) {
191 std::swap(end1, end2);
230 RowSpanSet::const_iterator end1 = set1.end(); local
233 assert(it1 != end1 && it2 != end2);
239 std::swap(end1, end2);
260 } while (it1 != end1 && it2 != end2);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cc274 static inline bool IntervalsAreSeparate(uptr start1, uptr end1, argument
276 CHECK(start1 <= end1);
278 return (end1 < start2) || (end2 < start1);
/external/skia/src/pathops/
H A DSkOpSpan.h125 const SkOpPtT* end1 = s1->fT < e1->fT ? e1 : s1; local
128 : between(s2->fT, end1->fT, e2->fT) ? end1 : nullptr;
130 SkASSERT(start1->fT >= end2->fT || start2->fT >= end1->fT);
/external/skqp/src/pathops/
H A DSkOpSpan.h125 const SkOpPtT* end1 = s1->fT < e1->fT ? e1 : s1; local
128 : between(s2->fT, end1->fT, e2->fT) ? end1 : nullptr;
130 SkASSERT(start1->fT >= end2->fT || start2->fT >= end1->fT);
/external/webrtc/webrtc/base/
H A Dlogging.cc53 const char* end1 = ::strrchr(file, '/'); local
55 if (!end1 && !end2)
58 return (end1 > end2) ? end1 + 1 : end2 + 1;
/external/expat/lib/
H A Dxmltok.h260 #define XmlNameMatchesAscii(enc, ptr1, end1, ptr2) \
261 (((enc)->nameMatchesAscii)(enc, ptr1, end1, ptr2))
/external/python/cpython2/Modules/expat/
H A Dxmltok.h231 #define XmlNameMatchesAscii(enc, ptr1, end1, ptr2) \
232 (((enc)->nameMatchesAscii)(enc, ptr1, end1, ptr2))
/external/python/cpython3/Modules/expat/
H A Dxmltok.h231 #define XmlNameMatchesAscii(enc, ptr1, end1, ptr2) \
232 (((enc)->nameMatchesAscii)(enc, ptr1, end1, ptr2))
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
H A DFinallyFilterTest.java53 final Label end1 = new Label();
58 m.visitTryCatchBlock(start1, end1, finallyStart, null);
65 m.visitLabel(end1);
/external/clang/test/OpenMP/
H A Dfor_loop_messages.cpp567 Iter1 begin1, end1; local
572 for (Iter1 I = begin1; I < end1; ++I)
578 for (Iter1 I = begin1; I >= end1; ++I)
586 for (Iter1 I; I < end1; ++I) {
H A Dfor_simd_loop_messages.cpp535 Iter1 begin1, end1; local
540 for (Iter1 I = begin1; I < end1; ++I)
546 for (Iter1 I = begin1; I >= end1; ++I)
554 for (Iter1 I; I < end1; ++I) {
H A Dparallel_for_loop_messages.cpp460 Iter1 begin1, end1; local
464 for (Iter1 I = begin1; I < end1; ++I)
469 for (Iter1 I = begin1; I >= end1; ++I)
476 for (Iter1 I; I < end1; ++I) {
H A Dparallel_for_simd_loop_messages.cpp461 Iter1 begin1, end1; local
465 for (Iter1 I = begin1; I < end1; ++I)
470 for (Iter1 I = begin1; I >= end1; ++I)
477 for (Iter1 I; I < end1; ++I) {
H A Dsimd_loop_messages.cpp448 Iter1 begin1, end1; local
452 for (Iter1 I = begin1; I < end1; ++I)
457 for (Iter1 I = begin1; I >= end1; ++I)
465 for (Iter1 I; I < end1; ++I) {
H A Dtarget_parallel_for_loop_messages.cpp460 Iter1 begin1, end1; local
464 for (Iter1 I = begin1; I < end1; ++I)
469 for (Iter1 I = begin1; I >= end1; ++I)
476 for (Iter1 I; I < end1; ++I) {
H A Dtarget_parallel_for_simd_loop_messages.cpp460 Iter1 begin1, end1; local
464 for (Iter1 I = begin1; I < end1; ++I)
469 for (Iter1 I = begin1; I >= end1; ++I)
476 for (Iter1 I; I < end1; ++I) {
H A Dtaskloop_loop_messages.cpp555 Iter1 begin1, end1; local
560 for (Iter1 I = begin1; I < end1; ++I)
566 for (Iter1 I = begin1; I >= end1; ++I)
574 for (Iter1 I; I < end1; ++I) {
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dhttpread.c102 int end1 = 0; local
111 end1 = !isgraph(c1);
113 if (end1 || end2 || c1 != c2)
116 return end1 && end2; /* reached end of both words? */
H A Dwps_upnp_ssdp.c42 int end1 = 0; local
51 end1 = !(isalnum(c1) || c1 == '_' || c1 == '-');
53 if (end1 || end2 || c1 != c2)
56 return end1 && end2; /* reached end of both words? */

Completed in 3457 milliseconds

123