HomeSort by relevance Sort by last modified time
    Searched refs:lhs (Results 201 - 225 of 935) sorted by null

1 2 3 4 5 6 7 891011>>

  /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);
  /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 20 bool operator==(const KeyboardOverlayView::KeyEventData& lhs,
22 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, Expression* lhs, Expression* rhs);
79 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
91 LogicalOp(Opcode, Expression* lhs, 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/sync/notifier/
invalidation_util.cc 24 bool ObjectIdLessThan::operator()(const invalidation::ObjectId& lhs,
26 return (lhs.source() < rhs.source()) ||
27 (lhs.source() == rhs.source() && lhs.name() < rhs.name());
  /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/eigen/Eigen/src/Core/
Product.h 13 template<typename Lhs, typename Rhs> class Product;
14 template<typename Lhs, typename Rhs, typename StorageKind> class ProductImpl;
21 * \param Lhs the type of the left-hand side expression
29 template<typename Lhs, typename Rhs>
30 struct traits<Product<Lhs, Rhs> >
33 typedef typename remove_all<Lhs>::type LhsCleaned;
52 template<typename Lhs, typename Rhs>
53 class Product : public ProductImpl<Lhs,Rhs,typename internal::promote_storage_type<typename internal::traits<Lhs>::StorageKind,
59 Lhs, Rhs
79 const LhsNestedCleaned& lhs() const { return m_lhs; } function in class:Product
    [all...]
  /external/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/libvpx/libvpx/third_party/googletest/src/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/llvm/utils/unittest/googletest/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/marisa-trie/v0_1_5/lib/marisa_alpha/
base.h 204 void Swap(T *lhs, T *rhs) {
205 MARISA_ALPHA_THROW_IF((lhs == NULL) || (rhs == NULL),
207 T temp = *lhs;
208 *lhs = *rhs;
  /external/mesa3d/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/open-vcdiff/gtest/include/gtest/internal/
gtest-string.h 132 static bool CStringEquals(const char* lhs, const char* rhs);
150 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
158 static bool CaseInsensitiveCStringEquals(const char* lhs,
173 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,

Completed in 2030 milliseconds

1 2 3 4 5 6 7 891011>>