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

1 2 3

  /external/neven/Embedded/common/src/b_BasicEm/
Phase.c 271 phase16 bbs_phase16( int32 xA, int32 yA )
273 uint32 xL = ( xA > 0 ) ? xA : -xA;
304 if( xA >= 0 )
Phase.h 128 phase16 bbs_phase16( int32 xA, int32 yA );
Math.h 147 int32 bbs_vecPowerFlt16( const int16 *xA, int16 nxA );
191 uint16 bbs_matTrans( int16 *xA, int16 rowA, int16 colA, int16 *rA );
  /frameworks/base/graphics/java/android/graphics/
PixelFormat.java 46 public static final int LA_88 = 0xA;
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec2D.h 81 struct bts_Flt16Vec2D bts_Flt16Vec2D_create16( int16 xA, int16 yA, int16 bbpA );
87 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA );
Flt16Vec3D.h 95 struct bts_Flt16Vec3D bts_Flt16Vec3D_create16( int16 xA, int16 yA, int16 zA, int16 bbpA );
98 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA );
Flt16Vec3D.c 169 struct bts_Flt16Vec3D bts_Flt16Vec3D_create16( int16 xA, int16 yA, int16 zA, int16 bbpA )
172 vecL.xE = xA;
181 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA )
184 if( ( xA | yA | zA ) == 0 )
193 int32 shiftL = bts_maxAbsIntLog2Of3( xA, yA, zA ) - 13;
198 vecL.xE = ( ( xA >> sh1L ) + 1 ) >> 1;
204 vecL.xE = xA << -shiftL;
Flt16Alt3D.c 165 int16 xA, int16 yA, int16 zA,
174 altL.vecE = bts_Flt16Vec3D_create16( xA, yA, zA, vecBbpA );
184 int32 xA, int32 yA, int32 zA,
193 altL.vecE = bts_Flt16Vec3D_create32( xA, yA, zA, vecBbpA );
Flt16Alt2D.h 130 int16 xA,
140 int32 xA,
Flt16Alt3D.h 103 int16 xA, int16 yA, int16 zA,
111 int32 xA, int32 yA, int32 zA,
Flt16Vec2D.c 148 struct bts_Flt16Vec2D bts_Flt16Vec2D_create16( int16 xA, int16 yA, int16 bbpA )
151 vecL.xE = xA;
170 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA )
173 if( ( xA | yA ) == 0 )
181 int32 shiftL = bts_maxAbsIntLog2Of2( xA, yA ) - 13;
186 vecL.xE = ( ( xA >> sh1L ) + 1 ) >> 1;
191 vecL.xE = xA << -shiftL;
Flt16Alt2D.c 231 int16 xA,
237 altL.vecE = bts_Flt16Vec2D_create16( xA, yA, vecBbpA );
248 int32 xA,
254 altL.vecE = bts_Flt16Vec2D_create32( xA, yA, vecBbpA );
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
XMLCharacterRecognizer.java 40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA);
  /packages/apps/Email/src/com/android/exchange/adapter/
Tags.java 61 public static final int SYNC_FETCH = SYNC_PAGE + 0xA;
97 public static final int GIE_COLLECTION_ID = GIE_PAGE + 0xA;
109 public static final int CONTACTS_BODY_SIZE = CONTACTS_PAGE + 0xA;
167 public static final int CALENDAR_ATTENDEE_NAME = CALENDAR_PAGE + 0xA;
207 public static final int FOLDER_TYPE = FOLDER_PAGE + 0xA;
229 public static final int MREQ_RESULT = MREQ_PAGE + 0xA;
240 public static final int EMAIL_ATT_METHOD = EMAIL_PAGE + 0xA;
300 public static final int TASK_COMPLETE = TASK_PAGE + 0xA;
333 public static final int MOVE_RESPONSE = MOVE_PAGE + 0xA;
343 public static final int CONTACTS2_MANAGER_NAME = CONTACTS2_PAGE + 0xA;
    [all...]
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Scanner.h 266 void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA );
273 int32 xA, int32 yA, uint32 scaleA );
289 int32 xA,
LocalScanner.h 239 void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA );
Scanner.c 887 void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA )
889 bbs_DEF_fNameL( "void bbf_Scanner_goToXY( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA )" )
891 if( xA > ( int32 )( ptrA->currentWidthE - ptrA->patchWidthE ) )
897 ptrA->xE = xA;
987 int32 xA, int32 yA, uint32 scaleA )
989 int32 xL = ( xA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderWidthE;
    [all...]
  /external/icu4c/test/intltest/
textfile.cpp 88 if (c < 0 || c == 0xD || c == 0xA) {
89 // consume 0xA following 0xD
92 if (c != 0xA && c >= 0) {
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 216 return (byte)(0xA + (c - 'A'));
218 return (byte)(0xA + (c - 'a'));
  /external/v8/test/mjsunit/
newline-in-string.js 39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'";
43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'";
  /system/core/include/pixelflinger/
format.h 39 GGL_PIXEL_FORMAT_LA_88 = 0xA, // 16-bit LA
  /system/core/toolbox/
netstat.c 54 case 0xA: return "LISTEN";
  /external/tcpdump/
ieee802_11.h 67 #define ST_DISASSOC 0xA
75 #define CTRL_PS_POLL 0xA
93 #define DATA_QOS_DATA_CF_POLL 0xA
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 152 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF };
281 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF };
307 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF };
  /external/grub/netboot/
3c90x.c 827 if ((mopt & 0xA) == 0xA)
832 else if ((mopt & 0xA) == 0x2)
837 else if ((mopt & 0xA) == 0x8)

Completed in 328 milliseconds

1 2 3