HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 276 - 300 of 5035) sorted by null

<<11121314151617181920>>

  /cts/apps/CameraITS/tests/scene5/
test_lens_shading_and_color_uniformity.py 93 left = int((0.5-spb_r)*w)
95 center_y = numpy.mean(img_y[top:bottom, left:right])
96 center_r_g = numpy.mean(r_g[top:bottom, left:right])
97 center_b_g = numpy.mean(b_g[top:bottom, left:right])
99 cv2.rectangle(img_legend_ls, (left, top), (right, bottom), GREEN,
102 [left+text_offset, bottom-text_offset],
105 cv2.rectangle(img_legend_ufmt, (left, top), (right, bottom), GREEN,
110 [left+text_offset, bottom-text_offset*2],
140 left = int((spb_ctx-spb_r)*w)
148 block_y = numpy.mean(img_y[top:bottom, left:right]
    [all...]
  /external/aac/libAACenc/src/
chaosmeasure.cpp 110 FIXP_DBL left,center; /* left, center tap of filter */ local
112 left = (FIXP_DBL)((LONG)paMDCTDataNM0[i]^((LONG)paMDCTDataNM0[i]>>(DFRACT_BITS-1)));
117 FIXP_DBL tmp = (left>>1)+(right>>1);
128 left = center;
  /external/avahi/man/
xmltoman.css 22 p { margin-left:1cm; margin-right:1cm; }
28 .option .optdesc { margin-left:2cm; }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 69 char left = str.charAt((index * 2) + off); local
72 if (left < 'a')
74 data[index] = (byte)((left - '0') << 4);
78 data[index] = (byte)((left - 'a' + 10) << 4);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
gesture_common.js 13 var bound = { left: client_rect.left,
23 bound.left += frame_bound.left;
37 if (rect.left < 0) {
38 rect.width += rect.left;
39 rect.left = 0;
53 var outsideWidth = (rect.left + rect.width) - visualViewportWidth;
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
common.css 30 border-left: 1px solid #3366CC;
36 text-align: left;
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
track.css 24 left: 2px;
30 left: 3px;
  /external/clang/include/clang/Basic/
TargetCXXABI.h 210 /// Are arguments to a call destroyed left to right in the callee?
343 friend bool operator==(const TargetCXXABI &left, const TargetCXXABI &right) {
344 return left.getKind() == right.getKind();
347 friend bool operator!=(const TargetCXXABI &left, const TargetCXXABI &right) {
348 return !(left == right);
  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 19 QUAD_EDGE left, right; member in struct:__anon7998
  /external/clang/test/CodeGenCXX/
stack-reuse-miscompile.cpp 13 S left; member in class:T
  /external/clang/www/
menu.css 7 float:left;
11 margin-left:29ex;
  /external/guava/guava/src/com/google/common/collect/
NullsFirstOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
NullsLastOrdering.java 34 @Override public int compare(@Nullable T left, @Nullable T right) {
35 if (left == right) {
38 if (left == null) {
44 return ordering.compare(left, right);
  /external/lzma/CPP/7zip/Common/
FilePathAutoRename.cpp 45 unsigned left = 1, right = (1 << 30); local
46 while (left != right)
48 unsigned mid = (left + right) / 2;
50 left = mid + 1;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
HasCompoundDrawablesMatcher.java 16 public HasCompoundDrawablesMatcher(int left, int top, int right, int bottom) {
17 expectedCompoundDrawables = new ShadowTextView.CompoundDrawables(left, top, right, bottom);
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) {
43 return new HasCompoundDrawablesMatcher(left, top, right, bottom);
  /external/skia/src/core/
SkBlitter_Sprite.cpp 13 void SkSpriteBlitter::setup(const SkPixmap& dst, int left, int top, const SkPaint& paint) {
15 fLeft = left;
44 const SkPixmap& source, int left, int top, SkTBlitterAllocator* allocator) {
48 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
78 blitter->setup(dst, left, top, paint);
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_channel.h 31 const float left,
video_render_ios_impl.mm 66 const float left,
76 stream_id, z_order, left, top, right, bottom);
89 float& left,
126 const float left,
130 return ptr_ios_render_->SetStreamCropping(streamId, left, top, right, bottom);
135 const float left,
151 const float left,
161 const float left,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_intra_prediction.h 56 u8 *above, u8 *left, u32 constrainedIntraPred);
58 u8 *above, u8 *left, u32 constrainedIntraPred);
61 u8 *above, u8 *left, u32 predMode, u32 constrainedIntraPred);
63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum);
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableRect.java 42 buffer.putInt(value.left);
50 int left = buffer.getInt(); local
55 int right = left + width;
58 return new Rect(left, top, right, bottom);
  /frameworks/base/core/java/android/text/style/
LineBackgroundSpan.java 26 int left, int right,
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
RectUtils.java 30 * The top-left of the transformed full rectangle will always be placed at (0, 0).
47 // Then translate so that the upper left corner of the rotated full rect is at (0,0).
49 matrix.setTranslate(-fullRectF.left, -fullRectF.top);
53 fullRect.set((int) fullRectF.left, (int) fullRectF.top, (int) fullRectF.right,
55 partialRect.set((int) partialRectF.left, (int) partialRectF.top, (int) partialRectF.right,
64 rect.set((int) rectF.left, (int) rectF.top, (int) rectF.right, (int) rectF.bottom);
  /frameworks/support/v7/cardview/base/android/support/v7/widget/
CardViewDelegate.java 31 void setShadowPadding(int left, int top, int right, int bottom);
  /hardware/qcom/camera/QCamera2/HAL/tsMakeuplib/include/
ts_makeup_data.h 33 long left; member in struct:__tag_tsrect
  /hardware/qcom/display/msm8960/libtilerenderer/
tilerenderer.h 32 void startTileRendering(OpenGLRenderer* renderer, int left, int top, int right, int bottom);

Completed in 3556 milliseconds

<<11121314151617181920>>