Searched defs:nIn (Results 1 - 23 of 23) sorted by relevance

/external/bzip2/
H A Dunzcrash.c44 int nIn, nOut, nZ; variable
92 nIn = fread ( inbuf, 1, M_BLOCK, f );
93 fprintf ( stderr, "%d bytes read\n", nIn );
97 zbuf, &nZ, inbuf, nIn, 9, 0, 30 );
113 if (nOut != nIn) {
114 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut );
130 assert (nOut == nIn);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c293 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
296 for(i=0; i<nIn; i++){
306 if( nIn>mx*2 ){
307 for(j=mx, i=nIn-mx; i<nIn; i++, j++){
318 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
319 ** zOut is at least big enough to hold nIn bytes. Write the actual
340 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
344 if( nIn<3 || nIn>
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_porter.c292 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
295 for(i=0; i<nIn; i++){
305 if( nIn>mx*2 ){
306 for(j=mx, i=nIn-mx; i<nIn; i++, j++){
317 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
318 ** zOut is at least big enough to hold nIn bytes. Write the actual
339 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
343 if( nIn<3 || nIn>
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_porter.c295 static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
298 for(i=0; i<nIn; i++){
308 if( nIn>mx*2 ){
309 for(j=mx, i=nIn-mx; i<nIn; i++, j++){
320 ** Stem the input word zIn[0..nIn-1]. Store the output in zOut.
321 ** zOut is at least big enough to hold nIn bytes. Write the actual
342 static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ argument
346 if( nIn<3 || nIn>
[all...]
H A Dfts3_expr.c549 int nIn = n; local
557 rc = getNextNode(pParse, zIn, nIn, &p, &nByte);
642 assert( rc!=SQLITE_OK || (nByte>0 && nByte<=nIn) );
643 nIn -= nByte;
667 *pnConsumed = n - nIn;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_hexio.c154 int nIn, nOut, written; local
166 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[3], &nIn);
167 aOut = sqlite3_malloc( nIn/2 );
171 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
202 int nIn, nOut; local
211 zIn = (const unsigned char *)Tcl_GetStringFromObj(objv[1], &nIn);
212 aOut = sqlite3_malloc( nIn/2 );
216 nOut = sqlite3TestHexToBin(zIn, nIn, aOut);
H A Dfunc.c1050 int nIn; /* Number of bytes in input */ local
1062 nIn = sqlite3_value_bytes(argv[0]);
1094 while( nIn>0 ){
1098 if( len<=nIn && memcmp(zIn, azChar[i], len)==0 ) break;
1102 nIn -= len;
1106 while( nIn>0 ){
1110 if( len<=nIn && memcmp(&zIn[nIn-len],azChar[i],len)==0 ) break;
1113 nIn -= len;
1120 sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIEN
[all...]
H A Dshell.c888 int nIn = (zIn?strlen30(zIn):0); local
890 len = nAppend+nIn+1;
904 char *zCsr = &zIn[nIn];
914 memcpy(&zIn[nIn], zAppend, nAppend);
H A DsqliteInt.h1921 int nIn; /* Number of entries in aInLoop[] */ member in struct:WhereLevel::__anon15501::__anon15502
/external/chromium_org/net/third_party/nss/ssl/
H A Ddtlscon.c453 const SSL3Opaque *pIn, PRInt32 nIn)
461 msg = dtls_AllocQueuedMessage(ss->ssl3.cwSpec->epoch, type, pIn, nIn);
452 dtls_QueueMessage(sslSocket *ss, SSL3ContentType type, const SSL3Opaque *pIn, PRInt32 nIn) argument
H A Dssl3con.c2891 PRInt32 nIn, /* bytes of input */
2899 SSL_TRC(3, ("%d: SSL3[%d] SendRecord type: %s nIn=%d",
2901 nIn));
2902 PRINT_BUF(50, (ss, "Send record (plain text)", pIn, nIn));
2935 while (nIn > 0) {
2936 PRUint32 contentLen = PR_MIN(nIn, MAX_FRAGMENT_LENGTH);
2942 if (nIn > 1 && ss->opt.cbcRandomIV &&
3023 nIn -= contentLen;
3024 PORT_Assert( nIn >= 0 );
2887 ssl3_SendRecord( sslSocket * ss, DTLSEpoch epoch, SSL3ContentType type, const SSL3Opaque * pIn, PRInt32 nIn, PRInt32 flags) argument
/external/sqlite/dist/orig/
H A Dshell.c975 int nIn = (zIn?strlen30(zIn):0); local
977 len = nAppend+nIn+1;
991 char *zCsr = &zIn[nIn];
1001 memcpy(&zIn[nIn], zAppend, nAppend);
1665 long nIn; local
1673 nIn = ftell(in);
1675 pBuf = sqlite3_malloc( nIn );
1676 if( pBuf && 1==fread(pBuf, nIn, 1, in) ){
1677 sqlite3_result_blob(context, pBuf, nIn, sqlite3_free);
H A Dsqlite3.c92865 int nIn; /* Number of bytes in input */ local
110527 int nIn; /* Number of entries in aInLoop[] */ member in struct:WhereLevel::__anon31016::__anon31017
115233 int nIn = 0; local
133806 int nIn = n; local
135148 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135195 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/external/sqlite/dist/
H A Dshell.c980 int nIn = (zIn?strlen30(zIn):0); local
982 len = nAppend+nIn+1;
996 char *zCsr = &zIn[nIn];
1006 memcpy(&zIn[nIn], zAppend, nAppend);
1670 long nIn; local
1678 nIn = ftell(in);
1680 pBuf = sqlite3_malloc( nIn );
1681 if( pBuf && 1==fread(pBuf, nIn, 1, in) ){
1682 sqlite3_result_blob(context, pBuf, nIn, sqlite3_free);
H A Dsqlite3.c92885 int nIn; /* Number of bytes in input */ local
110547 int nIn; /* Number of entries in aInLoop[] */ member in struct:WhereLevel::__anon31047::__anon31048
115253 int nIn = 0; local
133838 int nIn = n; local
135180 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
135227 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c5941 int nIn, nOut, nZ; variable
6065 nIn = vexxx_strlen(inbuf)+1;
6066 vexxx_printf( "%d bytes read\n", nIn );
6070 zbuf, &nZ, inbuf, nIn, 9, 4/*verb*/, 30 );
6089 if (nOut != nIn) {
6090 vexxx_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6106 assert (nOut == nIn);
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.c5964 int nIn; variable
6480 nIn = vex_strlen(inbuf)+1;
6481 vex_printf( "%d bytes read\n", nIn );
6485 zbuf, &nZ, inbuf, nIn, 9, 3/*verb*/, 30 );
6507 if (nOut != nIn) {
6508 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6524 assert (nOut == nIn);
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c5956 int nIn; variable
6474 nIn = vex_strlen(inbuf)+1;
6475 vex_printf( "%d bytes read\n", nIn );
6485 zbuf, &nZ, inbuf, nIn, 9, 3/*verb*/, 30 );
6507 if (nOut != nIn) {
6508 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6524 assert (nOut == nIn);
H A Dvarinfo6.c5993 int nIn; variable
6513 nIn = vex_strlen(inbuf)+1;
6514 vex_printf( "%d bytes read\n", nIn );
6518 zbuf, &nZ, inbuf, nIn, 9, 3/*verb*/, 30 );
6541 if (nOut != nIn) {
6542 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6558 assert (nOut == nIn);
/external/valgrind/main/perf/
H A Dbz2.c5955 int nIn; variable
6472 nIn = vex_strlen(inbuf)+1;
6473 vex_printf( "%d bytes read\n", nIn );
6477 zbuf, &nZ, inbuf, nIn, 9, 3/*verb*/, 30 );
6499 if (nOut != nIn) {
6500 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
6516 assert (nOut == nIn);
H A Dtest_input_for_tinycc.c4437 int nIn; variable
5734 nIn = vex_strlen(inbuf)+1;
5735 vex_printf( "%d bytes read\n", nIn );
5739 zbuf, &nZ, inbuf, nIn, 9, 3 , 30 );
5758 if (nOut != nIn) {
5759 vex_printf( "nIn/nOut mismatch %d %d\n", nIn, nOut );
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10266 int nIn; /* Number of entries in aInLoop[] */ member in struct:WhereLevel::__anon15464::__anon15465
82749 int nIn; /* Number of bytes in input */ local
117785 int nIn = n; local
118845 copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
118892 porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut) argument
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 692 milliseconds