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

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/crypto/
random.c 158 size_t left; local
169 left = len;
170 while (left) {
176 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
179 left -= siz;
185 left = len;
186 while (left) {
196 siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
BlackFrame.java 41 final int left; field in class:BlackFrame.BlackSurface
48 left = l;
76 mTmpMatrix.setTranslate(left, top);
85 Slog.i(TAG_WM, "Black Surface @ (" + left + "," + top + "): ("
116 pw.print(" left="); pw.print(bs.left);
132 outer.left, outer.top, inner.right, inner.top, layerStack);
134 if (outer.left < inner.left) {
136 outer.left, inner.top, inner.left, outer.bottom, layerStack)
    [all...]
  /bootable/recovery/edify/
expr.cpp 196 char* left = Evaluate(state, argv[0]); local
197 if (left == NULL) return NULL;
198 if (BooleanString(left) == true) {
199 free(left);
202 return StringValue(left);
208 char* left = Evaluate(state, argv[0]); local
209 if (left == NULL) return NULL;
210 if (BooleanString(left) == false) {
211 free(left);
214 return StringValue(left);
244 char* left = Evaluate(state, argv[0]); local
259 char* left = Evaluate(state, argv[0]); local
274 Value* left = EvaluateValue(state, argv[0]); local
287 char* left; local
    [all...]
  /bootable/recovery/mtdutils/
flash_image.c 131 int left = block_size - headerlen; local
132 while (left < 0) left += block_size;
133 while (left > 0) {
134 len = TEMP_FAILURE_RETRY(read(fd, buf, left > (int)sizeof(buf) ? (int)sizeof(buf) : left));
138 left -= len;
  /external/shflags/doc/
rst2html.css 94 margin-left: 2em ;
109 margin-left: 1.5em }
112 margin-left: 1em ;
154 img.align-left {
155 clear: left }
180 margin-left: 50% }
217 margin-left: 2em ;
246 border-left: solid 1px gray;
247 margin-left: 1px }
259 border-left: solid 1px black
    [all...]
  /external/webp/src/dsp/
lossless.c 116 static uint32_t Predictor0(uint32_t left, const uint32_t* const top) {
118 (void)left;
121 static uint32_t Predictor1(uint32_t left, const uint32_t* const top) {
123 return left;
125 static uint32_t Predictor2(uint32_t left, const uint32_t* const top) {
126 (void)left;
129 static uint32_t Predictor3(uint32_t left, const uint32_t* const top) {
130 (void)left;
133 static uint32_t Predictor4(uint32_t left, const uint32_t* const top) {
134 (void)left;
    [all...]
  /external/webrtc/webrtc/modules/video_render/linux/
video_render_linux_impl.cc 83 const float left,
96 _ptrX11Render->CreateX11RenderChannel(streamId, zOrder, left,
133 float& left,
145 left, top, right,
203 const float /*left*/,
223 const float left,
239 const float left, const float top,
251 const float left,
  /external/wpa_supplicant_8/src/drivers/
netlink.c 40 int left; local
48 left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT,
50 if (left < 0) {
58 while (NLMSG_OK(h, left)) {
70 h = NLMSG_NEXT(h, left);
73 if (left > 0) {
75 "netlink message", left);
  /external/wpa_supplicant_8/src/tls/
tlsv1_client_read.c 82 size_t left, len, i; local
95 left = *in_len;
97 if (left < 4)
113 left -= 4;
115 if (len > left)
224 "TLSv1: Invalid ServerHello extension length: %u (left: %u)",
350 size_t left, len, list_len, cert_len, idx; local
364 left = *in_len;
366 if (left < 4) {
368 "(len=%lu)", (unsigned long) left);
822 size_t left, len; local
1020 size_t left, len; local
1117 size_t left, len; local
1181 size_t left, len; local
1248 size_t left; local
1318 size_t left, len, hlen; local
1452 size_t left; local
    [all...]
  /external/libvpx/config/x86_64/
vpx_dsp_rtcd.h 63 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
66 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
69 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
72 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
75 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
78 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
81 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
84 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
87 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
88 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    [all...]
  /external/libvpx/config/x86/
vpx_dsp_rtcd.h 63 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
66 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
69 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
72 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
75 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
78 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
81 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
84 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
87 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
88 void vpx_d153_predictor_16x16_ssse3(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    [all...]
  /external/elfutils/libebl/
eblgstrtab.c 55 struct Ebl_GStrent *left; member in struct:Ebl_GStrent
75 size_t left; member in struct:Ebl_GStrtab
131 st->left = len - offsetof (struct memoryblock, memory);
164 if (st->left < align + sizeof (struct Ebl_GStrent) + len * st->width)
176 newstr->left = NULL;
185 st->left -= align + sizeof (struct Ebl_GStrent) + len * st->width;
213 return searchstring (&(*sep)->left, newstr);
263 st->left += (st->backp - (char *) newstr) * st->width;
272 st->left += newstr->len;
284 newstr->left = (*sep)->left
    [all...]
eblwstrtab.c 57 struct Ebl_WStrent *left; member in struct:Ebl_WStrent
76 size_t left; member in struct:Ebl_WStrtab
128 st->left = len - offsetof (struct memoryblock, memory);
164 if (st->left < align + sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t))
178 newstr->left = NULL;
185 st->left -= align + sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t);
213 return searchstring (&(*sep)->left, newstr);
257 st->left += st->backp - (char *) newstr;
266 st->left += newstr->len;
278 newstr->left = (*sep)->left
    [all...]
  /external/skia/src/pathops/
SkIntersections.h 56 int conicHorizontal(const SkPoint a[3], SkScalar weight, SkScalar left, SkScalar right,
61 return horizontal(conic, left, right, y, flipped);
81 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y,
86 return horizontal(cubic, left, right, y, flipped);
122 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y,
127 return horizontal(line, left, right, y, flipped);
158 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y,
163 return horizontal(quad, left, right, y, flipped);
234 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
235 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped)
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 124 * bit buffer, using shift left.
139 /* drop need bits and update buffer, always zero to seven bits left */
271 int left; /* bits left in next or left to process */ local
275 left = s->bitcnt;
280 while (left--) {
295 left = (MAXBITS+1) - len;
296 if (left == 0)
301 if (left > 8
344 int left; \/* number of possible codes left of current length *\/ local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
LaunchingTaskPositioner.java 96 mDefaultFreeformStartX = mAvailableRect.left + width / MARGIN_SIZE_DENOMINATOR;
107 * we mean that two tasks have left-top corner very close to each other, so one might get
173 mTmpProposal.set(mAvailableRect.left, mAvailableRect.bottom - height,
174 mAvailableRect.left + width, mAvailableRect.bottom);
187 mTmpProposal.set(mAvailableRect.left, mAvailableRect.top,
188 mAvailableRect.left + width, mAvailableRect.top + height);
223 proposal.set(mAvailableRect.left, mAvailableRect.top,
224 mAvailableRect.left + proposal.width(),
228 if (restarted && (proposal.left > mDefaultFreeformStartX
243 return start.left < mAvailableRect.left
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 92 path.addCircle(mDrawRect.left + (width / 2),
115 int x = mDrawRect.left
124 int left = mDrawRect.left + 1; local
138 int xMiddle = mDrawRect.left
139 + ((mDrawRect.right - mDrawRect.left) / 2);
143 mResizeDrawableWidth.setBounds(left - widthWidth,
145 left + widthWidth,
215 boolean horizCheck = (x >= r.left - hysteresis)
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 71 * Info 701: Shift left of signed quantity (int)
134 u32 left; member in struct:__anon28346
137 enum { TOP = 0, LEFT = 1, INNER = 2 };
232 Function to determine if there is a slice boundary on the left side
304 /* filterLeftMbEdgeFlag, left mb is MB_A */
389 Function to calculate boundary strength value bs for left- or
486 Function to calculate boundary strength value bs for left-
558 filtered macroblock, macroblock above and macroblock on the left of
563 mb pointer to macroblock data structure of the top-left
    [all...]
  /external/libvpx/config/mips32-dspr2/
vpx_dsp_rtcd.h 57 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
60 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
63 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
66 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
69 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
72 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
75 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
78 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
81 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
84 void vpx_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
    [all...]
  /docs/source.android.com/src/compatibility/5.1/
android-cdd.css 81 text-align: left;
88 text-align: left;
107 text-align: left;
123 text-align: left;
130 text-align: left;
138 text-align: left;
146 text-align: left;
155 text-align: left;
168 text-align: left;
242 margin-left: -10pt
    [all...]
  /docs/source.android.com/src/compatibility/source/
android-cdd.css 81 text-align: left;
88 text-align: left;
107 text-align: left;
123 text-align: left;
130 text-align: left;
138 text-align: left;
146 text-align: left;
155 text-align: left;
168 text-align: left;
242 margin-left: -10pt
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
transform-handler.js 110 function mergeMatrices(left, right) {
111 if (left.decompositionPair !== right) {
112 left.decompositionPair = right;
113 var leftArgs = scope.makeMatrixDecomposition(left);
115 if (right.decompositionPair !== left) {
116 right.decompositionPair = left;
120 return [[false], [true], function(x) { return x ? right[0].d : left[0].d; }];
143 function mergeTransforms(left, right) {
147 if (!left.length || !right.length) {
148 if (!left.length)
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/design/
default.css 16 background: #eee none no-repeat fixed top left;
39 padding-left: 10px; }
59 margin-left: 190px;
74 float: left; }
85 float: left; }
141 float: left;
142 margin-left: 20px; }
144 margin-left: 0; }
260 background: transparent url(disclosure_down.png) no-repeat scroll top left;
273 background: transparent url(disclosure_up.png) no-repeat scroll top left;
    [all...]
  /external/v8/benchmarks/
splay.js 57 left: GeneratePayloadTree(depth - 1, tag),
173 node.left = this.root_;
178 node.left = this.root_.left;
179 this.root_.left = null;
202 if (!this.root_.left) {
206 this.root_ = this.root_.left;
260 // the left subtree.
263 } else if (this.root_.left) {
264 return this.findMax(this.root_.left);
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 104 inputs[input_count++] = g.UseRegister(m.left().node());
267 if (m.left().IsWord32Shr() && CanCover(node, m.left().node()) &&
278 Int32BinopMatcher mleft(m.left().node());
290 g.UseRegister(mleft.left().node()), g.TempImmediate(lsb),
305 g.UseRegister(m.left().node()), g.TempImmediate(0),
317 if (m.left().IsWord64Shr() && CanCover(node, m.left().node()) &&
328 Int64BinopMatcher mleft(m.left().node());
340 g.UseRegister(mleft.left().node()), g.TempImmediate(lsb)
641 Node* left = node->InputAt(0); local
709 Node* left = node->InputAt(0); local
740 Node* left = node->InputAt(0); local
1432 Node* left = node->InputAt(0); local
1830 Node* left = node->InputAt(0); local
1839 Node* left = node->InputAt(0); local
    [all...]

Completed in 1144 milliseconds

<<11121314151617181920>>