HomeSort by relevance Sort by last modified time
    Searched refs:top_left (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/clang/test/Modules/Inputs/
diamond_top.h 3 int top_left(char *c);
diamond_left.h 7 int top_left(char *c);
  /external/clang/test/FixIt/
typo.c 12 struct Point top_left, // expected-note{{'top_left' declared here}} member in struct:Rectangle
27 topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}}
28 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:3-[[@LINE-1]]:10}:"top_left"
35 r1.top_left.x = 0;
41 r2->top_left.y = 0;
  /external/chromium-trace/catapult/devil/devil/utils/
geometry.py 41 collections.namedtuple('Rectangle', ['top_left', 'bottom_right'])):
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
51 def __new__(cls, top_left, bottom_right):
52 if not isinstance(top_left, Point):
53 top_left = Point(*top_left)
56 return super(Rectangle, cls).__new__(cls, top_left, bottom_right)
60 return '[%s, %s]' % (self.top_left, self.bottom_right)
65 return 0.5 * (self.top_left + self.bottom_right)
  /external/libmojo/third_party/catapult/devil/devil/utils/
geometry.py 41 collections.namedtuple('Rectangle', ['top_left', 'bottom_right'])):
45 top_left: A pair of (left, top) coordinates. Might be given as a Point
51 def __new__(cls, top_left, bottom_right):
52 if not isinstance(top_left, Point):
53 top_left = Point(*top_left)
56 return super(Rectangle, cls).__new__(cls, top_left, bottom_right)
60 return '[%s, %s]' % (self.top_left, self.bottom_right)
65 return 0.5 * (self.top_left + self.bottom_right)
  /external/clang/test/Modules/
diamond-pch.c 20 top_left(&c);
diamond.c 21 top_left(&c);
  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred4_dspr2.c 89 int32_t top_left; local
100 "lbu %[top_left], -1(%[above]) \n\t"
110 "replv.ph %[top_left], %[top_left] \n\t"
113 "subu.ph %[resl], %[resl], %[top_left] \n\t"
116 "subu.ph %[resr], %[resr], %[top_left] \n\t"
135 "subu.ph %[resl], %[resl], %[top_left] \n\t"
138 "subu.ph %[resr], %[resr], %[top_left] \n\t"
162 "subu.ph %[resl], %[resl], %[top_left] \n\t"
165 "subu.ph %[resr], %[resr], %[top_left] \n\t
    [all...]
intrapred8_dspr2.c 157 int32_t top_left; local
162 "ulw %[top_left], 4(%[above]) \n\t"
168 "preceu.ph.qbl %[abovel_1], %[top_left] \n\t"
169 "preceu.ph.qbr %[abover_1], %[top_left] \n\t"
171 "lbu %[top_left], -1(%[above]) \n\t"
174 "replv.ph %[top_left], %[top_left] \n\t"
177 "subu.ph %[reshw], %[reshw], %[top_left] \n\t"
184 "subu.ph %[reshw], %[reshw], %[top_left] \n\t"
201 "subu.ph %[reshw], %[reshw], %[top_left] \n\t
    [all...]
  /external/libvpx/libvpx/vp8/common/
reconintra4x4.h 37 unsigned char top_left);
reconintra4x4.c 42 unsigned char top_left) {
62 Above[-1] = top_left;
  /external/webrtc/webrtc/modules/desktop_capture/
cropped_desktop_frame.cc 40 frame->GetFrameDataAtPos(rect.top_left()),
desktop_and_cursor_composer.cc 86 DesktopVector target_origin = target_rect.top_left();
93 restore_position_ = target_rect.top_left();
95 restore_frame_->CopyPixelsFrom(*this, target_rect.top_left(),
102 DesktopVector origin_shift = target_rect.top_left().subtract(target_origin);
mouse_cursor_monitor_win.cc 120 position = position.subtract(cropped_rect.top_left());
127 position = position.subtract(rect.top_left());
mouse_cursor_monitor_mac.mm 180 position = position.subtract(window_rect.top_left());
211 position = position.subtract(config->bounds.top_left());
218 position.subtract(configuration.bounds.top_left());
  /external/clang/test/Sema/
designated-initializers.c 57 struct point top_left; member in struct:rect
61 struct rect window = { .top_left.x = 1.0 };
64 [2].top_left = { 1.0, 2.0 },
67 [3] = { .top_left = { 1.1, 2.2 }, .bottom_right = { .y = 1.1 } }
73 [2].top_left = { { .x = 1.1 } }, // expected-error{{designator in initializer for scalar type}}
74 [1].top_left = { .x = 1.1 }
82 [5].windows[3].top_left.x = { 7.0 } // expected-warning{{braces around scalar initializer}}
90 .window = { .top_left = { 1.0, 2.0 } },
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
PictureParameterSet.java 75 public int[] top_left; field in class:PictureParameterSet
101 pps.top_left = new int[pps.num_slice_groups_minus1 + 1];
110 pps.top_left[iGroup] = reader.readUE("PPS: top_left");
200 int[] top_left = new int[1]; local
209 writer.writeUE(top_left[iGroup], "PPS: ");
311 result = prime * result + Arrays.hashCode(top_left);
369 if (!Arrays.equals(top_left, other.top_left))
398 ",\n top_left=" + top_left
    [all...]
  /cts/apps/CameraITS/pymodules/its/
cv2image.py 156 top_left = (int(top_left_scaled[0]/scale),
160 wnorm = float((bottom_right[0]) - top_left[0]) / scene.shape[1]
161 hnorm = float((bottom_right[1]) - top_left[1]) / scene.shape[0]
162 xnorm = float(top_left[0]) / scene.shape[1]
163 ynorm = float(top_left[1]) / scene.shape[0]
  /cts/apps/CameraITS/tests/scene2/
test_num_faces.py 67 top_left = (int(round(rect['left']*W/aw)),
71 cv2.rectangle(img, top_left, bot_rght, (0, 1, 0), 2)
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 53 unsigned char top_left = Above[-1]; local
56 16, top_left);
  /packages/services/BuiltInPrintService/jni/plugins/genPCLm/inc/
common_defines.h 83 top_left, enumerator in enum:__anon47911
  /system/core/libsystem/include/system/
graphics.h 148 uint8_t *top_left; member in struct:android_flex_plane
  /external/webp/src/dsp/
filters.c 212 uint8_t top = prev[0], top_left = top, left = top; local
216 left = in[i] + GradientPredictor(left, top, top_left);
217 top_left = top;
  /hardware/interfaces/graphics/mapper/2.0/default/
Gralloc1Mapper.cpp 160 outLayout->y = y.top_left;
161 outLayout->cb = cb.top_left;
162 outLayout->cr = cr.top_left;
  /external/gemmlowp/internal/
output_sse.h 214 RegBlockInt32<4, 4> top_left; local
215 top_left.buf.reg[0] = src.buf.reg[0];
216 top_left.buf.reg[1] = src.buf.reg[2];
217 top_left.buf.reg[2] = src.buf.reg[4];
218 top_left.buf.reg[3] = src.buf.reg[6];
219 const auto transpose_top_left = Transpose(top_left);

Completed in 406 milliseconds

1 2 3