HomeSort by relevance Sort by last modified time
    Searched defs:row (Results 126 - 150 of 1543) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libjpeg-turbo/
jcprepct.c 36 * For the simple (no-context-row) case, we just need to buffer one
37 * row group's worth of pixels for the downsampling step. At the bottom of
38 * the image, we pad to a full row group by replicating the last pixel row.
39 * The downsampler's last output row is then replicated if needed to pad
40 * out to a full iMCU row.
42 * When providing context rows, we must buffer three row groups' worth of
43 * pixels. Three row groups are physically allocated, but the row pointer
44 * arrays are made five row groups high, with the extra pointers above an
112 register int row; local
222 int row; local
    [all...]
jddctmgr.c 260 * coefficients scaled by scalefactor[row]*scalefactor[col], where
294 * coefficients scaled by scalefactor[row]*scalefactor[col], where
299 int row, col; local
306 for (row = 0; row < DCTSIZE; row++) {
310 aanscalefactor[row] * aanscalefactor[col]);
rdcolmap.c 175 unsigned int w, h, maxval, row, col; local
195 for (row = 0; row < h; row++) {
206 for (row = 0; row < h; row++) {
wrrle.c 134 /* Set the output buffer to the first row */
182 int row, col; local
225 for (row = cinfo->output_height-1; row >= 0; row--) {
228 (JDIMENSION) row, (JDIMENSION) 1, FALSE);
238 for (row = cinfo->output_height-1; row >= 0; row--) {
242 (JDIMENSION) row, (JDIMENSION) 1, FALSE)
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/msa/
mfqe_msa.c 19 int32_t row; local
30 for (row = 2; row--;) {
71 int32_t row; local
81 for (row = 4; row--;) {
  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 95 int row, col, active_end; local
109 for (row = 0; row < mb_rows; ++row) {
113 /* Find the first active macroblock in this row. */
118 /* No more active macroblock in this row. */
121 /* Find the end of active region in this row. */
129 vp8_copy_and_extend_frame_with_rect(src, &buf->img, row << 4, col << 4,
  /external/libvpx/libvpx/vp9/common/mips/msa/
vp9_mfqe_msa.c 19 int32_t row; local
30 for (row = 2; row--;) {
71 int32_t row; local
78 for (row = 4; row--;) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 93 int row, col, active_end; local
127 for (row = 0; row < mb_rows; ++row) {
131 // Find the first active macroblock in this row.
136 // No more active macroblock in this row.
139 // Find the end of active region in this row.
147 vp9_copy_and_extend_frame_with_rect(src, &buf->img, row << 4, col << 4,
  /external/libvpx/libvpx/vpx_dsp/
deblock.c 48 int row; local
56 for (row = 0; row < size; row++) {
57 /* post_proc_down for one row */
111 /* next row */
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_surface_state.c 90 const gl_constant_value *row = &constants[i * 4]; local
92 i, row[0].f, row[1].f, row[2].f, row[3].f);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 43 unsigned row; /* current source row */ local
50 for (row = 0; row < height; row += tile_height)
54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
55 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
59 for (j = 0; j < MIN2(tile_height, height - row); ++j)
74 unsigned row; /* current source row */ local
105 unsigned row; \/* current source row *\/ local
136 unsigned row; \/* current source row *\/ local
167 unsigned row; \/* current source row *\/ local
257 unsigned row; \/* current destination row *\/ local
290 unsigned row; \/* current destination row *\/ local
323 unsigned row; \/* current destination row *\/ local
356 unsigned row; \/* current destination row *\/ local
389 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast_priv.h 88 /* scratch row for optimized front-buffer rendering */
89 char *row; member in struct:dri_drawable
  /external/pdfium/fxbarcode/pdf417/
BC_PDF417Writer.cpp 56 int32_t row = m_Height / (m_ModuleWidth * 20); local
57 if (row >= 3 && row <= 90 && col >= 1 && col <= 30)
58 encoder.setDimensions(col, col, row, row);
61 else if (row >= 3 && row <= 90)
62 encoder.setDimensions(30, 1, row, row);
  /external/pdfium/third_party/agg23/
agg_rendering_buffer.h 113 int8u* row(unsigned y) function in class:agg::rendering_buffer
117 const int8u* row(unsigned y) const function in class:agg::rendering_buffer
  /external/pdfium/third_party/libtiff/
tif_thunder.c 172 uint8* row = buf; local
181 if (!ThunderDecode(tif, row, tif->tif_dir.td_imagewidth))
184 row += tif->tif_scanlinesize;
  /external/skia/gm/
gammaencodedpremul.cpp 71 // Create an entire row of the same color, with the alpha from 0 to kAlphaMax.
72 uint32_t row[kAlphaMax]; variable
73 sk_memset32(row, fColors[i], kAlphaMax);
75 row[a] = (row[a] & 0x00FFFFFF) | (a << 24);
78 // Tranform row to dst, then premultiply.
80 SkColorSpaceXform::kBGRA_8888_ColorFormat, row, kAlphaMax, variable
85 // Write the dst space premultiplied row to the canvas.
90 // Premultiply, then transform the row to dst.
91 SkOpts::RGBA_to_rgbA(pixels, row, kAlphaMax)
    [all...]
  /external/skia/src/sksl/lex/
NFAtoDFA.h 54 for (const auto& row : fTransitions) {
55 stateCount = std::max(stateCount, (int) row.size());
94 std::vector<int>& row = fTransitions[c]; local
95 while (row.size() <= (size_t) start) {
96 row.push_back(INVALID);
98 row[start] = next;
132 // collapse rows with the same transitions to a single row. This is common, as each row
136 // mappings[<input row>] = <output row>
    [all...]
  /external/skqp/gm/
gammaencodedpremul.cpp 71 // Create an entire row of the same color, with the alpha from 0 to kAlphaMax.
72 uint32_t row[kAlphaMax]; variable
73 sk_memset32(row, fColors[i], kAlphaMax);
75 row[a] = (row[a] & 0x00FFFFFF) | (a << 24);
78 // Tranform row to dst, then premultiply.
80 SkColorSpaceXform::kBGRA_8888_ColorFormat, row, kAlphaMax, variable
85 // Write the dst space premultiplied row to the canvas.
90 // Premultiply, then transform the row to dst.
91 SkOpts::RGBA_to_rgbA(pixels, row, kAlphaMax)
    [all...]
  /external/skqp/src/sksl/lex/
NFAtoDFA.h 54 for (const auto& row : fTransitions) {
55 stateCount = std::max(stateCount, (int) row.size());
94 std::vector<int>& row = fTransitions[c]; local
95 while (row.size() <= (size_t) start) {
96 row.push_back(INVALID);
98 row[start] = next;
132 // collapse rows with the same transitions to a single row. This is common, as each row
136 // mappings[<input row>] = <output row>
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ApiProvider.java 117 Object[] row = { index, name, description, name }; local
118 cursor.addRow(row);
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFContext.cpp 154 // Get the index of the row we're looking for in the line table.
163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex]; local
164 const std::string &fileName = lineTable->Prologue.FileNames[row.File-1].Name;
166 return DILineInfo(fileName.c_str(), row.Line, row.Column);
  /external/tensorflow/tensorflow/core/kernels/
softmax_op_gpu.cu.cc 43 const int row = tid / num_cols; local
46 if (row < num_rows && col < num_cols) {
49 logits[tid] - ldg(max_logits + row) - log(ldg(sum_probs + row));
52 exp(logits[tid] - ldg(max_logits + row)) / ldg(sum_probs + row);
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_decoder.h 97 auto row = input[t].row(b); variable
99 (*scores)(b, 0) += -row.maxCoeff(&max_class_ix);
  /external/webrtc/webrtc/modules/video_processing/
brightness_detection.cc 67 int row = h * width; local
70 (buffer[w + row] - stats.mean) * (buffer[w + row] - stats.mean);
  /external/webrtc/webrtc/system_wrappers/source/
data_log_unittest.cc 49 int row = 0; local
66 EXPECT_EQ(str, it->second.values[row]);
67 if (str != it->second.values[row])
70 ++row;
93 // header or a cell of a row.

Completed in 711 milliseconds

1 2 3 4 56 7 8 91011>>