| /external/webp/src/dsp/ |
| filters.c | 50 const int last_row = row + num_rows; local 67 while (row < last_row) { 87 const int last_row = row + num_rows; local 107 while (row < last_row) { 130 const int last_row = row + num_rows; local 147 while (row < last_row) {
|
| filters_mips_dsp_r2.c | 196 while (row < last_row) { \ 212 const int last_row = row + num_rows; local 252 while (row < last_row) { \ 267 const int last_row = row + num_rows; local 325 while (row < last_row) { \ 346 const int last_row = row + num_rows; local
|
| filters_sse2.c | 123 const int last_row = row + num_rows; local 140 while (row < last_row) { 160 const int last_row = row + num_rows; local 180 while (row < last_row) { 266 const int last_row = row + num_rows; local 281 while (row < last_row) {
|
| /packages/apps/Gallery2/jni/filters/ |
| edge.c | 120 int last_row = row_stride * (height - 1); local 121 memset((dst + last_row), 0, row_stride * sizeof(char)); 123 *(dst + last_row + j) = 255; // set alphas
|
| /external/libhevc/decoder/ |
| ihevcd_fmt_conv.c | 794 WORD32 last_row = cur_row + num_rows; local 800 last_row = cur_row + MAX(num_rows, (1 << ps_sps->i1_log2_ctb_size)) + 802 last_ctb_y = (last_row >> ps_sps->i1_log2_ctb_size) - 1;
|
| /external/llvm/lib/DebugInfo/DWARF/ |
| DWARFDebugLine.cpp | 545 RowIter last_row = Rows.begin() + seq.LastRowIndex; local 547 first_row, last_row, row, DWARFDebugLine::Row::orderByAddress); 548 if (row_pos == last_row) {
|
| /external/opencv3/modules/core/include/opencv2/core/cuda/ |
| border_interpolate.hpp | 181 explicit __host__ __device__ __forceinline__ BrdColReplicate(int height) : last_row(height - 1) {} 182 template <typename U> __host__ __device__ __forceinline__ BrdColReplicate(int height, U) : last_row(height - 1) {} 191 return ::min(y, last_row); 214 int last_row; member in struct:cv::cuda::device::BrdColReplicate 221 __host__ __device__ __forceinline__ BrdReplicate(int height, int width) : last_row(height - 1), last_col(width - 1) {} 222 template <typename U> __host__ __device__ __forceinline__ BrdReplicate(int height, int width, U) : last_row(height - 1), last_col(width - 1) {} 231 return ::min(y, last_row); 264 int last_row; member in struct:cv::cuda::device::BrdReplicate 315 explicit __host__ __device__ __forceinline__ BrdColReflect101(int height) : last_row(height - 1) {} 316 template <typename U> __host__ __device__ __forceinline__ BrdColReflect101(int height, U) : last_row(height - 1) { 348 int last_row; member in struct:cv::cuda::device::BrdColReflect101 398 int last_row; member in struct:cv::cuda::device::BrdReflect101 482 int last_row; member in struct:cv::cuda::device::BrdColReflect 532 int last_row; member in struct:cv::cuda::device::BrdReflect [all...] |
| /external/libjpeg-turbo/ |
| jdcoefct.c | 420 boolean first_row, last_row; local 458 last_row = FALSE; 464 last_row = TRUE; 499 if (last_row && block_row == block_rows-1)
|
| /external/opencv3/3rdparty/libjpeg/ |
| jdcoefct.c | 475 boolean first_row, last_row; local 510 last_row = FALSE; 516 last_row = TRUE; 551 if (last_row && block_row == block_rows-1)
|
| /external/pdfium/third_party/libjpeg/ |
| fpdfapi_jdcoefct.c | 473 boolean first_row, last_row; local 508 last_row = FALSE; 514 last_row = TRUE; 549 if (last_row && block_row == block_rows-1)
|
| /external/opencv3/3rdparty/libwebp/dec/ |
| frame.c | 176 const int last_row = (ctx->mb_y_ >= dec->br_mb_y_ - 1); local 196 if (!last_row) { 241 if (!last_row) {
|
| /external/webp/src/enc/ |
| analysis.c | 453 const int last_row = enc->mb_h_; local 455 const int split_row = (9 * last_row + 15) >> 4; 456 const int total_mb = last_row * enc->mb_w_; 471 InitSegmentJob(enc, &side_job, split_row, last_row); 486 InitSegmentJob(enc, &main_job, 0, last_row);
|
| /external/eigen/Eigen/src/OrderingMethods/ |
| Eigen_Colamd.h | 510 Index last_row ; /* previous row */ local 549 last_row = -1 ; 569 if (row <= last_row || Row [row].shared2.mark == col) 594 last_row = row ; [all...] |
| /external/mesa3d/src/glsl/ |
| ast_function.cpp | 1059 const unsigned last_row = MIN2(src_matrix->type->vector_elements, local [all...] |
| /external/pdfium/core/src/fpdfapi/fpdf_render/ |
| fpdf_render_pattern.cpp | 471 CPDF_MeshVertex* last_row = vertex + last_index * row_verts; local 479 triangle[0] = last_row[i]; 481 triangle[2] = last_row[i - 1]; [all...] |
| /external/opencv/cv/src/ |
| cvcalibinit.cpp | 469 int last_row = (pattern_size.height-1)*pattern_size.width; local 470 double dy0 = out_corners[last_row].y - out_corners[0].y; [all...] |
| /external/opencv3/modules/calib3d/src/ |
| calibinit.cpp | 525 int last_row = (pattern_size.height-1)*pattern_size.width; local 526 double dy0 = out_corners[last_row].y - out_corners[0].y; [all...] |
| /external/opencv3/modules/video/src/ |
| tvl1flow.cpp | 688 const int last_row = src.rows - 1; local 699 parallel_for_(Range(1, last_row), body); 708 dx(last_row, x) = 0.5f * (src(last_row, x + 1) - src(last_row, x - 1)); 709 dy(last_row, x) = 0.5f * (src(last_row, x) - src(last_row - 1, x)); 713 for (int y = 1; y < last_row; ++y) 729 dx(last_row, 0) = 0.5f * (src(last_row, 1) - src(last_row, 0)) 774 const int last_row = src.rows - 1; local [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | |
| org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | |