HomeSort by relevance Sort by last modified time
    Searched defs:nbytes (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp 1135 const uint32_t nbytes = packet.GetByteSize() - offset; local
1234 const uint32_t nbytes = packet.GetByteSize() - offset; local
1252 const uint16_t nbytes = packet.GetU16 (&offset); local
1261 const uint16_t nbytes = packet.GetU16 (&offset); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 609 int nbytes = myClientInputStream.read(msg, 0, bufferSize); local
611 if (nbytes == -1) {
626 hispipe.write(msg, 0, nbytes);
TLSMessageChannel.java 589 int nbytes = myClientInputStream.read(msg, 0, bufferSize); local
591 if (nbytes == -1) {
606 hispipe.write(msg, 0, nbytes);
  /external/valgrind/main/VEX/switchback/
switchback.c 144 static void invalidate_icache(void *ptr, unsigned long nbytes)
207 Addr end = start + nbytes;
404 Int nbytes = sa_end - sa_start; local
407 printf("nbytes = %d, nopstart = %d\n", nbytes, off_nopstart);
410 UChar* copy = mymalloc(nbytes);
412 for (i = 0; i < nbytes; i++)
439 invalidate_icache( copy, nbytes );
662 void log_bytes ( HChar* bytes, Int nbytes )
664 fwrite ( bytes, 1, nbytes, stdout )
    [all...]
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 1107 ULong nbytes = 0; local
    [all...]
  /frameworks/base/core/java/android/speech/srec/
Recognizer.java 306 int nbytes = audio.read(mPutAudioBuffer); local
308 if (nbytes == -1) {
312 else if (nbytes != SR_RecognizerPutAudio(mRecognizer, mPutAudioBuffer, 0, nbytes, false)) {
313 throw new IOException("SR_RecognizerPutAudio failed nbytes=" + nbytes);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1235 size_t nbytes; local
1248 nbytes = nc / CHAR_BIT * css;
1256 p->g->setbits = malloc(nbytes);
1258 p->g->setbits = realloc(p->g->setbits, nbytes);
1264 (void) memset((char *)p->g->setbits + (nbytes - css),
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c 554 int nbytes; local
586 nbytes = (int)(br->bit_end_pos_ - br->bit_pos_) >> 3;
587 if (br_pos + nbytes > BROTLI_IBUF_MASK) {
590 nbytes -= tail;
595 memcpy(&ringbuffer[rb_pos], &br->buf_[br_pos], (size_t)nbytes);
596 rb_pos += nbytes;
597 len -= nbytes;
613 nbytes = rb_size - rb_pos;
614 if (BrotliRead(br->input_, &ringbuffer[rb_pos], (size_t)nbytes) < nbytes ||
    [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/valgrind/main/none/tests/ppc32/
testVMX.c 152 size_t nbytes, cc, rr; local
167 nbytes = (size*nmemb)+16;
169 /* Alloc a block of 'nbytes' */
170 realadd = (char *) malloc( nbytes );
178 memset( realadd, 0, 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...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 161 size_t clen, nbytes; local
167 nbytes = wcsrtombs(NULL, (const wchar_t **)&p, 0, &mbs);
168 if (nbytes == (size_t)-1) {
179 nbytes = prec;
181 nbytes = 0;
187 nbytes + clen > (size_t)prec)
189 nbytes += clen;
197 if ((convbuf = malloc(nbytes + 1)) == NULL)
203 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p,
204 nbytes, &mbs)) == (size_t)-1)
    [all...]
  /external/blktrace/btreplay/
btreplay.c 123 * @nbytes: Number of bytes in buffer associated with iocb
129 int nbytes; member in struct:iocb_pkt
321 * @nbytes: Number of bytes to allocate
323 static inline void *buf_alloc(size_t nbytes)
327 if (posix_memalign(&buf, pgsize, nbytes)) {
701 iocbp->nbytes = 0;
721 if (iocbp->nbytes) {
722 if (iocbp->nbytes >= n) {
732 iocbp->nbytes = n;
841 if (iocbp->nbytes)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxenc.c 598 size_t nbytes; member in struct:stream_state
    [all...]
  /external/chromium_org/ui/base/x/
x11_util.cc 688 unsigned long nbytes = 0; local
695 &nitems, &nbytes, &property_data) != Success) {
703 // So even though we should theoretically have nbytes (and we can't
705 // because nbytes always returns zero.
    [all...]
  /external/libcxx/src/
locale.cpp 1647 int nbytes = 0; local
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 631 size_t nbytes; member in struct:stream_state
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxenc.c 631 size_t nbytes; member in struct:stream_state
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ByteBufferTest.java 1123 int nbytes = 2; local
1149 int nbytes = 2; local
1191 int nbytes = 2; local
1228 int nbytes = 2; local
1266 int nbytes = 8; local
1295 int nbytes = 8; local
1346 int nbytes = 8; local
1383 int nbytes = 8; local
1415 int nbytes = 4; local
1444 int nbytes = 4; local
1489 int nbytes = 4; local
1526 int nbytes = 4; local
1558 int nbytes = 4; local
1584 int nbytes = 4; local
1631 int nbytes = 4; local
1668 int nbytes = 4; local
1700 int nbytes = 8; local
1726 int nbytes = 8; local
1768 int nbytes = 8; local
1805 int nbytes = 8; local
1837 int nbytes = 2; local
1863 int nbytes = 2; local
1905 int nbytes = 2; local
1942 int nbytes = 2; local
2041 int nbytes = 4, bigHead, step; local
2060 int nbytes = 8, bigHead, step; local
2079 int nbytes = 2, bigHead, step; local
2110 int nbytes = 4, smallHead, step; local
2129 int nbytes = 8, smallHead, step; local
2148 int nbytes = 2, smallHead, step; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
locale.cpp 1726 int nbytes = 0; local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 254 int nbytes = 0; local
257 nbytes += 4;
258 if (nbytes >= len)
265 nbytes += 4;
266 if (nbytes >= len)
273 nbytes += 5;
274 if (nbytes >= len)
282 nbytes += 1;
283 if (nbytes >= len)
289 if (nbytes >= len)
1858 int nbytes = sizeof(MethodEntry*) * pClass->numMethods; local
2084 int nbytes = sizeof(UniqueMethodEntry) * traceData->numUniqueMethods; local
2121 int nbytes = sizeof(MethodEntry*) * pUnique->numMethods; local
2178 int nbytes = sizeof(UniqueMethodEntry*) * traceData->numUniqueMethods; local
    [all...]
  /external/elfutils/0.153/libcpu/
i386_parse.c 2988 size_t nbytes = (totalbits - zerobits + 7) \/ 8; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 4114 int nbytes; local
4151 int nbytes; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 530 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
535 The number of bytes in '..bytes..' is nbytes.
556 UShort nbytes; local
578 /* nbytes, and actual expression */
579 nbytes = ML_(read_UShort)(p); p += sizeof(UShort);
580 p += nbytes;
585 static GExpr* make_singleton_GX ( DiCursor block, ULong nbytes )
592 vg_assert(nbytes <= 0xFFFF); /* else we overflow the nbytes field */
596 + sizeof(UShort) /*nbytes*/ + (SizeT)nbyte
630 Word nbytes; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 7713 Int nbytes = VEX_GUEST_X86_LDT_NENT * sizeof(VexGuestX86SegDescr); local
    [all...]

Completed in 635 milliseconds

1 23 4