/device/generic/goldfish-opengl/system/hwc3/ |
D | Layer.cpp | 157 __FUNCTION__, mId, frame.left, frame.top, frame.right, frame.bottom); in setDisplayFrame() 167 __FUNCTION__, mId, frame.left, frame.top, frame.right, frame.bottom); in getDisplayFrame() 194 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in setSourceCrop() 203 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in getSourceCrop() 210 crop.left = static_cast<int>(mSourceCrop.left); in getSourceCropInt() 215 __FUNCTION__, mId, crop.left, crop.top, crop.right, crop.bottom); in getSourceCropInt()
|
D | GuestFrameComposer.cpp | 49 int fromW = crop.right - crop.left; in LayerNeedsScaling() 51 int toW = frame.right - frame.left; in LayerNeedsScaling() 419 uint32_t bufferCropX = static_cast<uint32_t>(bufferCrop.left); in GetBufferSpec() 421 uint32_t bufferCropWidth = static_cast<uint32_t>(bufferCrop.right - bufferCrop.left); in GetBufferSpec() 930 static_cast<uint32_t>(srcLayerDisplayFrame.left), in composeLayerInto() 932 static_cast<uint32_t>(srcLayerDisplayFrame.right - srcLayerDisplayFrame.left), in composeLayerInto() 952 static_cast<uint32_t>(srcLayerDisplayFrame.right - srcLayerDisplayFrame.left); in composeLayerInto()
|
D | HostFrameComposer.cpp | 43 out.left = rect.left; in AsHwcRect() 52 out.left = rect.left; in AsHwcFrect() 602 l->cbHandle, l->blendMode, l->alpha, l->displayFrame.left, l->displayFrame.top, in presentDisplay()
|
/device/google/atv/TvSampleLeanbackLauncher/src/main/java/com/example/sampleleanbacklauncher/notifications/ |
D | NotificationPanelItemView.java | 173 int left, right; in onLayout() local 178 left = right - mProgressDiameter; in onLayout() 180 left = mProgressPaddingStart; in onLayout() 181 right = left + mProgressDiameter; in onLayout() 184 mProgressBounds.set(left, top, right, bottom); in onLayout()
|
/device/google/sunfish/json-c/ |
D | Doxyfile | 31 # where doxygen was started. If left blank the current directory will be used. 84 # as the annotated text. Otherwise, the brief description is used as-is. If left 112 # only done if one of the specified strings matches the left-hand part of 114 # If left blank the directory from which doxygen is run is used as the 122 # If left blank only the name of the header file containing the class 375 # by doxygen. Possible values are YES and NO. If left blank NO is used. 380 # generated by doxygen. Possible values are YES and NO. If left blank 406 # and error messages should be written. If left blank the output is written 424 # and *.h) to filter out the source-files in the directories. If left 433 # If left blank NO is used. [all …]
|
/device/google/coral/json-c/ |
D | Doxyfile | 31 # where doxygen was started. If left blank the current directory will be used. 84 # as the annotated text. Otherwise, the brief description is used as-is. If left 112 # only done if one of the specified strings matches the left-hand part of 114 # If left blank the directory from which doxygen is run is used as the 122 # If left blank only the name of the header file containing the class 375 # by doxygen. Possible values are YES and NO. If left blank NO is used. 380 # generated by doxygen. Possible values are YES and NO. If left blank 406 # and error messages should be written. If left blank the output is written 424 # and *.h) to filter out the source-files in the directories. If left 433 # If left blank NO is used. [all …]
|
/device/google/redbull/json-c/ |
D | Doxyfile | 31 # where doxygen was started. If left blank the current directory will be used. 84 # as the annotated text. Otherwise, the brief description is used as-is. If left 112 # only done if one of the specified strings matches the left-hand part of 114 # If left blank the directory from which doxygen is run is used as the 122 # If left blank only the name of the header file containing the class 375 # by doxygen. Possible values are YES and NO. If left blank NO is used. 380 # generated by doxygen. Possible values are YES and NO. If left blank 406 # and error messages should be written. If left blank the output is written 424 # and *.h) to filter out the source-files in the directories. If left 433 # If left blank NO is used. [all …]
|
/device/generic/goldfish/fingerprint/ |
D | session.cpp | 372 const int left = int(State::ENROLLING_END) - int(mState); in onSensorEventOn() local 373 if (left > 0) { in onSensorEventOn() 375 enrollmentId, left); in onSensorEventOn() 376 mSessionCb->onEnrollmentProgress(enrollmentId, left); in onSensorEventOn() 380 enrollmentId, left); in onSensorEventOn() 381 mSessionCb->onEnrollmentProgress(enrollmentId, left); in onSensorEventOn()
|
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | Gralloc1.cpp | 69 if (rect->width < 0 || rect->height < 0 || rect->left < 0 || rect->top < 0 || in gralloc1_lock() 70 (uint32_t)rect->width + (uint32_t)rect->left > res->args.width || in gralloc1_lock() 88 *outData = (char*)res->linear + rect->top * stride + rect->left * bpp; in gralloc1_lock()
|
/device/google/cuttlefish/host/frontend/webrtc_operator/assets/ |
D | style.css | 36 margin-left: 10px; 55 margin-left: 10px; 98 margin-left: 5px; 203 left: 0px;
|
/device/generic/goldfish/audio/ |
D | stream_out.cpp | 409 Return<Result> StreamOut::setVolume(float left, float right) { in setVolume() argument 410 if (isnan(left) || left < 0.0f || left > 1.0f in setVolume() 416 mStreamVolume = (left + right) / 2.0f; in setVolume()
|
/device/google/atv/audio_proxy/service/ |
D | StreamOutImpl.cpp | 239 Return<Result> StreamOutImpl::setVolume(float left, float right) { in setVolume() argument 240 if (isnan(left) || left < 0.f || left > 1.f || isnan(right) || right < 0.f || in setVolume() 244 return mStream->setVolume(left, right) ? Result::OK : Result::INVALID_STATE; in setVolume()
|
D | RemoteBusOutputStream.cpp | 67 bool RemoteBusOutputStream::setVolume(float left, float right) { in setVolume() argument 68 return mStream->setVolume(left, right).isOk(); in setVolume()
|
/device/generic/goldfish-opengl/system/hals/ |
D | mapper3.cpp | 262 cb->lockedLeft = accessRegion.left; in setLocked() 463 accessRegion.left, in lockHostImpl() 465 accessRegion.left + accessRegion.width - 1, in lockHostImpl() 471 accessRegion.left, in lockHostImpl() 473 accessRegion.left + accessRegion.width - 1, in lockHostImpl()
|
/device/generic/goldfish-opengl/system/gralloc/ |
D | gralloc_old.cpp | 506 int left = doLocked ? cb->lockedLeft : 0; in updateHostColorBuffer() local 526 width, height, top, left, bpp); in updateHostColorBuffer() 556 left, top, width, height, in updateHostColorBuffer() 567 width, height, left, top, in updateHostColorBuffer() 568 left + width - 1, top + height - 1); in updateHostColorBuffer() 575 width, height, left, top, in updateHostColorBuffer() 576 left + width - 1, top + height - 1); in updateHostColorBuffer() 581 left, top, width, height, in updateHostColorBuffer()
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/ |
D | gles1.in | 9 GL_ENTRY(void, glFrustumf, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear,… 27 GL_ENTRY(void, glOrthof, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, G… 76 GL_ENTRY(void, glFrustumx, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear,… 112 GL_ENTRY(void, glOrthox, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, G… 192 GL_ENTRY(void, glFrustumxOES, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNe… 211 GL_ENTRY(void, glOrthoxOES, GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear… 248 GL_ENTRY(void, glFrustumfOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNe… 249 GL_ENTRY(void, glOrthofOES, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear…
|
/device/google/cuttlefish/host/frontend/webrtc/html_client/js/ |
D | controls.js | 255 modalDiv.style.left = modalButton.offsetWidth + 30; 295 modalOffsets.mouseDownOffsetX = parseInt(modalDiv.style.left) - evt.clientX; 303 modalDiv.style.left = evt.clientX + offsets.mouseDownOffsetX;
|
/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | gles1_core.entries | 16 void glFrustumf(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zF… 34 void glOrthof(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar… 84 void glFrustumx(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zF… 120 void glOrthox(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar…
|
/device/google/atv/audio_proxy/ |
D | AudioProxyStreamOut.cpp | 53 void AudioProxyStreamOut::setVolume(float left, float right) { in setVolume() argument 54 mStream->set_volume(mStream, left, right); in setVolume()
|
/device/google/coral-kernel/sm8150/original-kernel-headers/media/ |
D | msm_vidc_utils.h | 63 unsigned int left; member 80 unsigned int left; member
|
/device/google/sunfish-kernel/sm7150/original-kernel-headers/media/ |
D | msm_vidc_utils.h | 63 unsigned int left; member 80 unsigned int left; member
|
/device/google/sunfish-kernel/sm7150/kernel-headers/media/ |
D | msm_vidc_utils.h | 70 unsigned int left; member 86 unsigned int left; member
|
/device/google/coral-kernel/sm8150/kernel-headers/media/ |
D | msm_vidc_utils.h | 70 unsigned int left; member 86 unsigned int left; member
|
/device/generic/goldfish/camera/ |
D | abc3d.cpp | 426 const double left, const double right, in frustum() argument 429 const double invWidth = 1.0 / (right - left); in frustum() 436 m44[2] = (right + left) * invWidth; in frustum()
|
/device/sample/skins/WVGAMedDpi/ |
D | layout | 27 soft-left { 52 dpad-left {
|