HomeSort by relevance Sort by last modified time
    Searched defs:Identity (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /art/libartbase/base/
stl_util_identity.h 23 // See std::identity<> for more background:
26 // e.g. "template <typename X> void bar(identity<X>::type foo);
29 // or "template <typename T> void foo(T* x, typename Identity<T*>::type y);
35 struct Identity {
  /external/libcxx/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 38 struct Identity { typedef Tp type; };
41 Identity<Source> CheckSourceType(Source const&);
  /external/tensorflow/tensorflow/python/ops/distributions/
identity_bijector.py 15 """Identity bijector."""
27 "Identity",
31 @tf_export("distributions.bijectors.Identity")
32 class Identity(bijector.Bijector):
40 identity = Identity(event_ndims=1)
43 x == identity.forward(x) == identity.inverse(x)
48 def __init__(self, validate_args=False, event_ndims=0, name="identity"):
49 super(Identity, self).__init__
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17005.go 15 Identity Flag = iota - 2 // H is the identity matrix; no rotation is needed.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17005.go 15 Identity Flag = iota - 2 // H is the identity matrix; no rotation is needed.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 38 struct Identity { typedef Tp type; };
41 Identity<Source> CheckSourceType(Source const&);
  /external/tensorflow/tensorflow/core/kernels/
reduction_ops.h 37 // For most reducers, the identity is Reducer::initialize()
39 struct Identity {
40 static auto identity(const Reducer& reducer)
46 // MeanReducer is a special case, since it doesn't technically have an identity.
51 struct Identity<Eigen::internal::MeanReducer<T>> { \
52 static T identity(const Eigen::internal::MeanReducer<T>&) { \
65 out.device(d) = out.constant(Identity<Reducer>::identity(reducer));
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.h 79 struct Identity {
89 typename Identity<Args>::type... args);
  /external/libcxx/test/libcxx/type_traits/
lazy_metafunctions.pass.cpp 21 struct Identity {
28 typedef Identity<TrueT> LazyTrueT;
29 typedef Identity<FalseT> LazyFalseT;
97 { // Test that it acts as the identity function for a single value
115 { // Test that it acts as the identity function for a single value
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/type_traits/
lazy_metafunctions.pass.cpp 21 struct Identity {
28 typedef Identity<TrueT> LazyTrueT;
29 typedef Identity<FalseT> LazyFalseT;
97 { // Test that it acts as the identity function for a single value
115 { // Test that it acts as the identity function for a single value
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
ModifyIdentityPolicy.c 19 Verify the new identity policy in the current implementation. The same credential
20 provider can't appear twice in one identity policy.
24 @retval TRUE The NewGuid was found in the identity policy.
34 EFI_USER_INFO_IDENTITY_POLICY *Identity;
39 Identity = (EFI_USER_INFO_IDENTITY_POLICY *) (mUserInfo.NewIdentityPolicy + Offset);
40 if (Identity->Type == EFI_USER_INFO_IDENTITY_CREDENTIAL_PROVIDER) {
41 if (CompareGuid (NewGuid, (EFI_GUID *) (Identity + 1))) {
53 Offset += Identity->Length;
63 @param[in] Identity Identity policy item including credential provider.
    [all...]
  /external/brotli/csharp/org/brotli/dec/
WordTransformType.cs 12 /// transforms and the identity transform.
16 internal const int Identity = 0;
  /external/eigen/Eigen/src/Geometry/
Translation.h 147 static const Translation Identity() { return Translation(VectorType::Zero()); }
AngleAxis.h 145 EIGEN_DEVICE_FUNC static inline const AngleAxis Identity() { return AngleAxis(Scalar(0), Vector3::UnitX()); }
Rotation2D.h 152 EIGEN_DEVICE_FUNC static inline Rotation2D Identity() { return Rotation2D(0); }
  /external/fonttools/Lib/fontTools/misc/
transform.py 14 Identity -- Transform instance set to the identity transformation
42 >>> t = Identity.scale(0.5).translate(100, 200).skew(0.1, 0.2)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
228 >>> t = Identity.translate(2, 3).scale(4, 5)
246 >>> t = Identity.scale(2, 3).translate(4, 5)
255 >>> len(Identity)
263 >>> list(Identity)
265 >>> tuple(Identity)
275 >>> t1 = Identity.scale(2, 3).translate(4, 6
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsmtrx.c 83 // 3x3 Identity
100 cmsMAT3 Identity;
103 _cmsMAT3identity(&Identity);
107 if (!CloseEnough(a ->v[i].n[j], Identity.v[i].n[j])) return FALSE;
  /external/clang/test/CodeGen/
pass-object-size.c 241 int Identity(void *p, size_t i) { return i; }
244 int AsmObjectSize0(void *const p PS(0)) __asm__("Identity");
246 int AsmObjectSize1(void *const p PS(1)) __asm__("Identity");
248 int AsmObjectSize2(void *const p PS(2)) __asm__("Identity");
250 int AsmObjectSize3(void *const p PS(3)) __asm__("Identity");
256 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
258 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
260 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
262 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
265 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 356
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 23 template<typename T> struct Identity {
27 void f(Identity<int>::Type a) {}
28 void f(Identity<int> a) {}
  /external/clang/test/Modules/Inputs/
cxx-templates-b.h 34 template<typename T, typename> struct Identity { typedef T type; };
36 typename Identity<DefinedInBImpl, T>::type dependent;
38 typename Identity<DefinedInBImpl, T>::type::Inner inner;
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 35 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
665 // Identity:
667 /** \returns an expression of the identity matrix (not necessarily square).
673 * it is redundant to pass \a rows and \a cols as arguments, so Identity() should be used
679 * \sa Identity(), setIdentity(), isIdentity()
683 MatrixBase<Derived>::Identity(Index rows, Index cols)
688 /** \returns an expression of the identity matrix (not necessarily square).
696 * \sa Identity(Index,Index), setIdentity(), isIdentity()
700 MatrixBase<Derived>::Identity()
706 /** \returns true if *this is approximately equal to the identity matri
    [all...]
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
133 * For example, {@code Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken
317 public static Equivalence<Object> identity() { method in class:Equivalence
318 return Identity.INSTANCE;
339 static final class Identity extends Equivalence<Object>
342 static final Identity INSTANCE = new Identity();
  /external/libcxx/test/support/
uses_alloc_types.hpp 132 struct Identity { typedef T type; };
135 using IdentityT = typename Identity<T>::type;
256 typename detail::Identity<LArgs>::type..., CtorAlloc const& alloc) {
  /external/tensorflow/tensorflow/python/ops/
init_ops.py 545 @tf_export("keras.initializers.Identity", "initializers.identity")
546 class Identity(Initializer):
547 """Initializer that generates the identity matrix.
552 gain: Multiplicative factor to apply to the identity matrix.
564 "Identity matrix initializer can only be used for 2D matrices.")
588 identity_initializer = Identity
  /external/webrtc/webrtc/base/
bind_unittest.cc 27 template <class T> T Identity(T value) { ++call_count; return value; }
131 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
134 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,

Completed in 1985 milliseconds

1 2 3 4 5 6 7 8 9