HomeSort by relevance Sort by last modified time
    Searched refs:x2 (Results 176 - 200 of 4855) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/paint/
ObjectPainter.cpp 96 void ObjectPainter::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
104 length = x2 - x1;
106 thickness = x2 - x1;
124 drawDashedOrDottedBoxSide(graphicsContext, x1, y1, x2, y2, side,
128 drawDoubleBoxSide(graphicsContext, x1, y1, x2, y2, length, side, color,
133 drawRidgeOrGrooveBoxSide(graphicsContext, x1, y1, x2, y2, side, color,
147 drawSolidBoxSide(graphicsContext, x1, y1, x2, y2, side, color, adjacentWidth1, adjacentWidth2, antialias);
152 void ObjectPainter::drawDashedOrDottedBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2,
168 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2));
172 graphicsContext->drawLine(IntPoint((x1 + x2) / 2, y1), IntPoint((x1 + x2) / 2, y2))
    [all...]
  /external/libhevc/common/arm64/
ihevc_inter_pred_chroma_vert.s 93 //x2 => src_strd
118 sub x0,x0,x2 //pu1_src - src_strd
138 lsl x12,x2,#1 //2*src_strd
144 add x6,x0,x2 //pu1_src +src_strd
145 ld1 {v17.8b},[x6],x2 //loads pu1_src
149 ld1 {v4.8b},[x6],x2 //loads incremented src
151 ld1 {v16.8b},[x6],x2 //loads incremented src
181 lsl x7,x2,#1 //2*src_strd
186 add x6,x0,x2 //pu1_src + src_strd
190 ld1 {v6.s}[1],[x6],x2 //loads pu1_src_tm
    [all...]
ihevc_inter_pred_chroma_vert_w16out.s 93 //x2 => src_strd
120 sub x0,x0,x2 //pu1_src - src_strd
140 lsl x12,x2,#1 //2*src_strd
147 add x6,x0,x2 //pu1_src +src_strd
148 ld1 {v17.8b},[x6],x2 //loads pu1_src
152 ld1 {v4.8b},[x6],x2 //loads incremented src
154 ld1 {v16.8b},[x6],x2 //loads incremented src
182 lsl x7,x2,#1 //2*src_strd
187 add x6,x0,x2 //pu1_src + src_strd
191 ld1 {v6.s}[1],[x6],x2 //loads pu1_src_tm
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 247 public void drawLine(int x1, int y1, int x2, int y2) {
252 x2 = mHScale.translate(x2);
254 getGc().drawLine(x1, y1, x2, y2);
265 public void drawRect(int x1, int y1, int x2, int y2) {
270 int w = mHScale.scale(x2 - x1);
292 public void fillRect(int x1, int y1, int x2, int y2) {
297 int w = mHScale.scale(x2 - x1);
320 public void drawOval(int x1, int y1, int x2, int y2) {
325 int w = mHScale.scale(x2 - x1)
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-arithmetic-encoding.s 9 adc x1, x2, x3
14 ; CHECK: adc x1, x2, x3 ; encoding: [0x41,0x00,0x03,0x9a]
19 sbc x1, x2, x3
21 sbcs x1, x2, x3
24 ; CHECK: sbc x1, x2, x3 ; encoding: [0x41,0x00,0x03,0xda]
26 ; CHECK: sbcs x1, x2, x3 ; encoding: [0x41,0x00,0x03,0xfa]
163 add X2, X2, X2
164 ; CHECK: add x2, x2, x2 ; encoding: [0x42,0x00,0x02,0x8b
    [all...]
  /bionic/libc/kernel/uapi/linux/
coda_psdev.h 39 #define CODA_REQ_READ 0x2
firewire-constants.h 24 #define TCODE_WRITE_RESPONSE 0x2
36 #define EXTCODE_COMPARE_SWAP 0x2
67 #define SCODE_400 0x2
75 #define ACK_PENDING 0x2
virtio_pci.h 32 #define VIRTIO_PCI_ISR_CONFIG 0x2
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_devgroup.h 25 XT_DEVGROUP_INVERT_SRC = 0x2,
  /bionic/libc/kernel/uapi/linux/tc_act/
tc_skbedit.h 25 #define SKBEDIT_F_QUEUE_MAPPING 0x2
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve3x3.rs 27 uint32_t x2 = max((int32_t)x-1, 0);
33 float4 p02 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y1));
36 float4 p12 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y));
39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
68 uint32_t x2 = max((int32_t)x-1, 0);
74 float3 p02 = convert_float3(rsGetElementAt_uchar3(gIn, x2, y1));
77 float3 p12 = convert_float3(rsGetElementAt_uchar3(gIn, x2, y));
80 float3 p22 = convert_float3(rsGetElementAt_uchar3(gIn, x2, y2));
109 uint32_t x2 = max((int32_t)x-1, 0);
115 float2 p02 = convert_float2(rsGetElementAt_uchar2(gIn, x2, y1))
    [all...]
  /development/ndk/platforms/android-L/include/linux/
coda_psdev.h 39 #define CODA_REQ_READ 0x2
firewire-constants.h 24 #define TCODE_WRITE_RESPONSE 0x2
36 #define EXTCODE_COMPARE_SWAP 0x2
67 #define SCODE_400 0x2
75 #define ACK_PENDING 0x2
virtio_pci.h 32 #define VIRTIO_PCI_ISR_CONFIG 0x2
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_devgroup.h 25 XT_DEVGROUP_INVERT_SRC = 0x2,
  /development/ndk/platforms/android-L/include/linux/tc_act/
tc_skbedit.h 25 #define SKBEDIT_F_QUEUE_MAPPING 0x2
  /external/ceres-solver/internal/ceres/
problem.cc 75 double* x0, double* x1, double* x2) {
78 x0, x1, x2);
84 double* x0, double* x1, double* x2, double* x3) {
87 x0, x1, x2, x3);
93 double* x0, double* x1, double* x2, double* x3, double* x4) {
96 x0, x1, x2, x3, x4);
102 double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) {
105 x0, x1, x2, x3, x4, x5);
111 double* x0, double* x1, double* x2, double* x3, double* x4, double* x5,
115 x0, x1, x2, x3, x4, x5, x6)
    [all...]
  /external/chromium_org/cc/animation/
timing_function.cc 16 double x1, double y1, double x2, double y2) {
17 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2));
22 double x2,
24 : bezier_(x1, y1, x2, y2) {}
  /external/chromium_org/media/formats/mp2t/
ts_section.h 17 kPidTsdt = 0x2,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
osmman.h 11 #define PROT_WRITE 0x2
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_flush.h 36 #define SP_FLUSH_TEXTURE_CACHE 0x2
  /external/chromium_org/third_party/skia/include/utils/
SkCubicInterval.h 14 SkScalar x2, SkScalar y2,
  /external/chromium_org/ui/gfx/geometry/
cubic_bezier.h 15 CubicBezier(double x1, double y1, double x2, double y2);
  /external/clang/test/ASTMerge/Inputs/
enum1.c 13 } x2; variable in typeref:enum:E2
enum2.c 13 } x2; variable in typeref:enum:E2

Completed in 6759 milliseconds

1 2 3 4 5 6 78 91011>>