Home
last modified time | relevance | path

Searched refs:nIn (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/bzip2/
H A Dunzcrash.c44 int nIn, nOut, nZ; variable
92 nIn = fread ( inbuf, 1, M_BLOCK, f ); in main()
93 fprintf ( stderr, "%d bytes read\n", nIn ); in main()
97 zbuf, &nZ, inbuf, nIn, 9, 0, 30 ); in main()
113 if (nOut != nIn) { in main()
114 fprintf(stderr, "nIn/nOut mismatch %d %d\n", nIn, nOut ); in main()
130 assert (nOut == nIn); in main()
/freebsd/contrib/netbsd-tests/bin/sh/
H A Dt_redir.sh776 atf_check -s exit:0 -o inline:'In-Func\nIn-Func\nsuccess6\n' -e empty \
778 atf_check -s exit:0 -o inline:'In-Func\nIn-Func\nsuccess7\n' -e empty \
780 atf_check -s exit:0 -o inline:'In-Func\nIn-Func\nsuccess8\n' -e empty \
/freebsd/usr.sbin/bsdconfig/security/include/
H A Dmessages.subr45 …,\nwhich may increase resistance to exploits and protect system integrity.\nIn secure mode system …
/freebsd/contrib/sqlite3/
H A Dsqlite3.h11815 int nIn, const void *pIn, /* Input changeset */
11861 int nIn, const void *pIn, /* Input changeset */
12562 int nIn, const void *pIn,
H A Dshell.c6492 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){ in re_match() argument
6505 in.mx = nIn>=0 ? nIn : (int)strlen((char const*)zIn); in re_match()
7292 sqlite3_int64 nIn; in readFileContents() local
7303 nIn = ftell(in); in readFileContents()
7307 if( nIn>mxBlob ){ in readFileContents()
7312 pBuf = sqlite3_malloc64( nIn ? nIn : 1 ); in readFileContents()
7318 if( nIn==(sqlite3_int64)fread(pBuf, 1, (size_t)nIn, in) ){ in readFileContents()
7319 sqlite3_result_blob64(ctx, pBuf, nIn, sqlite3_free); in readFileContents()
10324 int nIn, /* Size of buffer aIn[] in bytes */ in zipfileInflate() argument
10336 str.avail_in = nIn; in zipfileInflate()
[all …]
H A Dsqlite3.c12128 int nIn, const void *pIn, /* Input changeset */
12174 int nIn, const void *pIn, /* Input changeset */
12875 int nIn, const void *pIn,
80159 u32 nIn; /* Size of input buffer aIn[] */
80169 nIn = pSrc->info.nLocal;
80171 if( aIn+nIn>pSrc->pPage->aDataEnd ){
80175 if( nIn==nRem && nIn<pDest->pPage->maxLocal ){
80176 memcpy(aOut, aIn, nIn);
80177 pBt->nPreformatSize = nIn + (aOut - pBt->pTmpSpace);
80195 if( nRem>nIn ){
[all …]