HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 551 - 575 of 723) sorted by null

<<212223242526272829

  /external/libvpx/vp8/common/x86/
subpixel_sse2.asm 127 jnz filter_block1d8_h6_rowloop ; next row
304 jnz filter_block1d16_h6_sse2_rowloop ; next row
399 jnz vp8_filter_block1d8_v6_sse2_loop ; next row
514 jnz vp8_filter_block1d16_v6_sse2_loop ; next row
627 jnz filter_block1d8_h6_only_rowloop ; next row
792 jnz filter_block1d16_h6_only_sse2_rowloop ; next row
886 jnz vp8_filter_block1d8_v6_only_sse2_loop ; next row
    [all...]
subpixel_ssse3.asm 1064 movq xmm4, [rsi] ; load row 0
1065 movq xmm2, [rsi + 8] ; load row 0
1069 movq xmm3, [rsi] ; load row + 1
1070 movq xmm5, [rsi + 8] ; load row + 1
1076 movq xmm7, [rsi + rax] ; load row + 2
1079 movq xmm6, [rsi + rax + 8] ; load row + 2
1096 movdqa [rdi], xmm4 ; store row 0
1105 movdqa [rdi + rdx],xmm3 ; store row 1
    [all...]
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_variance16x16_armv6.asm 111 add r0, r0, r1 ; set src_ptr to next row
114 add r2, r2, r3 ; set dst_ptr to next row
vp8_variance_halfpixvar16x16_h_armv6.asm 137 add r0, r0, r1 ; set src_ptr to next row
140 add r2, r2, r3 ; set dst_ptr to next row
  /external/openssl/apps/
ocsp.c 1162 char *itmp, *row[DB_NUMBER],**rrow; local
1163 for (i = 0; i < DB_NUMBER; i++) row[i] = NULL;
1170 row[DB_serial] = itmp;
1172 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
    [all...]
  /external/qemu/hw/
pxa.h 113 int row; member in struct:keymap
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 148 fields.row = -1;
169 fields.row = compString[0] - '0';
176 fields.row = compString[0] - '0';
180 if (fields.row >= matSize || fields.col >= matSize) {
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerPresentationModel.js 184 var newLineNumber = diff.left[lineNumber].row;
187 if (diff.left[i].row === undefined)
189 var shiftedLineNumber = diff.left[i].row + lineNumber - i;
191 var originalLineNumber = diff.right[shiftedLineNumber].row;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtMaemoWebPopup.cpp 61 emit itemClicked(m_list->row(item));
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebPlugin.cpp 58 emit itemClicked(m_list->row(item));
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp     [all...]
  /external/webp/src/dec/
vp8i.h 226 uint8_t* cache_y_; // macroblock row for storing unfiltered samples
292 // Filter the decoded macroblock row (if needed)
296 // Finalize and transmit a complete row. Return false in case of user-abort.
303 int row, int num_rows);
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 352 String[] row = (String[]) r.rows.elementAt(0);
358 assertTrue(stringInHex.equalsIgnoreCase(row[1]));
379 String[] row = (String[]) r.rows.elementAt(0);
380 assertEquals(name,row[1]);
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 202 // Select the closest icon in the previous row, otherwise select the tab bar
215 // Select the closest icon in the previous row, otherwise do nothing
363 // Select the closest icon in the previous row, otherwise select the tab bar
375 // Select the closest icon in the previous row, otherwise do nothing
638 final int row = lp.cellY; local
639 final int newRow = row + lineDelta;
648 boolean satisfiesRow = (lineDelta < 0) ? (tmpLp.cellY < row) : (tmpLp.cellY > row);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 267 View row = mConfigUi.getLayoutInflater().inflate(R.layout.wifi_dialog_row, group, false); local
268 ((TextView) row.findViewById(R.id.name)).setText(name);
269 ((TextView) row.findViewById(R.id.value)).setText(value);
270 group.addView(row);
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlibint.h 690 * CI_GET_CHAR_INFO_2D - return the charinfo struct for the indicated row and
691 * column. This is used for fonts that have more than row zero.
693 #define CI_GET_CHAR_INFO_2D(fs,row,col,def,cs) \
696 if (row >= fs->min_byte1 && row <= fs->max_byte1 && \
701 cs = &fs->per_char[((row - fs->min_byte1) * \
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 533 // Attach row/column info
535 String row = e.getAttributeNS(ANDROID_URI, ATTR_LAYOUT_ROW); local
536 if (row.length() == 0) {
537 row = "?";
553 styledString.append(row, QUALIFIER_STYLER);
    [all...]
  /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...]
  /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...]

Completed in 696 milliseconds

<<212223242526272829