HomeSort by relevance Sort by last modified time
    Searched full:lastc (Results 1 - 23 of 23) sorted by null

  /external/eigen/lapack/
clarfb.f 220 INTEGER I, J, LASTV, LASTC
260 LASTC = ILACLC( LASTV, N, C, LDC )
267 CALL CCOPY( LASTC, C( J, 1 ), LDC, WORK( 1, J ), 1 )
268 CALL CLACGV( LASTC, WORK( 1, J ), 1 )
274 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
280 $ LASTC, K, LASTV-K, ONE, C( K+1, 1 ), LDC,
287 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
296 $ LASTV-K, LASTC, K, -ONE, V( K+1, 1 ), LDV,
303 $ 'Unit', LASTC, K, ONE, V, LDV, WORK, LDWORK )
308 DO 20 I = 1, LASTC
    [all...]
zlarfb.f 220 INTEGER I, J, LASTV, LASTC
260 LASTC = ILAZLC( LASTV, N, C, LDC )
267 CALL ZCOPY( LASTC, C( J, 1 ), LDC, WORK( 1, J ), 1 )
268 CALL ZLACGV( LASTC, WORK( 1, J ), 1 )
274 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
280 $ LASTC, K, LASTV-K, ONE, C( K+1, 1 ), LDC,
287 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
296 $ LASTV-K, LASTC, K,
304 $ 'Unit', LASTC, K, ONE, V, LDV, WORK, LDWORK )
309 DO 20 I = 1, LASTC
    [all...]
dlarfb.f 220 INTEGER I, J, LASTV, LASTC
257 LASTC = ILADLC( LASTV, N, C, LDC )
264 CALL DCOPY( LASTC, C( J, 1 ), LDC, WORK( 1, J ), 1 )
270 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
276 $ LASTC, K, LASTV-K,
284 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
293 $ LASTV-K, LASTC, K,
301 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
306 DO 20 I = 1, LASTC
316 LASTC = ILADLR( M, LASTV, C, LDC
    [all...]
slarfb.f 220 INTEGER I, J, LASTV, LASTC
257 LASTC = ILASLC( LASTV, N, C, LDC )
264 CALL SCOPY( LASTC, C( J, 1 ), LDC, WORK( 1, J ), 1 )
270 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
276 $ LASTC, K, LASTV-K,
284 $ LASTC, K, ONE, T, LDT, WORK, LDWORK )
293 $ LASTV-K, LASTC, K,
301 $ LASTC, K, ONE, V, LDV, WORK, LDWORK )
306 DO 20 I = 1, LASTC
316 LASTC = ILASLR( M, LASTV, C, LDC
    [all...]
clarf.f 154 INTEGER I, LASTV, LASTC
168 LASTC = 0
189 LASTC = ILACLC(LASTV, N, C, LDC)
192 LASTC = ILACLR(M, LASTV, C, LDC)
195 ! Note that lastc.eq.0 renders the BLAS operations null; no special
203 * w(1:lastc,1) := C(1:lastv,1:lastc)**H * v(1:lastv,1)
205 CALL CGEMV( 'Conjugate transpose', LASTV, LASTC, ONE,
208 * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**
    [all...]
dlarf.f 149 INTEGER I, LASTV, LASTC
163 LASTC = 0
184 LASTC = ILADLC(LASTV, N, C, LDC)
187 LASTC = ILADLR(M, LASTV, C, LDC)
190 ! Note that lastc.eq.0 renders the BLAS operations null; no special
198 * w(1:lastc,1) := C(1:lastv,1:lastc)**T * v(1:lastv,1)
200 CALL DGEMV( 'Transpose', LASTV, LASTC, ONE, C, LDC, V, INCV,
203 * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**
    [all...]
slarf.f 149 INTEGER I, LASTV, LASTC
163 LASTC = 0
184 LASTC = ILASLC(LASTV, N, C, LDC)
187 LASTC = ILASLR(M, LASTV, C, LDC)
190 ! Note that lastc.eq.0 renders the BLAS operations null; no special
198 * w(1:lastc,1) := C(1:lastv,1:lastc)**T * v(1:lastv,1)
200 CALL SGEMV( 'Transpose', LASTV, LASTC, ONE, C, LDC, V, INCV,
203 * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**
    [all...]
zlarf.f 154 INTEGER I, LASTV, LASTC
168 LASTC = 0
189 LASTC = ILAZLC(LASTV, N, C, LDC)
192 LASTC = ILAZLR(M, LASTV, C, LDC)
195 * Note that lastc.eq.0 renders the BLAS operations null; no special
203 * w(1:lastc,1) := C(1:lastv,1:lastc)**H * v(1:lastv,1)
205 CALL ZGEMV( 'Conjugate transpose', LASTV, LASTC, ONE,
208 * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkParsePath.cpp 74 SkPoint lastc = {0, 0}; local
130 points[0].fX -= lastc.fX - c.fX;
131 points[0].fY -= lastc.fY - c.fY;
135 lastc = points[1];
145 points[0].fX = c.fX * 2 - lastc.fX;
146 points[0].fY = c.fY * 2 - lastc.fY;
150 lastc = points[0];
  /external/skia/src/utils/
SkParsePath.cpp 74 SkPoint lastc = {0, 0}; local
130 points[0].fX -= lastc.fX - c.fX;
131 points[0].fY -= lastc.fY - c.fY;
135 lastc = points[1];
145 points[0].fX = c.fX * 2 - lastc.fX;
146 points[0].fY = c.fY * 2 - lastc.fY;
150 lastc = points[0];
  /external/chromium_org/third_party/skia/src/animator/
SkParseSVGPath.cpp 118 SkPoint lastc = {0, 0}; local
175 points[0].fX -= lastc.fX - c.fX;
176 points[0].fY -= lastc.fY - c.fY;
186 //if we are using the quadApprox, lastc is what it would have been if we had used
188 lastc = points[1];
198 points[0].fX = c.fX * 2 - lastc.fX;
199 points[0].fY = c.fY * 2 - lastc.fY;
203 lastc = points[0];
  /external/skia/src/animator/
SkParseSVGPath.cpp 118 SkPoint lastc = {0, 0}; local
175 points[0].fX -= lastc.fX - c.fX;
176 points[0].fY -= lastc.fY - c.fY;
186 //if we are using the quadApprox, lastc is what it would have been if we had used
188 lastc = points[1];
198 points[0].fX = c.fX * 2 - lastc.fX;
199 points[0].fY = c.fY * 2 - lastc.fY;
203 lastc = points[0];
  /external/llvm/lib/Support/
regengine.inc 691 int lastc; /* previous c */
704 lastc = c;
709 /* is there an EOL and/or BOL between lastc and c? */
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
713 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
733 if ( (lastc != OUT && ISWORD(lastc)) &&
776 int lastc; /* previous c *
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 681 int lastc; /* previous c */ local
694 lastc = c;
699 /* is there an EOL and/or BOL between lastc and c? */
702 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
703 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
719 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
723 if ( (lastc != OUT && ISWORD(lastc)) &&
765 int lastc; /* previous c * local
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
LogoPlay.cpp 211 SkPoint lastc = {0, 0}; local
270 points[0].fX -= lastc.fX - c.fX;
271 points[0].fY -= lastc.fY - c.fY;
281 //if we are using the quadApprox, lastc is what it would have been if we had used
283 lastc = points[1];
293 points[0].fX = c.fX * 2 - lastc.fX;
294 points[0].fY = c.fY * 2 - lastc.fY;
298 lastc = points[0];
  /external/skia/experimental/Intersection/
LogoPlay.cpp 211 SkPoint lastc = {0, 0}; local
270 points[0].fX -= lastc.fX - c.fX;
271 points[0].fY -= lastc.fY - c.fY;
281 //if we are using the quadApprox, lastc is what it would have been if we had used
283 lastc = points[1];
293 points[0].fX = c.fX * 2 - lastc.fX;
294 points[0].fY = c.fY * 2 - lastc.fY;
298 lastc = points[0];
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 784 int lastc; /* previous c */ local
801 lastc = c;
806 /* is there an EOL and/or BOL between lastc and c? */
809 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
810 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
826 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
830 if ( (lastc != OUT && ISWORD(lastc)) &&
879 int lastc; /* previous c * local
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 120 register struct child *lastc, *c; local
132 lastc = 0;
134 for (c = children; c != 0 && c != child; lastc = c, c = c->next)
189 if (lastc == 0)
192 lastc->next = c->next;
job.c 479 register struct child *lastc, *c;
691 lastc = 0;
692 for (c = children; c != 0; lastc = c, c = c->next)
822 if (lastc == 0)
825 lastc->next = c->next;
475 register struct child *lastc, *c; local
    [all...]
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.c 320 int c, lastc, needpattern, newarg, prevoptind; local
357 lastc = '\0';
401 if (newarg || !isdigit(lastc))
628 lastc = c;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 899 char lastc = 0; local
903 if (!dq && c == '\'' && lastc != '\\') {
907 else if (!sq && c == '\"' && lastc != '\\') {
920 lastc = c;
    [all...]
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/6/platforms/android-8/arch-arm/usr/lib/
libc.so 

Completed in 605 milliseconds