Lines Matching refs:s

33 conv_ext0be32(const UChar* s, const UChar* end, UChar* conv)  in conv_ext0be32()  argument
35 while (s < end) { in conv_ext0be32()
39 *conv++ = *s++; in conv_ext0be32()
44 conv_ext0le32(const UChar* s, const UChar* end, UChar* conv) in conv_ext0le32() argument
46 while (s < end) { in conv_ext0le32()
47 *conv++ = *s++; in conv_ext0le32()
55 conv_ext0be(const UChar* s, const UChar* end, UChar* conv) in conv_ext0be() argument
57 while (s < end) { in conv_ext0be()
59 *conv++ = *s++; in conv_ext0be()
64 conv_ext0le(const UChar* s, const UChar* end, UChar* conv) in conv_ext0le() argument
66 while (s < end) { in conv_ext0le()
67 *conv++ = *s++; in conv_ext0le()
73 conv_swap4bytes(const UChar* s, const UChar* end, UChar* conv) in conv_swap4bytes() argument
75 while (s < end) { in conv_swap4bytes()
76 *conv++ = s[3]; in conv_swap4bytes()
77 *conv++ = s[2]; in conv_swap4bytes()
78 *conv++ = s[1]; in conv_swap4bytes()
79 *conv++ = s[0]; in conv_swap4bytes()
80 s += 4; in conv_swap4bytes()
85 conv_swap2bytes(const UChar* s, const UChar* end, UChar* conv) in conv_swap2bytes() argument
87 while (s < end) { in conv_swap2bytes()
88 *conv++ = s[1]; in conv_swap2bytes()
89 *conv++ = s[0]; in conv_swap2bytes()
90 s += 2; in conv_swap2bytes()
95 conv_encoding(OnigEncoding from, OnigEncoding to, const UChar* s, const UChar* end, in conv_encoding() argument
98 int len = end - s; in conv_encoding()
105 conv_ext0be(s, end, *conv); in conv_encoding()
113 conv_swap2bytes(s, end, *conv); in conv_encoding()
122 conv_ext0le(s, end, *conv); in conv_encoding()
134 conv_ext0be32(s, end, *conv); in conv_encoding()
142 conv_swap4bytes(s, end, *conv); in conv_encoding()
151 conv_ext0le32(s, end, *conv); in conv_encoding()