Searched refs:uchar (Results 1 - 25 of 194) sorted by relevance

12345678

/external/libcxx/test/std/depr/depr.c.headers/
H A Duchar_h.pass.cpp13 // <uchar.h>
15 #include <uchar.h>
/external/opencv/otherlibs/highgui/
H A Dutils.h51 (((uchar*)(ptr))[0] = (clr).b, \
52 ((uchar*)(ptr))[1] = (clr).g, \
53 ((uchar*)(ptr))[2] = (clr).r)
56 #define saturate(x) (uchar)(((x) & ~255) == 0 ? (x) : ~((x)>>31))
61 void icvCvt_BGR2Gray_8u_C3C1R( const uchar* bgr, int bgr_step,
62 uchar* gray, int gray_step,
64 void icvCvt_BGRA2Gray_8u_C4C1R( const uchar* bgra, int bgra_step,
65 uchar* gray, int gray_step,
67 void icvCvt_Gray2BGR_8u_C1C3R( const uchar* gray, int gray_step,
68 uchar* bg
[all...]
H A Dutils.cpp83 void icvCvt_BGR2Gray_8u_C3C1R( const uchar* rgb, int rgb_step,
84 uchar* gray, int gray_step,
94 gray[i] = (uchar)t;
121 void icvCvt_BGRA2Gray_8u_C4C1R( const uchar* rgba, int rgba_step,
122 uchar* gray, int gray_step,
132 gray[i] = (uchar)t;
140 void icvCvt_Gray2BGR_8u_C1C3R( const uchar* gray, int gray_step,
141 uchar* bgr, int bgr_step, CvSize size )
155 void icvCvt_BGRA2BGR_8u_C4C3R( const uchar* bgra, int bgra_step,
156 uchar* bg
[all...]
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 Dgrfmt_imageio.h24 bool ReadData( uchar* data, int step, int color );
40 bool WriteImage( const uchar* data, int step,
H A Dgrfmt_exr.h65 bool ReadData( uchar* data, int step, int color );
70 void UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample );
72 void UpSampleY( uchar *data, int xstep, int ystep, int ysample );
95 bool WriteImage( const uchar* data, int step,
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/syslinux/com32/cmenu/libmenu/
H A Dcmenu.h107 typedef unsigned char uchar; typedef
119 uchar submenunum; // For submenu's
120 uchar checked; // For check boxes
121 uchar radiomenunum; // Item mapping to a radio menu
163 uchar shortcut; // one of [A-Za-z0-9] shortcut for this menu item
164 uchar index; // Index within the menu array
165 uchar parindex; // Index of the menu in which this item appears.
176 uchar numitems; // how many items do we actually have
177 uchar menuwidth;
178 uchar ro
[all...]
/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...]
H A Dunicode-cache-inl.h14 bool UnicodeCache::IsIdentifierStart(unibrow::uchar c) {
19 bool UnicodeCache::IsIdentifierPart(unibrow::uchar c) {
24 bool UnicodeCache::IsLineTerminator(unibrow::uchar c) {
29 bool UnicodeCache::IsLineTerminatorSequence(unibrow::uchar c,
30 unibrow::uchar next) {
37 bool UnicodeCache::IsWhiteSpace(unibrow::uchar c) {
42 bool UnicodeCache::IsWhiteSpaceOrLineTerminator(unibrow::uchar c) {
H A Dunicode-cache.h24 inline bool IsIdentifierStart(unibrow::uchar c);
25 inline bool IsIdentifierPart(unibrow::uchar c);
26 inline bool IsLineTerminator(unibrow::uchar c);
27 inline bool IsLineTerminatorSequence(unibrow::uchar c, unibrow::uchar next);
29 inline bool IsWhiteSpace(unibrow::uchar c);
30 inline bool IsWhiteSpaceOrLineTerminator(unibrow::uchar c);
H A Dunicode-inl.h14 template <class T, int s> bool Predicate<T, s>::get(uchar code_point) {
21 uchar code_point) {
27 template <class T, int s> int Mapping<T, s>::get(uchar c, uchar n,
28 uchar* result) {
42 template <class T, int s> int Mapping<T, s>::CalculateValue(uchar c, uchar n,
43 uchar* result) {
76 uchar c,
113 uchar Utf
[all...]
/external/opencv/
H A DWLNonFileByteStream.h37 uchar* GetByte();
44 uchar* m_start;
45 uchar* m_end;
46 uchar* m_current;
H A DWLNonFileByteStream.cpp36 m_start = new uchar[data_size];
73 *m_current++ = (uchar)val;
79 uchar* data = (uchar*)buffer;
103 uchar *current = m_current;
107 current[0] = (uchar)val;
108 current[1] = (uchar)(val >> 8);
121 uchar *current = m_current;
125 current[0] = (uchar)val;
126 current[1] = (uchar)(va
[all...]
/external/libutf/
H A Dutfdef.h1 #define uchar _utfuchar macro
8 typedef unsigned char uchar; typedef
H A Dutflen.c28 c = *(uchar*)s;
/external/opencv/cv/src/
H A Dcvinpaint.cpp91 num += CV_MAT_ELEM(*f,uchar,i,j)!=0;
121 if (CV_MAT_ELEM(*f,uchar,i,j)!=0) {
217 if( CV_MAT_ELEM(*f,uchar,i1,j1) != INSIDE )
218 if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE )
225 else if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE )
244 CV_MAT_ELEM(*f,uchar,ii,jj) = (uchar)known;
254 if (CV_MAT_ELEM(*f,uchar,i,j)==INSIDE) {
260 CV_MAT_ELEM(*f,uchar,i,j) = BAND;
269 if (CV_MAT_ELEM(*f,uchar,
[all...]
H A D_cv.h60 typedef unsigned char uchar; typedef
71 extern const uchar icvSaturate8u_cv[];
101 uchar **ptr;
105 uchar *state;
/external/webrtc/webrtc/modules/video_processing/test/
H A DwriteYUV420file.m13 fwrite(fid,uint8(Y(:,:,k).'), 'uchar');
16 fwrite(fid,uint8(U(:,:,k).'), 'uchar');
19 fwrite(fid,uint8(V(:,:,k).'), 'uchar');
/external/opencv/cvaux/src/
H A Dcvprewarp.cpp48 uchar * prewarp_1, /* prewarp image 1 */
49 uchar * prewarp_2, /* prewarp image 2 */
74 icvGetColor( uchar * valueRGB )
88 uchar * prewarp, /* prewarp image */
98 uchar *curr_point;
145 uchar * prewarp_1, /* prewarp image 1 */
146 uchar * prewarp_2, /* prewarp image 2 */
H A Dcvmorphing.cpp46 icvMorphEpilines8uC3( uchar * first_pix, /* raster epiline from image 1 */
47 uchar * second_pix, /* raster epiline from image 2 */
48 uchar * dst_pix, /* raster epiline from dest image */
120 dst_pix[indexImg1] = (uchar) (((int) (first_pix[begLineIndex]) * s) >> 8);
125 dst_pix[indexImg1] = (uchar) (((int) (first_pix[begLineIndex + 1]) * s) >> 8);
130 dst_pix[indexImg1] = (uchar) (((int) (first_pix[begLineIndex + 2]) * s) >> 8);
210 (uchar) (dst_pix[indexImg1] +
211 (uchar) (((unsigned int) (second_pix[begLineIndex]) * s1) >> 8));
217 (uchar) (dst_pix[indexImg1] +
218 (uchar) (((unsigne
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
H A DBidiFmwk.java195 char uchar;
244 for (i = 0, uchar = 0x0030; i < 6; i++, uchar++) {
246 pseudoToUChar[c] = uchar;
247 UCharToPseudo[uchar & 0x00ff] = c;
250 for (i = 6, uchar = 0x0666; i < 10; i++, uchar++) {
252 pseudoToUChar[c] = uchar;
253 UCharToPseud2[uchar & 0x00ff] = c;
256 for (i = 10, uchar
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DBidiFmwk.java194 char uchar;
243 for (i = 0, uchar = 0x0030; i < 6; i++, uchar++) {
245 pseudoToUChar[c] = uchar;
246 UCharToPseudo[uchar & 0x00ff] = c;
249 for (i = 6, uchar = 0x0666; i < 10; i++, uchar++) {
251 pseudoToUChar[c] = uchar;
252 UCharToPseud2[uchar & 0x00ff] = c;
255 for (i = 10, uchar
[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;

Completed in 999 milliseconds

12345678