/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
LayoutViewer.java | 152 int x1 = Math.max(left, clipX); local 156 clipX = x1; 158 clipWidth = x2 - x1; 260 int x1 = Math.max(parentClipping.x, left); local 271 if (x2 <= x1 || y2 <= y1) { 274 gc.setClipping(x1, y1, x2 - x1, y2 - y1);
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
FontQt.cpp | 118 float x1 = line.cursorToX(from); local 120 if (x2 < x1) 121 qSwap(x1, x2); 125 QRectF boundingRect(point.x() + x1, point.y() - ascent, x2 - x1, fm.height()); 371 float x1 = line.cursorToX(from); local 373 if (x2 < x1) 374 qSwap(x1, x2); 376 return FloatRect(pt.x() + x1, pt.y(), x2 - x1, h) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderObject.cpp | 709 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, 713 int width = (side == BSTop || side == BSBottom ? y2 - y1 : x2 - x1); 735 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2)); 739 graphicsContext->drawLine(IntPoint((x1 + x2) / 2, y1), IntPoint((x1 + x2) / 2, y2)); 758 graphicsContext->drawRect(IntRect(x1, y1, x2 - x1, third)); 759 graphicsContext->drawRect(IntRect(x1, y2 - third, x2 - x1, third)); 762 graphicsContext->drawRect(IntRect(x1, y1 + 1, third, y2 - y1 - 1)) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 251 /*package*/ static void native_quadTo(int nPath, float x1, float y1, float x2, float y2) { 257 pathDelegate.quadTo(x1, y1, x2, y2); 271 /*package*/ static void native_cubicTo(int nPath, float x1, float y1, 278 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3); 282 /*package*/ static void native_rCubicTo(int nPath, float x1, float y1, 289 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3); 624 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for 627 * @param x1 The x-coordinate of the control point on a quadratic curve 632 private void quadTo(float x1, float y1, float x2, float y2) { 633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2) [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
voyager.h | 80 #define VOYAGER_READ_CONFIG 0x1 406 #define VOYAGER_DUMP_BUTTON_NMI 0x1 411 #define VOYAGER_IGNORE_DUMP 0x1 420 #define VOYAGER_OS_HAS_SYSINT 0x1 424 #define VOYAGER_SUS_BOOTING 0x1
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
voyager.h | 80 #define VOYAGER_READ_CONFIG 0x1 406 #define VOYAGER_DUMP_BUTTON_NMI 0x1 411 #define VOYAGER_IGNORE_DUMP 0x1 420 #define VOYAGER_OS_HAS_SYSINT 0x1 424 #define VOYAGER_SUS_BOOTING 0x1
|
/external/libffi/src/sparc/ |
v8.S | 207 .byte 0x1 ! CIE Version 209 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor 212 .byte 0x1 ! uleb128 0x1; Augmentation size
|
/external/speex/libspeex/ |
scal.c | 235 float x1,x2; local 238 x1 = uni_rand(&st->seed); 240 } while (x1*x1+x2*x2 > 1.); 242 frame[2*i-1] = gain*x1;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/ |
voyager.h | 80 #define VOYAGER_READ_CONFIG 0x1 406 #define VOYAGER_DUMP_BUTTON_NMI 0x1 411 #define VOYAGER_IGNORE_DUMP 0x1 420 #define VOYAGER_OS_HAS_SYSINT 0x1 424 #define VOYAGER_SUS_BOOTING 0x1
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/ |
voyager.h | 80 #define VOYAGER_READ_CONFIG 0x1 406 #define VOYAGER_DUMP_BUTTON_NMI 0x1 411 #define VOYAGER_IGNORE_DUMP 0x1 420 #define VOYAGER_OS_HAS_SYSINT 0x1 424 #define VOYAGER_SUS_BOOTING 0x1
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/ |
voyager.h | 80 #define VOYAGER_READ_CONFIG 0x1 406 #define VOYAGER_DUMP_BUTTON_NMI 0x1 411 #define VOYAGER_IGNORE_DUMP 0x1 420 #define VOYAGER_OS_HAS_SYSINT 0x1 424 #define VOYAGER_SUS_BOOTING 0x1
|
/sdk/traceview/src/com/android/traceview/ |
TimeLineView.java | 616 int x1 = dim.x - extent.x - labelMarginX; local 617 gcImage.drawString(rd.mName, x1, y1, true); 802 int x1 = dim.x - RightMargin - extent.x; local 803 gc.drawString(info, x1, 1, true); 811 int x1 = LeftMargin; local 815 gc.fillRectangle(x1, y1, width, mSmallFontHeight); 816 x1 += width + METHOD_BLOCK_MARGIN; 817 gc.drawString(mMethodName, x1, y1, true); 825 int x1 = LeftMargin + 2 * mSmallFontWidth + METHOD_BLOCK_MARGIN; local 827 gc.drawString(mDetails, x1, y1, true) 853 int x1 = LeftMargin local 866 int x1 = LeftMargin local 1235 int x1 = range.mXdim.x; local 1498 int x1 = pixelStart + LeftMargin; local 1529 int x1 = pixelStart + LeftMargin; local [all...] |
/external/sonivox/arm-fm-22k/lib_src/ |
eas_pcm.c | 931 pState->decoderL.x0 = pState->decoderL.x1 = 0; 935 pState->decoderR.x0 = pState->decoderR.x1 = 0; [all...] |
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_pcm.c | 931 pState->decoderL.x0 = pState->decoderL.x1 = 0; 935 pState->decoderR.x0 = pState->decoderR.x1 = 0; [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_pcm.c | 931 pState->decoderL.x0 = pState->decoderL.x1 = 0; 935 pState->decoderR.x0 = pState->decoderR.x1 = 0; [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 142 private final static int CANONICAL = 0x1 << 0;
145 private final static int CDATA = 0x1 << 1;
148 private final static int CHARNORMALIZE = 0x1 << 2;
151 private final static int COMMENTS = 0x1 << 3;
154 private final static int DTNORMALIZE = 0x1 << 4;
157 private final static int ELEM_CONTENT_WHITESPACE = 0x1 << 5;
160 private final static int ENTITIES = 0x1 << 6;
163 private final static int INFOSET = 0x1 << 7;
166 private final static int NAMESPACES = 0x1 << 8;
169 private final static int NAMESPACEDECLS = 0x1 << 9; [all...] |
LSSerializerImpl.java | 122 private final static int CANONICAL = 0x1 << 0;
125 private final static int CDATA = 0x1 << 1;
128 private final static int CHARNORMALIZE = 0x1 << 2;
131 private final static int COMMENTS = 0x1 << 3;
134 private final static int DTNORMALIZE = 0x1 << 4;
137 private final static int ELEM_CONTENT_WHITESPACE = 0x1 << 5;
140 private final static int ENTITIES = 0x1 << 6;
143 private final static int INFOSET = 0x1 << 7;
146 private final static int NAMESPACES = 0x1 << 8;
149 private final static int NAMESPACEDECLS = 0x1 << 9; [all...] |
/external/tremolo/Tremolo/ |
mdctLARM.s | 438 ADD r7,r1,r0,LSL #1 @ r7 = x1+4 = x + POINTS 442 LDMDB r7!,{r2,r3,r8,r11} @ r2 = x1[0] 443 @ r3 = x1[1] 444 @ r8 = x1[2] 445 @ r11= x1[3] x1 -= 4 451 SUB r2, r2, r3 @ r2 = s0 = x1[0] - x1[1] 452 ADD r3, r2, r3, LSL #1 @ r3 = x1[0] + x1[1] (-> x1[0] [all...] |
floor1.c | 205 int render_point(int x0,int x1,int y0,int y1,int x){ 211 int adx=x1-x0; 225 static void render_line(int n,int x0,int x1,int y0,int y1,ogg_int32_t *d){ 233 if(n>x1)n=x1; 238 adx=x1-x0;
|
/external/opencv/cvaux/src/ |
decomppoly.cpp | 152 int x1, y1, x2, y2, x3, y3; 185 x1 = contour[ index1 ].x; 194 dx1 = x2 - x1; 201 ix1 = x3 - x1; 214 ix0 = contour[ i ].x - x1; 267 x1 = x2; 296 x1 = x2;
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
vop.cpp | 410 // video->displayWidth += (video->displayWidth & 0x1); /* displayed image should be even size */ 420 // video->displayHeight += (video->displayHeight & 0x1); /* displayed image should be even size */ 908 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */ 910 if (currVol->complexity.text_1 & 0x1) /* not_coded */ 912 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */ 914 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */ 916 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */ 918 if (currVol->complexity.text_2 & 0x1) /* vlc_bits */ 923 if ((currVol->complexity.text_1 >> 2) & 0x1) /* inter */ 925 if ((currVol->complexity.text_1 >> 1) & 0x1) /* inter_4v * [all...] |
/external/bzip2/ |
bzip2recover.c | 187 bs->buffer = bit & 0x1; 189 bs->buffer = ( (bs->buffer << 1) | (bit & 0x1) ); 203 return ( ((bs->buffer) >> (bs->buffLive)) & 0x1 ); 212 return ( ((bs->buffer) >> 7) & 0x1 ); 246 bsPutBit ( bs, (((UInt32) c) >> i) & 0x1 ); 256 bsPutBit ( bs, (c >> i) & 0x1 );
|
/external/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 78 vsub.s16 q4, q2 ; x1 = (y^sz) - sz = (y^sz) - (-1) (two's complement) 81 vand.s16 q4, q10 ;mask off x1 elements 89 vst1.s16 {q4, q5}, [r2] ;store: qcoeff = x1
|
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg2000.cpp | 271 int x, y, x1, y1, j; local 308 for( x1 = x + xstep; x < x1; x++ ) 333 int x, y, x1, y1, j; local 370 for( x1 = x + xstep; x < x1; x++ )
|
/system/core/toolbox/ |
newfs_msdos.c | 271 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; local 569 x1 = bpb.res + rds; 571 if (x1 + (u_int64_t)x * bpb.nft > bpb.bsec) 573 x1 += x * bpb.nft; 574 x = (u_int64_t)(bpb.bsec - x1) * bpb.bps * NPB / 580 x1 += (bpb.bspf - 1) * bpb.nft; 582 cls = (bpb.bsec - x1) / bpb.spc; 594 bpb.bsec = x1 + (cls + 1) * bpb.spc - 1; 640 x1 = sizeof(struct bs); 641 bsbpb = (struct bsbpb *)(img + x1); [all...] |