Searched refs:top_left (Results 1 - 25 of 52) sorted by relevance

123

/external/clang/test/Modules/Inputs/
H A Ddiamond_top.h3 int top_left(char *c);
H A Ddiamond_left.h7 int top_left(char *c);
/external/clang/test/FixIt/
H A Dtypo.c12 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/
H A Dgeometry.py41 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/
H A Dgeometry.py41 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/
H A Ddiamond-pch.c20 top_left(&c);
H A Ddiamond.c21 top_left(&c);
/external/libvpx/libvpx/vpx_dsp/mips/
H A Dintrapred4_dspr2.c89 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] \
[all...]
H A Dintrapred8_dspr2.c157 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] \
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconintra4x4.h37 unsigned char top_left);
H A Dreconintra4x4.c42 unsigned char top_left) {
72 Above[-1] = top_left;
39 vp8_intra4x4_predict(unsigned char *above, unsigned char *yleft, int left_stride, B_PREDICTION_MODE b_mode, unsigned char *dst, int dst_stride, unsigned char top_left) argument
/external/webrtc/webrtc/modules/desktop_capture/
H A Dcropped_desktop_frame.cc40 frame->GetFrameDataAtPos(rect.top_left()),
H A Ddesktop_and_cursor_composer.cc86 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);
H A Dmouse_cursor_monitor_win.cc120 position = position.subtract(cropped_rect.top_left());
127 position = position.subtract(rect.top_left());
H A Dmouse_cursor_monitor_mac.mm180 position = position.subtract(window_rect.top_left());
211 position = position.subtract(config->bounds.top_left());
218 position.subtract(configuration.bounds.top_left());
H A Ddesktop_frame.cc35 uint8_t* dest = GetFrameDataAtPos(dest_rect.top_left());
/external/clang/test/Sema/
H A Ddesignated-initializers.c57 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/
H A DPictureParameterSet.java75 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];
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
[all...]
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dintegral_image.h124 const uint32_t top_left = (*this)[y1 - 1][x1 - 1]; local
126 sum = everything - left - top + top_left;
128 everything, left, top, top_left, sum, x1, y1, x2, y2);
/external/tensorflow/tensorflow/core/kernels/
H A Dcrop_and_resize_op_gpu.cu.cc91 const float top_left(static_cast<float>(
111 const float top = top_left + (top_right - top_left) * x_lerp;
261 const float top_left(static_cast<float>(
283 float image_grad_y = (1 - x_lerp) * (bottom_left - top_left) +
285 float image_grad_x = (1 - y_lerp) * (top_right - top_left) +
H A Dresize_bilinear_op_gpu.cu.cc63 const float top_left(
80 const float top = top_left + (top_right - top_left) * x_lerp;
H A Dresize_bilinear_op.cc94 inline float compute_lerp(const float top_left, const float top_right, argument
97 const float top = top_left + (top_right - top_left) * x_lerp;
182 const float top_left(ys_input_lower_ptr[xs_lower + c]);
187 compute_lerp(top_left, top_right, bottom_left, bottom_right,
293 // resized(b, y, x, c) = top_left * (1 - y) * (1 - x)
/external/libvpx/libvpx/vp8/encoder/
H A Dencodeintra.c53 unsigned char top_left = Above[-1]; local
56 16, top_left);
/external/webp/src/dsp/
H A Dfilters.c219 uint8_t top = prev[0], top_left = top, left = top; local
223 left = in[i] + GradientPredictor_C(left, top, top_left);
224 top_left = top;
H A Dfilters_mips_dsp_r2.c367 uint8_t top = prev[0], top_left = top, left = top; local
371 left = in[i] + GradientPredictor_MIPSdspR2(left, top, top_left);
372 top_left = top;

Completed in 539 milliseconds

123