Home
last modified time | relevance | path

Searched full:right (Results 1 – 25 of 583) sorted by relevance

12345678910>>...24

/device/generic/vulkan-cereal/fake-android-guest/ui/
DFloatRect.h22 : left(_left), top(_top), right(_right), bottom(_bottom) {} in FloatRect()
23 float getWidth() const { return right - left; } in getWidth()
31 (right < other.right) ? right : other.right, in intersect()
37 float right = 0.0f; variable
41 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
DRect.h44 right = static_cast<int32_t>(w); in Rect()
50 right = r; in Rect()
56 right = rb.x; in Rect()
64 right = static_cast<int32_t>(floatRect.right + 0.5f); in Rect()
69 left = top = right = bottom = 0; in clear()
82 return right - left; in getWidth()
91 return Rect(right - left, bottom - top); in getBounds()
98 right = rb.x; in setRightBottom()
107 return Point(right, bottom); in rightBottom()
110 return Point(right, top); in rightTop()
[all …]
/device/generic/goldfish/network/wifi_forwarder/
Dframe_id.h49 inline bool operator==(const FrameId& left, const FrameId& right) {
50 return left.cookie == right.cookie && left.transmitter == right.transmitter;
53 inline bool operator<(const FrameId& left, const FrameId& right) {
54 if (left.cookie < right.cookie) {
57 if (left.cookie > right.cookie) {
61 right.transmitter.addr,
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/tree_ops/
DVectorizeVectorScalarArithmetic.cpp88 TIntermTyped *right = node->getRight(); in visitBinary() local
90 ASSERT(right); in visitBinary()
105 if (left->isScalar() && right->isVector()) in visitBinary()
108 ASSERT(!right->isArray()); in visitBinary()
110 TIntermTyped *leftVectorized = Vectorize(left, right->getType(), &originalNodeFate); in visitBinary()
117 else if (left->isVector() && right->isScalar()) in visitBinary()
120 TIntermTyped *rightVectorized = Vectorize(right, left->getType(), &originalNodeFate); in visitBinary()
121 queueReplacementWithParent(node, right, rightVectorized, originalNodeFate); in visitBinary()
140 TIntermTyped *right = argBinary->getRight(); in replaceMathInsideConstructor() local
141 ASSERT(left->isScalar() && right->isScalar()); in replaceMathInsideConstructor()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/
DTypes.h256 bool sameNonArrayType(const TType &right) const;
261 bool operator==(const TType &right) const
264 size_t numArraySizesR = right.getNumArraySizes();
266 (numArraySizesL == 0 || mArraySizes == right.mArraySizes);
267 return type == right.type && primarySize == right.primarySize &&
268 secondarySize == right.secondarySize && arraySizesEqual &&
269 mStructure == right.mStructure;
272 bool operator!=(const TType &right) const { return !operator==(right); }
273 bool operator<(const TType &right) const
275 if (type != right.type)
[all …]
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.h33 int left, int top, int right, int bottom);
35 int left, int top, int right, int bottom);
37 int left, int top, int right, int bottom);
39 int left, int top, int right, int bottom);
41 int left, int top, int right, int bottom);
43 int left, int top, int right, int bottom);
/device/generic/vulkan-cereal/include/glm/gtc/
Dmatrix_transform.hpp93 /// @param right
100 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
104 T right,
113 /// @param right
120 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
124 T right,
130 /// Creates a matrix for an orthographic parallel viewing volume, using right-handedness.
133 /// @param right
140 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
144 T right,
[all …]
Dmatrix_transform.inl102 T left, T right, argument
108 return orthoLH(left, right, bottom, top, zNear, zFar);
110 return orthoRH(left, right, bottom, top, zNear, zFar);
117 T left, T right, argument
123 Result[0][0] = static_cast<T>(2) / (right - left);
125 Result[3][0] = - (right + left) / (right - left);
142 T left, T right, argument
148 Result[0][0] = static_cast<T>(2) / (right - left);
150 Result[3][0] = - (right + left) / (right - left);
167 T left, T right, argument
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/xml/
Dtranslate_math.js18 //{ left: "$$", right: "$$", display: true},
19 { left: "\\[", right: "\\]", display: true}, property
20 //{ left: "$", right: "$", display: false},
21 { left: "\\(", right: "\\)", display: false} property
25 …const regex = new RegExp( escapeRegex(delim.left) + "([\\S\\s]*?)" + escapeRegex(delim.right), "g"…
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp177 rect.right = gl::clamp(area.x + area.width, 0L, static_cast<LONG>(desc.Width)); in readPixelsImpl()
201 packParams.area.width = rect.right - rect.left; in readPixelsImpl()
263 srcRect.right = sourceArea.x + sourceArea.width; in blitImpl()
269 dstRect.right = destArea.x + destArea.width; in blitImpl()
286 if (dstRect.right > scissor->x + scissor->width) in blitImpl()
288 srcRect.right -= (dstRect.right - (scissor->x + scissor->width)); in blitImpl()
289 dstRect.right = scissor->x + scissor->width; in blitImpl()
304 if (dstRect.right > dstSize.width) in blitImpl()
306 srcRect.right -= (dstRect.right - dstSize.width); in blitImpl()
307 dstRect.right = dstSize.width; in blitImpl()
[all …]
/device/generic/goldfish-opengl/system/hwc2/
DLayer.cpp138 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in setDisplayFrame()
139 __FUNCTION__, mId, frame.left, frame.top, frame.right, in setDisplayFrame()
149 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getDisplayFrame()
150 __FUNCTION__, mId, frame.left, frame.top, frame.right, in getDisplayFrame()
179 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in setSourceCrop()
180 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in setSourceCrop()
189 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in getSourceCrop()
190 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in getSourceCrop()
199 crop.right = static_cast<int>(mSourceCrop.right); in getSourceCropInt()
202 "crop rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getSourceCropInt()
[all …]
/device/generic/vulkan-cereal/fake-android-guest/utils/
DList.h118 inline bool operator==(const _Iter& right) const {
119 return mpNode == right.mpNode; }
121 inline bool operator!=(const _Iter& right) const {
122 return mpNode != right.mpNode; }
128 inline bool operator==(const OTHER& right) const {
129 return mpNode == right.mpNode; }
132 inline bool operator!=(const OTHER& right) const {
133 return mpNode != right.mpNode; }
180 List<T>& operator=(const List<T>& right);
315 List<T>& List<T>::operator=(const List<T>& right)
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/
DClipDistanceTest.cpp106 // All pixels on the right of the plane x = -0.5 must be red in TEST_P()
134 // All pixels on the right of the plane x = -0.5 must be green in TEST_P()
213 // All pixels on the right of the plane x = -0.5 must be red, except those in the upper right in TEST_P()
234 // upper right triangle plus right of x=0.5 plane in TEST_P()
261 // All pixels on the right of the plane x = -0.5 must be red, except those in the upper right in TEST_P()
282 // upper right triangle in TEST_P()
353 // All pixels on the right of the plane x = -0.5 must be red, except those in the upper right in TEST_P()
374 // upper right triangle plus right of x=0.5 plane in TEST_P()
/device/generic/vulkan-cereal/protocols/vulkan/config/
Dmathtest.txt20 f = \max\left( {c \over {2^{b-1} - 1}}, -1.0 \right)
39 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} }
44 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} }
106 f = \max\left( {c \over {2^{b-1} - 1}}, -1.0 \right)
125 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} }
129 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} }
193 m = \sqrt{ \left({{\partial z_f} \over {\partial x_f}}\right)^2
194 + \left({{\partial z_f} \over {\partial y_f}}\right)^2}
201 m = \max\left( \left| {{\partial z_f} \over {\partial x_f}} \right|,
202 \left| {{\partial z_f} \over {\partial y_f}} \right| \right)
[all …]
/device/google/bonito/sdm710/kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/bonito/sdm710/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/sunfish-kernel/sm7150/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/crosshatch/sdm845/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/barbet-kernel/sm7250/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/redbull-kernel/sm7250/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/google/coral-kernel/sm8150/original-kernel-headers/linux/
Dmsm_audio_aac.h46 /* Primary channel on both left and right channels */
48 /* Secondary channel on both left and right channels */
50 /* Primary channel on right channel and 2nd on left channel */
52 /* 2nd channel on right channel and primary on left channel */
/device/generic/vulkan-cereal/stream-servers/OpenGLESDispatch/
Dgles1_only_functions.h23 …lFrustum, (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble …
51 … glOrtho, (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble …
70 …, glFrustumf, (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zF…
72 …id, glOrthof, (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zF…
80 …, glFrustumx, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zF…
98 …id, glOrthox, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zF…
/device/generic/vulkan-cereal/protocols/vulkan/config/katex_replace/
Dextension.rb40 { left: "$$", right: "$$", display: true},
41 { left: "\\\\\[", right: "\\\\\]", display: true},
42 { left: "$", right: "$", display: false},
43 { left: "\\\\\(", right: "\\\\\)", display: false}
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/
Dgen_overlay_widgets.py154 # - Whether this offset is for the left or right edge.
158 …s that number, and its sign determines whether this refers to the left or right edge of the boundi…
161 # * edge=left, mode=adjacent: the offset is other_widget.left, the edge is right.
162 # * edge=right, mode=align: the offset is other_widget.right, the edge is right.
163 # * edge=right, mode=adjacent: the offset is other_widget.right, the edge is left.
235 # mean aligned to the right side of the screen, we need to make sure that:
238 # - if right aligned: offset_x + width is at maximum -1
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/vulkan/doc/
DShaderModuleCompilation.md52 Note right of "ANGLE Front-end": Source is using bogus\nVulkan qualifiers to be\ncorrected at link …
54 Note right of App: Same for FS, GS, etc...
61 Note right of "Vulkan Back-end": ProgramVk inits uniforms,\nlayouts, and descriptors.
67 Note right of GlslangWrapperVk: Transform SPIR-V
72 Note right of App: App execution continues...
77 Note right of "Vulkan Back-end": We init VkShaderModules\nand VkPipeline then\nrecord the draw.

12345678910>>...24