Searched defs:sub (Results 1 - 25 of 258) sorted by last modified time

1234567891011

/external/yaffs2/yaffs2/direct/
H A Ddtest.c1564 char sub[100]; local
1573 sprintf(sub,"%s/sdir",mountpt);
1580 yaffs_mkdir(sub,0);
1583 p = (j & 0) ? mountpt: sub;
/external/vixl/src/a64/
H A Dassembler-a64.cc565 void Assembler::sub(const Register& rd, function in class:vixl::Assembler
587 sub(rd, zr, operand);
1600 // add/sub wsp, <Wn>, <Wm> [, LSL #0-3 ]
1601 // add/sub <Wd>, wsp, <Wm> [, LSL #0-3 ]
1602 // add/sub wsp, wsp, <Wm> [, LSL #0-3 ]
1605 // extended register mode, and emit an add/sub extended instruction.
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c496 /* Do we care about endianness here? We do if sub-parts of integer
4875 DIP("v%s%c.%c%u q%u, %c%u, d%u\n", (A & 2) ? "sub" : "add",
5259 IROp dup, get, op, op2, add, sub; local
5320 sub = Q ? Iop_Sub32Fx4 : Iop_Sub32Fx2;
5334 sub = Q ? Iop_Sub16x8 : Iop_Sub16x4;
5339 sub = Q ? Iop_Sub32x4 : Iop_Sub32x2;
5348 op2 = INSN(10,10) ? sub : add;
5365 IROp dup, get, op, op2, add, sub; local
5397 sub = Iop_Sub32x4;
5402 sub
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c975 struct demangle_component *sub)
982 p->u.s_unary_num.sub = sub;
3137 ret->u.s_unary_num.sub = tl;
3789 local_name = local_name->u.s_unary_num.sub;
4032 const struct demangle_component *sub = d_left (dc); local
4033 if (sub->type == DEMANGLE_COMPONENT_TEMPLATE_PARAM)
4035 struct demangle_component *a = d_lookup_template_argument (dpi, sub);
4045 sub = a;
4048 if (sub
974 d_make_default_arg(struct d_info *di, int num, struct demangle_component *sub) argument
[all...]
H A Ddemangle.h533 struct demangle_component *sub; member in struct:demangle_component::__anon32526::__anon32538
/external/tcpdump/
H A Dmptcp.h91 u_int8_t sub; member in struct:mp_dss
123 u_int8_t sub; member in struct:mp_remove_addr
131 u_int8_t sub; member in struct:mp_fail
139 u_int8_t sub; member in struct:mp_close
/external/strace/
H A Daio.c193 enum iocb_sub sub; member in struct:__anon31332
208 return cmds[cmd].sub;
239 enum iocb_sub sub; local
260 sub = tprint_lio_opcode(iocb.aio_lio_opcode);
264 switch (sub) {
/external/speex/libspeex/
H A Dnb_celp.c255 int i, sub, roots; local
542 /* Transmit the sub-mode we use for this frame */
646 /* Loop on sub-frames */
647 for (sub=0;sub<st->nbSubframes;sub++)
656 offset = st->subframeSize*sub;
663 lsp_interpolate(st->old_lsp, lsp, interp_lsp, st->lpcSize, sub, st->nbSubframes);
664 lsp_interpolate(st->old_qlsp, qlsp, interp_qlsp, st->lpcSize, sub, st->nbSubframes);
683 st->pi_gain[sub]
1086 int i, sub; local
[all...]
H A Dsb_celp.c307 int i, roots, sub; local
338 /* Compute the two sub-bands by filtering with QMF h0*/
548 for (sub=0;sub<st->nbSubframes;sub++)
559 offset = st->subframeSize*sub;
566 lsp_interpolate(st->old_lsp, lsp, interp_lsp, st->lpcSize, sub, st->nbSubframes);
567 lsp_interpolate(st->old_qlsp, qlsp, interp_qlsp, st->lpcSize, sub, st->nbSubframes);
580 st->pi_gain[sub]=LPC_SCALING;
585 st->pi_gain[sub]
875 int i, sub; local
[all...]
/external/skia/src/core/
H A DSkFloat.h40 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); } function in class:SkFloat
H A DSkGlyph.h131 static SkFixed SubToFixed(unsigned sub) { argument
132 SkASSERT(sub <= kSubMask);
133 return sub << (16 - kSubBits);
/external/skia/src/effects/
H A DSkAvoidXfermode.cpp65 static int scale_dist_14(int dist, uint32_t mul, uint32_t sub) { argument
66 int tmp = dist * mul - sub;
82 uint32_t sub = (fDistMul - (1 << 14)) << 8; local
101 d = scale_dist_14(d, mul, sub);
131 uint32_t sub = (fDistMul - (1 << 14)) << SK_R16_BITS; local
150 d = scale_dist_14(d, mul, sub);
/external/skia/src/pathops/
H A DSkDCubicToQuads.cpp58 SkDCubic sub; local
64 sub = cubic.subDivide(start, 1);
65 cPtr = &sub;
116 // and do a more precise job when calling chop at and sub divide by computing the fractional ts.
H A DSkPathOpsCubic.cpp372 SkDCubic sub = subDivide(startT, endT); local
373 SkDPoint topPt = sub[0];
374 if (topPt.fY > sub[3].fY || (topPt.fY == sub[3].fY && topPt.fX > sub[3].fX)) {
375 topPt = sub[3];
378 if (!sub.monotonicInY()) {
379 int roots = FindExtrema(sub[0].fY, sub[1].fY, sub[
523 SkDCubic sub = subDivide(t1, t2); local
[all...]
H A DSkPathOpsQuad.cpp51 SkDQuad sub = subDivide(startT, endT); local
52 SkDPoint topPt = sub[0];
53 if (topPt.fY > sub[2].fY || (topPt.fY == sub[2].fY && topPt.fX > sub[2].fX)) {
54 topPt = sub[2];
56 if (!between(sub[0].fY, sub[1].fY, sub[2].fY)) {
58 if (FindExtrema(sub[
250 SkDQuad sub = subDivide(t1, t2); local
[all...]
H A DSkQuarticRoot.cpp151 const double sub = a / 4; local
153 s[i] -= sub;
/external/skia/experimental/Intersection/
H A DCubicToQuadratics.cpp59 Cubic sub; local
65 sub_divide(cubic, start, 1, sub);
66 cPtr = &sub;
142 // and do a more precise job when calling chop at and sub divide by computing the fractional ts.
H A DCubicUtilities.cpp381 Cubic sub; local
382 sub_divide(cubic, startT, endT, sub);
383 _Point topPt = sub[0];
384 if (topPt.y > sub[3].y || (topPt.y == sub[3].y && topPt.x > sub[3].x)) {
385 topPt = sub[3];
388 if (!monotonic_in_y(sub)) {
389 int roots = findExtrema(sub[0].y, sub[
[all...]
H A DEdgeWalker.cpp171 SkPoint sub[2]) {
175 sub[0].fX = SkDoubleToScalar(dst[0].x);
176 sub[0].fY = SkDoubleToScalar(dst[0].y);
177 sub[1].fX = SkDoubleToScalar(dst[1].x);
178 sub[1].fY = SkDoubleToScalar(dst[1].y);
182 SkPoint sub[3]) {
187 sub[0].fX = SkDoubleToScalar(dst[0].x);
188 sub[0].fY = SkDoubleToScalar(dst[0].y);
189 sub[1].fX = SkDoubleToScalar(dst[1].x);
190 sub[
170 LineSubDivide(const SkPoint a[2], double startT, double endT, SkPoint sub[2]) argument
181 QuadSubDivide(const SkPoint a[3], double startT, double endT, SkPoint sub[3]) argument
195 CubicSubDivide(const SkPoint a[4], double startT, double endT, SkPoint sub[4]) argument
[all...]
H A DQuadraticUtilities.cpp50 Quadratic sub; local
51 sub_divide(quad, startT, endT, sub);
52 _Point topPt = sub[0];
53 if (topPt.y > sub[2].y || (topPt.y == sub[2].y && topPt.x > sub[2].x)) {
54 topPt = sub[2];
56 if (!between(sub[0].y, sub[1].y, sub[
[all...]
H A DQuarticRoot.cpp171 const double sub = a / 4;
173 tries[index][i] -= sub;
219 const double sub = a / 4; local
221 s[i] -= sub;
H A DSimplify.cpp428 SkPoint sub[2]) {
432 sub[0].fX = SkDoubleToScalar(dst[0].x);
433 sub[0].fY = SkDoubleToScalar(dst[0].y);
434 sub[1].fX = SkDoubleToScalar(dst[1].x);
435 sub[1].fY = SkDoubleToScalar(dst[1].y);
439 SkPoint sub[3]) {
443 sub[0].fX = SkDoubleToScalar(dst[0].x);
444 sub[0].fY = SkDoubleToScalar(dst[0].y);
445 sub[1].fX = SkDoubleToScalar(dst[1].x);
446 sub[
427 LineSubDivide(const SkPoint a[2], double startT, double endT, SkPoint sub[2]) argument
438 QuadSubDivide(const SkPoint a[3], double startT, double endT, SkPoint sub[3]) argument
451 CubicSubDivide(const SkPoint a[4], double startT, double endT, SkPoint sub[4]) argument
[all...]
/external/regex-re2/re2/
H A Dcompile.cc860 Regexp* sub; local
872 sub = re->sub()[0]->Incref();
873 if (IsAnchorStart(&sub, depth+1)) {
875 subcopy[0] = sub; // already have reference
877 subcopy[i] = re->sub()[i]->Incref();
883 sub->Decref();
887 sub = re->sub()[0]->Incref();
888 if (IsAnchorStart(&sub, dept
908 Regexp* sub; local
[all...]
H A Dparse.cc460 re->sub()[0] = FinishRegexp(stacktop_);
489 re->sub()[0] = FinishRegexp(stacktop_);
617 re->sub()[0] = FinishRegexp(r1);
646 Regexp** sub = re->sub(); local
647 if (sub[0]->op() == kRegexpEmptyMatch)
649 return sub[0];
662 Regexp** sub = re->sub(); local
663 if (sub[
750 Regexp** sub = re->sub(); local
803 FactorAlternation( Regexp** sub, int n, Regexp::ParseFlags altflags) argument
810 FactorAlternationRecursive( Regexp** sub, int n, Regexp::ParseFlags altflags, int maxdepth) argument
1001 Regexp* sub; local
[all...]
H A Dregexp.cc29 // Can't call Decref on the sub-Regexps here because
137 Regexp** subs = re->sub();
139 Regexp* sub = subs[i]; local
140 if (sub == NULL)
142 if (sub->ref_ == kMaxRef)
143 sub->Decref();
145 --sub->ref_;
146 if (sub->ref_ == 0 && !sub->QuickDestroy()) {
147 sub
182 Plus(Regexp* sub, ParseFlags flags) argument
191 Star(Regexp* sub, ParseFlags flags) argument
200 Quest(Regexp* sub, ParseFlags flags) argument
209 ConcatOrAlternate(RegexpOp op, Regexp** sub, int nsub, ParseFlags flags, bool can_factor) argument
254 Concat(Regexp** sub, int nsub, ParseFlags flags) argument
258 Alternate(Regexp** sub, int nsub, ParseFlags flags) argument
262 AlternateNoFactor(Regexp** sub, int nsub, ParseFlags flags) argument
266 Capture(Regexp* sub, ParseFlags flags, int cap) argument
274 Repeat(Regexp* sub, ParseFlags flags, int min, int max) argument
630 Regexp** sub = this->sub(); local
[all...]

Completed in 6735 milliseconds

1234567891011