HomeSort by relevance Sort by last modified time
    Searched refs:nbyte (Results 1 - 8 of 8) sorted by null

  /external/qemu/android/utils/
mapfile.h 74 extern ssize_t mapfile_read(MapFile* handle, void* buf, size_t nbyte);
86 size_t nbyte);
mapfile.c 110 mapfile_read(MapFile* handle, void* buf, size_t nbyte)
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
125 ret = read((int)handle, buf, nbyte);
132 mapfile_read_at(MapFile* handle, size_t offset, void* buf, size_t nbyte)
143 return mapfile_read(handle, buf, nbyte);
146 return res >= 0 ? mapfile_read(handle, buf, nbyte) : res;
  /external/openssl/crypto/pem/
pvkfmt.c 90 static int read_lebn(const unsigned char **in, unsigned int nbyte, BIGNUM **r)
95 p = *in + nbyte - 1;
96 tmpbuf = OPENSSL_malloc(nbyte);
100 for (i = 0; i < nbyte; i++)
102 *r = BN_bin2bn(tmpbuf, nbyte, NULL);
106 *in += nbyte;
216 unsigned int nbyte, hnbyte; local
217 nbyte = (bitlen + 7) >> 3;
226 return 44 + 3 * nbyte;
231 return 64 + 2 * nbyte;
318 unsigned int nbyte; local
376 unsigned int nbyte, hnbyte; local
578 int nbyte, hnbyte, bitlen; local
613 int nbyte, hnbyte; local
631 int nbyte; local
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 176 int yaffs_read(int fd, void *buf, unsigned int nbyte) ;
177 int yaffs_write(int fd, const void *buf, unsigned int nbyte) ;
yaffsfs.c 510 int yaffs_read(int fd, void *buf, unsigned int nbyte)
539 if(nbyte > maxRead)
541 nbyte = maxRead;
545 if(nbyte > 0)
547 nRead = yaffs_ReadDataFromFile(obj,buf,pos,nbyte);
571 int yaffs_write(int fd, const void *buf, unsigned int nbyte)
603 nWritten = yaffs_WriteDataToFile(obj,buf,pos,nbyte,writeThrough);
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmsdbus.h 82 uint addr, uint32 *word, uint nbyte);
bcmutils.h 435 #define MAXNBVAL(nbyte) MAXBITVAL((nbyte) * 8)
  /hardware/qcom/media/mm-video/vidc/vdec/test/
omx_vdec_test.cpp     [all...]

Completed in 217 milliseconds