HomeSort by relevance Sort by last modified time
    Searched refs:x1 (Results 351 - 375 of 4103) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
extern-templates.cpp 42 class X1 {
50 void X1<T>::g(T t) {
54 extern template class X1<void*>;
56 void g_X1(X1<void*> x1, void *ptr) {
57 x1.g(ptr);
60 extern template void X1<const void*>::g(const void*);
62 void g_X1_2(X1<const void *> x1, const void *ptr) {
63 x1.g(ptr)
    [all...]
unused-variables.cpp 7 struct X1 { };
12 X1 x1; // expected-warning{{unused variable 'x1'}} local
21 template void g<X0, X1>(); // expected-note{{in instantiation of}}
  /external/iproute2/include/linux/tc_act/
tc_skbedit.h 27 #define SKBEDIT_F_PRIORITY 0x1
  /external/iptables/include/linux/netfilter/
xt_NFLOG.h 6 #define XT_NFLOG_DEFAULT_GROUP 0x1
xt_devgroup.h 7 XT_DEVGROUP_MATCH_SRC = 0x1,
  /external/kernel-headers/original/asm-generic/bitops/
__ffs.h 38 if ((word & 0x1) == 0)
  /external/skia/gm/
circularclips.cpp 37 SkScalar x1 = 80, x2 = 120; local
42 circle1.addCircle(x1, 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 13 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1,
  /frameworks/base/include/private/hwui/
DrawGlInfo.h 71 kStatusDraw = 0x1,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
FontSize.java 27 LARGE(0x1),
TextAlignment.java 27 CENTER(0x1),
  /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,
29 q = x1;
38 typename C::value_type x1, typename C::value_type x2,
41 i = c.insert(i, x1);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
firewire-constants.h 5 #define TCODE_WRITE_BLOCK_REQUEST 0x1
16 #define EXTCODE_MASK_SWAP 0x1
47 #define SCODE_200 0x1
54 #define ACK_COMPLETE 0x1
ip6_tunnel.h 12 #define IP6_TNL_F_IGN_ENCAP_LIMIT 0x1
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-constants.h 5 #define TCODE_WRITE_BLOCK_REQUEST 0x1
16 #define EXTCODE_MASK_SWAP 0x1
47 #define SCODE_200 0x1
54 #define ACK_COMPLETE 0x1
ip6_tunnel.h 12 #define IP6_TNL_F_IGN_ENCAP_LIMIT 0x1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-constants.h 5 #define TCODE_WRITE_BLOCK_REQUEST 0x1
16 #define EXTCODE_MASK_SWAP 0x1
47 #define SCODE_200 0x1
54 #define ACK_COMPLETE 0x1
ip6_tunnel.h 12 #define IP6_TNL_F_IGN_ENCAP_LIMIT 0x1
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 88 float x1 = rect.maxX(); local
94 x1 = std::min<float>(x1, minXIntercept);
99 x1 = std::min<float>(x1, minXIntercept);
103 ASSERT(x2 >= x1);
104 result.append(LineSegment(x1, x2));
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
64 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
67 goto X1;
81 x1.used = a->used - B;
101 tmpx = x1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
126 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY
    [all...]
bn_mp_karatsuba_sqr.c 27 mp_int x0, x1, t1, t2, x0x0, x1x1; local
41 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
46 goto X1;
66 dst = x1.dp;
73 x1.used = a->used - B;
77 /* now calc the products x0*x0 and x1*x1 */
80 if (mp_sqr (&x1, &x1x1) != MP_OKAY)
81 goto X1X1; /* x1x1 = x1*x1 */
    [all...]
  /external/pixman/demos/
radial-test.c 96 double x0, x1, radius0, radius1, left, right, center; local
99 x1 = 1;
104 left = MIN (x0 - radius0, x1 - radius1);
105 right = MAX (x0 + radius0, x1 + radius1);
108 x1 -= center;
110 /* scale to make it fit within a 1x1 rect centered in (0,0) */
112 x1 *= 0.25;
119 p1.x = pixman_double_to_fixed (x1);
156 * origin and whose interesting part fits a 1x1 square. We want to
  /frameworks/av/media/libeffects/loudness/dsp/core/
dynamic_range_compression.cpp 105 void AdaptiveDynamicRangeCompression::Compress(float *x1, float *x2) {
107 const float max_abs_x = std::max(std::fabs(*x1),
124 *x1 *= compressor_gain_;
125 if (*x1 > kFixedPointLimit) {
126 *x1 = kFixedPointLimit;
128 if (*x1 < -kFixedPointLimit) {
129 *x1 = -kFixedPointLimit;
  /hardware/qcom/msm8960/kernel-headers/linux/mfd/wcd9xxx/
pdata.h 26 #define SITAR_LDOH_2P35_V 0x1
31 #define SITAR_CFILT2_SEL 0x1
35 #define TABLA_LDOH_2P35_V 0x1
40 #define TABLA_CFILT2_SEL 0x1
44 #define TAIKO_CFILT2_SEL 0x1
47 #define TAIKO_LDOH_2P35_V 0x1
61 #define TABLA_DCYCLE_511 0x1
  /hardware/qcom/msm8960/original-kernel-headers/linux/mfd/wcd9xxx/
pdata.h 23 #define SITAR_LDOH_2P35_V 0x1
28 #define SITAR_CFILT2_SEL 0x1
32 #define TABLA_LDOH_2P35_V 0x1
37 #define TABLA_CFILT2_SEL 0x1
41 #define TAIKO_CFILT2_SEL 0x1
45 #define TAIKO_LDOH_2P35_V 0x1
60 #define TABLA_DCYCLE_511 0x1

Completed in 463 milliseconds

<<11121314151617181920>>