HomeSort by relevance Sort by last modified time
    Searched refs:vin (Results 1 - 12 of 12) sorted by null

  /external/clang/test/CodeGen/
asm-inout.c 23 void test3(int *vout, int vin)
26 asm ("opr %[vout],%[vin]"
28 : [vin] "r,m,r" (vin)
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
m4v_h263_enc_test.cpp 211 VideoEncFrameIO vin, vout; local
212 memset(&vin, 0, sizeof(vin));
214 vin.height = height; // height is multiple of 16.
215 vin.pitch = width; // width is multiple of 16.
216 vin.timestamp = (numFramesEncoded * 1000) / frameRate; // in ms.
217 vin.yChan = inputBuf;
218 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/test/
h264_enc_test.cpp 282 AVCFrameIO vin; local
283 memset(&vin, 0, sizeof(vin));
284 vin.height = ((height + 15) >> 4) << 4;
285 vin.pitch = ((width + 15) >> 4) << 4;
286 vin.coding_timestamp = (numInputFrames * 1000) / frameRate; // in ms
287 vin.YCbCr[0] = inputBuf;
288 vin.YCbCr[1] = vin.YCbCr[0] + vin.height * vin.pitch
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.cpp 470 VideoEncFrameIO vin, vout; local
471 memset(&vin, 0, sizeof(vin));
473 vin.height = align(mHeight, 16);
474 vin.pitch = align(mWidth, 16);
475 vin.timestamp = (inHeader->nTimeStamp + 500) / 1000; // in ms
476 vin.yChan = (uint8_t *)inputData;
477 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 476 VideoEncFrameIO vin, vout; local
477 memset(&vin, 0, sizeof(vin));
479 vin.height = ((mVideoHeight + 15) >> 4) << 4;
480 vin.pitch = ((mVideoWidth + 15) >> 4) << 4;
481 vin.timestamp = (outBuffer->timeStamp + 500) / 1000; // in ms
482 vin.yChan = mInputFrameData;
483 vin.uChan = vin.yChan + vin.height * vin.pitch
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vertex.c 215 void _tnl_get_attr( struct gl_context *ctx, const void *vin,
225 a[j].extract( &a[j], dest, (GLubyte *)vin + a[j].vertoffset );
t_vertex_generic.c 1019 const GLubyte *vin = vtx->vertex_buf + ein * vtx->vertex_size; local
1049 a[j].extract( &a[j], fin, vin + a[j].vertoffset );
  /external/speex/libspeex/
mdf.c 205 spx_word16_t vin = in[i*stride]; local
206 spx_word32_t vout = mem[0] + SHL32(EXTEND32(vin),15);
208 mem[0] = mem[1] + SHL32(SHL32(-EXTEND32(vin),15) + MULT16_32_Q15(radius,vout),1);
210 mem[0] = mem[1] + 2*(-vin + radius*vout);
212 mem[1] = SHL32(EXTEND32(vin),15) - MULT16_32_Q15(den2,vout);
    [all...]
sb_celp.c 75 int sb_encode(void *state, void *vin, SpeexBits *bits)
304 int sb_encode(void *state, void *vin, SpeexBits *bits)
320 spx_word16_t *in = (spx_word16_t*)vin;
    [all...]
nb_celp.c 252 int nb_encode(void *state, void *vin, SpeexBits *bits)
279 spx_word16_t *in = (spx_word16_t*)vin;
    [all...]
  /external/opencv/cv/src/
cvfilter.cpp     [all...]
  /toolchain/binutils/binutils-2.25/gold/
layout.cc     [all...]

Completed in 1231 milliseconds