/cts/tests/tests/os/src/android/os/cts/ |
WorkSourceTest.java | 251 private void doTestCombineTwoUids(int[] lhs, int[] rhs, int[] expected, int[] newbs, 253 WorkSource ws1 = wsNew(lhs); 257 ws1 = wsNew(lhs); 261 ws1 = wsNew(lhs); 282 int[] lhs = makeRepeatingIntArray(lhsnames, 0); local 287 doTestCombineTwoUidsNames(lhs, lhsnames, rhs, rhsnames, expected, expectednames, 291 private void doTestCombineTwoUidsNames(int[] lhs, String[] lhsnames, int[] rhs, String[] rhsnames, 294 WorkSource ws1 = wsNew(lhs, lhsnames); 298 ws1 = wsNew(lhs, lhsnames); 302 ws1 = wsNew(lhs, lhsnames) 432 int[] lhs = makeRepeatingIntArray(lhsnames, 0); local [all...] |
/external/eigen/Eigen/src/Core/products/ |
SelfadjointMatrixMatrix.h | 22 void pack(Scalar* blockA, const const_blas_data_mapper<Scalar,Index,StorageOrder>& lhs, Index cols, Index i, Index& count) 27 blockA[count++] = lhs(i+w,k); // normal 33 blockA[count++] = conj(lhs(k, i+w)); // transposed 35 blockA[count++] = real(lhs(k,k)); // real (diagonal) 38 blockA[count++] = lhs(i+w, k); // normal 44 blockA[count++] = conj(lhs(k, i+w)); // transposed 48 const_blas_data_mapper<Scalar,Index,StorageOrder> lhs(_lhs,lhsStride); 53 pack<Pack1>(blockA, lhs, cols, i, count); 58 pack<Pack2>(blockA, lhs, cols, peeled_mc, count); 66 blockA[count++] = lhs(i, k); // norma 390 typename internal::add_const_on_value_type<ActualLhsType>::type lhs = LhsBlasTraits::extract(m_lhs); local [all...] |
/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 17 template<typename Lhs, typename Rhs, int Mode, 23 int StorageOrder = int(traits<Lhs>::Flags) & RowMajorBit> 27 template<typename Lhs, typename Rhs, int Mode> 28 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Lower,RowMajor> 31 static void run(const Lhs& lhs, Rhs& other) 35 for(int i=0; i<lhs.rows(); ++i) 40 for(typename Lhs::InnerIterator it(lhs, i); it; ++it) 61 template<typename Lhs, typename Rhs, int Mode [all...] |
/external/eigen/Eigen/src/Core/ |
SolveTriangular.h | 26 template<typename Lhs, typename Rhs, int Side> 41 template<typename Lhs, typename Rhs, 44 int Unrolling = trsolve_traits<Lhs,Rhs,Side>::Unrolling, 45 int RhsVectors = trsolve_traits<Lhs,Rhs,Side>::RhsVectors 49 template<typename Lhs, typename Rhs, int Side, int Mode> 50 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,1> 52 typedef typename Lhs::Scalar LhsScalar; 54 typedef blas_traits<Lhs> LhsProductTraits; 57 static void run(const Lhs& lhs, Rhs& rhs [all...] |
CwiseBinaryOp.h | 22 * \param Lhs the type of the left-hand side 37 template<typename BinaryOp, typename Lhs, typename Rhs> 38 struct traits<CwiseBinaryOp<BinaryOp, Lhs, Rhs> > 40 // we must not inherit from traits<Lhs> since it has 42 typedef typename remove_all<Lhs>::type Ancestor; 51 // even though we require Lhs and Rhs to have the same scalar type (see CwiseBinaryOp constructor), 55 typename Lhs::Scalar, 59 typedef typename promote_storage_type<typename traits<Lhs>::StorageKind, 61 typedef typename promote_index_type<typename traits<Lhs>::Index, 63 typedef typename Lhs::Nested LhsNested 150 const _LhsNested& lhs() const { return m_lhs; } function in class:Eigen::CwiseBinaryOp [all...] |
/external/icu4c/i18n/ |
decNumber.c | 165 /* lhs -- left hand side (operand, of an operation) */ 252 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag); 302 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL) [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
buffer_manager.h | 86 bool operator() (const Range& lhs, const Range& rhs) const { 87 if (lhs.offset_ != rhs.offset_) { 88 return lhs.offset_ < rhs.offset_; 90 if (lhs.count_ != rhs.count_) { 91 return lhs.count_ < rhs.count_; 93 return lhs.type_ < rhs.type_;
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_builder.cpp | 49 assign(deref lhs, operand rhs, int writemask) 51 void *mem_ctx = ralloc_parent(lhs.val); 53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val, 61 assign(deref lhs, operand rhs) 63 return assign(lhs, rhs, (1 << lhs.val->type->vector_elements) - 1);
|
opt_copy_propagation.cpp | 46 acp_entry(ir_variable *lhs, ir_variable *rhs) 48 assert(lhs); 50 this->lhs = lhs; 54 ir_variable *lhs; member in class:__anon15817::acp_entry 141 kill(ir->lhs->variable_referenced()); 156 * Replaces dereferences of ACP RHS variables with ACP LHS variables. 173 if (var == entry->lhs) { 221 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs)); 297 if (entry->lhs == var || entry->rhs == var) [all...] |
/external/kernel-headers/original/linux/ |
ktime.h | 84 /* Subtract two ktime_t variables. rem = lhs -rhs: */ 85 #define ktime_sub(lhs, rhs) \ 86 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; }) 88 /* Add two ktime_t variables. res = lhs + rhs: */ 89 #define ktime_add(lhs, rhs) \ 90 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; }) 145 * @lhs: minuend 150 static inline ktime_t ktime_sub(const ktime_t lhs, const ktime_t rhs) 154 res.tv64 = lhs.tv64 - rhs.tv64;
|
/external/mesa3d/src/glsl/ |
ir_builder.cpp | 49 assign(deref lhs, operand rhs, int writemask) 51 void *mem_ctx = ralloc_parent(lhs.val); 53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val, 61 assign(deref lhs, operand rhs) 63 return assign(lhs, rhs, (1 << lhs.val->type->vector_elements) - 1);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
class_properties.hpp | 95 operator op( PropertyType const& lhs, class_property<PropertyType> const& rhs ) \ 97 return lhs op rhs.get(); \ 101 operator op( class_property<PropertyType> const& lhs, PropertyType const& rhs ) \ 103 return lhs.get() op rhs; \ 107 operator op( class_property<PropertyType> const& lhs, \ 110 return lhs.get() op rhs.get(); \
|
/external/chromium_org/third_party/icu/source/i18n/ |
decNumber.c | 165 /* lhs -- left hand side (operand, of an operation) */ 239 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag); 289 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL) [all...] |
/art/runtime/base/ |
logging.h | 34 #define CHECK_OP(LHS, RHS, OP) \ 35 for (auto _values = ::art::MakeEagerEvaluator(LHS, RHS); \ 36 UNLIKELY(!(_values.lhs OP _values.rhs)); /* empty */) \ 38 << "Check failed: " << #LHS << " " << #OP << " " << #RHS \ 39 << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") " 136 template <typename LHS, typename RHS> 138 EagerEvaluator(LHS lhs, RHS rhs) : lhs(lhs), rhs(rhs) { 139 LHS lhs; member in struct:art::EagerEvaluator [all...] |
/external/arduino/hardware/arduino/cores/arduino/ |
WString.h | 85 friend String operator + ( String lhs, const String &rhs ); 106 inline String operator+( String lhs, const String &rhs ) 108 return lhs += rhs;
|
/external/chromium/net/base/ |
x509_cert_types.h | 41 bool operator() (const SHA1Fingerprint& lhs, 43 return memcmp(lhs.data, rhs.data, sizeof(lhs.data)) < 0;
|
/external/chromium_org/ash/keyboard_overlay/ |
keyboard_overlay_view_unittest.cc | 21 bool operator==(const KeyboardOverlayView::KeyEventData& lhs, 23 return (lhs.key_code == rhs.key_code) && (lhs.flags == rhs.flags);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathPredicate.h | 68 NumericOp(Opcode, PassOwnPtr<Expression> lhs, PassOwnPtr<Expression> rhs); 79 EqTestOp(Opcode, PassOwnPtr<Expression> lhs, PassOwnPtr<Expression> rhs); 91 LogicalOp(Opcode, PassOwnPtr<Expression> lhs, PassOwnPtr<Expression> rhs);
|
/frameworks/base/graphics/java/android/renderscript/ |
Matrix2f.java | 133 * @param lhs left hand side matrix 136 public void loadMultiply(Matrix2f lhs, Matrix2f rhs) { 142 ri0 += lhs.get(j,0) * rhs_ij; 143 ri1 += lhs.get(j,1) * rhs_ij;
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ |
MediaSizeUtils.java | 75 public int compare(MediaSize lhs, MediaSize rhs) { 77 String lhsStandard = getStandardForMediaSize(mContext, lhs); 94 return lhs.getLabel(mContext.getPackageManager()).
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Matrix2f.java | 133 * @param lhs left hand side matrix 136 public void loadMultiply(Matrix2f lhs, Matrix2f rhs) { 142 ri0 += lhs.get(j,0) * rhs_ij; 143 ri1 += lhs.get(j,1) * rhs_ij;
|
/cts/tools/dasm/src/java_cup/ |
lr_item_core.java | 211 if (_the_production.lhs() != null && 212 _the_production.lhs().the_symbol() != null && 213 _the_production.lhs().the_symbol().name() != null) 214 result = _the_production.lhs().the_symbol().name();
|
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-string.h | 134 static bool CStringEquals(const char* lhs, const char* rhs); 152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); 160 static bool CaseInsensitiveCStringEquals(const char* lhs, 175 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/ |
gtest-string.h | 134 static bool CStringEquals(const char* lhs, const char* rhs); 152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); 160 static bool CaseInsensitiveCStringEquals(const char* lhs, 175 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url.cc | 195 bool FileSystemURL::Comparator::operator()(const FileSystemURL& lhs, 197 DCHECK(lhs.is_valid_ && rhs.is_valid_); 198 if (lhs.origin_ != rhs.origin_) 199 return lhs.origin_ < rhs.origin_; 200 if (lhs.type_ != rhs.type_) 201 return lhs.type_ < rhs.type_; 202 if (lhs.filesystem_id_ != rhs.filesystem_id_) 203 return lhs.filesystem_id_ < rhs.filesystem_id_; 204 return lhs.path_ < rhs.path_;
|