/packages/apps/Terminal/jni/ |
com_android_terminal_Terminal.cpp | 95 inline void getCell(dimen_t col, VTermScreenCell* cell) { 96 *cell = mCells[col]; 190 pos.col, oldpos.row, oldpos.col, visible); 473 for (dimen_t col = n; col < cols; col++) { 474 cells[col].chars[0] = 0; 475 cells[col].width = 1; 498 if ((size_t) pos.col < line->cols) [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
CursorWindowTest.java | 50 ArrayList<Integer> col = list.get(i); local 53 int r2 = col.get(j); 64 ArrayList<Integer> col = list.get(i); local 67 int r2 = col.get(j); 415 ArrayList<Integer> col = new ArrayList<Integer>(); local 416 list.add(col); 419 col.add(j == 0 ? i : generator.nextInt());
|
/external/dng_sdk/source/ |
dng_gain_map.cpp | 277 int32 col, 285 col, 578 for (uint32 col = 0; col < cols; col += colPitch) 583 dPtr [col] = Min_real32 (dPtr [col] * gain, 1.0f);
|
dng_utils.cpp | 482 for (uint32 col = 0; col < count2; col++) 485 uint32 x = s1 [col]; 498 for (uint32 col = 0; col < count2; col++)
|
dng_matrix.cpp | 54 for (uint32 col = 0; col < fCols; col++) 57 fData [row] [col] = 0.0; 73 for (uint32 col = 0; col < fCols; col++) 76 fData [row] [col] = m.fData [row] [col];
|
/external/pdfium/core/fxge/ge/ |
cfx_facecache.cpp | 45 int col, row, temp; local 50 for (col = 0; col < nWidth; col++) { 69 for (col = 0; col < nWidth; col++) {
|
cfx_renderdevice.cpp | 231 for (int col = start_col; col < end_col; col++) { 249 for (int col = start_col + 1; col < end_col - 1; col++) { 262 for (int col = start_col + 1; col < end_col - 1; col++) { 270 for (int col = start_col; col < end_col; col++) [all...] |
/external/eigen/Eigen/src/LU/ |
FullPivLU.h | 516 // biggest coefficient in the remaining bottom-right corner (starting at row k, col k) 543 // Now that we've found the pivot, we need to apply the row/col swaps to 553 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner)); 561 m_lu.col(k).tail(rows-k-1) /= m_lu.coeff(k,k); 563 m_lu.block(k+1,k+1,rows-k-1,cols-k-1).noalias() -= m_lu.col(k).tail(rows-k-1) * m_lu.row(k).tail(cols-k-1); 681 m.col(i).swap(m.col(pivots.coeff(i))); 693 m.col(i).swap(m.col(pivots.coeff(i))) [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorContractionMapper.h | 109 EIGEN_STRONG_INLINE Scalar operator()(Index row, Index col) const { 110 return m_tensor.coeff(computeIndex(row, col)); 114 EIGEN_STRONG_INLINE Index computeIndex(Index row, Index col) const { 116 Index nocontract_val = left ? row : col; 132 Index contract_val = left ? col : row; 152 EIGEN_STRONG_INLINE IndexPair<Index> computeIndexPair(Index row, Index col, const Index distance) const { 154 Index nocontract_val[2] = {left ? row : col, left ? row + distance : col}; 175 Index contract_val[2] = {left ? col : row, left ? col : row + distance} [all...] |
/external/doclava/res/assets/templates-sdk/ |
customizations.cs | 80 <div class="col-3 dac-toggle dac-mobile" id="side-nav" itemscope itemtype="http://schema.org/SiteNavigationElement"> 116 <div class="col-1of2 col-tablet-1of2 col-mobile-1of1"> 121 <div class="col-1of2 col-tablet-1of2 col-mobile-1of1"> 138 <div id="dac-search-results-reference" class="col-3of6 col-tablet-1of2 col-mobile-1of1" [all...] |
footer.cs | 5 <div class="col-1of2"> 9 <div class="col-1of2 dac-footer-reachout"> 89 <div class="col-1of2 newsletter-leftCol"> 101 <div class="col-1of2 newsletter-rightCol"> 116 <div class="col-1of2 newsletter-leftCol"> 135 <div class="col-1of2 newsletter-rightCol newsletter-checkboxes"> 164 <div class="col-2of5"> 198 <div class="col-2of2 langform-leftCol"> 207 <div class="col-2of5">
|
/external/fonttools/Lib/fontTools/ |
inspect.py | 244 col = gtk.TreeViewColumn(col_name) 245 col.set_sort_column_id(-1) 246 self.treeview.append_column(col) 249 col.pack_start(cell, True) 250 col.add_attribute(cell, 'text', i)
|
/external/icu/icu4c/source/test/intltest/ |
restsnew.cpp | 329 int32_t count, row=0, col=0; local 363 col=0; 369 expected+=itoa(col, buf); 370 col++; 374 CONFIRM_EQ(col, rowbundle.getSize()); 540 int32_t count, row=0, col=0; local 575 col=0; 579 temp = ures_getByIndex(rowbundle, col, temp, &err); 581 UnicodeString bla2 = ures_getUnicodeStringByIndex(rowbundle, col, &err); 584 expected+=itoa(col, buf) 653 int32_t i,j,row,col, actual_bundle; local [all...] |
/external/pdfium/third_party/libjpeg/ |
fpdfapi_jcdctmgr.c | 93 * coefficients scaled by scalefactor[row]*scalefactor[col], where 131 * coefficients scaled by scalefactor[row]*scalefactor[col], where 139 int row, col; local 153 for (col = 0; col < DCTSIZE; col++) { 156 aanscalefactor[row] * aanscalefactor[col] * 8.0)));
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
matrix.h | 352 for (size_t col = 0; col < num_columns_; ++col) { 355 cur_element += lhs[row][i] * rhs[i][col]; 358 elements_[row][col] = cur_element;
|
/external/deqp/modules/gles31/functional/ |
es31fMultisampleTests.cpp | 335 GLU_EXPECT_NO_ERROR(gl.getError(), "col buf"); 339 GLU_EXPECT_NO_ERROR(gl.getError(), "col vertexAttribPointer"); 794 for (int col = 0; col < numQuadRowsCols; col++) 796 float x0 = (float)(col+0) / (float)numQuadRowsCols * 2.0f - 1.0f; 797 float x1 = (float)(col+1) / (float)numQuadRowsCols * 2.0f - 1.0f; 802 Vec4 alpha0 (0.0f, 0.0f, 0.0f, m_isAlphaToCoverageCase ? (float)col / (float)(numQuadRowsCols-1) : 1.0f); 807 float value = (float)(row*numQuadRowsCols + col) / (float)(numQuadRowsCols*numQuadRowsCols-1); 820 const GLbitfield mask = (GLbitfield)deUint32Hash((col << (m_numSamples / 2)) ^ row) [all...] |
/external/libhevc/common/x86/ |
ihevc_sao_ssse3_intr.c | 131 WORD32 row, col; local 149 for(col = 0; col < wd; col += 8) 254 for(col = wd; col >= 16; col -= 16) 450 WORD32 row, col; local 471 for(col = 0; col < wd; col += 8 889 WORD32 row, col; local 1224 WORD32 row, col; local 1594 WORD32 row, col; local 2030 WORD32 row, col; local 2489 WORD32 row, col; local 3249 WORD32 row, col; local 4081 WORD32 row, col; local 4858 WORD32 row, col; local [all...] |
/external/robolectric/v1/lib/main/ |
sqlite-jdbc-3.7.2.jar | |
/external/eigen/test/ |
vectorization_logic.cpp | 167 VERIFY(test_assign(Matrix44c().col(1),Matrix44c().col(2)+Matrix44c().col(3), 181 VERIFY(test_assign(Matrix33c().col(0),Matrix33c().col(1)+Matrix33c().col(1), 332 VERIFY(test_assign(Matrix33c().col(0),Matrix33c().col(1)+Matrix33c().col(1),
|
/external/libhevc/common/ |
ihevc_deblk_edge_filter.c | 350 WORD32 col; local 436 for(col = 0; col < 4; col++) 730 WORD32 col; local 753 for(col = 0; col < 8; col++) 755 tc = (col & 1) ? tc_v : tc_u;
|
/external/pdfium/core/fxcodec/lbmp/ |
fx_bmp.cpp | 333 for (int32_t col = 0; col < bmp_ptr->width; col++) { 334 *row_buf++ = des_buf[col >> 3] & (0x80 >> (col % 8)) ? 0x01 : 0x00; 338 for (int32_t col = 0; col < bmp_ptr->width; col++) { 339 *row_buf++ = (col & 0x01) ? (des_buf[col >> 1] & 0x0F [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
timings.go | 193 for i, col := range line { 195 if len(col) > widths[i] { 196 widths[i] = len(col) 199 widths = append(widths, len(col)) 200 number = append(number, isnumber(col)) // first line determines column contents 216 for i, col := range line { 221 fmt.Fprintf(w, format, widths[i], col)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
timings.go | 193 for i, col := range line { 195 if len(col) > widths[i] { 196 widths[i] = len(col) 199 widths = append(widths, len(col)) 200 number = append(number, isnumber(col)) // first line determines column contents 216 for i, col := range line { 221 fmt.Fprintf(w, format, widths[i], col)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
TimeLineGraph.java | 148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { 149 addItem(groupName, name, description, value, col, display, timestamp,false); 152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { 153 addItem(groupName, name,description, value, col, display, 157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { 163 items.add(new TimeLineGraphItem(name, description, value, col, display,
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
IncompleteCholesky.h | 187 inline void updateList(Ref<const VectorIx> colPtr, Ref<VectorIx> rowIdx, Ref<VectorSx> vals, const Index& col, const Index& jk, VectorIx& firstElt, VectorList& listCol); 379 inline void IncompleteCholesky<Scalar,_UpLo, OrderingType>::updateList(Ref<const VectorIx> colPtr, Ref<VectorIx> rowIdx, Ref<VectorSx> vals, const Index& col, const Index& jk, VectorIx& firstElt, VectorList& listCol) 381 if (jk < colPtr(col+1) ) 383 Index p = colPtr(col+1) - jk; 393 firstElt(col) = internal::convert_index<StorageIndex,Index>(jk); 394 listCol[rowIdx(jk)].push_back(internal::convert_index<StorageIndex,Index>(col));
|