/external/freetype/src/base/ |
ftlcdfil.c | 111 FT_Byte* col = column; local 116 val1 = col[0]; 121 col += pitch; 123 val1 = col[0]; 128 col += pitch; 135 val = col[0]; 144 col[-2 * pitch] = (FT_Byte)pix; 145 col += pitch; 154 col[-2 * pitch] = (FT_Byte)pix; 158 col[-pitch] = (FT_Byte)pix 234 FT_Byte* col = column; local [all...] |
/external/eigen/Eigen/src/Core/ |
SelfCwiseBinaryOp.h | 65 inline Scalar& coeffRef(Index row, Index col) 68 return m_matrix.const_cast_derived().coeffRef(row, col); 70 inline const Scalar& coeffRef(Index row, Index col) const 72 return m_matrix.coeffRef(row, col); 88 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) 92 && col >= 0 && col < cols()); 93 Scalar& tmp = m_matrix.coeffRef(row,col); 94 tmp = m_functor(tmp, _other.coeff(row,col)); 107 void copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other [all...] |
/external/jpeg/ |
jdcolor.c | 149 register JDIMENSION col; local 165 for (col = 0; col < num_cols; col++) { 166 y = GETJSAMPLE(inptr0[col]); 167 cb = GETJSAMPLE(inptr1[col]); 168 cr = GETJSAMPLE(inptr2[col]); 190 register JDIMENSION col; local 206 for (col = 0; col < num_cols; col++) 231 register JDIMENSION col; local 303 register JDIMENSION col; local 379 register JDIMENSION col; local 405 register JDIMENSION col; local 456 register JDIMENSION col; local 564 register JDIMENSION col; local 585 register JDIMENSION col; local 606 register JDIMENSION col; local 643 register JDIMENSION col; local 699 register JDIMENSION col; local [all...] |
rdppm.c | 148 JDIMENSION col; local 151 for (col = cinfo->image_width; col > 0; col--) { 166 JDIMENSION col; local 169 for (col = cinfo->image_width; col > 0; col--) { 186 JDIMENSION col; local 192 for (col = cinfo->image_width; col > 0; col--) 207 JDIMENSION col; local 245 JDIMENSION col; local 269 JDIMENSION col; local [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
DynamicSparseMatrix.h | 89 /** \returns the coefficient value at given position \a row, \a col 92 inline Scalar coeff(Index row, Index col) const 94 const Index outer = IsRowMajor ? row : col; 95 const Index inner = IsRowMajor ? col : row; 99 /** \returns a reference to the coefficient value at given position \a row, \a col 103 inline Scalar& coeffRef(Index row, Index col) 105 const Index outer = IsRowMajor ? row : col; 106 const Index inner = IsRowMajor ? col : row; 145 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that: 150 inline Scalar& insertBack(Index row, Index col) [all...] |
/external/libvterm/src/ |
screen.c | 69 static inline ScreenCell *getcell(const VTermScreen *screen, int row, int col) 73 if(col < 0 || col >= screen->cols) 75 return screen->buffer + (screen->cols * row) + col; 83 for(int col = 0; col < new_cols; col++) { 84 ScreenCell *new_cell = new_buffer + row*new_cols + col; 86 if(buffer && row < screen->rows && col < screen->cols) 87 *new_cell = buffer[row * screen->cols + col]; 858 int col; local [all...] |
/external/eigen/test/ |
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));
|
vectorwiseop.cpp | 38 VERIFY_IS_APPROX(m2.col(c), m1.col(c) + colvec); 56 VERIFY_IS_APPROX(m2.col(c), m1.col(c) - colvec); 74 VERIFY_IS_APPROX(m2.col(c), m1.col(c) * colvec); 92 VERIFY_IS_APPROX(m2.col(c), m1.col(c) / colvec); 145 VERIFY_IS_APPROX(m2.col(c), m1.col(c) + colvec) [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...] |
/external/libpng/ |
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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
lexer.py | 99 i=self.col 107 self.col = i+1 115 self.col=0 121 self.set_state(tok,kind,self.lno,self.col) 130 i=self.col 145 self.col = j 168 self.col = j 181 self.col = i+3 186 self.col = i+1 195 self.col = j+ [all...] |
/external/ceres-solver/internal/ceres/ |
block_random_access_dense_matrix_test.cc | 54 int col; local 58 m.GetCell(i, j, &row, &col, &row_stride, &col_stride); 62 EXPECT_EQ(col, col_idx); 84 int col; local 88 i, j, &row, &col, &row_stride, &col_stride); 90 row, col, blocks[i], blocks[j]) =
|
block_random_access_dense_matrix.cc | 69 int* col, 73 *col = block_layout_[col_block_id];
|
/external/chromium_org/third_party/libjpeg_turbo/ |
rdppm.c | 149 JDIMENSION col; local 152 for (col = cinfo->image_width; col > 0; col--) { 167 JDIMENSION col; local 170 for (col = cinfo->image_width; col > 0; col--) { 187 JDIMENSION col; local 193 for (col = cinfo->image_width; col > 0; col--) 208 JDIMENSION col; local 246 JDIMENSION col; local 270 JDIMENSION col; local [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/css/ |
table.css | 7 html.col-resize * { 8 cursor: col-resize !important; 59 cursor: col-resize;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ConfigTab.java | 217 toolTip.setMessage(/*"("+col+","+row+") "+*/toolTipMessage); 245 int col = 0; local 247 Rectangle bounds = tableItem.getBounds(col); 248 while (col<this.columnsCount) { 251 if (col == this.columnsCount) { 255 col++; 256 bounds = tableItem.getBounds(col); 260 return new Point(col, row); 360 for (int col=1; col<size; col++) [all...] |
/external/chromium_org/third_party/skia/src/images/ |
bmpdecoderhelper.cpp | 190 uint8 col = pixels; local 194 col = pixels & 0xf; 196 col = pixels >> 4; 199 PutPixel(x++, y, col); 234 uint8 col = val; local 237 col = col & 0xf; 239 col >>= 4; 243 PutPixel(x++, y, col); 257 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) { 291 uint8 col; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
dadrcoll.cpp | 149 DataDrivenCollatorTest::processArguments(Collator *col, const UChar *start, int32_t optLen) { 161 col->setAttribute(attrib, value, status); 169 Collator *col = NULL; local 183 col = Collator::createInstance(localeName, status); 195 col = new RuleBasedCollator(testSetting, status); 211 if(col != NULL){ 212 RuleBasedCollator* rbc = (RuleBasedCollator*)col; 228 processArguments(col, arguments, argLen); 243 processSequence(col, sequence); 254 delete col; [all...] |
apicoll.cpp | 98 Collator *col = 0; local 114 col = Collator::createInstance(Locale::getEnglish(), success); 120 StringEnumeration* kwEnum = col->getKeywordValuesForLocale("", Locale::getEnglish(),true,success); 127 col->getVersion(versionArray); 138 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed"); 139 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed"); 140 doAssert((col->compare("blackbird", "black-bird") == Collator::GREATER), "black-bird > blackbird comparison failed"); 141 doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird comparison failed"); 142 doAssert((col->compare("Hello", "hello") == Collator::GREATER), "Hello > hello comparison failed"); 143 doAssert((col->compare("","",success) == UCOL_EQUAL), "Comparison between empty strings failed") 435 Collator *col; local 538 Collator *col = 0; local 647 Collator *col = 0; local 973 Collator *col = 0; local 1097 Collator *col = Collator::createInstance(Locale::getEnglish(), status); local [all...] |
dadrcoll.h | 44 void processSequence(Collator* col, const UnicodeString &sequence); 46 void processArguments(Collator *col, const UChar *start, int32_t optLen);
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/ |
vp9_postproc.c | 89 int col; local 101 for (col = 0; col < cols; col++) { 103 int v = p_src[col]; 106 if (abs(v - p_src[col + i * pitch]) > flimit) 109 kernel += kernel5[2 + i] * p_src[col + i * pitch]; 114 p_dst[col] = v; 124 for (col = 0; col < cols; col++) [all...] |
/external/icu/icu4c/source/test/intltest/ |
apicoll.cpp | 66 Collator *col = 0; local 82 col = Collator::createInstance(Locale::getEnglish(), success); 88 StringEnumeration* kwEnum = col->getKeywordValuesForLocale("", Locale::getEnglish(),true,success); 95 col->getVersion(versionArray); 106 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed"); 107 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed"); 108 doAssert((col->compare("blackbird", "black-bird") == Collator::GREATER), "black-bird > blackbird comparison failed"); 109 doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird comparison failed"); 110 doAssert((col->compare("Hello", "hello") == Collator::GREATER), "Hello > hello comparison failed"); 111 doAssert((col->compare("","",success) == UCOL_EQUAL), "Comparison between empty strings failed") 393 Collator *col; local 496 Collator *col = 0; local 631 Collator *col = 0; local 955 Collator *col = 0; local 1082 Collator *col = Collator::createInstance(Locale::getEnglish(), status); local [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_symbolize.cc | 56 ent->col = info.column; 68 int col; member in namespace:__tsan 80 int *line, int *col) 86 int *line, int *col) { 97 int line, col; local 99 file_buf, sizeof(file_buf), &line, &col)) 107 ent->col = col;
|
/cts/tests/tests/widget/src/android/widget/cts/ |
GridLayoutTest.java | 192 int col = j + 1; local 193 GridLayout.LayoutParams lp = new GridLayout.LayoutParams(spec(0), spec(col)); 199 table[0][col] = v; 206 int col = j + 1; local 207 GridLayout.LayoutParams lp = new GridLayout.LayoutParams(spec(row), spec(col)); 211 v.setTextSize(10 + 5 * row * col); 213 table[row][col] = v; 219 private void testAlignment(int row, int col, Alignment a, View v0, View v1, String group) { 222 assertEquals("View at row " + row + ", column " + col + " was not " + a.name + 236 int col = j + 1 local 251 int col = j + 1; local [all...] |