HomeSort by relevance Sort by last modified time
    Searched refs:index1 (Results 1 - 25 of 46) sorted by null

1 2

  /external/skia/src/core/
SkLineClipper.cpp 59 int index0, index1; local
63 index1 = 1;
66 index1 = 0;
76 if (tmp[index1].fY > clip.fBottom) {
77 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
82 index1 = 1;
85 index1 = 0;
89 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
90 tmp[index0].fX < tmp[index1].fX) {
98 if (tmp[index1].fX > clip.fRight)
111 int index0, index1; local
    [all...]
  /external/webkit/WebCore/platform/graphics/
GlyphBuffer.h 93 void swap(int index1, int index2)
95 const SimpleFontData* f = m_fontData[index1];
96 m_fontData[index1] = m_fontData[index2];
99 GlyphBufferGlyph g = m_glyphs[index1];
100 m_glyphs[index1] = m_glyphs[index2];
103 GlyphBufferAdvance s = m_advances[index1];
104 m_advances[index1] = m_advances[index2];
108 FloatSize offset = m_offsets[index1];
109 m_offsets[index1] = m_offsets[index2];
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
OrderedTable.java 103 int index1 = index + 1; local
104 if (index1 >= rest.length) {
106 Object[] newRest = new Object[index1 * 2 + 10];
111 rest[index1] = value;
  /external/icu4c/common/
utrie2_impl.h 143 int32_t index1[UNEWTRIE2_INDEX_1_LENGTH]; member in struct:UNewTrie2
utrie2_builder.c 215 newTrie->index1[i]=j;
220 newTrie->index1[i]=UNEWTRIE2_INDEX_2_NULL_OFFSET;
252 uprv_memcpy(trie->index1, other->index1, sizeof(trie->index1));
466 i2=trie->index1[c>>UTRIE2_SHIFT_1]+
501 i2=trie->index1[i1];
507 trie->index1[i1]=i2;
926 i2Block=trie->index1[--i1];
    [all...]
  /external/proguard/src/proguard/
InputReader.java 152 for (int index1 = 0; index1 < inputClassPath.size(); index1++)
154 ClassPathEntry entry1 = inputClassPath.get(index1);
  /external/quake/quake/src/QW/client/
d_polyse.c 186 finalvert_t *pfv, *index0, *index1, *index2; local
197 index1 = pfv + ptri[i].vertindex[1];
200 if (((index0->v[1]-index1->v[1]) *
202 (index0->v[0]-index1->v[0]) *
212 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
219 s1 = index1->v[2];
224 if (index1->flags & ALIAS_ONSEAM)
225 index1->v[2] += r_affinetridesc.seamfixupX16;
229 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
232 index1->v[2] = s1
247 finalvert_t *pfv, *index0, *index1, *index2; local
    [all...]
  /external/quake/quake/src/WinQuake/
d_polyse.cpp 186 finalvert_t *pfv, *index0, *index1, *index2; local
197 index1 = pfv + ptri[i].vertindex[1];
200 if (((index0->v[1]-index1->v[1]) *
202 (index0->v[0]-index1->v[0]) *
212 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
219 s1 = index1->v[2];
224 if (index1->flags & ALIAS_ONSEAM)
225 index1->v[2] += r_affinetridesc.seamfixupX16;
229 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
232 index1->v[2] = s1;
247 finalvert_t *pfv, *index0, *index1, *index2; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationItem.java 73 int index1 = item1.type.getIndex(); local
76 if (index1 < index2) {
78 } else if (index1 > index2) {
  /frameworks/base/awt/java/awt/
MenuComponent.java 649 * Determine the clip region when menu selection is changed from index1 to
652 * @param index1
658 final MultiRectArea getUpdateClip(int index1, int index2) {
660 if (index1 >= 0) {
661 clip.add(getItemRect(index1));
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 236 int index1 = ((DOMOrder) node1).getUid(); local
239 return index1 <= index2;
  /packages/apps/Phone/src/com/android/phone/
BluetoothAtPhonebook.java 181 // AT+CPBR=<index1>[,<index2>]
184 int index1;
189 index1 = (Integer)args[0];
193 index2 = index1;
215 if (pbr.cursor.getCount() == 0 || index1 <= 0 || index2 < index1 ||
216 index2 > pbr.cursor.getCount() || index1 > pbr.cursor.getCount()) {
223 pbr.cursor.moveToPosition(index1 - 1);
224 for (int index = index1; index <= index2; index++) {
  /external/freetype/src/pshinter/
pshrec.c 375 FT_Int index1,
378 PS_Mask mask1 = table->masks + index1;
407 FT_Int index1,
415 /* swap index1 and index2 so that index1 < index2 */
416 if ( index1 > index2 )
418 temp = index1;
419 index1 = index2;
423 if ( index1 < index2 && index1 >= 0 && index2 < (FT_Int)table->num_masks
501 FT_Int index1, index2; local
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
MultiRectAreaOp.java 584 int index1 = 1; local
593 if (index1 >= count1) {
599 System.arraycopy(left, index1, dst, count, count1 - index1);
600 count += count1 - index1;
605 pos1 = index1;
607 index1 += 4;
608 } while (index1 < count1 && (top1 = left[index1 + 1]) < top2);
609 System.arraycopy(left, pos1, dst, count, index1 - pos1)
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
d8_31pf.cpp 104 index1 -- Word16 -- index for first pos in pos_index[]
166 Word16 index1, /* i : index for first pos in pos_index[] */
178 pos_indx[index1] = ((MSBs-25*(MSBs/25))%5)*2 + (LSBs-4*(LSBs/4))%2;
226 pos_indx[index1] = ib + (ic & 1);
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 104 index1 -- Word16 -- index for first pos in pos_index[]
166 Word16 index1, /* i : index for first pos in pos_index[] */
178 pos_indx[index1] = ((MSBs-25*(MSBs/25))%5)*2 + (LSBs-4*(LSBs/4))%2;
226 pos_indx[index1] = ib + (ic & 1);
  /packages/apps/Contacts/src/com/android/contacts/model/
EntitySet.java 204 private void buildSplitContactDiff(ArrayList<ContentProviderOperation> diff, int index1,
210 Long rawContactId1 = get(index1).getValues().getAsLong(RawContacts._ID);
214 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID1, backRefs[index1]);
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java     [all...]
  /external/freetype/src/psaux/
afmparse.c 670 FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 ); local
671 FT_ULong index2 = KERN_INDEX( kp2->index1, kp2->index2 );
674 if ( index1 > index2 )
676 else if ( index1 < index2 )
736 kp->index1 = shared_vals[0].u.i;
  /external/dropbear/libtommath/
booker.pl 45 $index1{@m[1]} = $chapter;
190 $a = $index1{$word};
  /external/freetype/include/freetype/internal/
t1types.h 171 FT_Int index1; member in struct:AFM_KernPairRec_
  /external/libxml2/
xinclude.c 908 int index1, index2; local
925 index1 = range->index;
967 if ((cur == start) && (index1 > 1)) {
968 content += (index1 - 1);
969 len -= (index1 - 1);
970 index1 = 0;
1007 if ((cur == start) && (index1 > 1)) {
1008 cur = xmlXIncludeGetNthChild(cur, index1 - 1);
1009 index1 = 0;
1027 if (index1 > 1)
    [all...]
xpointer.c 208 * @index1: the first index
218 xmlXPtrCmpPoints(xmlNodePtr node1, int index1, xmlNodePtr node2, int index2) {
225 if (index1 < index2)
227 if (index1 > index2)
1436 int index1, index2; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 354 int index1 = line.indexOf('('); local
357 if (index1 < 0 || index2 < 0) {
361 String[] args = line.substring(index1 + 1, index2).split(",");
  /external/webkit/WebCore/accessibility/
AccessibilityObject.cpp 682 int index1 = index(positionRange.start); local
684 if (index1 < 0 || index2 < 0 || index1 > index2)
687 return PlainTextRange(index1, index2 - index1);
    [all...]

Completed in 3425 milliseconds

1 2