HomeSort by relevance Sort by last modified time
    Searched refs:uint8 (Results 101 - 125 of 596) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libvpx/libvpx/third_party/libyuv/source/
scale_gcc.cc 99 void ScaleRowDown2_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
100 uint8* dst_ptr, int dst_width) {
121 void ScaleRowDown2Linear_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
122 uint8* dst_ptr, int dst_width) {
152 void ScaleRowDown2Box_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
153 uint8* dst_ptr, int dst_width) {
189 void ScaleRowDown4_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
190 uint8* dst_ptr, int dst_width) {
217 void ScaleRowDown4Box_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
218 uint8* dst_ptr, int dst_width)
    [all...]
rotate_common.cc 19 void TransposeWx8_C(const uint8* src, int src_stride,
20 uint8* dst, int dst_stride, int width) {
36 void TransposeUVWx8_C(const uint8* src, int src_stride,
37 uint8* dst_a, int dst_stride_a,
38 uint8* dst_b, int dst_stride_b, int width) {
63 void TransposeWxH_C(const uint8* src, int src_stride,
64 uint8* dst, int dst_stride,
75 void TransposeUVWxH_C(const uint8* src, int src_stride,
76 uint8* dst_a, int dst_stride_a,
77 uint8* dst_b, int dst_stride_b
    [all...]
rotate_neon64.cc 27 void TransposeWx8_NEON(const uint8* src, int src_stride,
28 uint8* dst, int dst_stride, int width) {
29 const uint8* src_temp = NULL;
250 static uint8 kVTbl4x4TransposeDi[32] =
254 void TransposeUVWx8_NEON(const uint8* src, int src_stride,
255 uint8* dst_a, int dst_stride_a,
256 uint8* dst_b, int dst_stride_b,
258 const uint8* src_temp = NULL;
  /external/webrtc/webrtc/modules/video_processing/test/
writeYUV420file.m 13 fwrite(fid,uint8(Y(:,:,k).'), 'uchar');
16 fwrite(fid,uint8(U(:,:,k).'), 'uchar');
19 fwrite(fid,uint8(V(:,:,k).'), 'uchar');
readYUV420file.m 23 Y=uint8(zeros(height,width,numFrames));
24 U=uint8(zeros(height/2,width/2,numFrames));
25 V=uint8(zeros(height/2,width/2,numFrames));
32 Y(:,:,k)=uint8(reshape(X(1:nPx), width, height).');
35 U(:,:,k)=uint8(reshape(X(nPx + (1:nPx/4)), width/2, height/2).');
38 V(:,:,k)=uint8(reshape(X(nPx + nPx/4 + (1:nPx/4)), width/2, height/2).');
  /external/libyuv/files/source/
convert.cc 31 int I420Copy(const uint8* src_y, int src_stride_y,
32 const uint8* src_u, int src_stride_u,
33 const uint8* src_v, int src_stride_v,
34 uint8* dst_y, int dst_stride_y,
35 uint8* dst_u, int dst_stride_u,
36 uint8* dst_v, int dst_stride_v,
69 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
70 uint8* dst_uv, int pix) {
94 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
95 uint8* dst_uv, int pix)
    [all...]
scale.cc 56 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */,
57 uint8* dst, int dst_width);
59 void ScaleRowDown2Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
60 uint8* dst, int dst_width);
63 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */,
64 uint8* dst_ptr, int dst_width);
65 void ScaleRowDown4Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
66 uint8* dst_ptr, int dst_width);
72 void ScaleRowDown34_NEON(const uint8* src_ptr,
74 uint8* dst_ptr, int dst_width)
    [all...]
rotate.cc 46 void MirrorRow_NEON(const uint8* src, uint8* dst, int width);
48 void MirrorRowUV_NEON(const uint8* src,
49 uint8* dst_a, uint8* dst_b,
52 void TransposeWx8_NEON(const uint8* src, int src_stride,
53 uint8* dst, int dst_stride, int width);
55 void TransposeUVWx8_NEON(const uint8* src, int src_stride,
56 uint8* dst_a, int dst_stride_a,
57 uint8* dst_b, int dst_stride_b
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 237 buffer = reinterpret_cast<uint8*>(buffer) + current_buffer_size;
289 uint8 bytes[sizeof(*value)];
291 const uint8* ptr;
306 uint8 bytes[sizeof(*value)];
308 const uint8* ptr;
324 inline const uint8* ReadVarint32FromArray(
325 const uint8* buffer, uint32* value) GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
326 inline const uint8* ReadVarint32FromArray(const uint8* buffer, uint32* value) {
329 const uint8* ptr = buffer
    [all...]
  /external/dng_sdk/source/
dng_color_space.h 152 const uint8 *&data) const;
184 const uint8 *&data) const;
212 const uint8 *&data) const;
240 const uint8 *&data) const;
268 const uint8 *&data) const;
296 const uint8 *&data) const;
324 const uint8 *&data) const;
  /external/libyuv/files/include/libyuv/
mjpeg_decoder.h 47 const uint8* const* data,
66 bool LoadFrame(const uint8* src, size_t src_len);
119 bool DecodeToBuffers(uint8** planes, int dst_width, int dst_height);
134 const uint8* data;
159 void SetScanlinePointers(uint8** data);
178 uint8*** scanlines_;
182 uint8** databuf_;
  /external/protobuf/src/google/protobuf/
wire_format_lite_inl.h 174 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
176 const uint8* buffer,
181 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
183 const uint8* buffer,
188 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
190 const uint8* buffer,
198 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
200 const uint8* buffer,
208 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
210 const uint8* buffer
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 169 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
171 const uint8* buffer,
176 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
178 const uint8* buffer,
183 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
185 const uint8* buffer,
193 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
195 const uint8* buffer,
203 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
205 const uint8* buffer
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 169 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
171 const uint8* buffer,
176 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
178 const uint8* buffer,
183 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
185 const uint8* buffer,
193 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
195 const uint8* buffer,
203 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
205 const uint8* buffer
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
wire_format_lite_inl.h 169 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
171 const uint8* buffer,
176 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
178 const uint8* buffer,
183 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
185 const uint8* buffer,
193 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
195 const uint8* buffer,
203 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
205 const uint8* buffer
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wire_format_lite_inl.h 176 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
178 const uint8* buffer,
183 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
185 const uint8* buffer,
190 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
192 const uint8* buffer,
200 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
202 const uint8* buffer,
210 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
212 const uint8* buffer
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
wire_format_lite_inl.h 169 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
171 const uint8* buffer,
176 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
178 const uint8* buffer,
183 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
185 const uint8* buffer,
193 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
195 const uint8* buffer,
203 inline const uint8* WireFormatLite::ReadPrimitiveFromArray<
205 const uint8* buffer
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.h 52 uint8 *data;
63 uint8 ucNBits,
69 uint8 ucNBits
74 uint8 ucNBits,
86 OSCL_IMPORT_REF int16 iGetM4VConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *, int32 *);
89 OSCL_IMPORT_REF int16 iGetAVCConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *, int32 *, int32 *profile, int32 *level);
91 int32 FindNAL(uint8** nal_pnt, uint8* buffer, int32 length);
101 void Parser_EBSPtoRBSP(uint8 *nal_unit, int32 *size);
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 63 uint8 *data;
74 uint8 ucNBits,
80 uint8 ucNBits
85 uint8 ucNBits,
101 uint8 *buffer,
117 uint8 *buffer,
127 int32 FindNAL(uint8** nal_pnt, uint8* buffer, int32 length);
137 void Parser_EBSPtoRBSP(uint8 *nal_unit, int32 *size);
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Device.h 35 typedef unsigned char uint8; typedef
59 uint8 x;
60 uint8 y;
61 uint8 z;
63 uint8 v[3];
  /external/skia/src/images/
bmpdecoderhelper.cpp 24 data_ = reinterpret_cast<const uint8*>(p);
86 uint8* colBuf = new uint8[256 * 3];
179 static const uint8 RLE_ESCAPE = 0;
180 static const uint8 RLE_EOL = 0;
181 static const uint8 RLE_EOF = 1;
182 static const uint8 RLE_DELTA = 2;
186 uint8 cmd = GetByte();
188 uint8 pixels = GetByte();
190 uint8 col = pixels
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 90 const uint8 COEFF_COST[2][16] =
133 uint8 *bitstreamBuffer; /* pointer to buffer memory */
139 uint8 *overrunBuffer; /* extra output buffer to prevent current skip due to output buffer overrun*/
337 int (*SAD_MB_HalfPel[4])(uint8*, uint8*, int, void *);
338 int (*SAD_Macroblock)(uint8 *ref, uint8 *blk, int dmin_lx, void *extra_info);
376 uint8 *overrunBuffer; /* extra output buffer to prevent current skip due to output buffer overrun*/
398 uint8 pred_i16[AVCNumI16PredMode][256]; /* save prediction for MB */
399 uint8 pred_i4[AVCNumI4PredMode][16]; /* save prediction for blk *
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chv_filter.cpp 148 Function prototype : void CombinedHorzVertFilter( uint8 *rec,
153 uint8 *pp_mod)
177 uint8 *rec,
182 uint8 *pp_mod)
190 uint8 *ptr, *ptr_e;
241 *(ptr - width) = (uint8)(jVal0); /* C */
242 *ptr = (uint8)(jVal0); /* D */
252 *(ptr - (width << 1)) = (uint8)jVal0; /* store B */
253 *(ptr + width) = (uint8)jVal1; /* store E */
259 *(ptr - (width << 1)) = (uint8)jVal0; /* store B *
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmevent.h 79 uint8 ifidx; /* destination OS i/f index */
80 uint8 bsscfgidx; /* source bsscfg index */
328 uint8 ifidx; /* RTE virtual device index (for dongle) */
329 uint8 opcode; /* see I/F opcode */
330 uint8 reserved; /* bit mask (WLC_E_IF_FLAGS_XXX ) */
331 uint8 bssidx; /* bsscfg index */
332 uint8 role; /* see I/F role */
391 uint8 dialog_token; /* GAS dialog token */
392 uint8 fragment_id; /* fragment id */
395 uint8 data[1]; /* variable length specified by data_len *
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 485 uint8 *Sl; /* derived from base_dpb in AVCFrameStore */
486 uint8 *Scb; /* for complementary fields, YUV are interlaced */
487 uint8 *Scr; /* Sl of top_field and bottom_fields will be one line apart and the
516 uint8 *base_dpb; /* base pointer for the YCbCr */
554 uint8 *decoded_picture_buffer; /* actual memory */
596 uint8 nz_coeff[NUM_BLKS_IN_MB]; /* [blk_y][blk_x], Chroma is [4..5][0...3], see predict_nnz() function */
615 uint8 *pred_block; /* pointer to prediction block, could point to a frame */
617 uint8 pred[688]; /* for prediction */
625 uint8 *intra_pred_top; /* a row of pixel for intra prediction */
626 uint8 intra_pred_left[17]; /* a column of pixel for intra prediction *
    [all...]

Completed in 873 milliseconds

1 2 3 45 6 7 8 91011>>