Searched refs:last_y (Results 1 - 17 of 17) sorted by relevance

/external/webp/include/webp/
H A Ddecode.h341 // *last_y is the index of last decoded row in raster scan order. Some pointers
342 // (*last_y, *width etc.) can be NULL if corresponding information is not
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y,
360 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
362 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
359 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
/external/webp/src/dec/
H A Dwebpi_dec.h39 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
H A Didec_dec.c830 if (height != NULL) *height = idec->params_.last_y;
838 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, argument
846 if (last_y != NULL) *last_y = idec->params_.last_y;
854 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, argument
864 if (last_y != NULL) *last_y = idec->params_.last_y;
H A Dio_dec.c279 uint8_t* const dst_a = buf->a + p->last_y * buf->a_stride;
281 uint8_t* const dst_y = buf->y + p->last_y * buf->y_stride;
290 assert(p->last_y + expected_num_lines_out <= io->scaled_height);
399 num_lines_out += ExportRGB(p, p->last_y + num_lines_out);
471 const int y_end = p->last_y + lines_left;
627 p->last_y += num_lines_out;
H A Dvp8l_dec.c1680 params->last_y = dec->last_out_row_;
/external/webp/src/webp/
H A Ddecode.h341 // *last_y is the index of last decoded row in raster scan order. Some pointers
342 // (*last_y, *width etc.) can be NULL if corresponding information is not
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y,
360 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
362 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
359 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
/external/skia/src/core/
H A DSkAnalyticEdge.cpp59 bool SkAnalyticEdge::update(SkFixed last_y, bool sortY) {
60 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY
H A DSkScan_Path.cpp191 static bool update_edge(SkEdge* edge, int last_y) { argument
192 SkASSERT(edge->fLastY >= last_y);
193 if (last_y == edge->fLastY) {
196 SkASSERT(edge->fFirstY == last_y + 1);
201 SkASSERT(edge->fFirstY == last_y + 1);
H A DSkAnalyticEdge.h84 bool update(SkFixed last_y, bool sortY = true);
/external/skqp/src/core/
H A DSkAnalyticEdge.cpp59 bool SkAnalyticEdge::update(SkFixed last_y, bool sortY) {
60 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY
H A DSkScan_Path.cpp190 static bool update_edge(SkEdge* edge, int last_y) { argument
191 SkASSERT(edge->fLastY >= last_y);
192 if (last_y == edge->fLastY) {
195 SkASSERT(edge->fFirstY == last_y + 1);
200 SkASSERT(edge->fFirstY == last_y + 1);
H A DSkAnalyticEdge.h84 bool update(SkFixed last_y, bool sortY = true);
/external/speex/libspeex/
H A Dmdf.c154 spx_word16_t *last_y; member in struct:SpeexEchoState_
450 st->last_y = (spx_word16_t*)speex_alloc(C*N*sizeof(spx_word16_t));
556 st->last_y[i] = 0;
597 speex_free(st->last_y);
1181 st->last_y[i] = st->last_y[st->frame_size+i];
1186 st->last_y[st->frame_size+i] = in[i]-out[i];
1190 st->last_y[i] = st->x[i];*/
1206 st->y[i] = MULT16_16_Q15(st->window[i],st->last_y[i]);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorConvolution.h634 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1; local
635 const int num_y_input = last_y - first_y + GetKernelSize<StaticKernelSizeY>()(kernelSizeY);
636 const int num_y_output = last_y - first_y + 1;
702 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1; local
703 const int num_y_input = last_y - first_y + kernelSizeY;
727 const int num_y_output = last_y - first_y + 1;
/external/scapy/scapy/
H A Dpacket.py623 last_shift,last_y=0,0.0
645 dt,target,last_shift,last_y = make_dump(fdump, last_shift, last_y, col, bkcol)
667 last_y += layer_shift
/external/fio/
H A Dgraph.c952 int last_y = g->yoffset + g->ydim; local
954 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c184 uint8_t *last_y; local
188 last_y =
190 var = cpi->fn_ptr[bs].vf(ref->buf, ref->stride, last_y, last->y_stride, &sse);

Completed in 9677 milliseconds