Searched defs:left (Results 201 - 225 of 1217) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/examples/input/
H A Dpointer_event_input.cc28 int left, int top, int width, int height,
33 for (int x = std::max(0, left);
34 x < std::min(image->size().width() - 1, left + width);
27 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, key),
167 node.left = this.root_;
172 node.left = this.root_.left;
173 this.root_.left = null;
196 if (!this.root_.left) {
200 this.root_ = this.root_.left;
239 // the left subtree.
242 } else if (this.root_.left) {
243 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js52 left: GeneratePayloadTree(depth - 1, tag),
168 node.left = this.root_;
173 node.left = this.root_.left;
174 this.root_.left = null;
197 if (!this.root_.left) {
201 this.root_ = this.root_.left;
255 // the left subtree.
258 } else if (this.root_.left) {
259 return this.findMax(this.root_.left);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderVTTCue.cpp153 LayoutUnit left = x(); local
155 LayoutUnit right = left + firstLineBox->width();
166 // 12. Vertical: If step is negative and the left edge of the first line
167 // box in boxes is now to the left of the left edge of the video's
172 if (m_cue->getWritingDirection() != VTTCue::Horizontal && ((step < 0 && left < 0) || (step > 0 && right > parentWidth)))
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderData.h115 const BorderValue& left() const { return m_left; } function in class:blink::BorderData
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODIntervalTree.h163 // Because the intervals are sorted by left endpoint, inorder
166 // See whether we need to traverse the left subtree.
167 IntervalNode* left = node->left();
168 if (left
171 && !(left->data().maxHigh() < adapter.lowValue()))
172 searchForOverlapsFrom<AdapterType>(left, adapter);
189 IntervalNode* left = node->left(); variable
190 if (left) {
213 IntervalNode* left = node->left(); local
[all...]
H A DPODIntervalTreeTest.cpp228 int left = nextRandom(maximumValue); local
230 PODInterval<int> interval(left, left + length);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntRect.cpp65 int left = std::max(x(), other.x()); local
71 if (left >= right || top >= bottom) {
72 left = 0;
78 m_location.setX(left);
80 m_size.setWidth(right - left);
94 int left = std::min(x(), other.x()); local
99 m_location.setX(left);
101 m_size.setWidth(right - left);
115 int left = std::min(x(), other.x()); local
120 m_location.setX(left);
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBuffer.h75 static inline int clampValue(int x, int left, int right);
82 int ArrayBuffer::clampValue(int x, int left, int right) argument
84 ASSERT(left <= right);
85 if (x < left)
86 x = left;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DRewriteElseBlocks.cpp41 TIntermBinary *MakeNewBinary(TOperator op, TIntermTyped *left, TIntermTyped *right, const TType &resultType) argument
44 binary->setLeft(left);
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftcache.h770 /* If `anode' is NULL, the cache node is left unchanged, which means */
823 /* If `anode' is NULL, the cache node is left unchanged, which means */
865 /* left :: The horizontal distance from the pen position to the */
866 /* left bitmap border (a.k.a. `left side bearing', or */
891 FT_Char left; member in struct:FTC_SBitRec_
981 /* If `anode' is NULL, the cache node is left unchanged, which means */
1036 /* If `anode' is NULL, the cache node is left unchanged, which means */
H A Dftglyph.h142 /* left :: The left-side bearing, i.e., the horizontal distance */
143 /* from the current pen position to the left border of the */
163 FT_Int left; member in struct:FT_BitmapGlyphRec_
/external/chromium_org/third_party/icu/source/common/
H A Duarrsort.c38 uprv_uint16Comparator(const void *context, const void *left, const void *right) { argument
39 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
43 uprv_int32Comparator(const void *context, const void *left, const void *right) { argument
44 return *(const int32_t *)left - *(const int32_t *)right;
48 uprv_uint32Comparator(const void *context, const void *left, const void *right) { argument
49 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
171 int32_t left, right; local
173 /* start and left are inclusive, limit and right are exclusive */
180 left=start;
187 while(/* array[left]<
[all...]
H A Dunorm.cpp225 _concatenate(const UChar *left, int32_t leftLength, argument
234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
248 /* allow left==dest */
250 if(left==dest) {
254 destString.append(left, leftLength);
261 unorm_concatenate(const UChar *left, int32_t leftLength, argument
273 return _concatenate(left, leftLength, right, rightLength,
276 return _concatenate(left, leftLength, right, rightLength,
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dsorttest.c126 linesComparator(const void *context, const void *left, const void *right) { argument
128 const Line *leftLine=(const Line *)left;
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcpassthroughrender.cc95 const float left, const float top,
92 AddIncomingRenderStream( const uint32_t stream_id, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dfindnearmv.c37 const MODE_INFO *left = here - 1; local
61 /* Process left */
62 if (left->mbmi.ref_frame != INTRA_FRAME)
64 if (left->mbmi.mv.as_int)
68 this_mv.as_int = left->mbmi.mv.as_int;
69 mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv, ref_frame_sign_bias);
83 /* Process above left */
108 /* See if above-left MV can be merged with NEAREST */
114 + (left->mbmi.mode == SPLITMV)) * 2
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dmr_dissim.c106 const MODE_INFO *left = here - 1; local
120 GET_MV_SIGN(left)
149 GET_MV(left)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_intrapred16_dspr2.c18 const uint8_t *above, const uint8_t *left) {
23 "lb %[tmp1], (%[left]) \n\t"
24 "lb %[tmp2], 1(%[left]) \n\t"
25 "lb %[tmp3], 2(%[left]) \n\t"
26 "lb %[tmp4], 3(%[left]) \n\t"
27 "lb %[tmp5], 4(%[left]) \n\t"
28 "lb %[tmp6], 5(%[left]) \n\t"
29 "lb %[tmp7], 6(%[left]) \n\t"
30 "lb %[tmp8], 7(%[left]) \n\t"
31 "lb %[tmp9], 8(%[left]) \
17 vp9_h_predictor_16x16_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
164 vp9_dc_predictor_16x16_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
H A Dvp9_intrapred4_dspr2.c18 const uint8_t *above, const uint8_t *left) {
22 "lb %[tmp1], (%[left]) \n\t"
23 "lb %[tmp2], 1(%[left]) \n\t"
24 "lb %[tmp3], 2(%[left]) \n\t"
25 "lb %[tmp4], 3(%[left]) \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
45 const uint8_t *above, const uint8_t *left) {
52 "lw %[left_c], (%[left]) \n\t"
81 : [above] "r" (above), [left] "
17 vp9_h_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
44 vp9_dc_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
86 vp9_tm_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_rescale.c44 // Adjust top-left corner to chroma sample position.
46 int* const left, int* const top) {
48 *left &= ~1;
53 // Adjust top-left corner and verify that the sub-rectangle is valid.
55 int* const left, int* const top,
57 SnapTopLeftPosition(pic, left, top);
58 if ((*left) < 0 || (*top) < 0) return 0;
60 if ((*left) + width > pic->width) return 0;
100 int left, int top, int width, int height,
105 if (!AdjustAndCheckRectangle(src, &left,
45 SnapTopLeftPosition(const WebPPicture* const pic, int* const left, int* const top) argument
54 AdjustAndCheckRectangle(const WebPPicture* const pic, int* const left, int* const top, int width, int height) argument
99 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) argument
132 WebPPictureCrop(WebPPicture* pic, int left, int top, int width, int height) argument
[all...]
H A Dtree.c333 int left = preds[-1]; local
335 const uint8_t* const probas = kBModesProba[top_pred[x]][left];
336 left = PutI4Mode(bw, preds[x], probas);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_string.h198 size_t left; member in struct:util_strbuf
208 sbuf->left = size;
215 if(sbuf->left > 1) {
219 written = util_vsnprintf(sbuf->ptr, sbuf->left, format, ap);
222 sbuf->left -= written;
/external/chromium_org/third_party/skia/src/core/
H A DSkScan_AntiPath.cpp86 const int left = clip.getBounds().fLeft; local
89 fLeft = left;
90 fSuperLeft = left << SHIFT;
91 fWidth = right - left;
333 // There is always a left column, a middle, and a right column.
599 when left-shifted by shift?

Completed in 1075 milliseconds

1234567891011>>