HomeSort by relevance Sort by last modified time
    Searched refs:nbytes (Results 76 - 100 of 178) sorted by null

1 2 34 5 6 7 8

  /external/mdnsresponder/mDNSPosix/
mDNSUNP.h 82 extern ssize_t recvfrom_flags(int fd, void *ptr, size_t nbytes, int *flagsp,
  /system/core/sh/
output.c 479 xwrite(int fd, char *buf, int nbytes)
485 n = nbytes;
491 return nbytes;
496 return nbytes - n;
  /external/bison/lib/
obstack.c 396 register int nbytes = 0;
400 nbytes += lp->limit - (char *) lp;
402 return nbytes;
393 register int nbytes = 0; local
  /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/qemu/
sysemu.h 235 int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
236 int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f);
237 int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes);
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 350 SizeT nbytes = 0; local
362 nbytes += mc->size;
367 nbytes, nblocks);
  /external/webkit/Source/WebCore/platform/audio/fftw/
FFTFrameFFTW.cpp 112 size_t nbytes = sizeof(float) * unpackedFFTWDataSize(fftSize()); local
113 memcpy(realData(), frame.realData(), nbytes); local
114 memcpy(imagData(), frame.imagData(), nbytes); local
  /external/webkit/Source/WebCore/platform/audio/mkl/
FFTFrameMKL.cpp 123 unsigned nbytes = sizeof(float) * (m_FFTSize / 2); local
124 memcpy(realData(), frame.realData(), nbytes); local
125 memcpy(imagData(), frame.imagData(), nbytes); local
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 151 int nbytes = 0; local
152 while ((nbytes = is.read(buf)) > -1) {
153 fos.write(buf, 0, nbytes);
  /libcore/luni/src/test/java/libcore/java/io/
OldPipedWriterTest.java 58 public String read(int nbytes) {
59 buf = new char[nbytes];
61 pr.read(buf, 0, nbytes);
  /ndk/sources/host-tools/sed-4.2.1/lib/
obstack.c 386 register int nbytes = 0;
390 nbytes += lp->limit - (char *) lp;
392 return nbytes;
383 register int nbytes = 0; local
  /external/dbus/dbus/
dbus-sysdeps-wince-glue.c 67 DWORD nbytes; local
78 nbytes = 1;
79 if (RegQueryValueExW (key_handle, name, 0, NULL, NULL, &nbytes))
85 n1 = ((nbytes + sizeof(wchar_t) - 1) / sizeof (wchar_t)) + 1;
92 if (RegQueryValueExW (key_handle, name, 0, &type, (LPBYTE) result_w, &nbytes))
141 DWORD n1, nbytes, type; local
166 nbytes = 1;
167 if (RegQueryValueExA (key_handle, name, 0, NULL, NULL, &nbytes))
175 if (RegQueryValueExA (key_handle, name, 0, NULL, NULL, &nbytes))
178 n1 = nbytes + 1
    [all...]
dbus-md5.c 330 md5_append (DBusMD5Context *context, const unsigned char *data, int nbytes)
333 int left = nbytes;
335 dbus_uint32_t nbits = (dbus_uint32_t)(nbytes << 3);
337 if (nbytes <= 0)
341 context->count[1] += nbytes >> 29;
349 int copy = (offset + nbytes > 64 ? 64 - offset : nbytes);
  /external/bluetooth/glib/gio/
gwin32appinfo.c 399 DWORD name_len, nbytes; local
407 nbytes = sizeof (data) - 2;
415 &nbytes) == ERROR_SUCCESS)
417 data[nbytes/2] = '\0';
422 data_alloc = (wchar_t *)g_memdup (data, nbytes + 2);
423 data_alloc[nbytes/2] = 0;
428 nbytes = sizeof (data) - 2;
  /device/moto/stingray/whisper/
SA_Phys_Linux.c 259 int nbytes, nwritten; local
290 nbytes = nwritten / 8;
292 return nbytes;
  /external/e2fsprogs/debugfs/
dump.c 107 int nbytes; local
124 nbytes = write(fd, buf, got);
125 if ((unsigned) nbytes != got)
  /external/valgrind/main/coregrind/
m_libcprint.c 60 void send_bytes_to_logging_sink ( OutputSink* sink, Char* msg, Int nbytes )
63 Int rc = VG_(write_socket)( sink->fd, msg, nbytes );
68 VG_(write)( sink->fd, msg, nbytes );
76 VG_(write)( sink->fd, msg, nbytes );
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedInputStreamTest.java 42 public PWriter(PipedOutputStream pout, int nbytes) {
44 bytes = new byte[nbytes];
  /external/e2fsprogs/e2fsck/
swapfs.c 208 int n, nbytes = (bmap->end - bmap->start + 7) / 8; local
210 for (n = nbytes / sizeof(__u32); n > 0; --n, ++p)
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 101 public int read(byte[] buf, int off, int nbytes) throws IOException {
106 int r = super.read(buf, off, nbytes);
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 435 public int read(byte[] buffer, int off, int nbytes) throws IOException {
436 int i = super.read(buffer, off, nbytes);
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 627 ssize_t nbytes = state->mAudioTrack->write( local
630 CHECK_EQ(nbytes, (ssize_t)copy);
634 uint32_t numFramesWritten = nbytes / state->mAudioTrack->frameSize();
642 info->mOffset += nbytes;
643 info->mSize -= nbytes;
  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.cpp 382 ssize_t nbytes; local
384 nbytes = recvfrom(
391 } while (nbytes < 0 && errno == EINTR);
393 if (nbytes <= 0) {
397 buffer->setRange(0, nbytes);
  /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...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/
bcmutils.c 1148 uint nbytes, /* number of input data bytes to process */
1155 while (nbytes-- > 0)
1221 uint nbytes, /* number of input data bytes to process */
1225 while (nbytes-- > 0)
1302 hndcrc32(uint8 *pdata, uint nbytes, uint32 crc)
1311 nbytes -= (pend - pdata);
1316 pend = pdata + (nbytes & 0xfffffffc)
    [all...]

Completed in 1046 milliseconds

1 2 34 5 6 7 8