Home
last modified time | relevance | path

Searched refs:end1 (Results 1 – 25 of 55) sorted by relevance

123

/external/speex/libspeex/
Dbuffer.c71 int end1; in speex_buffer_write() local
79 end1 = end; in speex_buffer_write()
80 if (end1 > st->size) in speex_buffer_write()
81 end1 = st->size; in speex_buffer_write()
82 SPEEX_COPY(st->data + st->write_ptr, data, end1 - st->write_ptr); in speex_buffer_write()
86 SPEEX_COPY(st->data, data+end1 - st->write_ptr, end); in speex_buffer_write()
105 int end1; in speex_buffer_writezeros() local
111 end1 = end; in speex_buffer_writezeros()
112 if (end1 > st->size) in speex_buffer_writezeros()
113 end1 = st->size; in speex_buffer_writezeros()
[all …]
/external/webrtc/webrtc/system_wrappers/source/
Dlogging.cc37 const char* end1 = ::strrchr(file, '/'); in FilenameFromPath() local
39 if (!end1 && !end2) in FilenameFromPath()
42 return (end1 > end2) ? end1 + 1 : end2 + 1; in FilenameFromPath()
/external/llvm/test/CodeGen/AArch64/
Dtst-br.ll17 br i1 %tst0, label %test1, label %end1
23 br i1 %tst1, label %test2, label %end1
29 br i1 %tst2, label %test3, label %end1
35 br i1 %tst3, label %end2, label %end1
43 end1:
/external/llvm/test/CodeGen/X86/
Ddynamic-alloca-lifetime.ll22 br i1 %cond1, label %end1, label %bb1
26 br i1 %cond2, label %end1, label %if.else130
28 end1:
38 br label %end1
Drd-mod-wr-eflags.ll90 br i1 %tobool2, label %if.end1, label %return
93 if.end1:
144 br i1 %tobool2, label %if.end1, label %return
147 if.end1:
/external/compiler-rt/test/asan/TestCases/Posix/
Dgc-test.cc31 void *beg1, *end1; in Thread() local
34 __asan_addr_is_in_fake_stack(fake_stack, ptr, &beg1, &end1); in Thread()
37 assert(end == end1); in Thread()
/external/llvm/test/Transforms/ConstantHoisting/PowerPC/
Dmasks.ll28 br i1 %cmp178, label %end1, label %end2
30 end1:
58 br i1 %cmp178, label %end1, label %end2
60 end1:
/external/llvm/test/Transforms/LoopUnswitch/
Dinfinite-loop.ll29 ; CHECK-NEXT: call void @end1() [[NOR_NUW]]
49 call void @end1() noreturn nounwind
54 declare void @end1() noreturn
/external/libchrome/base/files/
Dfile_util.cc107 std::string::size_type end1 = line1.find_last_not_of("\r\n"); in TextContentsEqual() local
108 if (end1 == std::string::npos) in TextContentsEqual()
110 else if (end1 + 1 < line1.length()) in TextContentsEqual()
111 line1.erase(end1 + 1); in TextContentsEqual()
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_region.cc181 Rows::const_iterator end1 = region1.rows_.end(); in Intersect() local
184 if (it1 == end1 || it2 == end2) in Intersect()
187 while (it1 != end1 && it2 != end2) { in Intersect()
191 std::swap(end1, end2); in Intersect()
230 RowSpanSet::const_iterator end1 = set1.end(); in IntersectRows() local
233 assert(it1 != end1 && it2 != end2); in IntersectRows()
239 std::swap(end1, end2); in IntersectRows()
260 } while (it1 != end1 && it2 != end2); in IntersectRows()
/external/opencv3/modules/cudev/include/opencv2/cudev/warp/
Dwarp.hpp102 __device__ __forceinline__ OutIt warpTransform(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out, const… in warpTransform() argument
108 for(; t1 < end1; t1 += WARP_SIZE, t2 += WARP_SIZE, out += WARP_SIZE) in warpTransform()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dwarp.hpp95 …static __device__ __forceinline__ OutIt transform(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out, B… in transform()
101 for(; t1 < end1; t1 += STRIDE, t2 += STRIDE, out += STRIDE) in transform()
Dblock.hpp120 …static __device__ __forceinline__ void transfrom(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out, Bi… in transfrom()
127 for(; t1 < end1; t1 += STRIDE, t2 += STRIDE, o += STRIDE) in transfrom()
/external/opencv3/modules/cudev/include/opencv2/cudev/block/
Dblock.hpp118 __device__ __forceinline__ static void blockTransfrom(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out… in blockTransfrom() argument
125 for(; t1 < end1; t1 += STRIDE, t2 += STRIDE, o += STRIDE) in blockTransfrom()
/external/webrtc/webrtc/base/
Dlogging.cc53 const char* end1 = ::strrchr(file, '/'); in FilenameFromPath() local
55 if (!end1 && !end2) in FilenameFromPath()
58 return (end1 > end2) ? end1 + 1 : end2 + 1; in FilenameFromPath()
/external/skia/src/pathops/
DSkOpSpan.h111 SkOpPtT* end1 = s1->fT < e1->fT ? e1 : s1; in Overlaps() local
114 : between(s2->fT, end1->fT, e2->fT) ? end1 : nullptr; in Overlaps()
116 SkASSERT(start1->fT >= end2->fT || start2->fT >= end1->fT); in Overlaps()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_posix.cc240 static inline bool IntervalsAreSeparate(uptr start1, uptr end1, in IntervalsAreSeparate() argument
242 CHECK(start1 <= end1); in IntervalsAreSeparate()
244 return (end1 < start2) || (end2 < start1); in IntervalsAreSeparate()
/external/wpa_supplicant_8/src/wps/
Dhttpread.c102 int end1 = 0; in word_eq() local
111 end1 = !isgraph(c1); in word_eq()
113 if (end1 || end2 || c1 != c2) in word_eq()
116 return end1 && end2; /* reached end of both words? */ in word_eq()
Dwps_upnp_ssdp.c42 int end1 = 0; in token_eq() local
51 end1 = !(isalnum(c1) || c1 == '_' || c1 == '-'); in token_eq()
53 if (end1 || end2 || c1 != c2) in token_eq()
56 return end1 && end2; /* reached end of both words? */ in token_eq()
/external/llvm/test/Transforms/Inline/
Dinline_cleanup.ll80 br i1 %cmp1, label %then1, label %end1
84 br label %end1
86 end1:
/external/clang/test/OpenMP/
Dsimd_loop_messages.cpp446 Iter1 begin1, end1; in test_with_random_access_iterator() local
450 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
455 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
463 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()
Dparallel_for_loop_messages.cpp458 Iter1 begin1, end1; in test_with_random_access_iterator() local
462 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
467 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
474 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()
Dparallel_for_simd_loop_messages.cpp459 Iter1 begin1, end1; in test_with_random_access_iterator() local
463 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
468 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
475 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()
Dfor_loop_messages.cpp552 Iter1 begin1, end1; in test_with_random_access_iterator() local
557 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator()
563 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator()
571 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator()
/external/expat/lib/
Dxmltok.h237 #define XmlNameMatchesAscii(enc, ptr1, end1, ptr2) \ argument
238 (((enc)->nameMatchesAscii)(enc, ptr1, end1, ptr2))

123