/external/pdfium/core/src/fxcodec/codec/ |
fx_codec_flate.cpp | 251 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8; local 252 if (row_size <= 0) 254 const int row_count = (data_size + row_size - 1) / row_size; 255 const int last_row_size = data_size % row_size; 256 uint8_t* dest_buf = FX_Alloc2D(uint8_t, row_size + 1, row_count); 263 int move_size = row_size; 273 for (int byte = 0; byte < row_size && byte_cnt < (int)data_size; byte++) { 287 up = pSrcData[byte - row_size]; 299 up = pSrcData[byte - row_size]; 340 int row_size = (nPixels * bpc * nColors + 7) \/ 8; local 407 const int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local 546 int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local 606 int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local [all...] |
/external/autotest/client/deps/glbench/src/ |
readpixeltest.cc | 42 const int row_size = g_width * 4; local 44 // This is a no-op because row_size is already divisible by 4. 46 scoped_ptr<char[]> buf(new char[((row_size + 3) & ~3) * g_height + 1]);
|
/external/opencv/cvaux/src/ |
cvcorrespond.cpp | 77 int row_size; local 107 row_size = first_runs + 1; 139 costTable[baseIndex + row_size] = costTable[baseIndex] + Occlusion * (l_end - prev); 140 baseIndex += row_size; 196 min2 = costTable[i_1 + j * row_size] + Occlusion * l_len; 198 min3 = costTable[i + j_1 * row_size] + Occlusion * r_len; 200 min1 = costTable[i_1 + j_1 * row_size] + cost + (float) cost1; 233 costTable[i + j * row_size] = cmin; 234 matchEdges[i + j * row_size] = cpath; 251 switch (matchEdges[i + j * row_size]) [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
bitmaptools.cc | 98 row_size = row_stride; 106 box.right * pixel_stride > row_size) { 119 row_size = (box.right - box.left) * pixel_stride; 125 int out_size = row_size * box.height(); 130 row += row_stride, dst += row_size) { 132 memcpy(dst, row, row_size); 147 int row_size; member in struct:Bitmap 182 for (const unsigned char* pixel = row; pixel < row + bmp.row_size; 217 for (const unsigned char* pixel = row; pixel < row + bmp.row_size;
|
/frameworks/native/include/ui/ |
TMatHelpers.h | 62 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX::COL_SIZE == MATRIX::ROW_SIZE ); 117 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX_A::ROW_SIZE == MATRIX_B::COL_SIZE ); 118 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX_R::ROW_SIZE == MATRIX_B::ROW_SIZE ); 122 for (size_t r=0 ; r<MATRIX_R::row_size() ; r++) { 132 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX::ROW_SIZE == MATRIX::COL_SIZE ); 134 for (size_t r=0 ; r<MATRIX::row_size() ; r++) 143 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX::ROW_SIZE == MATRIX::COL_SIZE ); 145 for (size_t r=0 ; r<MATRIX::row_size() ; r++) 153 COMPILE_TIME_ASSERT_FUNCTION_SCOPE( MATRIX::ROW_SIZE == MATRIX::COL_SIZE ) [all...] |
mat4.h | 56 enum { ROW_SIZE = row_type::SIZE }; 57 static inline size_t row_size() { return ROW_SIZE; } function in class:android::tmat44 58 static inline size_t size() { return row_size(); } // for TVec*<> 72 * ROW_SIZE = N 76 col_type mValue[ROW_SIZE]; 206 for (size_t r=0 ; r<row_size() ; r++) 222 for (size_t r=0 ; r<row_size() ; r++) 344 for (size_t r=0 ; r<tmat44<T>::row_size() ; r++) 353 for (size_t r=0 ; r<tmat44<T>::row_size() ; r++ [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_span.c | 73 uint32_t row_size = 64 * stride; local 82 uintptr_t u = tile_y * row_size
|
/external/libdrm/radeon/ |
radeon_surface.c | 101 uint32_t row_size; member in struct:radeon_hw_info 549 surf_man->hw_info.row_size = 1024; 552 surf_man->hw_info.row_size = 2048; 555 surf_man->hw_info.row_size = 4096; 558 surf_man->hw_info.row_size = 4096; 967 surf->tile_split = surf_man->hw_info.row_size; 968 surf->stencil_tile_split = surf_man->hw_info.row_size / 2; [all...] |
/external/ImageMagick/coders/ |
psd.c | 911 row_size; 923 row_size=GetPSDRowSize(image); 924 pixels=(unsigned char *) AcquireQuantumMemory(row_size,sizeof(*pixels)); 934 count=ReadBlob(image,row_size,pixels); 935 if (count != row_size) 978 row_size; 992 row_size=GetPSDRowSize(image); 993 pixels=(unsigned char *) AcquireQuantumMemory(row_size,sizeof(*pixels)); 1003 if (length > row_size + 256) // arbitrary number 1030 (ssize_t) (image->depth == 1 ? 123456 : image->depth),row_size,pixels) 906 row_size; local 973 row_size; local 1055 row_size; local [all...] |
/external/ceres-solver/internal/ceres/ |
covariance_impl.cc | 141 const int row_size = rows[row_begin + 1] - rows[row_begin]; local 148 while (cols_begin[offset] != col_begin && offset < row_size) { 152 if (offset == row_size) { 173 row_size);
|
/external/chromium-trace/catapult/telemetry/third_party/png/ |
png.py | [all...] |