Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 31) sorted by relevance

12

/system/bt/vendor_libs/test_vendor_lib/include/
Dbt_address.h44 inline bool operator==(const BtAddress& right) {
45 return address_ == right.address_;
47 inline bool operator!=(const BtAddress& right) {
48 return address_ != right.address_;
50 inline bool operator<(const BtAddress& right) {
51 return address_ < right.address_;
53 inline bool operator>(const BtAddress& right) {
54 return address_ > right.address_;
56 inline bool operator<=(const BtAddress& right) {
57 return address_ <= right.address_;
[all …]
/system/core/libutils/include/utils/
DList.h116 inline bool operator==(const _Iter& right) const {
117 return mpNode == right.mpNode; }
119 inline bool operator!=(const _Iter& right) const {
120 return mpNode != right.mpNode; }
126 inline bool operator==(const OTHER& right) const {
127 return mpNode == right.mpNode; }
130 inline bool operator!=(const OTHER& right) const {
131 return mpNode != right.mpNode; }
178 List<T>& operator=(const List<T>& right);
313 List<T>& List<T>::operator=(const List<T>& right)
[all …]
/system/core/libsysutils/include/sysutils/
DList.h117 inline bool operator==(const _Iter& right) const {
118 return mpNode == right.mpNode; }
120 inline bool operator!=(const _Iter& right) const {
121 return mpNode != right.mpNode; }
127 inline bool operator==(const OTHER& right) const {
128 return mpNode == right.mpNode; }
131 inline bool operator!=(const OTHER& right) const {
132 return mpNode != right.mpNode; }
179 List<T>& operator=(const List<T>& right);
314 List<T>& List<T>::operator=(const List<T>& right)
[all …]
/system/keymaster/
DList.h116 inline bool operator==(const _Iter& right) const {
117 return mpNode == right.mpNode; }
119 inline bool operator!=(const _Iter& right) const {
120 return mpNode != right.mpNode; }
126 inline bool operator==(const OTHER& right) const {
127 return mpNode == right.mpNode; }
130 inline bool operator!=(const OTHER& right) const {
131 return mpNode != right.mpNode; }
178 List<T>& operator=(const List<T>& right);
313 List<T>& List<T>::operator=(const List<T>& right)
[all …]
/system/chre/util/include/chre/util/
Darray_queue.h149 bool operator==(const ArrayQueueIterator& right) {
150 return (mPointer == right.mPointer);
153 bool operator!=(const ArrayQueueIterator& right) {
154 return (mPointer != right.mPointer);
/system/core/libpixelflinger/
Dtrap.cpp226 if (r > GGLint(c->state.scissor.right)) { in aa_nice_pointx()
227 r = GGLint(c->state.scissor.right); in aa_nice_pointx()
291 if (r > GGLint(c->state.scissor.right)) { in aa_pointx()
292 r = GGLint(c->state.scissor.right); in aa_pointx()
430 if (r > GGLint(c->state.scissor.right)) in recti()
431 r = GGLint(c->state.scissor.right); in recti()
548 const int32_t maxx = min(bmaxx, c->state.scissor.right); in trianglex_small()
722 Edge* right, in triangle_sweep_edges() argument
731 if ((left->x > right->x) || in triangle_sweep_edges()
732 ((left->x == right->x) && (left->x_incr > right->x_incr))) { in triangle_sweep_edges()
[all …]
Draster.cpp88 if ((xd + width) > GGLint(c->state.scissor.right)) { in ggl_copyPixels()
89 width = GGLint(c->state.scissor.right) - xd; in ggl_copyPixels()
Dclear.cpp101 uint32_t w = c->state.scissor.right - l; in ggl_clear()
Dpixelflinger.cpp604 c->state.scissor.right = min(c->state.buffers.color.width, r); in ggl_set_scissor()
610 c->state.scissor.right = c->state.buffers.color.width; in ggl_set_scissor()
/system/media/audio_utils/include/audio_utils/
Dminifloat.h42 gain_minifloat_t right) in gain_minifloat_pack() argument
44 return (right << 16) | left; in gain_minifloat_pack()
/system/chre/util/tests/
Dpriority_queue_test.cc30 bool compareFunction(const DummyElement& left, const DummyElement& right) { in compareFunction() argument
31 return left.getValue() > right.getValue(); in compareFunction()
36 bool operator() (const DummyElement& left, const DummyElement& right) const { in operator ()()
37 return left.getValue() > right.getValue(); in operator ()()
170 auto cmp = [](const DummyElement& left, const DummyElement& right) { in TEST() argument
171 return left.getValue() > right.getValue(); in TEST()
/system/tools/aidl/
Dast_cpp.cpp319 Assignment::Assignment(const std::string& left, const std::string& right) in Assignment() argument
320 : Assignment(left, new LiteralExpression{right}) {} in Assignment()
322 Assignment::Assignment(const std::string& left, AstNode* right) in Assignment() argument
324 rhs_(right) {} in Assignment()
Dast_cpp.h277 Assignment(const std::string& left, const std::string& right);
278 Assignment(const std::string& left, AstNode* right);
/system/tools/hidl/c2hal/
Dc2hal_y.yy107 %right '?' ':'
114 %right '~' '!' UMINUS UPLUS
117 %right STRUCT ENUM
/system/media/camera/docs/
Dcamera_device_info.mako41 optional int32 right = 2;
Dcamera_metadata_tags.mako47 * New sections must be added right before ANDROID_SECTION_COUNT to maintain
Dcamera_device_info.proto41 optional int32 right = 2; field
Dhtml.mako42 td,th { border: 1px solid; border-color: #aaaaaa; padding-left: 0.5em; padding-right: 0.5em }
80 text-align: center; font-size: 1.1em; margin-left: 0em; margin-right: 0em; }
/system/core/liblog/
Dlogprint.c1245 struct timespec* right) { in sumTimespec() argument
1246 left->tv_nsec += right->tv_nsec; in sumTimespec()
1247 left->tv_sec += right->tv_sec; in sumTimespec()
1257 struct timespec* right) { in subTimespec() argument
1258 result->tv_nsec = left->tv_nsec - right->tv_nsec; in subTimespec()
1259 result->tv_sec = left->tv_sec - right->tv_sec; in subTimespec()
/system/core/liblog/tests/
Dliblog_test.cpp1117 const char* right = max_payload_buf; in TEST() local
1118 while (*left && *right && (*left == *right)) { in TEST()
1120 ++right; in TEST()
1255 const char* right = longString.c_str(); in TEST() local
1256 while (*left && *right && (*left == *right)) { in TEST()
1258 ++right; in TEST()
/system/core/libsystem/include/system/
Dwindow-deprecated.h94 int32_t right; member
/system/bt/build/secondary/third_party/aac/
DBUILD.gn31 #TODO(jpawlowski): this files are not build right now, but might be useful when
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_context.h331 uint32_t right;
/system/bt/doc/
Dstyle_guide.md383 ##### Check to see that everything looks right
411 ##### Check to see that everything looks right
/system/sepolicy/tools/fc_sort/
DNOTICE126 exercise the right to control the distribution of derivative or
216 patents or other property right claims or to contest validity of any

12