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

1 2 3 4 56 7 8 91011>>

  /external/jhead/
jpgfile.c 38 return (((uchar *)Short)[0] << 8) | ((uchar *)Short)[1];
47 static void process_COM (const uchar * Data, int length)
84 static void process_SOFn (const uchar * Data, int marker)
143 uchar * Data;
175 Data = (uchar *)malloc(itemlen);
184 Data[0] = (uchar)lh;
185 Data[1] = (uchar)ll;
209 Data = (uchar *)malloc(size);
341 uchar * Data
    [all...]
  /external/opencv3/modules/core/src/
alloc.cpp 64 uchar* udata = (uchar*)malloc(size + sizeof(void*) + CV_MALLOC_ALIGN);
67 uchar** adata = alignPtr((uchar**)udata + 1, CV_MALLOC_ALIGN);
76 uchar* udata = ((uchar**)ptr)[-1];
77 CV_DbgAssert(udata < (uchar*)ptr &&
78 ((uchar*)ptr - udata) <= (ptrdiff_t)(sizeof(void*)+CV_MALLOC_ALIGN));
187 binIdx[j] = (uchar)i;
201 uchar binIdx[MAX_BLOCK_SIZE/8+1]
    [all...]
  /external/v8/src/
unicode.cc 16 static const uchar kSentinel = static_cast<uchar>(-1);
30 static inline uchar TableGet(const int32_t* table, int index) {
35 static inline uchar GetEntry(int32_t entry) {
55 static bool LookupPredicate(const int32_t* table, uint16_t size, uchar chr) {
62 uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid));
80 uchar entry = GetEntry(field);
87 static const uchar kEndOfEncoding = kSentinel;
88 uchar chars[kW];
107 uchar chr
    [all...]
  /external/opencv/cv/src/
cvthresh.cpp 45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step,
46 CvSize roi, uchar thresh, uchar maxval, int type )
49 uchar tab[256];
67 tab[i] = (uchar)i;
75 tab[i] = (uchar)i;
79 tab[i] = (uchar)i;
91 uchar t0 = tab[src[j]];
92 uchar t1 = tab[src[j+1]]
    [all...]
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...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
means_yuvx_444_2d_to_1d.rs 38 uchar py = rsGetElementAtYuv_uchar_Y(mInput, src_x + i, src_y + x);
39 uchar pu = rsGetElementAtYuv_uchar_U(mInput, src_x + i, src_y + x);
40 uchar pv = rsGetElementAtYuv_uchar_V(mInput, src_x + i, src_y + x);
  /external/opencv3/modules/core/src/opencl/
mulspectrums.cl 56 __kernel void mulAndScaleSpectrums(__global const uchar * src1ptr, int src1_step, int src1_offset,
57 __global const uchar * src2ptr, int src2_step, int src2_offset,
58 __global uchar * dstptr, int dst_step, int dst_offset,
copyset.cl 53 __kernel void copyToMask(__global const uchar * srcptr, int src_step, int src_offset,
54 __global const uchar * mask, int mask_step, int mask_offset,
55 __global uchar * dstptr, int dst_step, int dst_offset,
115 __kernel void setMask(__global const uchar* mask, int maskstep, int maskoffset,
116 __global uchar* dstptr, int dststep, int dstoffset,
138 __kernel void set(__global uchar* dstptr, int dststep, int dstoffset,
convert.cl 54 __kernel void convertTo(__global const uchar * srcptr, int src_step, int src_offset,
55 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
artistic1.rs 24 static uchar gLutR[256];
25 static uchar gLutG[256];
26 static uchar gLutB[256];
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
artistic1.rs 24 static uchar gLutR[256];
25 static uchar gLutG[256];
26 static uchar gLutB[256];
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
artistic1.rs 24 static uchar gLutR[256];
25 static uchar gLutG[256];
26 static uchar gLutB[256];
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 255 uchar* rowStart1 = (uchar*)curr_frame->imageData + y * curr_frame->widthStep + b;
256 uchar* rowStart2 = (uchar*)prev_frame->imageData + y * prev_frame->widthStep + b;
289 uchar bestThres = 0;
292 bestThres = (uchar)(*pBestThres); if (bestThres <10) bestThres=10;
296 uchar* rowStart1 = (uchar*)(curr_frame->imageData) + y * curr_frame->widthStep + b;
297 uchar* rowStart2 = (uchar*)(prev_frame->imageData) + y * prev_frame->widthStep + b
    [all...]
extendededges.cpp 148 ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x]++;
149 assert( ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x] != 255 );
161 uchar flag = image->imageData[image->widthStep * cur.y + cur.x];
171 if( flag < 3 ) ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x] = 255;
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...]
  /external/opencv3/modules/imgproc/src/opencl/
gftt.cl 48 __kernel void maxEigenVal(__global const uchar * srcptr, int src_step, int src_offset, int cols,
49 int total, __global uchar * dstptr
51 , __global const uchar * maskptr, int mask_step, int mask_offset
111 __kernel void findCorners(__global const uchar * eigptr, int eig_step, int eig_offset,
113 __global const uchar * mask, int mask_step, int mask_offset,
115 __global uchar * cornersptr, int rows, int cols,
integral_sum.cl 24 kernel void integral_sum_cols(__global const uchar *src_ptr, int src_step, int src_offset, int rows, int cols,
25 __global uchar *buf_ptr, int buf_step, int buf_offset
27 ,__global uchar *buf_sq_ptr, int buf_sq_step, int buf_sq_offset
53 __global const uchar *src = src_ptr + src_index;
90 kernel void integral_sum_rows(__global const uchar *buf_ptr, int buf_step, int buf_offset,
92 __global uchar *buf_sq_ptr, int buf_sq_step, int buf_sq_offset,
94 __global uchar *dst_ptr, int dst_step, int dst_offset, int rows, int cols
96 ,__global uchar *dst_sq_ptr, int dst_sq_step, int dst_sq_offset
  /external/opencv3/modules/cudacodec/src/
video_source.hpp 70 bool parseVideoData(const uchar* data, size_t size, bool endOfStream = false);
  /external/opencv3/modules/features2d/test/
test_mser.cpp 61 uchar b = rng.uniform(0, 256);
62 uchar g = rng.uniform(0, 256);
63 uchar r = rng.uniform(0, 256);
76 uchar buf[] =
  /external/opencv3/modules/imgcodecs/src/
grfmt_jpeg2000.hpp 66 bool readComponent8u( uchar *data, void *buffer, int step, int cmpt,
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicHistogram.cpp 174 uchar *in = (uchar *)info->inPtr[0];
191 uchar *in = (uchar *)info->inPtr[0];
207 uchar *in = (uchar *)info->inPtr[0];
222 uchar *in = (uchar *)info->inPtr[0];
240 uchar *in = (uchar *)info->inPtr[0]
    [all...]
  /external/libutf/
rune.c 80 c = *(uchar*)str;
95 c1 = *(uchar*)(str+1) ^ Tx;
117 c2 = *(uchar*)(str+2) ^ Tx;
135 c3 = *(uchar*)(str+3) ^ Tx;
176 c = *(uchar*)str;
186 c1 = *(uchar*)(str+1) ^ Tx;
203 c2 = *(uchar*)(str+2) ^ Tx;
218 c3 = *(uchar*)(str+3) ^ Tx;
337 int c = *(uchar*)str;
  /external/opencv3/modules/cudaarithm/src/cuda/
sub_scalar.cu 102 gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, globPtr<uchar>(mask), stream);
112 gridTransformUnary_< TransformPolicy<ScalarDepth> >(globPtr<SrcType>(src), globPtr<DstType>(dst), op, globPtr<uchar>(mask), stream);
125 {subScalarImpl<uchar, float, uchar>, subScalarImpl<uchar2, float, uchar2>, subScalarImpl<uchar3, float, uchar3>, subScalarImpl<uchar4, float, uchar4>},
126 {subScalarImpl<uchar, float, schar>, subScalarImpl<uchar2, float, char2>, subScalarImpl<uchar3, float, char3>, subScalarImpl<uchar4, float, char4>},
127 {subScalarImpl<uchar, float, ushort>, subScalarImpl<uchar2, float, ushort2>, subScalarImpl<uchar3, float, ushort3>, subScalarImpl<uchar4, float, ushort4>},
128 {subScalarImpl<uchar, float, short>, subScalarImpl<uchar2, float, short2>, subScalarImpl<uchar3, float, short3>, subScalarImpl<uchar4, float, short4>},
129 {subScalarImpl<uchar, float, int>, subScalarImpl<uchar2, float, int2>, subScalarImpl<uchar3, float, int3>, subScalarImpl<uchar4, float, int4>},
130 {subScalarImpl<uchar, float, float>, subScalarImpl<uchar2, float, float2>, subScalarImpl<uchar3, float, float3>, subScalarImpl<uchar4, float, float4>},
131 {subScalarImpl<uchar, double, double>, subScalarImpl<uchar2, double, double2>, subScalarImpl<uchar3, double, double3>, (…)
    [all...]
  /external/opencv3/modules/superres/src/opencl/
superres_btvl1.cl 54 __kernel void buildMotionMaps(__global const uchar * forwardMotionPtr, int forwardMotion_step, int forwardMotion_offset,
55 __global const uchar * backwardMotionPtr, int backwardMotion_step, int backwardMotion_offset,
56 __global const uchar * forwardMapPtr, int forwardMap_step, int forwardMap_offset,
57 __global const uchar * backwardMapPtr, int backwardMap_step, int backwardMap_offset,
82 __kernel void upscale(__global const uchar * srcptr, int src_step, int src_offset, int src_rows, int src_cols,
83 __global uchar * dstptr, int dst_step, int dst_offset, int scale)
117 __kernel void diffSign(__global const uchar * src1, int src1_step, int src1_offset,
118 __global const uchar * src2, int src2_step, int src2_offset,
119 __global uchar * dst, int dst_step, int dst_offset, int rows, int cols)
130 __kernel void calcBtvRegularization(__global const uchar * src, int src_step, int src_offset
    [all...]

Completed in 584 milliseconds

1 2 3 4 56 7 8 91011>>