Lines Matching refs:end
34 conv_ext0be32(const UChar* s, const UChar* end, UChar* conv)
36 while (s < end) {
45 conv_ext0le32(const UChar* s, const UChar* end, UChar* conv)
47 while (s < end) {
56 conv_ext0be(const UChar* s, const UChar* end, UChar* conv)
58 while (s < end) {
65 conv_ext0le(const UChar* s, const UChar* end, UChar* conv)
67 while (s < end) {
74 conv_swap4bytes(const UChar* s, const UChar* end, UChar* conv)
76 while (s < end) {
86 conv_swap2bytes(const UChar* s, const UChar* end, UChar* conv)
88 while (s < end) {
96 conv_encoding(OnigEncoding from, OnigEncoding to, const UChar* s, const UChar* end,
99 int len = (int )(end - s);
106 conv_ext0be(s, end, *conv);
114 conv_swap2bytes(s, end, *conv);
123 conv_ext0le(s, end, *conv);
135 conv_ext0be32(s, end, *conv);
143 conv_swap4bytes(s, end, *conv);
152 conv_ext0le32(s, end, *conv);