HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 451 - 475 of 899) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa.cpp 1419 TUint32 col = (aPixel & 0xF00) << 12; local
1420 col |= (aPixel & 0xF00) << 8;
1422 col |= (aPixel & 0x0F0) << 8;
1423 col |= (aPixel & 0x0F0);
1425 col |= (aPixel & 0x00F) << 4;
1426 col |= (aPixel & 0x00F);
1428 return col;
1433 TUint32 col = (aPixel & 0xF800)<< 8; local
1434 col |= (aPixel & 0xE000) << 3;
1436 col |= (aPixel & 0x07E0) << 5
    [all...]
dsa_new.cpp 1357 TUint32 col = (aPixel & 0xF00) << 12; local
1358 col |= (aPixel & 0xF00) << 8;
1360 col |= (aPixel & 0x0F0) << 8;
1361 col |= (aPixel & 0x0F0);
1363 col |= (aPixel & 0x00F) << 4;
1364 col |= (aPixel & 0x00F);
1366 return col;
1371 TUint32 col = (aPixel & 0xF800)<< 8; local
1372 col |= (aPixel & 0xE000) << 3;
1374 col |= (aPixel & 0x07E0) << 5
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerBase.java 308 final int col = qname.lastIndexOf(':'); local
309 return (col > 0) ? qname.substring(col + 1) : qname;
821 final int col = qname.indexOf(':'); local
822 return (col > 0) ? qname.substring(0, col) : null;
823 //return (col > 0) ? qname.substring(0,col) : "";
859 int col = qname.lastIndexOf(':'); local
860 final String prefix = (col > 0) ? qname.substring(0, col) : EMPTYSTRING
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-stepin-positions.js 93 var col = resultPositions[i].position.column - markLength;
94 if (expectedPositions[col]) {
95 delete expectedPositions[col];
96 decoratedResult = replaceStringRange(decoratedResult, col, "*YES*");
98 decoratedResult = replaceStringRange(decoratedResult, col, "!BAD!");
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 135 /** shortcut for m_matrix(row,col);
137 inline Scalar operator() (int row, int col) const { return m_matrix(row,col); }
138 /** shortcut for m_matrix(row,col);
140 inline Scalar& operator() (int row, int col) { return m_matrix(row,col); }
507 VectorType tmp = linear().col(0)*sy + linear().col(1);
508 linear() << linear().col(0) + linear().col(1)*sx, tmp
    [all...]
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 369 if(svd.computeU()) svd.m_matrixU.col(p) *= conj(z);
372 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
383 work_matrix.col(q) *= z;
384 if(svd.computeV()) svd.m_matrixV.col(q) *= z;
390 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 144 self._col = col = evt.GetColumn()
145 self._colSortFlag[col] = int(not self._colSortFlag[col])
202 self._col = col = evt.GetColumn()
203 self._colSortFlag[col] = int(not self._colSortFlag[col])
247 col = pos[0] + w + BORDER
250 self.btn = wx.Button(parent, -1, "...", pos=(col, pos[1]+MacOffset()), size=(BUTWIDTH,self.cmb.GetSize()[1]))
314 col = pos[0] + w + BORDER
317 self.btn = wx.Button(parent, -1, "...", pos=(col, pos[1]), size=(BUTWIDTH,self.txt.GetSize()[1]))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.c 1439 XColor col; local
    [all...]
  /external/mksh/src/
edit.c 2242 size_t col = xcp - xbuf; local
5041 int cur, col; local
5091 int cur, col, cnt; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 542 transstr col; local
544 trans2utf(env, h->haveutf, h->enc, cols[i], &col);
545 (*env)->SetObjectArrayElement(env, arr, i, col.jstr);
551 (*env)->DeleteLocalRef(env, col.jstr);
4359 transstr dbn, tbl, col; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 95 Collection col; field in class:CollectionsTest.SynchCollectionChecker
115 synchronized (col) {
116 if (!(col.isEmpty() || col.containsAll(normalCountingList) || col
119 col.clear();
122 col.addAll(offsetCountingList);
124 col.addAll(normalCountingList);
134 col = c;
142 col.clear()
256 Collection col; \/\/ must contain the Integers 0 to 99 field in class:CollectionsTest.CollectionTest
2158 Collection col = new LinkedList<Integer>(); local
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
lossless.c 550 const int col = col_start + x; local
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
555 } else if (col == 0) {
556 predict = upper_row[col]; // Top.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
598 const int col = col_start + x; local
599 const int pix = row * width + col;
    [all...]
  /external/ppp/pppd/
sys-linux.c 1471 int col; local
1505 int col; local
    [all...]
  /external/webp/src/dsp/
lossless.c 550 const int col = col_start + x; local
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
555 } else if (col == 0) {
556 predict = upper_row[col]; // Top.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
598 const int col = col_start + x; local
599 const int pix = row * width + col;
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
network.js 92 var col = document.createElement('td');
93 col.textContent = value || '';
94 return col;
  /external/chromium_org/skia/ext/
convolver_unittest.cc 422 int col = i % src_row_stride / kChannelCount; local
424 if (channel != kChannel || col > kImgWidth) {
426 } else if (row == 0 || col == 0 ||
427 col == kImgWidth - 1 || row == kImgHeight - 1) {
429 } else if (row == 1 || col == 1 ||
430 col == kImgWidth - 2 || row == kImgHeight - 2) {
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_drawpix.c 355 GLint col; local
356 for (col = 0; col < width; col++)
357 span.array->z[col] = zSrc[col] >> shift;
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 433 m_qr.col(k).swap(m_qr.col(col_of_biggest_in_corner));
438 m_qr.col(k).tail(rows-k).makeHouseholderInPlace(m_hCoeffs.coeffRef(k), beta);
445 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1));
487 .applyHouseholderOnTheLeft(dec().matrixQR().col(k).tail(remainingSize-1),
558 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), internal::conj(m_hCoeffs.coeff(k)), &workspace.coeffRef(k));
  /external/icu4c/i18n/
coll.cpp 246 Collator *col = (Collator*)gService->get(desiredLocale, *status); local
248 if (col && (rbc = dynamic_cast<RuleBasedCollator *>(col))) {
262 result->delegate = col;
264 col = NULL; // to prevent free on delete.
267 delete col;
  /external/libvpx/libvpx/vp8/decoder/
decodemv.c 114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2);
297 blockmv.as_mv.col = read_mvcomponent(bc, &mvc[1]) * 2;
298 blockmv.as_mv.col += best_mv.as_mv.col;
497 mbmi_mv->as_mv.col += near_mvs[near_index].as_mv.col;
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 355 GLint col; local
356 for (col = 0; col < width; col++)
357 span.array->z[col] = zSrc[col] >> shift;
  /external/opencv/cvaux/include/
cvmat.hpp 508 _CvMATElem_ operator ()( int row, int col );
509 _CvMATConstElem_ operator ()( int row, int col ) const;
514 _CvMATElemCn_ operator()( int row, int col, int coi );
515 double operator()( int row, int col, int coi ) const;
523 void* ptr( int row, int col );
524 const void* ptr( int row, int col ) const;
532 CvMAT col( int col ) const;
637 CvMAT col( int col ) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCell.cpp 115 ASSERT(firstColForThisCell && firstColForThisCell == table()->colElement(col()));
133 // If no next <col> tag found for the span we just return what we have for now.
138 // Column widths specified on <col> apply to the border box of the cell, see bug 8126.
482 bool isStartColumn = !col();
483 bool isEndColumn = table()->colToEffCol(col() + colSpan() - 1) == table()->numEffCols() - 1;
493 bool isStartColumn = !col();
494 bool isEndColumn = table()->colToEffCol(col() + colSpan() - 1) == table()->numEffCols() - 1;
546 if (RenderTableCol* colElt = table->colElement(col(), &startColEdge, &endColEdge)) {
553 // We first consider the |colElt| and irrespective of whether it is a spanned col or not, we apply
555 // the col element is expected to be treated as if it was present as many times as its span attribute specifi (…)
    [all...]

Completed in 1003 milliseconds

<<11121314151617181920>>