Home
last modified time | relevance | path

Searched full:left (Results 1 – 25 of 644) sorted by relevance

12345678910>>...26

/device/generic/vulkan-cereal/protocols/vulkan/out/katex/
Dkatex.css186 margin-left: 0.16667em;
189 margin-left: 0.22222em;
192 margin-left: 0.27778em;
195 margin-left: 0.16667em;
198 margin-left: 0.16667em;
201 margin-left: 0.16667em;
204 margin-left: 0.27778em;
207 margin-left: 0.16667em;
210 margin-left: 0.22222em;
213 margin-left: 0.22222em;
[all …]
Dkatex.min.css1left:.16667em}.katex .mord+.mbin{margin-left:.22222em}.katex .mord+.mrel{margin-left:.27778em}.kat…
/device/generic/vulkan-cereal/fake-android-guest/ui/
DRect.h43 left = top = 0; in Rect()
48 left = l; in Rect()
54 left = lt.x; in Rect()
62 left = static_cast<int32_t>(floatRect.left + 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()
94 left = lt.x; in setLeftTop()
104 return Point(left, top); in leftTop()
113 return Point(left, bottom); in leftBottom()
[all …]
DFloatRect.h22 : left(_left), top(_top), right(_right), bottom(_bottom) {} in FloatRect()
23 float getWidth() const { return right - left; } in getWidth()
29 (left > other.left) ? left : other.left, in intersect()
35 float left = 0.0f; variable
41 return a.left == b.left && a.top == b.top && a.right == b.right && a.bottom == b.bottom;
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/tree_ops/
DVectorizeVectorScalarArithmetic.cpp87 TIntermTyped *left = node->getLeft(); in visitBinary() local
89 ASSERT(left); in visitBinary()
105 if (left->isScalar() && right->isVector()) in visitBinary()
110 TIntermTyped *leftVectorized = Vectorize(left, right->getType(), &originalNodeFate); in visitBinary()
111 queueReplacementWithParent(node, left, leftVectorized, originalNodeFate); in visitBinary()
117 else if (left->isVector() && right->isScalar()) in visitBinary()
120 TIntermTyped *rightVectorized = Vectorize(right, left->getType(), &originalNodeFate); in visitBinary()
139 TIntermTyped *left = argBinary->getLeft(); in replaceMathInsideConstructor() local
141 ASSERT(left->isScalar() && right->isScalar()); in replaceMathInsideConstructor()
143 TType leftVectorizedType = left->getType(); in replaceMathInsideConstructor()
[all …]
/device/google/cuttlefish/host/libs/audio_connector/
Dshm_layout.h112 VIRTIO_SND_CHMAP_FL, /* front left */
114 VIRTIO_SND_CHMAP_RL, /* rear left */
118 VIRTIO_SND_CHMAP_SL, /* side left */
121 VIRTIO_SND_CHMAP_FLC, /* front left center */
123 VIRTIO_SND_CHMAP_RLC, /* rear left center */
125 VIRTIO_SND_CHMAP_FLW, /* front left wide */
127 VIRTIO_SND_CHMAP_FLH, /* front left high */
131 VIRTIO_SND_CHMAP_TFL, /* top front left */
134 VIRTIO_SND_CHMAP_TRL, /* top rear left */
137 VIRTIO_SND_CHMAP_TFLC, /* top front left center */
[all …]
/device/generic/vulkan-cereal/include/glm/gtc/
Dmatrix_transform.hpp92 /// @param left
100 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
103 T left,
110 /// Creates a matrix for an orthographic parallel viewing volume, using left-handedness.
112 /// @param left
120 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
123 T left,
132 /// @param left
140 /// @see - glm::ortho(T const & left, T const & right, T const & bottom, T const & top)
143 T left,
[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/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.cpp93 int left, int top, int right, int bottom) { in rgb565_to_yv12() argument
111 for (int i = left; i <= right; ++i) { in rgb565_to_yv12()
133 int left, int top, int right, int bottom) { in rgb888_to_yv12() argument
167 for (int i = left; i <= right; ++i) { in rgb888_to_yv12()
201 int left, int top, int right, int bottom) { in rgb888_to_yuv420p() argument
219 for (int i = left; i <= right; ++i) { in rgb888_to_yuv420p()
238 int left, int top, int right, int bottom) { in yv12_to_rgb565() argument
256 for (int i = left; i <= right; ++i) { in yv12_to_rgb565()
275 rgb_ptr[i-left] = rgb1; in yv12_to_rgb565()
283 int left, int top, int right, int bottom) { in yv12_to_rgb888() argument
[all …]
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);
46 int width, int height, int top, int left,
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp175 rect.left = gl::clamp(area.x, 0L, static_cast<LONG>(desc.Width)); in readPixelsImpl()
199 packParams.area.x = rect.left; in readPixelsImpl()
201 packParams.area.width = rect.right - rect.left; in readPixelsImpl()
262 srcRect.left = sourceArea.x; in blitImpl()
268 dstRect.left = destArea.x; in blitImpl()
276 if (dstRect.left < scissor->x) in blitImpl()
278 srcRect.left += (scissor->x - dstRect.left); in blitImpl()
279 dstRect.left = scissor->x; in blitImpl()
299 if (dstRect.left < 0) in blitImpl()
301 srcRect.left += -dstRect.left; in blitImpl()
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/appendices/
DVK_KHR_maintenance2.txt26 intentionally left out or overlooked from the original Vulkan 1.0 release.
37 * Allow the application to select between an upper-left and lower-left
103 *RESOLVED*: Vulkan 1.0 originally inadvertently documented a lower-left
105 upper-left origin.
106 This extension adds a control to select between lower-left (for
107 compatibility with OpenGL) and upper-left, and we retroactively fix
108 unextended Vulkan to have a default of an upper-left origin.
/device/generic/vulkan-cereal/protocols/vulkan/config/
Dkhronos.css146 .left { float: left !important; }
150 .text-left { text-align: left !important; }
170 .center { margin-left: auto; margin-right: auto; }
220 ul, ol { margin-left: 1.5em; }
221 ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
224 ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font…
232 ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
244 blockquote { margin: 0 0 0.75em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #ddd; }
267 … tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222; text-align: left; }
295 .keyseq kbd:first-child { margin-left: 0; }
[all …]
Dmathtest.txt24 f = \max\left( {c \over {2^{b-1} - 1}}, -1.0 \right)
43 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} }
48 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} }
110 f = \max\left( {c \over {2^{b-1} - 1}}, -1.0 \right)
129 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} }
133 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} }
197 m = \sqrt{ \left({{\partial z_f} \over {\partial x_f}}\right)^2
198 + \left({{\partial z_f} \over {\partial y_f}}\right)^2}
205 m = \max\left( \left| {{\partial z_f} \over {\partial x_f}} \right|,
206 \left| {{\partial z_f} \over {\partial y_f}} \right| \right)
[all …]
/device/generic/goldfish-opengl/system/hwc2/
DLayer.cpp139 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in setDisplayFrame()
140 __FUNCTION__, mId, frame.left, frame.top, frame.right, in setDisplayFrame()
150 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getDisplayFrame()
151 __FUNCTION__, mId, frame.left, frame.top, frame.right, in getDisplayFrame()
180 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in setSourceCrop()
181 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in setSourceCrop()
190 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in getSourceCrop()
191 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in getSourceCrop()
198 crop.left = static_cast<int>(mSourceCrop.left); in getSourceCropInt()
203 "crop rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getSourceCropInt()
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/scripts/
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/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/stream-servers/OpenGLESDispatch/
Dgles1_only_dispatch_logging_wrappers.impl79 void glFrustum_dispatchLoggingWrapper(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top,…
80 …DISPATCH_DEBUG_LOG("glFrustum(left:%f, right:%f, bottom:%f, top:%f, zNear:%f, zFar:%f)", left, rig…
81 GLDispatch::glFrustum_underlying(left, right, bottom, top, zNear, zFar);
219 void glOrtho_dispatchLoggingWrapper(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, G…
220 …DISPATCH_DEBUG_LOG("glOrtho(left:%f, right:%f, bottom:%f, top:%f, zNear:%f, zFar:%f)", left, right…
221 GLDispatch::glOrtho_underlying(left, right, bottom, top, zNear, zFar);
314 void glFrustumf_dispatchLoggingWrapper(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GL…
315 …DISPATCH_DEBUG_LOG("glFrustumf(left:%f, right:%f, bottom:%f, top:%f, zNear:%f, zFar:%f)", left, ri…
316 GLDispatch::glFrustumf_underlying(left, right, bottom, top, zNear, zFar);
324 void glOrthof_dispatchLoggingWrapper(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfl…
[all …]
Dgles1_only_functions.h23 …X(void, glFrustum, (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, …
51 …X(void, glOrtho, (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GL…
70 …X(void, glFrustumf, (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfl…
72 …X(void, glOrthof, (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloa…
80 …X(void, glFrustumx, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfi…
98 …X(void, glOrthox, (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixe…
/device/generic/vulkan-cereal/third-party/angle/doc/img/
DStateChangeNotificationFlow.svg3left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG…
/device/generic/vulkan-cereal/third-party/googletest/googlemock/src/
Dgmock-matchers.cc66 // bipartite matching. Flow is considered to be from left to right.
67 // There is an implicit source node that is connected to all of the left
105 // left[l] == kUnused or right[left[l]] == l
106 // right[r] == kUnused or left[right[r]] == r
111 // . ||\--> left[0]=1 ---\ right[0]=-1 ----\ .
113 // . |\---> left[1]=-1 \--> right[1]=0 ---\| .
115 // . \----> left[2]=2 ------> right[2]=2 --\|| .
132 // Returns the edges of a maximal match, each in the form {left, right}.
136 // Searches the residual flow graph for a path from each left node to in Compute()
138 // to the graph. It's okay to search through the left nodes once. The in Compute()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/compiler/preprocessor/
Dpreprocessor.y98 %left TOK_OP_OR
99 %left TOK_OP_AND
100 %left '|'
101 %left '^'
102 %left '&'
103 %left TOK_OP_EQ TOK_OP_NE
104 %left '<' '>' TOK_OP_LE TOK_OP_GE
105 %left TOK_OP_LEFT TOK_OP_RIGHT
106 %left '+' '-'
107 %left '*' '/' '%'
[all …]
/device/generic/goldfish-opengl/system/hwc3/
DLayer.cpp165 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in setDisplayFrame()
166 __FUNCTION__, mId, frame.left, frame.top, frame.right, in setDisplayFrame()
176 " display frame rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getDisplayFrame()
177 __FUNCTION__, mId, frame.left, frame.top, frame.right, in getDisplayFrame()
205 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in setSourceCrop()
206 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in setSourceCrop()
215 "crop rect-left:%f rect-top:%f rect-right:%f rect-bot:%f", in getSourceCrop()
216 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in getSourceCrop()
223 crop.left = static_cast<int>(mSourceCrop.left); in getSourceCropInt()
228 "crop rect-left:%d rect-top:%d rect-right:%d rect-bot:%d", in getSourceCropInt()
[all …]
/device/google/cuttlefish/host/frontend/webrtc/client/
Dcontrols.css18 padding-left: 2px;
29 float: left;
37 float:left;
53 left: 0;
68 left: 1px;
/device/sample/apps/tv/SetupValidation/app/src/main/res/layout/
Dactivity_base_layout.xml20 android:layout_gravity="left|bottom"
64 android:layout_gravity="left"
65 android:gravity="left"
97 android:layout_gravity="left"
98 android:gravity="left"

12345678910>>...26