HomeSort by relevance Sort by last modified time
    Searched refs:Y2 (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/test/CXX/temp/temp.param/
p10-0x.cpp 5 template<typename, int> struct Y2;
11 template<template<class> class F = Y2, template<class> class G> using B2t = F<G<int>>;
13 template<int N, int M = 5> using B2n = Y2<int, N + M>;
14 template<int N = 5, int M> using B2n = Y2<int, N + M>;
p10.cpp 4 template<typename, int> struct Y2;
10 template<template<class, int> class = Y2, template<class> class> class B2t;
p11.cpp 3 template<typename, int> struct Y2;
p2.cpp 21 template<class X1 *xptr> struct Y2 { };
p12.cpp 3 template<typename, int> struct Y2;
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 29 struct Y2 : Y1 {
30 Y2(int);
31 Y2();
34 struct Y3 : public Y2 {
39 Y2 y2; member in struct:Y4
typedef-redecl.cpp 16 typedef int Y2; // expected-note{{declared here}}
17 struct Y2; // expected-error{{definition of type 'Y2' conflicts with typedef of the same name}}
  /external/clang/test/CXX/class.access/class.friend/
p3-cxx0x.cpp 19 struct Y2 {
27 X1<Y2> x1a;
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 8 } Y2;
10 Y2 y = Y();
instantiate-static-var.cpp 61 struct Y2 {
72 Z1<Y2<X2>::value> x2;
73 int y2[Y2<X2>::value]; local
instantiate-expr-1.cpp 164 template<int> struct Y2 {
171 template void Y2<3>::f();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLineElement.h 54 DECLARE_ANIMATED_LENGTH(Y2, y2)
SVGLinearGradientElement.h 52 DECLARE_ANIMATED_LENGTH(Y2, y2)
SVGLineElement.cpp 36 DEFINE_ANIMATED_LENGTH(SVGLineElement, SVGNames::y2Attr, Y2, y2)
43 REGISTER_LOCAL_ANIMATED_PROPERTY(y2)
SVGLinearGradientElement.cpp 41 DEFINE_ANIMATED_LENGTH(SVGLinearGradientElement, SVGNames::y2Attr, Y2, y2)
47 REGISTER_LOCAL_ANIMATED_PROPERTY(y2)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.h 141 * coeff[2] = y2 y2
142 * coeff[3] = -2 xn y2
143 * coeff[4] = 2 y1 y2
146 * gcu = <xn2, y2> / <y2, y2> (0 if <xn2, y2> <= 0)
157 Word16 Y2[], /* i : Filtered innovative vector, Q12 */
gain_q.h 158 Word16 Y2[], /* i : Filtered innovative vector. */
gain_q.cpp 393 Y2 -- Word16 array -- Filtered innovative vector.
477 Word16 Y2[], /* i : Filtered innovative vector. */
542 Y2,
601 Y2,
661 Y2,
682 Y2,
calc_en.cpp 408 Y2 = Filtered innovative vector, buffer type Word16
444 coeff[2] = y2 y2
445 coeff[3] = -2 xn y2
446 coeff[4] = 2 y1 y2
448 gcu = <xn2, y2> / <y2, y2> (0 if <xn2, y2> <= 0)
472 Word16 Y2[], // i : Filtered innovative vector, Q1
    [all...]
  /external/clang/test/CXX/over/over.over/
p1.cpp 86 template<int (&)(int)> struct Y2 { };
93 Y2<f0> y2; variable
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 134 private static final int Y2 = 0x6ed9eba1;
212 // E = rotateLeft(A, 5) + h(B, C, D) + E + X[idx++] + Y2
214 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2;
217 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2;
220 C += (D << 5 | D >>> 27) + h(E, A, B) + X[idx++] + Y2;
223 B += (C << 5 | C >>> 27) + h(D, E, A) + X[idx++] + Y2;
226 A += (B << 5 | B >>> 27) + h(C, D, E) + X[idx++] + Y2;
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 34 Instruction *Y2 = BBI++;
110 EXPECT_TRUE(DT->dominates(Y1, Y2));
111 EXPECT_FALSE(DT->dominates(Y2, Y1));
112 EXPECT_FALSE(DT->dominates(Y2, Y2));
125 EXPECT_TRUE(DT->dominates(Y2, Y9));
169 " %y2 = add i32 %x, 1\n" \
  /external/opencv/cv/src/
cvoptflowbm.cpp 433 int Y2 = Y1 + offY + ss[k].y;
437 if( Y2 < 0 )
442 if( Y2 + CurrentHeight >= imgSize.height )
459 icvCopyBM_8u_C1R( imgB + Y2 * imgStep + X2,
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 159 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
164 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /external/chromium_org/media/base/simd/
linear_scale_yuv_to_rgb_mmx_x64.asm 110 ; Interpolate Y2 if available.

Completed in 1242 milliseconds

1 2