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

  /external/webp/include/webp/
decode.h 341 // *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
345 const WebPIDecoder* idec, int* last_y,
352 const WebPIDecoder* idec, int* last_y,
359 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
361 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
  /external/webp/src/dec/
webpi_dec.h 39 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
idec_dec.c 830 if (height != NULL) *height = idec->params_.last_y;
838 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y,
846 if (last_y != NULL) *last_y = idec->params_.last_y;
854 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y,
864 if (last_y != NULL) *last_y = idec->params_.last_y;
io_dec.c 278 uint8_t* const dst_a = buf->a + p->last_y * buf->a_stride;
280 uint8_t* const dst_y = buf->y + p->last_y * buf->y_stride;
289 assert(p->last_y + expected_num_lines_out <= io->scaled_height);
398 num_lines_out += ExportRGB(p, p->last_y + num_lines_out);
470 const int y_end = p->last_y + lines_left;
623 p->last_y += num_lines_out;
vp8l_dec.c     [all...]
  /external/webp/src/webp/
decode.h 341 // *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
345 const WebPIDecoder* idec, int* last_y,
352 const WebPIDecoder* idec, int* last_y,
359 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
361 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
  /external/skia/src/core/
SkScan_Path.cpp 189 static bool update_edge(SkEdge* edge, int last_y) {
190 SkASSERT(edge->fLastY >= last_y);
191 if (last_y == edge->fLastY) {
194 SkASSERT(edge->fFirstY == last_y + 1);
199 SkASSERT(edge->fFirstY == last_y + 1);
SkScan_AAAPath.cpp     [all...]
  /external/speex/libspeex/
mdf.c 154 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);
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorConvolution.h 634 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;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_detection.cpp 1505 int y,next_y,last_y; local
    [all...]
  /external/fio/
graph.c 952 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/
vp9_encodeframe.c 170 uint8_t *last_y; local
174 last_y =
176 var = cpi->fn_ptr[bs].vf(ref->buf, ref->stride, last_y, last->y_stride, &sse);
    [all...]

Completed in 693 milliseconds