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

  /external/linux-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/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/
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++)
343 for (size_t r=0 ; r<tmat44<T>::row_size() ; r++)
352 for (size_t r=0 ; r<tmat44<T>::row_size() ; r++
    [all...]
  /external/chromium_org/remoting/codec/
video_decoder_verbatim.cc 68 const int row_size = clip_.width() * kBytesPerPixel; local
83 int bytes_to_copy = std::min(in_size - used, row_size - row_pos_);
90 if (row_pos_ == row_size) {
video_encoder_verbatim.cc 50 const int row_size = bytes_per_pixel * rect.width(); local
71 std::min(row_size - row_pos, max_packet_size_ - filled);
77 if (row_pos == row_size) {
codec_test.cc 229 const int row_size = kBytesPerPixel * i.rect().width(); local
231 EXPECT_EQ(0, memcmp(original, decoded, row_size))
402 const int row_size = local
408 for (int x = 0; x < row_size; ++x)
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_utils.cc 420 uint32 row_size; local
421 if (!SafeMultiplyUint32(width, bytes_per_group, &row_size)) {
426 if (!SafeAddUint32(row_size, unpack_alignment - 1, &temp)) {
435 if (!SafeAddUint32(size_of_all_but_last_row, row_size, size)) {
442 if (!SafeMultiplyUint32(height, row_size, size)) {
446 *ret_padded_row_size = row_size;
450 *ret_unpadded_row_size = row_size;
  /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/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/chrome/browser/ui/autofill/
autofill_popup_controller_impl.cc 563 int row_size = name_font_.GetStringWidth(names()[i]) + local
567 popup_width = std::max(popup_width, row_size);
584 int row_size = kEndPadding; local
587 row_size += kNamePadding;
591 row_size += kAutofillIconWidth + kIconPadding;
594 row_size += kEndPadding;
596 return row_size;
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 155 const int row_size = rows[row_begin + 1] - rows[row_begin]; local
162 while (cols_begin[offset] != col_begin && offset < row_size) {
166 if (offset == row_size) {
187 row_size);
  /external/chromium_org/tools/telemetry/third_party/png/
png.py     [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest.cc 2228 GLint row_size = width * bytes_per_pixel_; local
    [all...]

Completed in 793 milliseconds