HomeSort by relevance Sort by last modified time
    Searched refs:X0 (Results 126 - 150 of 178) sorted by null

1 2 3 4 56 7 8

  /external/clang/test/SemaCXX/
constructor-initializer.cpp 176 struct X0 : NDC<int> {
177 X0(int &ref) : NDC<int>(ref), ndc(ref) { }
virtual-override.cpp 138 class X0 {
141 class X1 : public X0 {
destructor.cpp 97 struct X0 { virtual ~X0() throw(); };
98 struct X1 : public X0 { };
overload-call.cpp 408 struct X0 {
419 void g(X0 x0, X1 x1) {
420 f0(x0);
421 f1(x0); // expected-error{{no matching function for call}}
482 struct X0;
485 operator X0 *();
487 operator const X0 *();
MicrosoftExtensions.cpp 110 struct X0 {
  /external/clang/test/SemaTemplate/
nested-template.cpp 97 struct X0 { };
100 struct X0<T*> {
instantiate-expr-2.cpp 126 struct X0 {
130 void test_X0(X0<int> x, IntegralConstant<int, sizeof(int)> ic) {
temp_arg_nontype.cpp 156 template<int (*)(float)> struct X0 { };
162 X0<X1::pfunc> x01;
  /external/chromium_org/third_party/opus/src/celt/
bands.h 74 void measure_norm_mse(const CELTMode *m, float *X, float *X0, float *bandE, float *bandE0, int M, int N, int C);
  /external/clang/test/Sema/
MicrosoftExtensions.c 61 struct X0 {
  /external/libopus/celt/
bands.h 74 void measure_norm_mse(const CELTMode *m, float *X, float *X0, float *bandE, float *bandE0, int M, int N, int C);
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 25 X0, X1, X2, X3, X4, X5, X6, X7
55 return Arm64ManagedRegister::FromCoreRegister(X0);
78 return Arm64ManagedRegister::FromCoreRegister(X0);
107 int gp_reg_index = 1; // we start from X1/W1, X0 holds ArtMethod*.
  /art/compiler/utils/arm64/
managed_register_arm64_test.cc 33 Arm64ManagedRegister reg = Arm64ManagedRegister::FromCoreRegister(X0);
41 EXPECT_EQ(X0, reg.AsCoreRegister());
107 Arm64ManagedRegister xreg = Arm64ManagedRegister::FromCoreRegister(X0);
272 EXPECT_TRUE(!no_reg.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
279 Arm64ManagedRegister reg_X0 = Arm64ManagedRegister::FromCoreRegister(X0);
281 EXPECT_TRUE(reg_X0.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
289 EXPECT_TRUE(!reg_X1.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
316 EXPECT_TRUE(!reg_W8.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
326 EXPECT_TRUE(!reg_W12.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
336 EXPECT_TRUE(!reg_S0.Equals(Arm64ManagedRegister::FromCoreRegister(X0)));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 217 float x0 = x - i0; local
218 float x1 = x0 - 1.0f;
222 float t0 = 1.0f - x0 * x0;
225 n0 = t0 * t0 * grad1(perm[i0 & 0xff], x0);
254 float X0 = i - t; /* Unskew the cell origin back to (x,y) space */
256 float x0 = x - X0; /* The x,y distances from the cell origin */ local
266 if (x0 > y0) {
279 x1 = x0 - i1 + G2; /* Offsets for middle corner in (x,y) unskewed coords *
342 float x0 = x - X0; \/* The x,y,z distances from the cell origin *\/ local
503 float x0 = x - X0; \/* The x,y,z,w distances from the cell origin *\/ local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_noise.c 217 float x0 = x - i0; local
218 float x1 = x0 - 1.0f;
222 float t0 = 1.0f - x0 * x0;
225 n0 = t0 * t0 * grad1(perm[i0 & 0xff], x0);
254 float X0 = i - t; /* Unskew the cell origin back to (x,y) space */
256 float x0 = x - X0; /* The x,y distances from the cell origin */ local
266 if (x0 > y0) {
279 x1 = x0 - i1 + G2; /* Offsets for middle corner in (x,y) unskewed coords *
342 float x0 = x - X0; \/* The x,y,z distances from the cell origin *\/ local
503 float x0 = x - X0; \/* The x,y,z,w distances from the cell origin *\/ local
    [all...]
  /art/runtime/arch/arm64/
registers_arm64.h 27 X0 = 0,
context_arm64.cc 100 gprs_[X0] = const_cast<uint64_t*>(&gZero);
  /art/compiler/trampolines/
trampoline_compiler.cc 64 case kInterpreterAbi: // Thread* is first argument (X0) in interpreter ABI.
65 __ JumpTo(Arm64ManagedRegister::FromCoreRegister(X0), Offset(offset.Int32Value()),
69 case kJniAbi: // Load via Thread* held in JNIEnv* in first argument (X0).
71 Arm64ManagedRegister::FromCoreRegister(X0),
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 384 X0 = (X-X.mean(0)) / numpy.sqrt(((X-X.mean(0))**2.0).sum())
386 U,s,Vt = numpy.linalg.svd(numpy.dot(X0.T, Y0),full_matrices=False)
  /external/ceres-solver/examples/
ellipse_approximation.cc 344 bool operator()(const T* x0, const T* x1, T* residuals) const {
345 residuals[0] = T(sqrt_weight_) * (x0[0] - x1[0]);
346 residuals[1] = T(sqrt_weight_) * (x0[1] - x1[1]);
441 MatrixXd X0 = X;
446 X = X0;
  /external/llvm/test/MC/AArch64/
arm64-leaf-compact-unwind.s 29 // CHECK-NEXT: 0x0 0 3 0 ARM64_RELOC_UNSIGNED 0 0x1
178 ; kill: W0<def> W0<kill> X0<def>
180 ubfx x10, x0, #0, #32
  /external/openssl/crypto/sha/asm/
sha1-ia64.pl 36 @X= ( "X0", "X1", "X2", "X3", "X4", "X5", "X6", "X7",
64 nop.m 0x0
216 nop.i 0x0 };;
  /external/opencv/cvaux/src/
cvlevmartrif.cpp 57 CvMat *X0,CvMat *observRes,CvMat *resultX,
  /external/chromium_org/third_party/libpng/
pngget.c 637 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
643 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
647 *X0 = info_ptr->pcal_X0;
  /external/libpng/
pngget.c 822 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
828 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
832 *X0 = info_ptr->pcal_X0;
    [all...]

Completed in 1040 milliseconds

1 2 3 4 56 7 8