Searched defs:uchar (Results 1 - 25 of 34) sorted by relevance

12

/external/libutf/
H A Dutfdef.h1 #define uchar _utfuchar macro
8 typedef unsigned char uchar; typedef
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg2000.h53 #undef uchar macro
68 bool ReadData( uchar* data, int step, int color );
73 bool ReadComponent8u( uchar *data, jas_matrix_t *buffer, int step, int cmpt,
91 bool WriteImage( const uchar* data, int step,
94 bool WriteComponent8u( jas_image_t *img, const uchar *data,
H A Dbitstrm.h56 typedef unsigned char uchar; typedef
79 uchar* m_start;
80 uchar* m_end;
81 uchar* m_current;
95 // class RLByteStream - uchar-oriented stream.
96 // l in prefix means that the least significant uchar of a multi-uchar value goes first
108 // class RMBitStream - uchar-oriented stream.
109 // m in prefix means that the most significant uchar of a multi-uchar valu
[all...]
/external/sfntly/cpp/src/test/
H A Dtest_utils.cc21 #include <unicode/uchar.h>
41 int32_t TestUtils::EncodeOneChar(UConverter* encoder, int16_t uchar) { argument
46 source[0] = (UChar)uchar;
56 uchar, u_errorName(status));
/external/bzip2/
H A Dunzcrash.c37 typedef unsigned char uchar; typedef
40 uchar inbuf[M_BLOCK];
41 uchar outbuf[M_BLOCK_OUT];
42 uchar zbuf[M_BLOCK + 600 + (M_BLOCK / 100)];
68 uchar mask = 1 << bitno;
/external/opencv3/3rdparty/libjasper/jasper/
H A Djas_config2.h73 #define uchar unsigned char macro
H A Djas_config.h152 #define uchar unsigned char macro
H A Djas_types.h195 #if !defined(uchar)
196 #define uchar unsigned char macro
/external/icu/icu4c/source/common/
H A Ducharstrie.cpp60 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { argument
69 if(uchar<*pos++) {
81 if(uchar==*pos++) {
111 if(uchar==*pos++) {
122 UCharsTrie::nextImpl(const UChar *pos, int32_t uchar) { argument
126 return branchNext(pos, node, uchar);
130 if(uchar==*pos++) {
153 UCharsTrie::next(int32_t uchar) { argument
161 if(uchar==*pos++) {
172 return nextImpl(pos, uchar);
189 int32_t uchar; local
[all...]
H A Dubidiln.c20 #include "unicode/uchar.h"
944 UChar uchar=pBiDi->text[logicalIndex]; local
946 if(IS_BIDI_CONTROL_CHAR(uchar)) {
972 uchar=pBiDi->text[j];
973 if(IS_BIDI_CONTROL_CHAR(uchar)) {
1039 UChar uchar; local
1062 uchar=pBiDi->text[k];
1063 if(IS_BIDI_CONTROL_CHAR(uchar)) {
1174 UChar uchar; local
1197 uchar
1280 UChar uchar; local
[all...]
/external/opencv/cv/src/
H A D_cv.h60 typedef unsigned char uchar; typedef
71 extern const uchar icvSaturate8u_cv[];
101 uchar **ptr;
105 uchar *state;
H A Dcvfilter.cpp49 static void default_x_filter_func( const uchar*, uchar*, void* ) argument
53 static void default_y_filter_func( uchar**, uchar*, int, int, void* ) argument
133 uchar* ptr;
179 row_tab_sz = cvAlign( max_rows*sizeof(uchar*), ALIGN );
182 CV_CALL( ptr = buffer = (uchar*)cvAlloc( total_buf_sz ));
184 rows = (uchar**)ptr;
231 uchar* bt = (uchar*)border_ta
[all...]
/external/icu/icu4c/source/common/unicode/
H A Ducharstrie.h157 * Equivalent to reset().next(uchar).
158 * @param uchar Input char value. Values below 0 and above 0xffff will never match.
162 inline UStringTrieResult first(int32_t uchar) { argument
164 return nextImpl(uchars_, uchar);
179 * @param uchar Input char value. Values below 0 and above 0xffff will never match.
183 UStringTrieResult next(int32_t uchar);
461 // Handles a branch node for both next(uchar) and next(string).
462 UStringTrieResult branchNext(const UChar *pos, int32_t length, int32_t uchar);
465 UStringTrieResult nextImpl(const UChar *pos, int32_t uchar);
/external/opencv3/samples/tapi/
H A Dpyrlk_optical_flow.cpp15 typedef unsigned char uchar; typedef
33 static void drawArrows(UMat& _frame, const vector<Point2f>& prevPts, const vector<Point2f>& nextPts, const vector<uchar>& status,
H A Dtvl1_optical_flow.cpp15 typedef unsigned char uchar; typedef
/external/v8/src/
H A Dunicode.h18 typedef unsigned int uchar; typedef in namespace:unibrow
31 inline bool get(uchar c);
35 bool CalculateValue(uchar c);
40 inline CacheEntry(uchar code_point, bool value)
44 uchar code_point() const { return CodePointField::decode(bit_field_); }
48 class CodePointField : public v8::internal::BitField<uchar, 0, 21> {};
67 inline int get(uchar c, uchar n, uchar* result);
70 int CalculateValue(uchar
[all...]
/external/opencv3/modules/core/include/opencv2/core/
H A Doperations.hpp306 CV_Assert(_w.data == (uchar*)&w.val[0] && _u.data == (uchar*)&u.val[0] && _vt.data == (uchar*)&vt.val[0]);
315 CV_Assert(_w.data == (uchar*)&w.val[0]);
326 CV_Assert(_dst.data == (uchar*)&dst.val[0]);
336 inline RNG::operator uchar() { return (uchar)next(); }
/external/opencv3/modules/imgcodecs/src/
H A Dgrfmt_jpeg2000.cpp61 #undef uchar macro
158 uchar* data = img.ptr();
286 bool Jpeg2KDecoder::readComponent8u( uchar *data, void *_buffer,
309 uchar* dst = data + (y - yoffset) * step - xoffset;
317 dst[x*ncmpts] = cv::saturate_cast<uchar>(pix);
323 dst[x*ncmpts] = cv::saturate_cast<uchar>(pix);
330 dst[x*ncmpts] = dst[(x+1)*ncmpts] = cv::saturate_cast<uchar>(pix);
336 pix = cv::saturate_cast<uchar>(pix);
338 dst[x*ncmpts] = (uchar)pix;
504 const uchar* dat
[all...]
/external/opencv3/modules/hal/include/opencv2/hal/
H A Ddefs.h260 uchar - unsigned 1 byte integer
284 typedef unsigned char uchar; typedef
586 uchar a = saturate_cast<uchar>(-100); // a = 0 (UCHAR_MIN)
601 template<typename _Tp> static inline _Tp saturate_cast(uchar v) { return _Tp(v); }
623 template<> inline uchar saturate_cast<uchar>(schar v) { return (uchar)std::max((int)v, 0); }
624 template<> inline uchar saturate_cast<uchar>(ushor
[all...]
/external/jhead/
H A Djhead.h32 typedef unsigned char uchar; typedef
53 uchar * Data;
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp104 typedef unsigned char uchar; typedef
105 uchar arr[4] = { uchar(x >> 24), uchar(x >> 16), uchar(x >> 8), uchar(x) };
113 typedef unsigned char uchar; typedef
114 uchar arr[4] = { uchar(x >> 24), uchar(
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c519 typedef unsigned char uchar; typedef
614 int my_read(int fd, uchar *pbuf, int len)
/external/opencv3/modules/imgproc/src/
H A Ddemosaicing.cpp90 int bayer2Gray(const uchar* bayer, int bayer_step, uchar* dst,
99 const uchar* bayer_end = bayer + width;
136 int bayer2RGB(const uchar* bayer, int bayer_step, uchar* dst, int width, int blue) const
149 const uchar* bayer_end = bayer + width;
227 int bayer2RGBA(const uchar*, int, uchar*, int, int) const argument
232 int bayer2RGB_EA(const uchar* bayer, int bayer_step, uchar* ds
492 bayer2RGB_EA(const uchar*, int, uchar*, int, int) const argument
[all...]
H A Dmorph.cpp75 template<> inline uchar MinOp<uchar>::operator ()(const uchar a, const uchar b) const { return CV_MIN_8U(a, b); }
76 template<> inline uchar MaxOp<uchar>::operator ()(const uchar a, const uchar b) const { return CV_MAX_8U(a, b); }
81 int operator()(const uchar*, uchar*, in argument
87 operator ()(const uchar**, uchar*, int, int, int) const argument
[all...]
/external/valgrind/VEX/switchback/
H A Dtest_emfloat.c428 typedef unsigned char uchar; typedef
459 #define uchar unsigned char macro
524 uchar sign);
526 uchar sign);
539 static void AddSubInternalFPF(uchar operation,InternalFPF *x,
605 static uchar jtable[16] = {0,0,0,0,1,1,1,1,2,2,2,2,2,3,3,3};
691 uchar sign)
711 uchar sign)
1066 static void AddSubInternalFPF(uchar operation,

Completed in 778 milliseconds

12