HomeSort by relevance Sort by last modified time
    Searched refs:x0 (Results 76 - 100 of 2367) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/webkit/browser/fileapi/
file_permission_policy.h 19 FILE_PERMISSION_ALWAYS_DENY = 0x0,
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
70 centX = (x0 + x1 + x2) / 3.0;
76 if (x0 == x1)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
85 else if (x0 == x2)
87 if (x0 == x1)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
70 centX = (x0 + x1 + x2) / 3.0;
76 if (x0 == x1)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
85 else if (x0 == x2)
87 if (x0 == x1)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
70 centX = (x0 + x1 + x2) / 3.0;
76 if (x0 == x1)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
85 else if (x0 == x2)
87 if (x0 == x1)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 7 #define XT_NFLOG_MASK 0x0
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 7 #define XT_NFLOG_MASK 0x0
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 7 #define XT_NFLOG_MASK 0x0
  /external/libvpx/libvpx/vp8/common/
textblit.c 21 0x0, 0x5C00, 0x8020, 0xAFABEA, 0xD7EC0, 0x1111111, 0x1855740, 0x18000,
61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
70 t = x0;
71 x0 = y0;
79 if (x0 > x1)
82 t = x0;
83 x0 = x1;
91 deltax = x1 - x0;
104 for (x = x0; x <= x1; x++
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.c 16 0x0, 0x5C00, 0x8020, 0xAFABEA, 0xD7EC0, 0x1111111, 0x1855740, 0x18000,
60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
68 t = x0;
69 x0 = y0;
77 if (x0 > x1) {
79 t = x0;
80 x0 = x1;
88 deltax = x1 - x0;
100 for (x = x0; x <= x1; x++)
    [all...]
  /external/lzma/Asm/x86/
7zCrcOpt.asm 40 shr x0, 8
41 CRC xor, x0, r6, 0
48 mov x0, x1
66 xor x0, [SRCDAT 0]
70 xor x0, [SRCDAT 0]
103 shr x0, 16
108 CRC_MOV x0, r3, 4
109 xor x0, x6
122 shr x0, 16
124 and x0, 0FFh
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rc2/
rc2_cbc.c 140 register RC2_INT x0,x1,x2,x3,t; local
144 x0=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
157 x0=(t<<1)|(t>>15);
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
170 x0+=p1[x3&0x3f];
171 x1+=p1[x0&0x3f]
185 register RC2_INT x0,x1,x2,x3,t; local
    [all...]
  /external/openssl/crypto/rc2/
rc2_cbc.c 140 register RC2_INT x0,x1,x2,x3,t; local
144 x0=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
157 x0=(t<<1)|(t>>15);
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
170 x0+=p1[x3&0x3f];
171 x1+=p1[x0&0x3f]
185 register RC2_INT x0,x1,x2,x3,t; local
    [all...]
  /external/pixman/test/
radial-perf-test.c 16 { { 0x0, 0x26ee, 0x0},
17 { 0xffffeeef, 0x0, 0x0},
18 { 0x0, 0x0, 0x10000}
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
highpass_400hz_at_12k8.cpp 150 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
158 x0 = mem[4];
172 x1 = x0;
173 x0 = signal[i];
176 L_tmp2 = fxp_mac_16by16(x0, 915, L_tmp2);
196 mem[4] = x0;
highpass_50hz_at_12k8.cpp 152 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
161 x0 = mem[4];
177 x1 = x0;
178 x0 = *pt_sign;
181 L_tmp2 = fxp_mac_16by16(x0, 8106, L_tmp2);
201 mem[4] = x0;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
hp400.c 64 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
71 x0 = *mem++;
77 x1 = x0;
78 x0 = *signal;
85 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2)* b[0] + x1 * b[1]) << 1;
97 *mem-- = x0;
hp50.c 65 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
73 x0 = *mem++;
79 x1 = x0;
80 x0 = *signal;
87 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2) * b[0] + x1 * b[1]) << 1;
97 *mem-- = x0;
  /external/llvm/test/MC/ARM/
eh-directive-personality.s 36 @ CHECK: 0x0 R_ARM_PREL31 __gxx_personality_v0 0x0
45 @ CHECK: 0x0 R_ARM_PREL31 .TEST1 0x0
46 @ CHECK: 0x4 R_ARM_PREL31 .ARM.extab.TEST1 0x0
78 @ CHECK: 0x0 R_ARM_PREL31 __gxx_personality_v0 0x0
87 @ CHECK: 0x0 R_ARM_PREL31 .TEST2 0x0
88 @ CHECK: 0x4 R_ARM_PREL31 .ARM.extab.TEST2 0x0
    [all...]
  /external/ceres-solver/internal/ceres/
problem.cc 57 double* x0) {
60 x0);
66 double* x0, double* x1) {
69 x0, x1);
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)
    [all...]
  /external/clang/test/Sema/
expr-address-of.c 41 register int *x0; local
42 int *_dummy0 = &(*x0);
51 register int x0[10]; local
52 int *_dummy00 = x0; // fixme-error {{address of register variable requested}}
53 int *_dummy01 = &(*x0); // fixme-error {{address of register variable requested}}
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_masking.c 72 const GLushort rMask = ctx->Color.ColorMask[buf][RCOMP] ? 0xffff : 0x0;
73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0;
74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
75 const GLushort aMask = ctx->Color.ColorMask[buf][ACOMP] ? 0xffff : 0x0;
88 const GLuint rMask = ctx->Color.ColorMask[buf][RCOMP] ? ~0x0 : 0x0;
89 const GLuint gMask = ctx->Color.ColorMask[buf][GCOMP] ? ~0x0 : 0x0;
90 const GLuint bMask = ctx->Color.ColorMask[buf][BCOMP] ? ~0x0 : 0x0;
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p5.cpp 56 struct X0 {
71 template X0::operator const char*() const; // expected-note{{'X0::operator const char *<char>' requested here}}
72 template X0::operator const int*(); // expected-note{{'X0::operator const int *<const int>' requested here}}
73 template X0::operator float*() const; // expected-error{{explicit instantiation of undefined function template}}
75 void test_X0(X0 x0, const X0 &x0c) {
76 x0.operator const int*(); // expected-note{{in instantiation of function template specialization}
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_masking.c 72 const GLushort rMask = ctx->Color.ColorMask[buf][RCOMP] ? 0xffff : 0x0;
73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0;
74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
75 const GLushort aMask = ctx->Color.ColorMask[buf][ACOMP] ? 0xffff : 0x0;
88 const GLuint rMask = ctx->Color.ColorMask[buf][RCOMP] ? ~0x0 : 0x0;
89 const GLuint gMask = ctx->Color.ColorMask[buf][GCOMP] ? ~0x0 : 0x0;
90 const GLuint bMask = ctx->Color.ColorMask[buf][BCOMP] ? ~0x0 : 0x0;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h 74 i32 x0,
85 i32 x0,
96 i32 x0,
107 i32 x0,
119 i32 x0,
129 i32 x0,
140 i32 x0,
150 i32 x0,
161 i32 x0,
172 i32 x0,
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToTHMStub.cpp 27 0x0 // dcd R_ARM_REL32(X)
33 0x0 // dcd R_ARM_ABS32(X)
37 : Stub(), m_Name("A2T_prototype"), m_pData(NULL), m_Size(0x0)
42 addFixup(12u, 0x0, llvm::ELF::R_ARM_REL32);
47 addFixup(8u, 0x0, llvm::ELF::R_ARM_ABS32);
72 if ((pTargetSymValue & 0x1) != 0x0) {

Completed in 2678 milliseconds

1 2 34 5 6 7 8 91011>>