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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/depr/depr.c.headers/
uchar_h.pass.cpp 13 // <uchar.h>
15 #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...]
  /external/opencv3/modules/imgcodecs/src/
utils.hpp 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))
58 void icvCvt_BGR2Gray_8u_C3C1R( const uchar* bgr, int bgr_step,
59 uchar* gray, int gray_step,
61 void icvCvt_BGRA2Gray_8u_C4C1R( const uchar* bgra, int bgra_step,
62 uchar* gray, int gray_step,
68 void icvCvt_Gray2BGR_8u_C1C3R( const uchar* gray, int gray_step,
69 uchar* bgr, int bgr_step, CvSize size )
    [all...]
bitstrm.hpp 80 uchar* m_start;
81 uchar* m_end;
82 uchar* m_current;
94 // class RLByteStream - uchar-oriented stream.
95 // l in prefix means that the least significant uchar of a multi-uchar value goes first
107 // class RMBitStream - uchar-oriented stream.
108 // m in prefix means that the most significant uchar of a multi-uchar value go first
127 virtual bool open( std::vector<uchar>& buf )
    [all...]
  /external/v8/src/
unicode.h 18 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 c, uchar n, uchar* result)
    [all...]
unicode-cache-inl.h 14 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) {
unicode-cache.h 24 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);
  /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/opencv3/modules/cudaarithm/src/cuda/
add_weighted.cu 106 addWeightedImpl<uchar, uchar, uchar >,
107 addWeightedImpl<uchar, uchar, schar >,
108 addWeightedImpl<uchar, uchar, ushort>,
109 addWeightedImpl<uchar, uchar, short >,
110 addWeightedImpl<uchar, uchar, int >
    [all...]
  /external/opencv3/modules/features2d/src/
agast_score.hpp 58 int agast_cornerScore(const uchar* ptr, const int pixel[], int threshold);
fast_score.hpp 57 int cornerScore(const uchar* ptr, const int pixel[], int threshold);
  /external/opencv3/modules/core/include/opencv2/core/cuda/
vec_math.hpp 164 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, uchar, uchar)
165 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, char, uchar)
166 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, ushort, uchar)
167 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, short, uchar)
168 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, int, uchar)
169 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, uint, uchar)
170 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, float, uchar)
171 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, double, uchar)
173 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(~, uchar, uchar
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
vec_math.hpp 162 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, uchar, uchar)
163 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, char, uchar)
164 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, ushort, uchar)
165 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, short, uchar)
166 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, int, uchar)
167 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, uint, uchar)
168 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, float, uchar)
169 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(!, double, uchar)
171 CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(~, uchar, uchar
    [all...]
  /external/opencv3/modules/cudacodec/src/cuda/
rgb_to_yv12.cu 59 __device__ __forceinline__ void rgb_to_y(const uchar b, const uchar g, const uchar r, uchar& y)
61 y = static_cast<uchar>(((int)(30 * r) + (int)(59 * g) + (int)(11 * b)) / 100);
64 __device__ __forceinline__ void rgb_to_yuv(const uchar b, const uchar g, const uchar r, uchar& y, uchar& u, uchar& v
    [all...]
  /external/libutf/
utfdef.h 1 #define uchar _utfuchar macro
8 typedef unsigned char uchar; typedef
  /external/opencv3/modules/hal/include/opencv2/
hal.hpp 66 int normHamming(const uchar* a, int n);
67 int normHamming(const uchar* a, const uchar* b, int n);
69 int normHamming(const uchar* a, int n, int cellSize);
70 int normHamming(const uchar* a, const uchar* b, int n, int cellSize);
79 int normL1_(const uchar* a, const uchar* b, int n);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 61 uchar *out = (uchar *)info->outPtr[0];
62 const uchar *in = (uchar *)info->inPtr[0];
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];
  /external/opencv3/modules/photo/src/
inpaint.cpp 93 num += CV_MAT_ELEM(*f,uchar,i,j)!=0;
123 if (CV_MAT_ELEM(*f,uchar,i,j)!=0) {
219 if( CV_MAT_ELEM(*f,uchar,i1,j1) != INSIDE )
220 if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE )
227 else if( CV_MAT_ELEM(*f,uchar,i2,j2) != INSIDE )
246 CV_MAT_ELEM(*f,uchar,ii,jj) = (uchar)known;
256 if (CV_MAT_ELEM(*f,uchar,i,j)==INSIDE) {
262 CV_MAT_ELEM(*f,uchar,i,j) = BAND;
271 if (CV_MAT_ELEM(*f,uchar,i,j) == CHANGE)
    [all...]
  /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/opencv3/samples/cpp/
image.cpp 64 MatIterator_<uchar> it = planes[0].begin<uchar>(), it_end = planes[0].end<uchar>();
68 *it = saturate_cast<uchar>(v*v/255.);
75 uchar* Uptr = planes[1].ptr<uchar>(y);
78 Uptr[x] = saturate_cast<uchar>((Uptr[x]-128)/2 + 128);
79 uchar& Vxy = planes[2].at<uchar>(y, x);
80 Vxy = saturate_cast<uchar>((Vxy-128)/2 + 128)
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/core/interoperability_with_OpenCV_1/
interoperability_with_OpenCV_1.cpp 70 MatIterator_<uchar> it = planes[0].begin<uchar>(), it_end = planes[0].end<uchar>();
74 *it = saturate_cast<uchar>(v*v/255);
80 uchar* Uptr = planes[1].ptr<uchar>(y);
83 Uptr[x] = saturate_cast<uchar>((Uptr[x]-128)/2 + 128);
86 uchar& Vxy = planes[2].at<uchar>(y, x);
87 Vxy = saturate_cast<uchar>((Vxy-128)/2 + 128)
    [all...]

Completed in 552 milliseconds

1 2 3 4 5 6 7 8 91011>>