/external/clang/test/CodeGen/ |
ms-declspecs.c | 4 const __declspec(selectany) int x2 = 2; 6 // CHECK: @x2 = weak_odr constant i32 2, align 4
|
/external/clang/test/SemaCXX/ |
cxx0x-class.cpp | 25 static constexpr float x2 = 5.0f; member in struct:rdar8367341::A
|
dependent-types.cpp | 7 T* x2; local
|
/external/compiler-rt/lib/ubsan/lit_tests/Integer/ |
umul-overflow.cpp | 15 (void)(uint32_t(0xffffffff) * uint32_t(0x2));
|
/external/iproute2/include/linux/tc_act/ |
tc_skbedit.h | 28 #define SKBEDIT_F_QUEUE_MAPPING 0x2
|
/external/iptables/include/linux/netfilter/ |
xt_devgroup.h | 8 XT_DEVGROUP_INVERT_SRC = 0x2,
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_flush.h | 36 #define SP_FLUSH_TEXTURE_CACHE 0x2
|
/external/skia/gm/ |
circularclips.cpp | 37 SkScalar x1 = 80, x2 = 120; local 43 circle2.addCircle(x2, y, r, SkPath::kCW_Direction); 44 SkRect rect = SkRect::MakeLTRB(x1 - r, y - r, x2 + r, y + r); 67 canvas->translate(x1 + x2, 0);
|
/external/skia/include/utils/ |
SkCubicInterval.h | 14 SkScalar x2, SkScalar y2,
|
/frameworks/base/include/private/hwui/ |
DrawGlInfo.h | 75 kStatusInvoke = 0x2,
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
FontSize.java | 28 SMALL(0x2);
|
TextAlignment.java | 28 RIGHT(0x2),
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/ |
lv_value.pass.cpp | 25 typename C::value_type x1, typename C::value_type x2, 30 q = x2; 38 typename C::value_type x1, typename C::value_type x2, 42 i = c.insert(++i, x2);
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
ReorderUtils.java | 36 public static final int REORDER_DIRECTION_VERTICAL = 0x2;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
firewire-constants.h | 6 #define TCODE_WRITE_RESPONSE 0x2 17 #define EXTCODE_COMPARE_SWAP 0x2 48 #define SCODE_400 0x2 55 #define ACK_PENDING 0x2
|
ip6_tunnel.h | 14 #define IP6_TNL_F_USE_ORIG_TCLASS 0x2
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
firewire-constants.h | 6 #define TCODE_WRITE_RESPONSE 0x2 17 #define EXTCODE_COMPARE_SWAP 0x2 48 #define SCODE_400 0x2 55 #define ACK_PENDING 0x2
|
ip6_tunnel.h | 14 #define IP6_TNL_F_USE_ORIG_TCLASS 0x2
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
firewire-constants.h | 6 #define TCODE_WRITE_RESPONSE 0x2 17 #define EXTCODE_COMPARE_SWAP 0x2 48 #define SCODE_400 0x2 55 #define ACK_PENDING 0x2
|
ip6_tunnel.h | 14 #define IP6_TNL_F_USE_ORIG_TCLASS 0x2
|
/external/eigen/test/ |
array_replicate.cpp | 32 MatrixX x1, x2; local 44 x2.resize(2*rows,3*cols); 45 x2 << m2, m2, m2, 47 VERIFY_IS_APPROX(x2, (m2.template replicate<2,3>())); 49 x2.resize(rows,f1); 51 x2.col(j) = v1; 52 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1));
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
dynamic_range_compression.cpp | 105 void AdaptiveDynamicRangeCompression::Compress(float *x1, float *x2) { 108 std::max(std::fabs(*x2), kMinLogAbsValue)); 131 *x2 *= compressor_gain_; 132 if (*x2 > kFixedPointLimit) { 133 *x2 = kFixedPointLimit; 135 if (*x2 < -kFixedPointLimit) { 136 *x2 = -kFixedPointLimit;
|
/external/dropbear/libtommath/etc/ |
mersenne.c | 74 long x1, x2; local 76 x2 = 16; 78 x1 = x2; 79 x2 = x1 - ((x1 * x1) - x) / (2 * x1); 80 } while (x1 != x2);
|
/external/speex/libspeex/ |
math_approx.h | 190 spx_word16_t x2; local 194 x2 = MULT16_16_P13(x,x); 195 return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2)))))); 198 x2 = MULT16_16_P13(x,x); 199 return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2)))))); 210 spx_word16_t x2; local [all...] |
/external/qemu/android/skin/ |
rect.c | 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { 154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) { 170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { 176 r.x2 = (a.x2 < b.x2) ? a.x2 : b.x2 [all...] |