HomeSort by relevance Sort by last modified time
    Searched defs:rhs (Results 101 - 125 of 322) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/ops/
linalg_ops.cc 54 ShapeHandle rhs; local
60 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 2, &rhs));
66 TF_RETURN_IF_ERROR(c->Subshape(rhs, 0, -2, &rhs_batch_shape));
67 // Make sure the batch dimensions match between lhs and rhs.
72 // lhs and rhs have the same value for m to be compatible.
73 TF_RETURN_IF_ERROR(c->Merge(c->Dim(lhs, -2), c->Dim(rhs, -2), &m));
82 TF_RETURN_IF_ERROR(c->Concatenate(out, c->Vector(c->Dim(rhs, -1)), &out));
215 ShapeHandle rhs; local
218 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 2, &rhs));
224 TF_RETURN_IF_ERROR(c->Subshape(rhs, 0, -2, &rhs_batch_shape))
    [all...]
  /external/tensorflow/tensorflow/lite/
graph_info.cc 39 TfLiteIntArrayView& operator=(const TfLiteIntArrayView& rhs) = default; member in class:tflite::__anon45979::TfLiteIntArrayView
  /external/v8/src/ast/
ast-value-factory.cc 123 const AstRawString* rhs = static_cast<AstRawString*>(b); local
124 DCHECK_EQ(lhs->Hash(), rhs->Hash());
126 if (lhs->length() != rhs->length()) return false;
128 const unsigned char* r = rhs->raw_data();
129 size_t length = rhs->length();
131 if (rhs->is_one_byte()) {
141 if (rhs->is_one_byte()) {
  /art/compiler/optimizing/
code_generator_vector_arm_vixl.cc 277 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
283 __ Vadd(I8, dst, lhs, rhs);
288 __ Vadd(I16, dst, lhs, rhs);
292 __ Vadd(I32, dst, lhs, rhs);
307 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
312 __ Vqadd(DataTypeValue::U8, dst, lhs, rhs);
316 __ Vqadd(DataTypeValue::S8, dst, lhs, rhs);
320 __ Vqadd(DataTypeValue::U16, dst, lhs, rhs);
324 __ Vqadd(DataTypeValue::S16, dst, lhs, rhs);
339 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)) local
379 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
409 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
441 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
479 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
519 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
560 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
592 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
616 vixl32::DRegister rhs = DRegisterFrom(locations->InAt(1)); local
    [all...]
codegen_test.cc 479 int rhs[] = {2, 1, 2, -1, 0xabc}; local
499 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
513 RunCode(target_config, *compiler_options_, graph, hook_before_codegen, true, lhs[i] < rhs[i]);
526 int rhs[] = {2, 1, 2, -1, 0xabc}; local
556 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]);
581 RunCode(target_config, *compiler_options_, graph, hook_before_codegen, true, lhs[i] < rhs[i]);
    [all...]
  /art/runtime/native/
java_lang_reflect_Executable.cc 303 const dex::TypeId& rhs = other_method->GetDexFile()->GetTypeId( local
310 rhs.descriptor_idx_, &rhs_len);
  /build/kati/
stmt.h 71 * <lhs> <sep> <rhs>
72 * where <lhs> and <rhs> as Value instances. <sep> is either command
80 Value* rhs; member in struct:RuleStmt
91 Value* rhs; member in struct:AssignStmt
124 Value* rhs; member in struct:IfStmt
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 108 float const* const rhs = r.mData; local
118 const float e = rhs[i4 + j];
318 const float* rhs) {
320 const float x = rhs[0];
321 const float y = rhs[1];
322 const float z = rhs[2];
323 const float w = rhs[3];
  /cts/tests/tests/os/src/android/os/cts/
WorkSourceTest.java 207 private void doTestCombineTwoUids(int[] lhs, int[] rhs, int[] expected, int[] newbs,
210 WorkSource ws2 = wsNew(rhs);
219 checkWorkSource("SetReturning result", ws1, rhs);
239 int[] rhs = makeRepeatingIntArray(rhsnames, 0); local
243 doTestCombineTwoUidsNames(lhs, lhsnames, rhs, rhsnames, expected, expectednames,
247 private void doTestCombineTwoUidsNames(int[] lhs, String[] lhsnames, int[] rhs, String[] rhsnames,
251 WorkSource ws2 = wsNew(rhs, rhsnames);
260 checkWorkSource("SetReturning result", ws1, rhs, rhsnames);
287 private void doTestCombineTwo(int[] lhs, int[] rhs, int[] expected, int[] newbs,
289 doTestCombineTwoUids(lhs, rhs, expected, newbs, gones)
389 int[] rhs = makeRepeatingIntArray(rhsnames, 0); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 141 // are the same. So lhs and rhs get reversed here.
143 Matrix2f rhs = new Matrix2f(rhsData); local
146 loadMul.loadMultiply(lhs, rhs);
149 lhs.multiply(rhs);
Matrix3fTest.java 200 // are the same. So lhs and rhs get reversed here.
202 Matrix3f rhs = new Matrix3f(rhsData); local
205 loadMul.loadMultiply(lhs, rhs);
208 lhs.multiply(rhs);
Matrix4fTest.java 207 // are the same. So lhs and rhs get reversed here.
209 Matrix4f rhs = new Matrix4f(rhsData); local
212 loadMul.loadMultiply(lhs, rhs);
215 lhs.multiply(rhs);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Configurator.java 206 String rhs = path.substring(separatorIndex + 1, path.length()); local
216 return getObjectContaining(o, rhs);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveSummary.java 319 final DumpArchiveSummary rhs = (DumpArchiveSummary) o; local
321 if (dumpDate != rhs.dumpDate) {
326 !getHostname().equals(rhs.getHostname())) {
330 if ((getDevname() == null) || !getDevname().equals(rhs.getDevname())) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Vector3D.java 421 final Vector3D rhs = (Vector3D)other; local
422 if (rhs.isNaN()) {
426 return (x == rhs.x) && (y == rhs.y) && (z == rhs.z);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
ArrayFieldVector.java 823 FieldVector<T> rhs = (FieldVector<T>) other; local
824 if (data.length != rhs.getDimension()) {
829 if (!data[i].equals(rhs.getEntry(i))) {
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 91 const Expr *rhs = binop->getRHS(); local
92 if (rhs->isEvaluatable(Context)) {
94 maxVal = rhs->EvaluateKnownConstInt(Context);
102 e = rhs;
183 const Expr *rhs = AssignEx->getRHS(); local
184 if (rhs->isEvaluatable(Context))
190 const Expr *rhse = rhs->IgnoreParenImpCasts();
228 const Expr * rhs = E->getRHS(); local
231 if (!isIntZeroExpr(lhs) && !isIntZeroExpr(rhs)) {
233 CheckExpr(rhs);
    [all...]
  /external/drm_hwcomposer/
drmdisplaycomposition.h 49 DrmCompositionDisplayLayersMap(DrmCompositionDisplayLayersMap &&rhs) = member in struct:android::DrmCompositionDisplayLayersMap
65 DrmCompositionPlane(DrmCompositionPlane &&rhs) = default; member in class:android::DrmCompositionPlane
  /external/eigen/Eigen/src/Core/
Product.h 15 template<typename Lhs, typename Rhs, int Option, typename StorageKind> class ProductImpl;
19 template<typename Lhs, typename Rhs, int Option>
20 struct traits<Product<Lhs, Rhs, Option> >
23 typedef typename remove_all<Rhs>::type RhsCleaned;
32 internal::product_type<Lhs,Rhs>::ret>::ret StorageKind;
79 typedef _Rhs Rhs;
82 Lhs, Rhs, Option,
84 typename internal::traits<Rhs>::StorageKind,
85 internal::product_type<Lhs,Rhs>::ret>::ret>::Base Base;
89 typedef typename internal::ref_selector<Rhs>::type RhsNested
104 EIGEN_DEVICE_FUNC const RhsNestedCleaned& rhs() const { return m_rhs; } function in class:Eigen::Product
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixMatrix.h 91 const_blas_data_mapper<Scalar,Index,StorageOrder> rhs(_rhs,rhsStride);
100 blockB[count+0] = rhs(k,j2+0);
101 blockB[count+1] = rhs(k,j2+1);
104 blockB[count+2] = rhs(k,j2+2);
105 blockB[count+3] = rhs(k,j2+3);
109 blockB[count+4] = rhs(k,j2+4);
110 blockB[count+5] = rhs(k,j2+5);
111 blockB[count+6] = rhs(k,j2+6);
112 blockB[count+7] = rhs(k,j2+7);
128 blockB[count+0] = numext::conj(rhs(j2+0,k))
491 typename internal::add_const_on_value_type<ActualRhsType>::type rhs = RhsBlasTraits::extract(a_rhs); local
    [all...]
SelfadjointMatrixVector.h 33 const Scalar* rhs,
42 const Scalar* rhs,
76 Scalar t0 = cjAlpha * rhs[j];
78 Scalar t1 = cjAlpha * rhs[j+1];
96 t3 += cj1.pmul(A1[j], rhs[j]);
101 t2 += cj1.pmul(A0[j+1], rhs[j+1]);
107 t2 += cj1.pmul(A0[i], rhs[i]);
108 t3 += cj1.pmul(A1[i], rhs[i]);
114 const Scalar* EIGEN_RESTRICT rhsIt = rhs + alignedStart;
131 t2 += cj1.pmul(A0[i], rhs[i])
187 typename internal::add_const_on_value_type<ActualRhsType>::type rhs = RhsBlasTraits::extract(a_rhs); local
    [all...]
TriangularMatrixMatrix.h 62 const Scalar* rhs, Index rhsStride,
74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking);
124 RhsMapper rhs(_rhs,rhsStride);
165 pack_rhs(blockB, rhs.getSubMapper(actual_k2,0), actual_kc, cols);
275 RhsMapper rhs(_rhs,rhsStride);
306 // align blocks with the end of the triangular part for trapezoidal rhs
321 pack_rhs(geb, rhs.getSubMapper(actual_k2,IsLower ? 0 : k2), actual_kc, rs);
323 // pack the triangular part of the rhs padding the unrolled blocks with zeros
334 rhs.getSubMapper(actual_k2+panelOffset, actual_j2),
342 triangularBuffer.coeffRef(j,j) = rhs(actual_j2+j,actual_j2+j)
406 typename internal::add_const_on_value_type<ActualRhsType>::type rhs = RhsBlasTraits::extract(a_rhs); local
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedEigenSolver.h 343 Matrix<Scalar, 2, 1> rhs = (alpha*mT.template block<2,Dynamic>(j-1,st,2,sz) - beta*mS.template block<2,Dynamic>(j-1,st,2,sz)) .lazyProduct( v.segment(st,sz) ); local
345 v.template segment<2>(j-1) = lhs.partialPivLu().solve(rhs);
394 Matrix<ComplexScalar, 2, 1> rhs = (alpha*mT.template block<2,Dynamic>(j-1,st,2,sz) - beta*mS.template block<2,Dynamic>(j-1,st,2,sz)) .lazyProduct( cv.segment(st,sz) ); local
396 cv.template segment<2>(j-1) = lhs.partialPivLu().solve(rhs);
RealSchur.h 477 const Scalar rhs = v.coeff(0) * (abs(m_matT.coeff(im-1,im-1)) + abs(Tmm) + abs(m_matT.coeff(im+1,im+1))); local
478 if (abs(lhs) < NumTraits<Scalar>::epsilon() * rhs)
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 161 template<typename Rhs,typename Dest>
162 bool _solve_impl(const MatrixBase<Rhs> &b, MatrixBase<Dest> &x) const;
366 template<typename Rhs,typename Dest>
367 bool PastixBase<Base>::_solve_impl(const MatrixBase<Rhs> &b, MatrixBase<Dest> &x) const
372 int rhs = 1; local
381 m_perm.data(), m_invp.data(), &x(0, i), rhs, m_iparm.data(), m_dparm.data());

Completed in 895 milliseconds

1 2 3 45 6 7 8 91011>>