HomeSort by relevance Sort by last modified time
    Searched refs:uchar (Results 76 - 100 of 374) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/rs/cpu_ref/
rsCpuIntrinsicHistogram.cpp 168 uchar *in = (uchar *)info->inPtr[0];
185 uchar *in = (uchar *)info->inPtr[0];
201 uchar *in = (uchar *)info->inPtr[0];
216 uchar *in = (uchar *)info->inPtr[0];
234 uchar *in = (uchar *)info->inPtr[0]
    [all...]
rsCpuIntrinsicBlur.cpp 114 const uchar *ptrIn, int iStride, const float* gPtr, int iradius) {
116 const uchar *pi = ptrIn + x*4;
132 const uchar *ptrIn, int iStride, const float* gPtr, int iradius) {
134 const uchar *pi = ptrIn + x;
152 extern "C" void rsdIntrinsicBlurU1_K(uchar *out, uchar const *in, size_t w, size_t h,
166 const uchar *ptrIn, int iStride, const float* gPtr, int ct,
182 const uchar *pi = ptrIn;
200 const uchar *ptrIn, int iStride, const float* gPtr, int ct, int x1, int x2) {
206 const uchar *pi = ptrIn
    [all...]
rsCpuIntrinsicResize.cpp 156 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3,
177 return (uchar)p;
211 uchar *dst,
215 uchar const *srcn,
216 uchar const *src0,
217 uchar const *src1
    [all...]
rsCpuIntrinsicConvolve3x3.cpp 102 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
127 static void ConvolveOneU1(const RsExpandKernelDriverInfo *info, uint32_t x, uchar *out,
128 const uchar *py0, const uchar *py1, const uchar *py2,
188 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/errors/src/
issue13635.go 14 _ C.uchar = "uc" // ERROR HERE: C\.uchar
  /prebuilts/go/linux-x86/misc/cgo/errors/src/
issue13635.go 14 _ C.uchar = "uc" // ERROR HERE: C\.uchar
  /external/opencv/cvaux/src/
cveigenobjects.cpp 213 int ioFlags, int ioBufSize, uchar* buffer,
240 uchar *buffer2;
249 buffer2 = (uchar *)cvAlloc( sizeof( uchar ) * n );
257 uchar *bu1 = buffer, *bu2;
318 uchar u1 = bu1[ij];
319 uchar u2 = bu2[ij];
354 uchar **objects = (uchar **) (((CvInput *) & input)->data);
358 uchar *bu = objects[i]
    [all...]
cvsegment.cpp 84 icvSegmFloodFill_Stage1( uchar* pImage, int step,
85 uchar* pMask, int maskStep,
91 uchar* img = pImage + step * seed.y;
92 uchar* mask = pMask + maskStep * (seed.y + 1);
206 icvSegmFloodFill_Stage2( uchar* pImage, int step,
207 uchar* pMask, int maskStep,
211 uchar* img = pImage + step * rect.y + rect.x * 3;
212 uchar* mask = pMask + maskStep * rect.y + rect.x;
213 uchar uv[] = { (uchar)newVal[0], (uchar)newVal[1], (uchar)newVal[2] }
    [all...]
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 45 IPCVAPI(CvStatus, icvCalcContrastHist8uC1R, ( uchar** img, int step, CvSize size,
48 IPCVAPI(CvStatus, icvCalcContrastHistMask8uC1R, ( uchar** img, int step,
49 uchar* mask, int mask_step, CvSize size,
62 icvCalcContrastHist8uC1R( uchar** img, int step, CvSize size,
106 uchar *data0 = img[0];
175 icvCalcContrastHistMask8uC1R( uchar** img, int step, uchar* mask, int mask_step,
220 uchar *data0 = img[0];
221 uchar *maskp = mask;
296 uchar* data[CV_HIST_MAX_DIM]
    [all...]
cvstereobm.cpp 108 static void icvPrefilter( const CvMat* src, CvMat* dst, int winsize, int ftzero, uchar* buf )
114 uchar tab[TABSZ];
115 const uchar* sptr = src->data.ptr;
122 tab[x] = (uchar)(x - OFS < -ftzero ? 0 : x - OFS > ftzero ? ftzero*2 : x - OFS + ftzero);
135 const uchar* top = sptr + srcstep*MAX(y-wsz2-1,0);
136 const uchar* bottom = sptr + srcstep*MIN(y+wsz2,size.height-1);
137 const uchar* prev = sptr + srcstep*MAX(y-1,0);
138 const uchar* curr = sptr + srcstep*y;
139 const uchar* next = sptr + srcstep*MIN(y+1,size.height-1);
140 uchar* dptr = dst->data.ptr + dst->step*y
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 162 uchar buffer[256*3];
187 bool GrFmtBmpReader::ReadData( uchar* data, int step, int color )
190 uchar buffer[buffer_size];
191 uchar bgr_buffer[buffer_size];
192 uchar gray_palette[256];
194 uchar* src = buffer;
195 uchar* bgr = bgr_buffer;
208 src = new uchar[src_pitch+32];
216 if( m_width*3 + 32 > buffer_size ) bgr = new uchar[m_width*3 + 32];
253 uchar* line_end = data + width3
    [all...]
grfmt_base.h 78 virtual bool ReadData( uchar* data, int step, int color ) = 0;
101 virtual bool WriteImage( const uchar* data, int step,
grfmt_png.cpp 88 return png_check_sig( (uchar*)signature, m_sign_len ) != 0;
182 bool GrFmtPngReader::ReadData( uchar* data, int step, int color )
185 uchar** buffer = 0;
229 buffer = new uchar*[m_height];
266 bool GrFmtPngWriter::WriteImage( const uchar* data, int step,
272 uchar** buffer = 0;
307 buffer = new uchar*[height];
309 buffer[y] = (uchar*)(data + y*step);
grfmt_tiff.cpp 165 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color )
168 uchar* buffer = 0;
191 buffer = new uchar[tile_height0*tile_width0*4];
488 m_palette[i].r = (uchar)(m_temp_palette[i] >> 8);
489 m_palette[i].g = (uchar)(m_temp_palette[i + pal_length] >> 8);
490 m_palette[i].b = (uchar)(m_temp_palette[i + pal_length*2] >> 8);
559 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color )
562 uchar buffer[buffer_size];
563 uchar gray_palette[256];
565 uchar* src = buffer
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
grain.rs 20 uchar RS_KERNEL genRand() {
21 return (uchar)rsRand(0xff);
44 uchar RS_KERNEL blend9(uint32_t x, uint32_t y) {
72 return (uchar)p20;
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
grain.rs 20 uchar RS_KERNEL genRand() {
21 return (uchar)rsRand(0xff);
44 uchar RS_KERNEL blend9(uint32_t x, uint32_t y) {
72 return (uchar)p20;
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
grain.rs 20 uchar RS_KERNEL genRand() {
21 return (uchar)rsRand(0xff);
44 uchar RS_KERNEL blend9(uint32_t x, uint32_t y) {
72 return (uchar)p20;
  /external/opencv/cxcore/include/
cxcore.hpp 157 uchar* data() { return image ? (uchar*)image->imageData : 0; }
158 const uchar* data() const { return image ? (const uchar*)image->imageData : 0; }
162 uchar* roi_row(int y)
171 (uchar*)(image->imageData + y*image->widthStep) :
172 (uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep +
176 const uchar* roi_row(int y) const
185 (const uchar*)(image->imageData + y*image->widthStep) :
186 (const uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep
    [all...]
  /frameworks/rs/tests/lldb/tests/harness/
RS_funs.py 33 uchar abs(char v);
146 uchar clamp(uchar value, uchar min_value, uchar max_value);
147 uchar2 clamp(uchar2 value, uchar min_value, uchar max_value);
149 uchar3 clamp(uchar3 value, uchar min_value, uchar max_value);
151 uchar4 clamp(uchar4 value, uchar min_value, uchar max_value)
    [all...]
  /external/opencv/cxcore/src/
cxlut.cpp 105 const uchar* src, int srcstep, \
121 ICV_DEF_LUT_FUNC_8U_CN( 8u, uchar, 1 )
126 ICV_DEF_LUT_FUNC_8U_CN( 8u, uchar, 2 )
127 ICV_DEF_LUT_FUNC_8U_CN( 8u, uchar, 3 )
128 ICV_DEF_LUT_FUNC_8U_CN( 8u, uchar, 4 )
134 const uchar* src, int srcstep, \
186 ICV_DEF_LUT_FUNC_8U( 8u, uchar )
226 uchar* lut_data;
227 uchar* shuffled_lut = 0;
289 shuffled_lut = (uchar*)cvStackAlloc(half_size*2)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 264 #undef uchar macro
265 #define uchar unsigned char /* assuming == 8 bits */ macro
277 typedef uchar block;
454 #define PTA(x) ((poolp )((uchar *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 234 #undef uchar macro
235 #define uchar unsigned char /* assuming == 8 bits */ macro
247 typedef uchar block;
424 #define PTA(x) ((poolp )((uchar *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
    [all...]
  /external/opencv/ml/src/
_ml.h 113 uchar* data; int sstep, cstep; - trainData->data
114 uchar* classes; int clstep; int ncl;- trainClasses
115 uchar* tmask; int tmstep; int ntm; - typeMask
116 uchar* missed;int msstep, mcstep; -missedMeasurements...
118 uchar* sidx;int sistep; - sampleIdx
119 uchar* cidx;int cistep; - compIdx
124 uchar* data; \
126 uchar* classes; \
129 uchar* tmask; \
132 uchar* missed;
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 264 #undef uchar macro
265 #define uchar unsigned char /* assuming == 8 bits */ macro
277 typedef uchar block;
454 #define PTA(x) ((poolp )((uchar *)&(usedpools[2*(x)]) - 2*sizeof(block *)))
    [all...]
  /external/sfntly/cpp/src/test/
cmap_test.cc 145 for (int32_t uchar = GetParam().low_char();
146 uchar <= GetParam().high_char(); ++uchar) {
147 int32_t c1 = uchar;
149 c1 = TestUtils::EncodeOneChar(encoder1_, (int16_t)uchar);
150 int32_t c2 = uchar;
152 c2 = TestUtils::EncodeOneChar(encoder2_, (int16_t)uchar);

Completed in 591 milliseconds

1 2 34 5 6 7 8 91011>>