Searched refs:xs (Results 1 - 25 of 43) sorted by relevance

12

/external/kernel-headers/original/linux/
H A Dtiocl.h14 unsigned short xs; /* X start */ member in struct:tiocl_selection
/external/clang/test/CXX/stmt.stmt/stmt.dcl/
H A Dp3.cpp14 X xs[16]; local
H A Dp3-0x.cpp14 X xs[16]; local
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DDHPrivateKeySpecTest.java42 BigInteger[] xs = {new BigInteger("-1000000000000"), BigInteger.ZERO,
49 DHPrivateKeySpec dhpks = new DHPrivateKeySpec(xs[i], ps[i], gs[i]);
52 dhpks.getX(), xs[i]);
/external/speex/libspeex/
H A Dlpc_bfin.h45 const spx_word16_t *xs; local
71 xs = x+lag-1;
109 : : "m" (xs), "m" (x), "m" (ac32top), "m" (N_lag), "m" (lag_1), "m" (nshift)
/external/blktrace/btt/
H A Dbtt_plot.py109 def avg(xs, ys):
122 if len(xs) < 1000:
123 return xs, ys
125 axs = [xs[0]]
127 _xs = [xs[0]]
130 x_range = (xs[-1] - xs[0]) / 100
132 if (xs[idx] - _xs[0]) > x_range:
137 _xs = [xs[idx]]
140 _xs.append(xs[id
[all...]
/external/jdiff/
H A Dxerces.jar ... org/apache/xerces/impl/xs/opti/ org/apache/xerces/impl/xs/traversers/ org/apache/xerces/impl/xs/util/ org/apache/xerces ...
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp267 int xs = xe - comp.m_width; local
268 if (position >= xs)
271 : offsetForPositionForSimpleText(comp.m_textRun, position - xs, includePartialGlyphs));
278 int xs = comp.m_offset; local
279 int xe = xs + comp.m_width;
281 if (position - xs >= xe)
284 ? static_cast<int>((position - xs) * comp.m_spaces / std::max(1.f, comp.m_width) + 0.5)
285 : offsetForPositionForSimpleText(comp.m_textRun, position - xs, includePartialGlyphs));
303 int xs = comp.m_offset; local
305 xs
[all...]
/external/mksh/src/
H A Dlex.c51 XString xs; member in struct:sretrace_info
125 Xcheck(rp->xs, rp->xp); \
172 Xinit(ri->xs, ri->xp, 64, ATEMP); \
180 sp = Xstring(retrace_info->xs, retrace_info->xp); \
1135 XString xs; local
1153 Xinit(xs, xp, 256, ATEMP);
1158 xpos = Xsavepos(xs, xp);
1200 Xcheck(xs, xp);
1201 Xput(xs, xp, c);
1208 Xcheck(xs, x
[all...]
H A Dmisc.c1246 XString xs; local
1274 Xinit(xs, xp, strlen(ip = ipath) + 1, ATEMP);
1299 while (xp > Xstring(xs, xp))
1308 pos = Xsavepos(xs, xp);
1310 XcheckN(xs, xp, 1 + len + 1);
1311 Xput(xs, xp, '/');
1319 if (lstat(Xstring(xs, xp), &sb)) {
1355 llen = readlink(Xstring(xs, xp), ldest, pathlen);
1371 xp = Xrestpos(xs, xp, pos);
1374 xp = Xstring(xs, x
1648 XString xs; local
[all...]
H A Dsh.h1282 #define XinitN(xs, length, area) do { \
1283 (xs).len = (length); \
1284 (xs).areap = (area); \
1285 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \
1286 (xs).end = (xs).beg + (xs).len; \
1288 #define Xinit(xs, x
1374 XString xs; /* input buffer */ member in struct:source
[all...]
H A Deval.c1371 XString xs; local
1374 Xinit(xs, xp, 256, ATEMP);
1375 globit(&xs, &xp, cp, wp, markdirs ? GF_MARKDIR : GF_NONE);
1376 Xfree(xs, xp);
1382 globit(XString *xs, /* dest string */ argument
1408 (stat_done = stat(Xstring(*xs, xp), &statb) < 0 \
1413 if (lstat(Xstring(*xs, xp), &lstatb) < 0)
1420 if ((check & GF_EXCHECK) && xp > Xstring(*xs, xp) &&
1431 xp > Xstring(*xs, xp) && xp[-1] != '/' &&
1439 strndupx(np, Xstring(*xs, x
[all...]
H A Dfuncs.c274 XString xs; local
376 Xinit(xs, xp, 128, ATEMP);
381 Xcheck(xs, xp);
398 Xput(xs, xp, '\\');
406 Xput(xs, xp, ts[c]);
410 Xput(xs, xp, c);
413 Xput(xs, xp, ' ');
416 Xput(xs, xp, '\n');
419 Xput(xs, xp, '\0');
420 histsave(&source->line, Xstring(xs, x
1776 XString xs; local
[all...]
H A Dhistrap.c280 XString xs; local
298 Xinit(xs, xp, n, hist_source->areap);
299 while ((n = shf_read(xp, Xnleft(xs, xp), shf)) > 0) {
301 if (Xnleft(xs, xp) <= 0)
302 XcheckN(xs, xp, Xlength(xs, xp));
313 strip_nuls(Xstring(xs, xp), Xlength(xs, xp));
314 return (hist_execute(Xstring(xs, xp)));
371 XString xs; local
[all...]
/external/clang/test/Sema/
H A Dflexible-array-init.c63 struct X xs[]; // expected-warning{{'struct X' may not be used as an array element due to flexible array member}} member in struct:Y
/external/clang/test/SemaCXX/
H A Ddcl_init_aggr.cpp87 int xs[2][2] = { 3, 1, 4, 2 }; variable
H A Dcxx98-compat.cpp67 std::initializer_list<int> xs = { 1, 2, 3 }; // expected-warning {{initialization of initializer_list object is incompatible with C++98}} local
103 int xs[] = {1, 2, 3}; local
104 for (int &a : xs) { // expected-warning {{range-based for loop is incompatible with C++98}}
H A Dfor-range-examples.cpp155 int xs[10]; // expected-note {{implicitly declared private here}} member in class:test2::A
158 for (int x : a.xs) { } // expected-error {{'xs' is a private member of 'test2::A'}}
H A Dconstant-expression-cxx11.cpp20 template<typename T, size_t N> constexpr T *begin(T (&xs)[N]) { return xs; }
21 template<typename T, size_t N> constexpr T *end(T (&xs)[N]) { return xs + N; }
426 constexpr int xs[] = { 1, 2, 3, 4, 5 };
428 constexpr int sum_xs = Sum(begin(xs), end(xs));
432 const int *xs, const int *ys, int c) {
434 *xs, // expected-note {{read of dereferenced one-past-the-end pointer}}
436 ZipFoldR(F, n-1, xs
[all...]
/external/opencv/cv/src/
H A Dcvsamplers.cpp618 double xs = A12*y + A13; \
623 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) && \
630 int ixs = cvFloor( xs ); \
633 double a = xs - ixs, b = ys - iys, a1 = 1.f - a; \
636 xs += A11; \
646 int ixs = cvFloor( xs ), iys = cvFloor( ys ); \
647 double a = xs - ixs, b = ys - iys, a1 = 1.f - a; \
650 xs += A11; ys += A21; \
694 double xs = A12*y + A13; \
699 if( (unsigned)(cvFloor(xs)
[all...]
H A Dcvfundam.cpp1340 const float* xs = src->data.fl; local
1341 const float* ys = xs + s_plane_stride;
1343 const float* ws = xs + (s_dims - 1)*s_plane_stride;
1369 float x = *xs * w, y = *ys * w, z = *zs * w;
1370 xs += s_stride; ys += s_stride; zs += s_stride;
1378 float x = *xs * w, y = *ys * w;
1379 xs += s_stride; ys += s_stride;
1386 const double* xs = src->data.db; local
1387 const double* ys = xs + s_plane_stride;
1389 const double* ws = xs
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.cpp227 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
229 float xs = x * s; local
232 float xx = x * xs;
235 float xw = w * xs;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
H A DConverter.java147 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
149 float xs = oldQuaternion.getX() * s;
152 float xx = oldQuaternion.getX() * xs;
155 float xw = oldQuaternion.getW() * xs;
/external/openssl/crypto/x509/
H A Dx509_vfy.c1579 X509 *xs,*xi; local
1591 xs=xi;
1605 xs=sk_X509_value(ctx->chain,n);
1618 if (!xs->valid && (xs != xi || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE)))
1627 else if (X509_verify(xs,pkey) <= 0)
1630 ctx->current_cert=xs;
1642 xs->valid = 1;
1644 ok = check_cert_time(ctx, xs);
1650 ctx->current_cert=xs;
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp281 double xs = xc - radius; local
312 m_path.arcMoveTo(xs, ys, width, height, sa);
318 m_path.arcTo(xs, ys, width, height, sa, span);

Completed in 7121 milliseconds

12