/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
xyarray.c | 6 size_t row_size = ylen * entry_size; local 7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); 11 xy->row_size = row_size;
|
xyarray.h | 7 size_t row_size; member in struct:xyarray 17 return &xy->contents[x * xy->row_size + y * xy->entry_size];
|
/external/chromium_org/remoting/codec/ |
video_encoder_verbatim.cc | 50 const int row_size = webrtc::DesktopFrame::kBytesPerPixel * rect.width(); local 54 memcpy(out, in, row_size); 55 out += row_size;
|
codec_test.cc | 133 const int row_size = kBytesPerPixel * i.rect().width(); local 135 EXPECT_EQ(0, memcmp(original, decoded, row_size)) 294 const int row_size = local 300 for (int x = 0; x < row_size; ++x)
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/ui/views/corewm/ |
cursor_height_provider_win.cc | 63 const uint32_t row_size, 67 *(data.get() + (y + 1) * row_size - 1) |= last_byte_mask; 68 for (uint32_t i = y * row_size; i < (y + 1) * row_size; ++i) { 102 const uint32_t row_size = local 113 if (!IsRowTransparent(data, row_size, last_byte_mask, i)) {
|
/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/chromium_org/gpu/command_buffer/common/ |
gles2_cmd_utils.cc | 424 uint32 row_size; local 425 if (!SafeMultiplyUint32(width, bytes_per_group, &row_size)) { 430 if (!SafeAddUint32(row_size, unpack_alignment - 1, &temp)) { 439 if (!SafeAddUint32(size_of_all_but_last_row, row_size, size)) { 446 if (!SafeMultiplyUint32(height, row_size, size)) { 450 *ret_padded_row_size = row_size; 454 *ret_unpadded_row_size = row_size;
|
/external/chromium_org/chrome/utility/cloud_print/ |
pwg_encoder.cc | 224 int row_size = image.size().width() * image.channels(); local 236 row_size)) {
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
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;
|
/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...] |
/frameworks/native/include/ui/ |
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/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_org/chrome/browser/ui/autofill/ |
autofill_popup_controller_impl.cc | 563 int row_size = local 568 popup_width = std::max(popup_width, row_size); 585 int row_size = kEndPadding; local 588 row_size += kNamePadding; 594 row_size += icon_width + kIconPadding; 598 row_size += kEndPadding; 601 row_size += 2 * kPopupBorderThickness; 603 return row_size;
|
/external/chromium_org/gpu/command_buffer/service/ |
gles2_cmd_decoder_unittest_framebuffers.cc | 316 GLint row_size = width * bytes_per_pixel_; local 318 GLint temp = row_size + pack_alignment_ - 1; 321 return size_of_all_but_last_row + row_size; 323 return height * row_size; [all...] |
/external/pdfium/core/src/fxcodec/codec/ |
fx_codec_flate.cpp | 235 int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
local 236 int row_count = (data_size + row_size - 1) / row_size;
237 int last_row_size = data_size % row_size;
238 FX_LPBYTE dest_buf = FX_Alloc( FX_BYTE, (row_size + 1) * row_count);
248 int move_size = row_size;
258 for (int byte = 0; byte < row_size && byte_cnt < (int)data_size; byte++) {
273 up = pSrcData[byte - row_size];
286 up = pSrcData[byte - row_size];
299 up = pSrcData[byte - row_size];
325 int row_size = (nPixels * bpc * nColors + 7) \/ 8; local 389 int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local 513 int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local 558 int row_size = (Colors * BitsPerComponent * Columns + 7) \/ 8; local [all...] |