/external/dropbear/libtomcrypt/src/pk/asn1/der/bit/ |
D | der_length_bit_string.c | 27 unsigned long nbytes; in der_length_bit_string() local 31 nbytes = (nbits >> 3) + ((nbits & 7) ? 1 : 0) + 1; in der_length_bit_string() 33 if (nbytes < 128) { in der_length_bit_string() 35 *outlen = 2 + nbytes; in der_length_bit_string() 36 } else if (nbytes < 256) { in der_length_bit_string() 38 *outlen = 3 + nbytes; in der_length_bit_string() 39 } else if (nbytes < 65536) { in der_length_bit_string() 41 *outlen = 4 + nbytes; in der_length_bit_string()
|
/external/bluetooth/glib/tests/ |
D | gio-test.c | 67 guint nbytes, in read_all() argument 70 guint left = nbytes; in read_all() 138 guint nbytes; in recv_message() local 155 g_assert (nb == sizeof (nbytes)); in recv_message() 170 error = read_all (fd, channel, (gchar *) &nbytes, sizeof (nbytes), &nb); in recv_message() 185 g_assert (nb == sizeof (nbytes)); in recv_message() 187 if (nbytes >= BUFSIZE) in recv_message() 189 g_print ("gio-test: ...from %d: nbytes = %d (%#x)!\n", fd, nbytes, nbytes); in recv_message() 192 g_assert (nbytes >= 0 && nbytes < BUFSIZE); in recv_message() 194 g_print ("gio-test: ...from %d: %d bytes\n", fd, nbytes); in recv_message() [all …]
|
/external/expat/xmlwf/ |
D | readfilemap.c | 48 size_t nbytes; in filemap() local 67 nbytes = sb.st_size; in filemap() 69 if (nbytes == 0) { in filemap() 75 p = malloc(nbytes); in filemap() 81 n = read(fd, p, nbytes); in filemap() 88 if (n != nbytes) { in filemap() 94 processor(p, nbytes, name, arg); in filemap()
|
D | unixfilemap.c | 26 size_t nbytes; in filemap() local 46 nbytes = sb.st_size; in filemap() 48 if (nbytes == 0) { in filemap() 54 p = (void *)mmap((caddr_t)0, (size_t)nbytes, PROT_READ, in filemap() 61 processor(p, nbytes, name, arg); in filemap() 62 munmap((caddr_t)p, nbytes); in filemap()
|
/external/elfutils/libasm/ |
D | asm_adduleb128.c | 62 size_t nbytes = dest - tmpbuf; local 65 if (__libasm_ensure_section_space (asmscn, nbytes) != 0) 70 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes); 73 asmscn->content->len += nbytes; 76 asmscn->offset += nbytes;
|
D | asm_addsleb128.c | 66 size_t nbytes = dest - tmpbuf; local 69 if (__libasm_ensure_section_space (asmscn, nbytes) != 0) 74 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes); 77 asmscn->content->len += nbytes; 80 asmscn->offset += nbytes;
|
/external/oprofile/libabi/ |
D | opimport.cpp | 80 size_t nbytes = theabi.need(sz); in extract() local 82 if (nbytes == 0) in extract() 85 assert(nbytes <= sizeof(T)); in extract() 87 assert(src + nbytes <= end); in extract() 90 cerr << hex << "get " << sz << " = " << nbytes in extract() 96 while(nbytes--) in extract() 97 targ = (targ << 8) | src[nbytes]; in extract() 99 for(size_t i = 0; i < nbytes; ++i) in extract()
|
/external/qemu/ |
D | loader.c | 84 int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f) in fread_targphys() argument 90 while (nbytes) { in fread_targphys() 91 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes; in fread_targphys() 96 nbytes -= did; in fread_targphys() 104 int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f) in fread_targphys_ok() argument 106 return fread_targphys(dst_addr, nbytes, f) == nbytes; in fread_targphys_ok() 110 int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes) in read_targphys() argument 116 while (nbytes) { in read_targphys() 117 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes; in read_targphys() 123 nbytes -= did; in read_targphys()
|
D | sysemu.h | 262 int fread_targphys(target_phys_addr_t dst_addr, size_t nbytes, FILE *f); 263 int fread_targphys_ok(target_phys_addr_t dst_addr, size_t nbytes, FILE *f); 264 int read_targphys(int fd, target_phys_addr_t dst_addr, size_t nbytes);
|
/external/jpeg/ |
D | jdatasrc.c | 93 size_t nbytes; in fill_input_buffer() local 95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE); in fill_input_buffer() 97 if (nbytes <= 0) { in fill_input_buffer() 104 nbytes = 2; in fill_input_buffer() 108 src->pub.bytes_in_buffer = nbytes; in fill_input_buffer()
|
/external/libvpx/examples/ |
D | encoder_tmpl.c | 54 size_t nbytes, to_read; in read_frame() local 58 nbytes = fread(img->planes[0], 1, to_read, f); in read_frame() 59 if(nbytes != to_read) { in read_frame() 61 if(nbytes > 0) in read_frame()
|
/external/bluetooth/glib/gio/ |
D | gwin32appinfo.c | 399 DWORD name_len, nbytes; in enumerate_open_with_list() local 407 nbytes = sizeof (data) - 2; in enumerate_open_with_list() 415 &nbytes) == ERROR_SUCCESS) in enumerate_open_with_list() 417 data[nbytes/2] = '\0'; in enumerate_open_with_list() 422 data_alloc = (wchar_t *)g_memdup (data, nbytes + 2); in enumerate_open_with_list() 423 data_alloc[nbytes/2] = 0; in enumerate_open_with_list() 428 nbytes = sizeof (data) - 2; in enumerate_open_with_list()
|
/external/e2fsprogs/lib/ext2fs/ |
D | fileio.c | 251 unsigned int nbytes, unsigned int *written) in ext2fs_file_write() argument 264 while (nbytes > 0) { in ext2fs_file_write() 271 if (c > nbytes) in ext2fs_file_write() 272 c = nbytes; in ext2fs_file_write() 287 nbytes -= c; in ext2fs_file_write()
|
/external/blktrace/btreplay/ |
D | btreplay.c | 129 int nbytes; member 323 static inline void *buf_alloc(size_t nbytes) in buf_alloc() argument 327 if (posix_memalign(&buf, pgsize, nbytes)) { in buf_alloc() 701 iocbp->nbytes = 0; in iocb_init() 721 if (iocbp->nbytes) { in iocb_setup() 722 if (iocbp->nbytes >= n) { in iocb_setup() 732 iocbp->nbytes = n; in iocb_setup() 841 if (iocbp->nbytes) in tip_release() 1057 if (evp->res != iocbp->iocb.u.c.nbytes) { in reclaim_ios() 1062 (long)iocbp->iocb.u.c.nbytes / nb_sec); in reclaim_ios() [all …]
|
/external/speex/libspeex/ |
D | kiss_fft.h | 28 #define KISS_FFT_MALLOC(nbytes) memalign(16,nbytes) argument
|
/external/chromium/base/ |
D | sha1.cc | 40 void Update(const void* data, size_t nbytes); 120 void SecureHashAlgorithm::Update(const void* data, size_t nbytes) { in Update() argument 122 while (nbytes--) { in Update()
|
/external/blktrace/btt/ |
D | inlines.h | 340 static inline int histo_idx(__u64 nbytes) in histo_idx() argument 342 int idx = (nbytes >> 9) - 1; in histo_idx() 346 static inline void update_q_histo(__u64 nbytes) in update_q_histo() argument 348 q_histo[histo_idx(nbytes)]++; in update_q_histo() 351 static inline void update_d_histo(__u64 nbytes) in update_d_histo() argument 353 d_histo[histo_idx(nbytes)]++; in update_d_histo()
|
/external/bison/lib/ |
D | mbswidth.c | 108 mbsnwidth (const char *string, size_t nbytes, int flags) in mbsnwidth() argument 111 const char *plimit = p + nbytes; in mbsnwidth()
|
D | obstack.c | 393 register int nbytes = 0; in strong_alias() local 397 nbytes += lp->limit - (char *) lp; in strong_alias() 399 return nbytes; in strong_alias()
|
D | mbswidth.h | 56 extern int mbsnwidth (const char *buf, size_t nbytes, int flags);
|
/external/e2fsprogs/lib/uuid/ |
D | gen_uuid.c | 135 static void get_random_bytes(void *buf, int nbytes) in get_random_bytes() argument 137 int i, n = nbytes, fd = get_random_fd(); in get_random_bytes() 160 for (cp = buf, i = 0; i < nbytes; i++) in get_random_bytes() 165 for (cp = buf, i = 0; i < nbytes; i++) in get_random_bytes()
|
/external/e2fsprogs/misc/ |
D | dumpe2fs.c | 75 unsigned long nbytes, unsigned long offset) in print_free() argument 81 offset += group * nbytes; in print_free() 82 for (i = 0; i < nbytes; i++) in print_free() 88 for (j = i; j < nbytes && !in_use (bitmap, j); j++) in print_free()
|
/external/e2fsprogs/debugfs/ |
D | dump.c | 107 int nbytes; in dump_file() local 124 nbytes = write(fd, buf, got); in dump_file() 125 if ((unsigned) nbytes != got) in dump_file()
|
/external/libvpx/ |
D | vpxenc.c | 141 size_t nbytes; in stats_open_file() local 163 nbytes = fread(stats->buf.buf, 1, stats->buf.sz, stats->file); in stats_open_file() 164 res = (nbytes == stats->buf.sz); in stats_open_file() 1339 unsigned long nbytes = 0; in main() local 1559 arg_passes, frames_in, frames_out, nbytes); in main() 1603 nbytes += pkt->data.raw.sz; in main() 1612 nbytes += pkt->data.raw.sz; in main() 1642 arg_passes, frames_in, frames_out, nbytes, nbytes * 8 / frames_in, in main() 1643 nbytes * 8 *(int64_t)arg_framerate.num / arg_framerate.den / frames_in, in main()
|
/external/kernel-headers/original/linux/sunrpc/ |
D | xdr.h | 191 extern uint32_t *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); 195 extern uint32_t *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes);
|