HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 576 - 600 of 732) sorted by null

<<21222324252627282930

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_intra_prediction.c 548 u32 row, col; local
562 row = mbNum / width;
563 col = mbNum - row * width;
566 ptr = image->data + row * 16 * width + col * 16;
569 * sense when current mb is the right-most mb in a row. Same applies to
573 if (row)
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8;
590 if (row)
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 195 {0, UDATPG_FIELD_COUNT, 0, 0, 0} , // last row of dtTypes[]
1020 const dtTypeElem *row = &dtTypes[canonicalIndex]; local
1578 const dtTypeElem *row = &dtTypes[canonicalIndex]; local
    [all...]
zstrfmt.cpp 566 for (int32_t row = 0; row < rowCount; row++) {
567 if (strings[row][0].isEmpty()) {
572 if (!strings[row][col].isEmpty()) {
598 names[typeIdx].setTo(strings[row][col]);
602 ZoneStringInfo *zsinf = new ZoneStringInfo(strings[row][0],
603 strings[row][col],
607 fZoneStringsTrie.put(strings[row][col], zsinf, fStringPool, status);
618 UChar *utzid = const_cast<UChar *>(fStringPool.get(strings[row][0], status))
    [all...]
  /external/libpng/
pngwutil.c     [all...]
pngwrite.c 737 png_write_rows(png_structp png_ptr, png_bytepp row,
740 png_uint_32 i; /* row counter */
741 png_bytepp rp; /* row pointer */
749 for (i = 0, rp = row; i < num_rows; i++, rp++)
761 png_uint_32 i; /* row index */
763 png_bytepp rp; /* points to current row */
789 /* Called by user to write a row of image data */
791 png_write_row(png_structp png_ptr, png_bytep row)
796 png_debug2(1, "in png_write_row (row %ld, pass %d)",
845 /* If interlaced and not interested in row, return *
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwutil.c     [all...]
  /external/icu4c/common/
ucnvmbcs.c 153 * The data structure begins with a state table consisting of a row
154 * per state, with 256 entries (columns) per row for each possible input
497 const int32_t *row; local
502 row=mbcsTable->stateTable[state];
516 int32_t entry=row[b];
594 const int32_t *row; local
597 row=stateTable[state];
602 entry=row[min];
623 entry=row[max];
640 entry=row[min]
2257 const int32_t *row=stateTable[state]; local
2300 const int32_t *row=stateTable[state]; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 111 private static final String COMMON_TYPE_ROW = Phone.TYPE; // Could have been any typed row
743 * Changes are handled row by row, and only changed/new rows are acted upon
1668 String row = EasChildren.ROWS[i]; local
    [all...]
  /external/quake/quake/src/QW/client/
gl_model.c 117 int row; local
119 row = (model->numleafs+7)>>3;
123 memcpy (out, in, row);
127 while (row)
130 row--;
150 } while (out - decompressed < row);
    [all...]
model.c 115 int row; local
117 row = (model->numleafs+7)>>3;
121 memcpy (out, in, row);
125 while (row)
128 row--;
148 } while (out - decompressed < row);
    [all...]
  /external/quake/quake/src/WinQuake/
gl_draw.cpp 618 int row, col; local
623 row = num>>4;
625 source = draw_chars + (row<<10) + (col<<3);
843 int row, col; local
854 row = num>>4;
857 frow = row*0.0625;
    [all...]
gl_model.cpp 117 int row; local
119 row = (model->numleafs+7)>>3;
123 memcpy (out, in, row);
127 while (row)
130 row--;
150 } while (out - decompressed < row);
    [all...]
  /frameworks/base/opengl/tests/hwc/
hwcCommit.cpp 638 // has limits on the number of objects it can handle on any single row.
    [all...]
  /external/icu4c/test/cintltst/
cloctst.c 387 int row = 0; local
438 for(row=0;testData[row][0] != NULL;row++) {
439 loc = testData[row][NAME];
440 log_verbose("Test #%d: %s\n", row, loc);
485 row, testTitles[n], loc, u_errorName(err));
488 row, testTitles[n], loc, buf, len);
492 row, testTitles[n], loc, buf, len, strlen(buf)+1);
499 row, testTitles[n], loc, buf, buf[len+1])
    [all...]
  /bootable/recovery/
ui.c 182 static void draw_text_line(int row, const char* t) {
184 gr_text(0, (row+1)*CHAR_HEIGHT-1, t);
  /cts/tests/tests/database/src/android/database/cts/
CursorWindowTest.java 88 for (ArrayList row : list) {
89 cursor.addRow(row);
294 // Though allocate a row, but the column number is still 0, so can't putString.
584 fail("Row number is smaller than startPosition, will cause a IllegalStateException.");
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 71 for (Uri row : mRowsAdded) {
72 mContentResolver.delete(row, null, null);
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 174 html[os=mac] .tree-row[selected] > .tree-label {
  /external/libvpx/vp8/common/ppc/
recon_altivec.asm 75 stwux r0, \Dst, \Stride ;# advance dst to next row
  /external/skia/samplecode/
SampleWarp.cpp 216 SkPoint& pt(int row, int col) {
217 return fPts[row * (fRows + 1) + col];
  /external/skia/src/core/
SkMatrix.cpp 509 static inline bool rowcol3(const float row[], const float col[],
511 *result = row[0] * col[0] + row[1] * col[3] + row[2] * col[6];
542 static inline bool rowcol3(const SkFixed row[], const SkFixed col[],
546 tmp1.setMul(row[0], col[0]); // N * fixed
547 tmp2.setMul(row[1], col[3]); // N * fixed
550 tmp2.setMul(row[2], col[6]); // N * fract
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.cpp 88 uint32_t* row = bitmap.getAddr32(0, y); local
90 row[x] |= 0xFF000000; // Set alpha bits to 1.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 213 inline void move(int row, int col) {
214 OnError(::move_field(field,row,col));
  /external/chromium/chrome/browser/history/
history_types.h 51 // Holds all information globally associated with one URL (one row in the
135 // The row ID of this URL. Immutable except for the database which sets it
139 // The URL of this row. Immutable except for the database which sets it
197 // ID of this row (visit ID, used a a referrer for other visits).
200 // Row ID into the URL table of the URL that this page is.
671 // Return true if |row| qualifies as an autocomplete candidate. If |time_cache|
677 bool RowQualifiesAsSignificant(const URLRow& row, const base::Time& threshold);
  /external/opencv/ml/include/
ml.h 392 typedef float* (CvSVMSolver::*GetRow)( int i, float* row, float* dst, bool existed );
466 virtual float* get_row_svc( int i, float* row, float* dst, bool existed );
467 virtual float* get_row_one_class( int i, float* row, float* dst, bool existed );
468 virtual float* get_row_svr( int i, float* row, float* dst, bool existed );
    [all...]

Completed in 926 milliseconds

<<21222324252627282930