HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 126 - 150 of 1398) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libvncserver/libvncserver/
draw.c 3 void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col)
7 char* colour=(char*)&col;
20 void rfbDrawPixel(rfbScreenInfoPtr s,int x,int y,rfbPixel col)
23 char* colour=(char*)&col;
31 void rfbDrawLine(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col)
35 char* colour=(char*)&col;
53 rfbDrawPixel(s,x1,y1,col);
  /external/pcre/dist2/
test-driver 117 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
118 0:*) col=$grn res=PASS recheck=no gcopy=no;;
119 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
120 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
121 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
122 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
132 echo "${col}${res}${std}: $test_name"
  /external/protobuf/gtest/build-aux/
test-driver 114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
123 echo "${col}${res}${std}: $test_name"
  /external/protobuf/
test-driver 114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
123 echo "${col}${res}${std}: $test_name"
  /external/strace/
test-driver 114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
123 echo "${col}${res}${std}: $test_name"
  /external/libhevc/common/
ihevc_padding.c 150 //WORD32 col;
439 WORD32 col; local
450 for(col = -pad_size; col < 0; col++)
451 pu2_src[col] = u2_uv_val;
560 WORD32 col; local
571 for(col = 0; col < pad_size; col++
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 95 int row, col, active_end; local
110 col = 0;
114 for (; col < mb_cols; ++col) {
115 if (active_map[col]) break;
119 if (col == mb_cols) break;
122 active_end = col;
129 vp8_copy_and_extend_frame_with_rect(src, &buf->img, row << 4, col << 4,
130 16, (active_end - col) << 4);
133 col = active_end
    [all...]
  /external/libvterm/src/
state.c 34 fprintf(stderr, "libvterm: Unhandled putglyph U+%04x at (%d,%d)\n", chars[0], pos.col, pos.row);
39 if(state->pos.col == oldpos->col && state->pos.row == oldpos->row)
138 static void set_col_tabstop(VTermState *state, int col)
140 unsigned char mask = 1 << (col & 7);
141 state->tabstops[col >> 3] |= mask;
144 static void clear_col_tabstop(VTermState *state, int col)
146 unsigned char mask = 1 << (col & 7);
147 state->tabstops[col >> 3] &= ~mask;
150 static int is_col_tabstop(VTermState *state, int col)
939 int row, col; local
1524 int col; local
    [all...]
screen.c 71 static inline ScreenCell *getcell(const VTermScreen *screen, int row, int col)
75 if(col < 0 || col >= screen->cols)
77 return screen->buffer + (screen->cols * row) + col;
85 for(int col = 0; col < new_cols; col++) {
86 ScreenCell *new_cell = new_buffer + row*new_cols + col;
88 if(buffer && row < screen->rows && col < screen->cols)
89 *new_cell = buffer[row * screen->cols + col];
902 int col; local
    [all...]
pen.c 36 static void lookup_colour_ansi(const VTermState *state, long index, VTermColor *col)
39 *col = state->colors[index];
43 static void lookup_colour_palette(const VTermState *state, long index, VTermColor *col)
47 lookup_colour_ansi(state, index, col);
53 col->blue = ramp6[index % 6];
54 col->green = ramp6[index/6 % 6];
55 col->red = ramp6[index/6/6 % 6];
61 col->red = ramp24[index];
62 col->green = ramp24[index];
63 col->blue = ramp24[index]
    [all...]
  /external/freetype/src/base/
ftlcdfil.c 119 FT_Byte* col = column; local
124 val1 = col[0];
129 col += pitch;
131 val1 = col[0];
136 col += pitch;
143 val = col[0];
152 col[-2 * pitch] = (FT_Byte)pix;
153 col += pitch;
162 col[-2 * pitch] = (FT_Byte)pix;
166 col[-pitch] = (FT_Byte)pix
250 FT_Byte* col = column; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftlcdfil.c 119 FT_Byte* col = column; local
124 val1 = col[0];
129 col += pitch;
131 val1 = col[0];
136 col += pitch;
143 val = col[0];
152 col[-2 * pitch] = (FT_Byte)pix;
153 col += pitch;
162 col[-2 * pitch] = (FT_Byte)pix;
166 col[-pitch] = (FT_Byte)pix
250 FT_Byte* col = column; local
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdcolor.c 128 register JDIMENSION col; local
144 for (col = 0; col < num_cols; col++) {
145 y = GETJSAMPLE(inptr0[col]);
146 cb = GETJSAMPLE(inptr1[col]);
147 cr = GETJSAMPLE(inptr2[col]);
222 register JDIMENSION col; local
228 for (col = 0; col < num_cols; col++)
253 register JDIMENSION col; local
    [all...]
  /external/syslinux/gpxe/src/hci/mucurses/widgets/
editbox.c 41 * @v col Starting column
46 WINDOW *win, unsigned int row, unsigned int col,
54 box->col = col;
101 mvwprintw ( box->win, box->row, box->col, "%s", buf );
102 wmove ( box->win, box->row, ( box->col + cursor_offset ) );
  /external/eigen/test/
nomalloc.cpp 47 m2.col(0).noalias() = m1 * m1.col(0);
48 m2.col(0).noalias() -= m1.adjoint() * m1.col(0);
49 m2.col(0).noalias() -= m1 * m1.row(0).adjoint();
50 m2.col(0).noalias() -= m1.adjoint() * m1.row(0).adjoint();
54 m2.row(0).noalias() -= m1.col(0).adjoint() * m1;
55 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint();
58 m2.col(0).noalias() = m1.template triangularView<Upper>() * m1.col(0)
    [all...]
block.cpp 18 VERIFY_IS_APPROX(m1.col(c1).cwiseMin(s1), m1.cwiseMin(s1).col(c1));
62 //check row() and col()
63 VERIFY_IS_EQUAL(m1.col(c1).transpose(), m1.transpose().row(c1));
64 //check operator(), both constant and non-constant, on row() and col()
72 m1.col(c1) += s1 * m1_copy.col(c2);
73 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + s1 * m1_copy.col(c2))
    [all...]
sparseLM.cpp 96 for (int col = 0; col < half; col++)
100 coeff = (m_x(row)-col)/v(col);
104 fjac.coeffRef(row,col) = -(1-coeff)*(1-coeff);
109 for (int col = 0; col < half; col++)
113 coeff = (m_x(row)-col)/v(col)
    [all...]
jacobi.cpp 56 VERIFY_IS_APPROX(b.col(p), c * a.col(p) - s * a.col(q));
57 VERIFY_IS_APPROX(b.col(q), numext::conj(s) * a.col(p) + numext::conj(c) * a.col(q));
sparse_product.cpp 150 VERIFY_IS_APPROX(dm4.col(0)=m2*refMat3.col(0), refMat4.col(0)=refMat2*refMat3.col(0));
151 VERIFY_IS_APPROX(dm4.col(0)=m2*refMat3t.transpose().col(0), refMat4.col(0)=refMat2*refMat3t.transpose().col(0));
152 VERIFY_IS_APPROX(dm4.col(0)=m2t.transpose()*refMat3.col(0), refMat4.col(0)=refMat2t.transpose()*refMat3.col(0))
    [all...]
  /external/selinux/gui/
booleansPage.py 129 col = gtk.TreeViewColumn('Active', checkbox, active=ACTIVE)
130 col.set_clickable(True)
131 col.set_sort_column_id(ACTIVE)
132 self.booleansView.append_column(col)
134 col = gtk.TreeViewColumn("Module", gtk.CellRendererText(), text=MODULE)
135 col.set_sort_column_id(MODULE)
136 col.set_resizable(True)
137 self.booleansView.append_column(col)
139 col = gtk.TreeViewColumn("Description", gtk.CellRendererText(), text=DESC)
140 col.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED
    [all...]
  /external/pdfium/core/fxge/dib/
fx_dib_main.cpp 334 for (int col = 0; col < m_Width; col++) {
426 for (int col = 0; col < width; col++) {
427 if (src_scan[(src_left + col) / 8] &
428 (1 << (7 - (src_left + col) % 8))) {
429 dest_scan[(dest_left + col) / 8] |= 1
430 << (7 - (dest_left + col) % 8)
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_bitplane.c 157 int32_t row[2], col[2]; local
169 col[0] = 0; /* i%width; */
171 col[1] = 1; /* (i+1)%width; */
183 col[0] = 1; /* i%width; */
184 col[1] = 2; /* (i+1)%width; */
189 col[0] = 0; /* i%width; */
191 col[1] = 0; /* (i+1)%width; */
201 //col[0]=i%width;
203 //col[1]=(i+1)%width;
209 put_bit(0, col[0],row[0], width, height, pBitplane->invert
288 int32_t row, col; local
    [all...]
  /external/dng_sdk/source/
dng_misc_opcodes.cpp 655 for (uint32 col = 0; col < cols; col += colPitch)
658 dPtr [col] = y;
678 for (uint32 col = 0; col < cols; col += colPitch)
681 real32 x = dPtr [col];
685 dPtr [col] = Min_real32 (y, 1.0f);
694 for (uint32 col = 0; col < cols; col += colPitch
    [all...]
  /frameworks/native/libs/math/include/math/
TMatHelpers.h 218 for (size_t col = 0; col < 3; ++col) {
220 inverted[col][row] /= det;
256 for (size_t col = 0; col < MATRIX_R::NUM_COLS; ++col) {
257 res[col] = lhs * rhs[col];
268 for (size_t col = 0; col < MATRIX::NUM_COLS; ++col)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
makechangelog.py 61 col = maxcol
63 if col > 0 and col + len(word) >= maxcol:
66 col = -1
69 col = col + 1 + len(word)

Completed in 1075 milliseconds

1 2 3 4 56 7 8 91011>>