HomeSort by relevance Sort by last modified time
    Searched full:nbytes (Results 251 - 275 of 460) sorted by null

<<111213141516171819

  /external/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageChannel.java 589 int nbytes = myClientInputStream.read(msg, 0, bufferSize); local
591 if (nbytes == -1) {
606 hispipe.write(msg, 0, nbytes);
  /external/valgrind/main/mpi/
libmpiwrap.c     [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test8.c 181 int nBytes;
188 nBytes = sizeof(char *) * nCol;
195 nBytes += strlen(zName)+1;
197 aCol = (char **)sqlite3MallocZero(nBytes);
212 assert( (zSpace-nBytes)==(char *)aCol );
    [all...]
recover.c 265 static i64 decodeSigned(const unsigned char *pData, unsigned nBytes){
267 while( --nBytes ){
860 unsigned nBytes; /* Maximum record bytes as of current page. */
897 nBytes = nLocalRecordBytes;
904 while( iNextPage && nBytes<nRecordBytes ){
    [all...]
  /external/valgrind/main/coregrind/
m_mallocfree.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 657 nbytes = n - len_readbuffer - len(self._unconsumed)
658 nbytes = max(nbytes, self.MIN_READ_SIZE)
659 nbytes = min(nbytes, self._compress_left)
661 data = self._fileobj.read(nbytes)
    [all...]
pickle.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 657 nbytes = n - len_readbuffer - len(self._unconsumed)
658 nbytes = max(nbytes, self.MIN_READ_SIZE)
659 nbytes = min(nbytes, self._compress_left)
661 data = self._fileobj.read(nbytes)
    [all...]
pickle.py     [all...]
  /external/chromium_org/third_party/sqlite/src/test/
capi3c.test 1010 # Ticket #1650: Honor the nBytes parameter to sqlite3_prepare.
1014 set nbytes [string length $sql]
1016 set STMT [sqlite3_prepare_v2 $DB $sql $nbytes TAIL]
    [all...]
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 1008 ULong nbytes = 0; local
1019 nbytes += (ULong)mc->szB;
1027 nbytes, nblocks,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_pixelformat.c 352 UINT nBytes,
  /external/chromium_org/ui/base/x/
x11_util.cc 705 unsigned long nbytes = 0; local
712 &nitems, &nbytes, &property_data) != Success) {
720 // So even though we should theoretically have nbytes (and we can't
722 // because nbytes always returns zero.
    [all...]
  /external/llvm/lib/Support/
regcomp.c 1062 size_t nbytes; local
1073 nbytes = nc / CHAR_BIT * css;
1080 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1088 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_pixelformat.c 352 UINT nBytes,
  /external/valgrind/main/VEX/unused/
linker.c 353 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes )
356 assert(nbytes % 4 == 0);
357 assert(nbytes > 0);
359 oc->fixup_used += nbytes;
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 1026 size_t nbytes; local
1037 nbytes = nc / CHAR_BIT * css;
1044 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1052 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
dirent.h 319 /* Read directory entries from FD into BUF, reading at most NBYTES.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
dirent.h 319 /* Read directory entries from FD into BUF, reading at most NBYTES.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
dirent.h 319 /* Read directory entries from FD into BUF, reading at most NBYTES.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
gensuitemodule.py 328 nbytes = ord(c)
329 if nbytes == 0: return ''
330 s = f.read(nbytes)
331 if len(s) < nbytes:
    [all...]
  /external/blktrace/btreplay/
btrecord.c 275 .nbytes = spec->bytes,
616 (unsigned long long)p->nbytes / 512);
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 509 recvfrom_flags(int fd, void *ptr, size_t nbytes, int *flagsp,
535 iov[0].iov_len = nbytes;
  /external/valgrind/main/coregrind/m_debuginfo/
priv_d3basics.h 586 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
591 The number of bytes in '..bytes..' is nbytes.
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 51 void send_bytes_to_logging_sink ( OutputSink* sink, HChar* msg, Int nbytes )
53 fwrite(msg, 1, nbytes, stdout);

Completed in 2313 milliseconds

<<111213141516171819