Home
last modified time | relevance | path

Searched refs:Ch (Results 1 – 25 of 148) sorted by relevance

123456

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/
H A Dresolve.hpp47 template<typename Mode, typename Ch, typename T>
52 output_iterator_adapter<Mode, Ch, T>,
59 template<typename Mode, typename Ch, typename T>
60 typename resolve_traits<Mode, Ch, T>::type
75 typedef typename resolve_traits<Mode, Ch, T>::type return_type; in resolve()
79 template<typename Mode, typename Ch, typename Tr>
80 mode_adapter< Mode, std::basic_streambuf<Ch, Tr> >
81 resolve(std::basic_streambuf<Ch, Tr>& sb) in resolve() argument
82 { return mode_adapter< Mode, std::basic_streambuf<Ch, Tr> >(wrap(sb)); } in resolve()
84 template<typename Mode, typename Ch, typename Tr>
[all …]
H A Dbuffer.hpp37 template< typename Ch,
38 typename Alloc = std::allocator<Ch> >
42 typedef typename Alloc::template rebind<Ch>::other allocator_type;
44 typedef std::allocator<Ch> allocator_type;
51 Ch* begin() const { return buf_; } in begin()
52 Ch* end() const { return buf_ + size_; } in end()
53 Ch* data() const { return buf_; } in data()
60 Ch* buf_;
64 template<typename Ch, typename Alloc>
65 void swap(basic_buffer<Ch, Alloc>& lhs, basic_buffer<Ch, Alloc>& rhs) in swap() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/
H A Dencodings.h97 typedef CharType Ch; typedef
104 os.Put(static_cast<Ch>(codepoint & 0xFF)); in Encode()
106 os.Put(static_cast<Ch>(0xC0 | ((codepoint >> 6) & 0xFF))); in Encode()
107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F)))); in Encode()
110 os.Put(static_cast<Ch>(0xE0 | ((codepoint >> 12) & 0xFF))); in Encode()
111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F))); in Encode()
112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F))); in Encode()
116 os.Put(static_cast<Ch>(0xF0 | ((codepoint >> 18) & 0xFF))); in Encode()
117 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 12) & 0x3F))); in Encode()
118 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F))); in Encode()
[all …]
H A Dencodedstream.h40 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1); in RAPIDJSON_DIAG_OFF()
42 typedef typename Encoding::Ch Ch; in RAPIDJSON_DIAG_OFF() typedef
48 Ch Peek() const { return current_; } in RAPIDJSON_DIAG_OFF()
49 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } in RAPIDJSON_DIAG_OFF()
53 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
55 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
56 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
63 Ch current_; in RAPIDJSON_DIAG_OFF()
70 typedef UTF8<>::Ch Ch; typedef
77 Ch Peek() const { return is_.Peek(); } in Peek()
[all …]
H A Dstream.h91 inline void PutUnsafe(Stream& stream, typename Stream::Ch c) { in PutUnsafe()
96 template<typename Stream, typename Ch>
97 inline void PutN(Stream& stream, Ch c, size_t n) { in PutN()
111 typedef typename Encoding::Ch Ch; typedef
113 GenericStringStream(const Ch *src) : src_(src), head_(src) {} in GenericStringStream()
115 Ch Peek() const { return *src_; } in Peek()
116 Ch Take() { return *src_++; } in Take()
119 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } in PutBegin()
120 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put()
122 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } in PutEnd()
[all …]
H A Dstringbuffer.h43 typedef typename Encoding::Ch Ch; typedef
56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put()
57 void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; } in PutUnsafe()
63 *stack_.template Push<Ch>() = '\0'; in ShrinkToFit()
65 stack_.template Pop<Ch>(1); in ShrinkToFit()
68 void Reserve(size_t count) { stack_.template Reserve<Ch>(count); } in Reserve()
69 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push()
70 Ch* PushUnsafe(size_t count) { return stack_.template PushUnsafe<Ch>(count); } in PushUnsafe()
71 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop()
73 const Ch* GetString() const { in GetString()
[all …]
H A Dmemorystream.h41 typedef char Ch; // byte typedef
43 …MemoryStream(const Ch *src, size_t size) : src_(src), begin_(src), end_(src + size), size_(size) {} in MemoryStream()
45 Ch Peek() const { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_; } in Peek()
46 Ch Take() { return RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_++; } in Take()
49 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } in PutBegin()
50 void Put(Ch) { RAPIDJSON_ASSERT(false); } in Put()
52 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } in PutEnd()
55 const Ch* Peek4() const { in Peek4()
59 const Ch* src_; //!< Current read position.
60 const Ch* begin_; //!< Original head of the string.
[all …]
H A Distreamwrapper.h52 typedef typename StreamType::char_type Ch; in RAPIDJSON_DIAG_OFF() typedef
55 Ch Peek() const { in RAPIDJSON_DIAG_OFF()
57 return RAPIDJSON_LIKELY(c != StreamType::traits_type::eof()) ? static_cast<Ch>(c) : '\0'; in RAPIDJSON_DIAG_OFF()
60 Ch Take() { in RAPIDJSON_DIAG_OFF()
64 return static_cast<Ch>(c); in RAPIDJSON_DIAG_OFF()
73 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
74 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
76 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
79 const Ch* Peek4() const { in RAPIDJSON_DIAG_OFF()
80 RAPIDJSON_ASSERT(sizeof(Ch) == 1); // Only usable for byte stream. in RAPIDJSON_DIAG_OFF()
[all …]
H A Dfilereadstream.h36 typedef char Ch; //!< Character type (byte). in RAPIDJSON_DIAG_OFF() typedef
50 Ch Peek() const { return *current_; } in RAPIDJSON_DIAG_OFF()
51 Ch Take() { Ch c = *current_; Read(); return c; } in RAPIDJSON_DIAG_OFF()
55 void Put(Ch) { RAPIDJSON_ASSERT(false); } in RAPIDJSON_DIAG_OFF()
57 Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
58 size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; } in RAPIDJSON_DIAG_OFF()
61 const Ch* Peek4() const { in RAPIDJSON_DIAG_OFF()
84 Ch *buffer_; in RAPIDJSON_DIAG_OFF()
86 Ch *bufferLast_; in RAPIDJSON_DIAG_OFF()
87 Ch *current_; in RAPIDJSON_DIAG_OFF()
H A Dpointer.h84 typedef typename ValueType::Ch Ch; //!< Character type from Value typedef
100 …const Ch* name; //!< Name of the token. It has null character at the end but it can co…
116 …explicit GenericPointer(const Ch* source, Allocator* allocator = 0) : allocator_(allocator), ownAl… in allocator_()
127 …explicit GenericPointer(const std::basic_string<Ch>& source, Allocator* allocator = 0) : allocator… in allocator_()
139 …GenericPointer(const Ch* source, size_t length, Allocator* allocator = 0) : allocator_(allocator),… in allocator_()
214 Ch *p = r.CopyFromRaw(*this, 1, token.length + 1);
215 std::memcpy(p, token.name, (token.length + 1) * sizeof(Ch));
229 GenericPointer Append(const Ch* name, SizeType length, Allocator* allocator = 0) const {
241 …nternal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >), (GenericPointer…
253 GenericPointer Append(const std::basic_string<Ch>& name, Allocator* allocator = 0) const {
[all …]
H A Dmemorybuffer.h38 typedef char Ch; // byte typedef
42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put()
47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push()
48 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop()
50 const Ch* GetBuffer() const { in GetBuffer()
51 return stack_.template Bottom<Ch>(); in GetBuffer()
H A Dprettywriter.h46 typedef typename Base::Ch Ch; typedef
65 PrettyWriter& SetIndent(Ch indentChar, unsigned indentCharCount) { in SetIndent()
93 bool RawNumber(const Ch* str, SizeType length, bool copy = false) {
99 bool String(const Ch* str, SizeType length, bool copy = false) {
106 bool String(const std::basic_string<Ch>& str) { in String()
117 … bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); }
120 bool Key(const std::basic_string<Ch>& str) { in Key()
173 bool String(const Ch* str) { return String(str, internal::StrLen(str)); } in String()
174 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); } in Key()
187 …bool RawValue(const Ch* json, size_t length, Type type) { PrettyPrefix(type); return Base::WriteRa… in RawValue()
[all …]
H A Ddocument.h250 typedef CharType Ch; //!< character type of the string
322 operator const Ch *() const { return s; }
324 const Ch* const s; //!< plain CharType pointer
470 struct TypeHelper<ValueType, const typename ValueType::Ch*> {
471 typedef const typename ValueType::Ch* StringType;
480 struct TypeHelper<ValueType, std::basic_string<typename ValueType::Ch> > {
481 typedef std::basic_string<typename ValueType::Ch> StringType;
546 typedef typename Encoding::Ch Ch; //!< Character type derived from Encoding.
547 typedef GenericStringRef<Ch> StringRefType; //!< Reference to a constant string
676 …GenericValue(const Ch* s, SizeType length) RAPIDJSON_NOEXCEPT : data_() { SetStringRaw(StringRef(s…
[all …]
H A Dwriter.h89 typedef typename SourceEncoding::Ch Ch; typedef
186 bool RawNumber(const Ch* str, SizeType length, bool copy = false) {
192 bool String(const Ch* str, SizeType length, bool copy = false) {
199 bool String(const std::basic_string<Ch>& str) { in String()
210 … bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); }
239 bool String(const Ch* str) { return String(str, internal::StrLen(str)); } in String()
240 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); } in Key()
252 …bool RawValue(const Ch* json, size_t length, Type type) { Prefix(type); return EndValue(WriteRawVa… in RawValue()
286 PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p)); in WriteInt()
295 PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p)); in WriteUint()
[all …]
H A Dschema.h167 typedef typename Encoding::Ch Ch; typedef
185 bool RawNumber(const Ch* str, SizeType len, bool) { in RawNumber()
186 WriteBuffer(kNumberType, str, len * sizeof(Ch)); in RawNumber()
190 bool String(const Ch* str, SizeType len, bool) { in String()
191 WriteBuffer(kStringType, str, len * sizeof(Ch)); in String()
196 bool Key(const Ch* str, SizeType len, bool copy) { return String(str, len, copy); } in Key()
265 typedef typename ValueType::Ch Ch; typedef
316 const Ch* invalidKeyword;
344 typedef typename EncodingType::Ch Ch; typedef
744 bool String(Context& context, const Ch* str, SizeType length, bool) const { in String()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/device/
H A Dnull.hpp23 template<typename Ch, typename Mode>
26 typedef Ch char_type;
32 std::streamsize read(Ch*, std::streamsize) { return -1; } in read() argument
33 std::streamsize write(const Ch*, std::streamsize n) { return n; } in write() argument
42 template<typename Ch>
43 struct basic_null_source : private basic_null_device<Ch, input> {
44 typedef Ch char_type;
46 using basic_null_device<Ch, input>::read;
47 using basic_null_device<Ch, input>::close;
53 template<typename Ch>
[all …]
H A Darray.hpp29 template<typename Mode, typename Ch>
32 typedef Ch char_type;
57 template<typename Ch> \
58 struct BOOST_PP_CAT(basic_, name) : detail::array_adapter<mode, Ch> { \
60 typedef detail::array_adapter<mode, Ch> base_type; \
73 BOOST_PP_CAT(basic_, name)(Ch (&ar)[N]) \
89 template<typename Mode, typename Ch>
90 array_adapter<Mode, Ch>::array_adapter in array_adapter()
95 template<typename Mode, typename Ch>
96 array_adapter<Mode, Ch>::array_adapter in array_adapter()
[all …]
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dsha256.c22 static inline u32 Ch(u32 x, u32 y, u32 z) in Ch() function
66 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
68 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform()
70 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2]; in sha256_transform()
72 t1 = e + e1(b) + Ch(b, c, d) + 0xe9b5dba5 + W[3]; in sha256_transform()
74 t1 = d + e1(a) + Ch(a, b, c) + 0x3956c25b + W[4]; in sha256_transform()
76 t1 = c + e1(h) + Ch(h, a, b) + 0x59f111f1 + W[5]; in sha256_transform()
78 t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6]; in sha256_transform()
80 t1 = a + e1(f) + Ch(f, g, h) + 0xab1c5ed5 + W[7]; in sha256_transform()
83 t1 = h + e1(e) + Ch(e, f, g) + 0xd807aa98 + W[8]; in sha256_transform()
[all …]
/OK3568_Linux_fs/buildroot/package/rapidxml/
H A D0001-ensure-internal-print-operations-are-declared-before.patch27 + template<class OutIt, class Ch> inline OutIt print_cdata_node(OutIt out, const xml_node<Ch
28 + template<class OutIt, class Ch> inline OutIt print_children(OutIt out, const xml_node<Ch> …
29 + template<class OutIt, class Ch> inline OutIt print_comment_node(OutIt out, const xml_node<
30 + template<class OutIt, class Ch> inline OutIt print_data_node(OutIt out, const xml_node<Ch>…
31 + template<class OutIt, class Ch> inline OutIt print_declaration_node(OutIt out, const xml_n…
32 + template<class OutIt, class Ch> inline OutIt print_doctype_node(OutIt out, const xml_node<
33 + template<class OutIt, class Ch> inline OutIt print_element_node(OutIt out, const xml_node<
34 + template<class OutIt, class Ch> inline OutIt print_pi_node(OutIt out, const xml_node<Ch> *…
37 template<class OutIt, class Ch>
38 inline OutIt print_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/
H A Dconcepts.hpp28 template<typename Mode, typename Ch = char>
30 typedef Ch char_type;
54 template<typename Mode, typename Ch = wchar_t>
55 struct wdevice : device<Mode, Ch> { };
64 template<typename Mode, typename Ch = char>
66 typedef Ch char_type;
96 template<typename Mode, typename Ch = wchar_t>
97 struct wfilter : filter<Mode, Ch> { };
110 template<typename Mode, typename Ch = char>
111 struct multichar_filter : filter<Mode, Ch> {
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/
H A Dclassification.hpp43 bool operator()( CharT Ch ) const in operator ()()
45 return std::use_facet< std::ctype<CharT> >(m_Locale).is( m_Type, Ch ); in operator ()()
50 bool operator()( char const Ch ) const in operator ()()
52 return std::use_facet< std::ctype<char> >(m_Locale).is( m_Type, Ch ); in operator ()()
216 bool operator()( Char2T Ch ) const in operator ()()
223 return ::std::binary_search(Storage, Storage+m_Size, Ch); in operator ()()
264 bool operator()( Char2T Ch ) const in operator ()()
266 return ( m_From <= Ch ) && ( Ch <= m_To ); in operator ()()
290 bool operator()( CharT Ch ) const in operator ()()
292 return m_Pred1(Ch) && m_Pred2(Ch); in operator ()()
[all …]
H A Dcase_conv.hpp41 CharT operator ()( CharT Ch ) const in operator ()()
44 … return std::tolower( static_cast<typename boost::make_unsigned <CharT>::type> ( Ch )); in operator ()()
46 return std::tolower<CharT>( Ch, *m_Loc ); in operator ()()
63 CharT operator ()( CharT Ch ) const in operator ()()
66 … return std::toupper( static_cast<typename boost::make_unsigned <CharT>::type> ( Ch )); in operator ()()
68 return std::toupper<CharT>( Ch, *m_Loc ); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/
H A Dstrfunc.h29 template <typename Ch>
30 inline SizeType StrLen(const Ch* s) { in StrLen()
31 const Ch* p = s; in StrLen()
38 bool CountStringCodePoint(const typename Encoding::Ch* s, SizeType length, SizeType* outCount) { in CountStringCodePoint()
40 const typename Encoding::Ch* end = s + length; in CountStringCodePoint()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/streambuf/
H A Dlinked_streambuf.hpp26 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
40 template<typename Ch, typename Tr = BOOST_IOSTREAMS_CHAR_TRAITS(Ch) >
41 class linked_streambuf : public BOOST_IOSTREAMS_BASIC_STREAMBUF(Ch, Tr) {
67 typedef BOOST_IOSTREAMS_BASIC_STREAMBUF(Ch, Tr) base;
89 virtual void set_next(linked_streambuf<Ch, Tr>* /* next */) { } in set_next() argument
/OK3568_Linux_fs/kernel/drivers/media/i2c/nvp6158_drv/
H A Dnvp6158_video_eq.h40 unsigned char Ch; member
49 unsigned char Ch; member
59 unsigned char Ch; member
66 unsigned char Ch; member
72 unsigned char Ch; member
198 unsigned char Ch; member
204 CABLE_DISTANCE NVP6158_NC_VD_MANUAL_CABLE_DISTANCE_Get (unsigned char Ch, video_input_cable_dist *p…

123456