Searched defs:partial (Results 1 - 17 of 17) sorted by relevance

/external/webkit/SunSpider/tests/sunspider-0.9/
H A Dmath-partial-sums.js5 function partial(n){ function
31 partial(i);
/external/webkit/SunSpider/tests/sunspider-0.9.1/
H A Dmath-partial-sums.js5 function partial(n){ function
31 partial(i);
/external/dropbear/
H A Dcli-auth.c141 unsigned int partial = 0; local
175 partial = buf_getbool(ses.payload);
177 if (partial) {
H A Dsvr-auth.c287 * Partial indicates whether to set the "partial success" flag,
291 void send_msg_userauth_failure(int partial, int incrfail) { argument
324 buf_putbyte(ses.writepayload, partial ? 1 : 0);
/external/quake/quake/src/QW/client/
H A Dcvar.c84 char *Cvar_CompleteVariable (char *partial) argument
89 len = Q_strlen(partial);
96 if (!strcmp (partial,cvar->name))
99 // check partial match
101 if (!Q_strncmp (partial,cvar->name, len))
H A Dcmd.c568 char *Cmd_CompleteCommand (char *partial) argument
574 len = Q_strlen(partial);
581 if (!strcmp (partial,cmd->name))
584 if (!strcmp (partial, a->name))
587 // check for partial match
589 if (!strncmp (partial,cmd->name, len))
592 if (!strncmp (partial, a->name, len))
/external/quake/quake/src/WinQuake/
H A Dcvar.cpp80 const char *Cvar_CompleteVariable (const char *partial) argument
85 len = Q_strlen(partial);
92 if (!Q_strncmp (partial,cvar->name, len))
H A Dcmd.cpp588 const char *Cmd_CompleteCommand (const char *partial) argument
593 len = Q_strlen(partial);
600 if (!Q_strncmp (partial,cmd->name, len))
/external/stlport/stlport/stl/
H A D_codecvt.h42 enum result {ok, partial, error, noconv}; enumerator in enum:codecvt_base::result
/external/chromium/net/disk_cache/
H A Drankings.cc611 int partial = CheckList(static_cast<List>(i)); local
612 if (partial < 0)
613 return partial;
614 total += partial;
/external/skia/src/core/
H A DSkMath.cpp485 int partial = findex & 255; local
486 sinValue = interp_table(gSkSinTable, index, partial);
490 partial = findex & 255;
491 cosValue = interp_table(gSkSinTable, index, partial);
/external/webkit/WebKit/android/nav/
H A DFindCanvas.cpp312 // Now we know that this line is lower than our partial match.
434 // Keep track of a partial match that may start on this line.
435 if (j > 0) { // if j is greater than 0, we have a partial match
439 // partial match.
441 SkRect partial = (this->*addMatch)(partialIndex, paint, relativeCount, local
443 partial.inset(mOutset, mOutset);
445 partial.roundOut(&dest);
446 // Only save a partial if it is in the current clip.
/external/clearsilver/imd/
H A Dimd.c492 NEOERR *load_images (char *path, ULIST **rfiles, char *partial, int descend) argument
524 if (partial)
526 snprintf(ppath, sizeof(ppath), "%s/%s", partial, de->d_name);
/external/qemu/telephony/
H A Dsms.c1581 int partial; local
1583 partial = smspdu_get_text_message( frag->pdus[nn], utf8, utf8len );
1584 utf8 += partial;
1585 utf8len -= partial;
1587 partial = smspdu_get_text_message( frag->pdus[nn], NULL, 0 );
1589 total += partial;
/external/dbus/test/
H A Ddecode-gcov.c653 unsigned int partial : 1; /* only some of the blocks were executed */ member in struct:Function
662 unsigned int partial : 1; /* only some of the blocks were executed */ member in struct:Line
1811 l->partial = TRUE;
1854 func->partial = TRUE;
1998 if (l->partial)
2016 if (func->partial)
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c1344 tdb_len_t partial; local
1356 partial = el->offset - off;
1357 if (transaction_read(tdb, off, buf, partial, cv) != 0) {
1360 len -= partial;
1361 off += partial;
1362 buf = (void *)(partial + (char *)buf);
1365 partial = len;
1367 partial = el->offset + el->length - off;
1369 memcpy(buf, el->data + (off - el->offset), partial);
1373 len -= partial;
1417 tdb_len_t partial; local
[all...]
/external/icu4c/i18n/
H A DdecNumber.c2527 /* Step 1: amount to shift is the partial right-rotate count */
2555 } /* partial shift needed */
2712 } /* partial left */
3948 Int partial=*lhs->lsu; local
3950 partial+=*rhs->lsu;
3951 if ((partial<=DECDPUNMAX) /* result fits in unit */
3953 partial<(Int)powers[lhs->digits])) { /* .. */
3955 *res->lsu=(Unit)partial; /* [copy could have overwritten RHS] */
3961 partial-=*rhs->lsu;
3962 if (partial>
[all...]

Completed in 691 milliseconds