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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xproto.h     [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1344 uint nbytes, /* number of input data bytes to process */
1351 while (nbytes-- > 0)
1417 uint nbytes, /* number of input data bytes to process */
1421 while (nbytes-- > 0)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.c 352 int yaffs_CheckFF(__u8 * buffer, int nBytes)
355 while (nBytes--) {
    [all...]
  /external/elfutils/libcpu/
i386_parse.y 1270 size_t nbytes = (totalbits - zerobits + 7) / 8;
1271 assert (nbytes > 0);
1273 fprintf (outfile, " %#zx,", nbytes);
1290 if (--nbytes == 0)
1303 if (--nbytes == 0)
1313 if (--nbytes == 0)
    [all...]
  /external/valgrind/main/VEX/pub/
libvex.h 380 static inline void* LibVEX_Alloc ( Int nbytes )
402 return malloc(nbytes);
408 nbytes = (nbytes + ALIGN) & ~ALIGN;
410 next = curr + nbytes;
495 void (*log_bytes) ( HChar*, Int nbytes ),
  /external/valgrind/main/VEX/switchback/
linker.c 419 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes )
422 assert(nbytes % 4 == 0);
423 assert(nbytes > 0);
425 oc->fixup_used += nbytes;
482 static void invalidate_icache(void *ptr, int nbytes)
485 unsigned long endaddr = startaddr + nbytes;
    [all...]
  /development/ndk/sources/android/libportable/arch-mips/
syscall.c 436 * sync_file_range2(int fd, unsigned int flags, loff_t offset, loff_t nbytes) {
437 * return sys_sync_file_range(fd, offset, nbytes, flags);
  /external/aac/libMpegTPEnc/include/
tpenc_lib.h 252 * \param nBytes Pointer to an int to hold the frame size in bytes. Returns zero
256 TRANSPORTENC_ERROR transportEnc_GetFrame(HANDLE_TRANSPORTENC hTpEnc, int *nbytes);
  /external/chromium_org/third_party/smhasher/src/
Stats.h 302 const int nbytes = sizeof(hashtype); local
303 const int hashbits = nbytes * 8;
  /external/libvpx/libvpx/
vpxenc.c 1089 size_t nbytes; member in struct:stream_state
    [all...]
  /external/mksh/src/
misc.c 1241 /* Strip any nul bytes from buf - returns new length (nbytes - # of nuls) */
1243 strip_nuls(char *buf, int nbytes)
1248 * nbytes check because some systems (older FreeBSDs) have a
1251 if (nbytes && (dst = memchr(buf, '\0', nbytes))) {
1252 char *end = buf + nbytes;
1274 blocking_read(int fd, char *buf, size_t nbytes)
1279 while ((ret = read(fd, buf, nbytes)) < 0) {
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 115 public void write(byte[] buf, int off, int nbytes) {
116 digest.update(buf, off, nbytes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_marshal.py 29 def to_little_endian_string(value, nbytes):
31 for i in range(nbytes):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_marshal.py 29 def to_little_endian_string(value, nbytes):
31 for i in range(nbytes):
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 527 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
532 The number of bytes in '..bytes..' is nbytes.
553 UShort nbytes; local
575 /* nbytes, and actual expression */
576 nbytes = ML_(read_UShort)(p); p += sizeof(UShort);
577 p += nbytes;
582 static GExpr* make_singleton_GX ( UChar* block, UWord nbytes )
589 vg_assert(nbytes <= 0xFFFF); /* else we overflow the nbytes field */
593 + sizeof(UShort) /*nbytes*/ + nbyte
627 Word nbytes; local
    [all...]
  /external/chromium_org/media/mp4/
box_reader.h 56 bool SkipBytes(int nbytes) WARN_UNUSED_RESULT;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 448 ssize_t KernelProxy::read(int fd, void* buf, size_t nbytes) {
457 error = handle->Read(buf, nbytes, &cnt);
466 ssize_t KernelProxy::write(int fd, const void* buf, size_t nbytes) {
475 error = handle->Write(buf, nbytes, &cnt);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_malloc.c 304 ** Usage: sqlite3_malloc NBYTES
318 Tcl_WrongNumArgs(interp, 1, objv, "NBYTES");
329 ** Usage: sqlite3_realloc PRIOR NBYTES
343 Tcl_WrongNumArgs(interp, 1, objv, "PRIOR NBYTES");
    [all...]
vtab.c 242 int nBytes = sizeof(char *)*(1+pTable->nModuleArg);
244 azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes);
576 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR);
577 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
  /external/chromium_org/third_party/sqlite/src/test/
capi3.test 1055 # Ticket #1650: Honor the nBytes parameter to sqlite3_prepare.
1059 set nbytes [string length $sql]
1061 set STMT [sqlite3_prepare $DB $sql $nbytes TAIL]
1196 # Ticket #3134. Prepare a statement with an nBytes parameter of 0.
  /external/chromium_org/third_party/zlib/
zutil.h 100 void *_Cdecl farmalloc( unsigned long nbytes );
  /external/valgrind/main/coregrind/
pub_core_mallocfree.h 106 extern void* VG_(arena_malloc) ( ArenaId arena, HChar* cc, SizeT nbytes );
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 785 extern uint8 hndcrc8(uint8 *p, uint nbytes, uint8 crc);
786 extern uint16 hndcrc16(uint8 *p, uint nbytes, uint16 crc);
787 extern uint32 hndcrc32(uint8 *p, uint nbytes, uint32 crc);
836 extern int bcm_cmp_bytes(const uchar *arg1, const uchar *arg2, uint8 nbytes);
  /hardware/ti/omap4xxx/domx/test/sample_proxy/
test_sample_proxy.c 549 OMX_PTR pData, OMX_U32 nBytes, FILE * fp)
558 printf("\nnBytes = %d\n", nBytes);
563 nReadSize = fread(pData, 1, nBytes, fp);
564 if (nReadSize != nBytes)
    [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);

Completed in 1605 milliseconds

1 2 3 4 5 6 7 8 91011>>