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

/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/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/icu4c/common/
H A Ducharstrie.cpp41 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { argument
50 if(uchar<*pos++) {
62 if(uchar==*pos++) {
92 if(uchar==*pos++) {
103 UCharsTrie::nextImpl(const UChar *pos, int32_t uchar) { argument
107 return branchNext(pos, node, uchar);
111 if(uchar==*pos++) {
134 UCharsTrie::next(int32_t uchar) { argument
142 if(uchar==*pos++) {
153 return nextImpl(pos, uchar);
170 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...]
H A Dubidi.c20 #include "unicode/uchar.h"
333 UChar32 uchar; local
346 U16_NEXT(text, i, length, uchar);
347 dir = u_charDirection(uchar);
364 UChar32 uchar; local
368 U16_NEXT(text, i, length, uchar);
369 dirProp=(DirProp)ubidi_getCustomizedClass(pBiDi, uchar);
395 UChar32 uchar; local
448 U16_NEXT(text, i, length, uchar);
449 flags|=DIRPROP_FLAG(dirProp=(DirProp)ubidi_getCustomizedClass(pBiDi, uchar));
1446 UChar32 uchar; local
1471 UChar32 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/libvpx/vp8/common/
H A Dentropy.c19 #define uchar unsigned char /* typedefs can clash */ macro
22 typedef const uchar cuchar;
/external/quake/quake/src/QW/scitech/include/
H A Ddebug.h239 typedef unsigned char uchar; typedef
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DDEBUG.H239 typedef unsigned char uchar; typedef
/external/icu4c/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);
185 * @param uchar Input char value. Values below 0 and above 0xffff will never match.
189 UStringTrieResult next(int32_t uchar);
473 // Handles a branch node for both next(uchar) and next(string).
474 UStringTrieResult branchNext(const UChar *pos, int32_t length, int32_t uchar);
477 UStringTrieResult nextImpl(const UChar *pos, int32_t uchar);
/external/v8/src/
H A Dunicode.h40 typedef unsigned int uchar; typedef in namespace:unibrow
53 inline bool get(uchar c);
56 bool CalculateValue(uchar c);
59 inline CacheEntry(uchar code_point, bool value)
62 uchar code_point_ : 21;
78 inline int get(uchar c, uchar n, uchar* result);
81 int CalculateValue(uchar c, uchar
[all...]
/external/jhead/
H A Djhead.h32 typedef unsigned char uchar; typedef
53 uchar * Data;
/external/valgrind/main/VEX/switchback/
H A Dtest_emfloat.c430 typedef unsigned char uchar; typedef
461 #define uchar unsigned char macro
526 uchar sign);
528 uchar sign);
541 static void AddSubInternalFPF(uchar operation,InternalFPF *x,
607 static uchar jtable[16] = {0,0,0,0,1,1,1,1,2,2,2,2,2,3,3,3};
693 uchar sign)
713 uchar sign)
1068 static void AddSubInternalFPF(uchar operation,
H A Dtest_bzip2.c5934 typedef unsigned char uchar; typedef
5937 uchar inbuf[M_BLOCK];
5938 uchar outbuf[M_BLOCK_OUT];
5939 uchar zbuf[M_BLOCK + 600 + (M_BLOCK / 100)];
5965 uchar mask = 1 << bitno;
/external/icu4c/test/cintltst/
H A Dcbiditst.c17 #include "unicode/uchar.h"
253 UChar uchar; local
298 for (i = 0, uchar = 0x0030; i < 6; i++, uchar++) {
300 pseudoToUChar[c] = uchar;
301 UCharToPseudo[uchar & 0x00ff] = c;
304 for (i = 6, uchar = 0x0666; i < 10; i++, uchar++) {
306 pseudoToUChar[c] = uchar;
307 UCharToPseud2[uchar
361 UChar uchar; local
[all...]
/external/opencv/cxcore/include/
H A Dcxtypes.h150 typedef unsigned char uchar; typedef
554 uchar* ptr;
631 m.data.ptr = (uchar*)data;
714 uchar* ptr;
786 #define CV_NODE_VAL(mat,node) ((void*)((uchar*)(node) + (mat)->valoffset))
787 #define CV_NODE_IDX(mat,node) ((int*)((uchar*)(node) + (mat)->idxoffset))
1075 uchar* ptr;
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c4430 typedef unsigned char uchar; typedef
4445 uchar mask = 1 << bitno;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 448 milliseconds