HomeSort by relevance Sort by last modified time
    Searched refs:nBuf (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/third_party/sqlite/src/src/
journal.c 37 int nBuf; /* Size of zBuf[] in bytes */
59 assert(p->iSize<=p->nBuf);
111 if( !p->pReal && (iOfst+iAmt)>p->nBuf ){
200 int nBuf /* Bytes buffered before opening the file */
204 if( nBuf>0 ){
205 p->zBuf = sqlite3MallocZero(nBuf);
213 p->nBuf = nBuf;
test_syscall.c 101 static int ts_read(int fd, void *aBuf, size_t nBuf);
102 static int ts_pread(int fd, void *aBuf, size_t nBuf, off_t off);
103 static int ts_pread64(int fd, void *aBuf, size_t nBuf, off_t off);
104 static int ts_write(int fd, const void *aBuf, size_t nBuf);
105 static int ts_pwrite(int fd, const void *aBuf, size_t nBuf, off_t off);
106 static int ts_pwrite64(int fd, const void *aBuf, size_t nBuf, off_t off);
296 static int ts_read(int fd, void *aBuf, size_t nBuf){
300 return orig_read(fd, aBuf, nBuf);
306 static int ts_pread(int fd, void *aBuf, size_t nBuf, off_t off){
310 return orig_pread(fd, aBuf, nBuf, off)
    [all...]
test6.c 119 int nBuf; /* Number of bytes written */
280 pWrite->pFile, pWrite->zBuf, pWrite->nBuf, pWrite->iOffset
289 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName
301 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName
310 int iLast = (pWrite->iOffset+pWrite->nBuf-1)/g.iSectorSize;
362 int nBuf
366 assert((zBuf && nBuf) || (!nBuf && !zBuf));
368 pNew = (WriteBuffer *)crash_malloc(sizeof(WriteBuffer) + nBuf);
372 memset(pNew, 0, sizeof(WriteBuffer)+nBuf);
    [all...]
wal.h 93 int nBuf, /* Size of buffer nBuf */
test_osinst.c 120 int nBuf; /* Number of valid bytes in aBuf[] */
623 if( p->nBuf ){
624 p->pLog->pMethods->xWrite(p->pLog, p->aBuf, p->nBuf, p->iOffset);
625 p->iOffset += p->nBuf;
626 p->nBuf = 0;
654 if( (24+p->nBuf)>sizeof(p->aBuf) ){
657 zRec = (unsigned char *)&p->aBuf[p->nBuf];
664 p->nBuf += 24;
671 if( (4+nStr+p->nBuf)>sizeof(p->aBuf) ){
674 zRec = (unsigned char *)&p->aBuf[p->nBuf];
    [all...]
os_win.c     [all...]
test_fuzzer.c 180 int nBuf; /* Bytes allocated for zBuf */
401 int nBuf = 0;
402 if( fuzzerRender(pStem, &zBuf, &nBuf)!=SQLITE_OK ) return;
422 if( fuzzerRender(pStem, &pCur->zBuf, &pCur->nBuf)==SQLITE_NOMEM ){
609 rc = fuzzerRender(pStem, &pCur->zBuf, &pCur->nBuf);
703 if( fuzzerRender(pCur->pStem, &pCur->zBuf, &pCur->nBuf)==SQLITE_NOMEM ){
os_os2.c     [all...]
shell.c     [all...]
os_unix.c     [all...]
vdbeaux.c     [all...]
  /external/valgrind/main/exp-sgcheck/
pc_common.h 60 /*OUT*/HChar* buf, Int nBuf );
62 /*OUT*/HChar* buf, Int nBuf );
pc_common.c 781 /*OUT*/HChar* buf, Int nBuf )
785 tl_assert(nBuf >= 16); // stay sane
789 VG_(snprintf)(buf, nBuf-1, "%s", errstr);
797 /*OUT*/HChar* buf, Int nBuf )
  /external/valgrind/main/helgrind/
hg_errors.h 48 /*OUT*/HChar* buf, Int nBuf );
50 /*OUT*/HChar* buf, Int nBuf );
  /external/valgrind/main/coregrind/
m_errormgr.c     [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_Utils.c     [all...]
  /external/valgrind/main/memcheck/
mc_include.h 405 SizeT* nBuf, Int* lineno, Supp *su );
410 /*OUT*/HChar* buf, Int nBuf );
412 /*OUT*/HChar* buf, Int nBuf );
mc_errors.c     [all...]
  /external/bzip2/
bzip2.c 299 Int32 nBuf = 0;
303 buf[nBuf] = q + '0';
304 nBuf++;
306 outbuf[nBuf] = 0;
307 for (i = 0; i < nBuf; i++)
308 outbuf[i] = buf[nBuf-i-1];
    [all...]
  /external/valgrind/main/include/
pub_tool_tooliface.h 336 // This should print into buf[0..nBuf-1] any extra info for the
338 // spaces nor a trailing newline. When called, buf[0 .. nBuf-1]
346 /*OUT*/HChar* buf, Int nBuf),
352 /*OUT*/HChar* buf, Int nBuf),
    [all...]
  /external/valgrind/main/drd/
drd_error.c 606 /*OUT*/HChar* buf, Int nBuf)
613 /*OUT*/HChar* buf, Int nBuf)
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Dec_Utils.c 643 OMX_U32 nBuf = 0;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Enc_Utils.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Dec_Utils.c 667 OMX_U32 nBuf = 0;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_Utils.c     [all...]

Completed in 1179 milliseconds

1 2 3