HomeSort by relevance Sort by last modified time
    Searched refs:uchar (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/depr/depr.c.headers/
uchar_h.disabled.cpp 12 // <uchar.h>
14 #include <uchar.h>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
uchar_h.pass.cpp 12 // <uchar.h>
14 #include <uchar.h>
  /external/opencv/otherlibs/highgui/
utils.h 51 (((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* bgr, int bgr_step, CvSize size )
    [all...]
utils.cpp 83 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* bgr, int bgr_step
    [all...]
bitstrm.h 56 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 value go firs
    [all...]
grfmt_jpeg2000.h 53 #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,
  /external/chromium_org/v8/src/
unicode.h 17 typedef unsigned int uchar; typedef in namespace:unibrow
30 inline bool get(uchar c);
33 bool CalculateValue(uchar c);
36 inline CacheEntry(uchar code_point, bool value)
39 uchar code_point_ : 21;
55 inline int get(uchar c, uchar n, uchar* result);
58 int CalculateValue(uchar c, uchar n, uchar* result)
    [all...]
  /external/opencv/
WLNonFileByteStream.h 37 uchar* GetByte();
44 uchar* m_start;
45 uchar* m_end;
46 uchar* m_current;
WLNonFileByteStream.cpp 36 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)(val >> 8);
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
utfdef.h 15 #define uchar _utfuchar macro
22 typedef unsigned char uchar; typedef
  /external/libutf/
utfdef.h 1 #define uchar _utfuchar macro
8 typedef unsigned char uchar; typedef
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 61 uchar *out = (uchar *)p->out;
62 const uchar *in = (uchar *)p->in;
66 const uchar *tr = (const uchar *)cp->lut->mHal.drvState.lod[0].mallocPtr;
67 const uchar *tg = &tr[256];
68 const uchar *tb = &tg[256];
69 const uchar *ta = &tb[256];
rsCpuIntrinsicYuvToRGB.cpp 66 static uchar4 rsYuvToRGBA_uchar4(uchar y, uchar u, uchar v) {
95 return (uchar4){static_cast<uchar>(p.x), static_cast<uchar>(p.y),
96 static_cast<uchar>(p.z), static_cast<uchar>(p.w)};
100 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
101 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/
basemmap.c 15 uchar *buf;
19 if(buf != (uchar*)(-1)){
20 uchar *cur, *lim = &buf[statbuf.st_size];
  /external/opencv/cv/src/
cvinpaint.cpp 91 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,i,j) == CHANGE)
    [all...]
  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
launchtest.rs 23 void __attribute__((kernel)) k_x(uchar in, uint32_t x) {
29 uchar __attribute__((kernel)) k_xy(uint32_t x, uint32_t y) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
rexx.l 16 uchar *cursor = ScanCB.cur;
18 uchar ch;
269 uchar *cursor = ScanCB.cur;
271 uchar ch;
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
crop_yuvf_420_to_yuvx_444.rs 29 uchar py = rsGetElementAtYuv_uchar_Y(mInput, x + src_x, y + src_y);
30 uchar pu = rsGetElementAtYuv_uchar_U(mInput, x + src_x, y + src_y);
31 uchar pv = rsGetElementAtYuv_uchar_V(mInput, x + src_x, y + src_y);
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
writeYUV420file.m 13 fwrite(fid,uint8(Y(:,:,k).'), 'uchar');
16 fwrite(fid,uint8(U(:,:,k).'), 'uchar');
19 fwrite(fid,uint8(V(:,:,k).'), 'uchar');
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
greyscale.rs 29 uchar RS_KERNEL toU8(uchar4 v_in) {
31 return (uchar)dot(f4.rgb, gMonoMult);
34 uchar4 RS_KERNEL toU8_4(uchar v_in) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
greyscale.fs 28 uchar RS_KERNEL toU8(uchar4 v_in) {
30 return (uchar)dot(f4.rgb, gMonoMult);
33 uchar4 RS_KERNEL toU8_4(uchar v_in) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
greyscale.rs 29 uchar RS_KERNEL toU8(uchar4 v_in) {
31 return (uchar)dot(f4.rgb, gMonoMult);
34 uchar4 RS_KERNEL toU8_4(uchar v_in) {
  /external/opencv/cvaux/src/
cvprewarp.cpp 48 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 */
cvmorphing.cpp 46 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) (((unsigned int) (second_pix[begLineIndex + 1]) * s1) >
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
yuv.rs 27 static uchar4 yuvToRGBA4(uchar y, uchar u, uchar v) {
86 uchar py = rsGetElementAtYuv_uchar_Y(mInput, x, y);
87 uchar pu = rsGetElementAtYuv_uchar_U(mInput, x, y);
88 uchar pv = rsGetElementAtYuv_uchar_V(mInput, x, y);

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 91011>>