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

1 2 3 4 5 6 7 8

  /external/dropbear/libtomcrypt/src/pk/asn1/der/bit/
der_length_bit_string.c 27 unsigned long nbytes; local
31 nbytes = (nbits >> 3) + ((nbits & 7) ? 1 : 0) + 1;
33 if (nbytes < 128) {
35 *outlen = 2 + nbytes;
36 } else if (nbytes < 256) {
38 *outlen = 3 + nbytes;
39 } else if (nbytes < 65536) {
41 *outlen = 4 + nbytes;
  /system/core/sh/
machdep.h 47 #define SHELL_ALIGN(nbytes) (((nbytes) + SHELL_SIZE) & ~SHELL_SIZE)
memalloc.c 59 ckmalloc(int nbytes)
63 p = malloc(nbytes);
75 ckrealloc(pointer p, int nbytes)
77 p = realloc(p, nbytes);
124 stalloc(int nbytes)
128 nbytes = SHELL_ALIGN(nbytes);
129 if (nbytes > stacknleft) {
133 blocksize = nbytes;
145 stacknxt += nbytes;
    [all...]
  /bionic/libc/unistd/
pread.c 31 ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset)
33 return pread64(fd, buf, nbytes, (off64_t)offset);
pwrite.c 31 ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset)
33 return pwrite64(fd, buf, nbytes, (off64_t)offset);
  /development/ndk/platforms/android-9/arch-mips/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /external/valgrind/main/perf/
heap.c 12 int i, j, nbytes = 0; local
24 arr[j] = malloc(nbytes);
28 nbytes += 8;
29 if (nbytes > 32)
30 nbytes = 0;
  /libcore/luni/src/main/java/java/util/zip/
Checksum.java 45 * @param nbytes
48 public void update(byte[] buf, int off, int nbytes);
CheckedOutputStream.java 81 * @param nbytes
87 public void write(byte[] buf, int off, int nbytes) throws IOException {
88 out.write(buf, off, nbytes);
89 check.update(buf, off, nbytes);
  /external/valgrind/main/VEX/unused/
arena.h 40 extern void *Arena_alloc (T arena, long nbytes,
43 long nbytes, const char *file, int line);
  /external/elfutils/libasm/
asm_adduleb128.c 74 size_t nbytes = dest - tmpbuf; local
77 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
82 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
85 asmscn->content->len += nbytes;
88 asmscn->offset += nbytes;
asm_addsleb128.c 78 size_t nbytes = dest - tmpbuf; local
81 if (__libasm_ensure_section_space (asmscn, nbytes) != 0)
86 memcpy (&asmscn->content->data[asmscn->content->len], tmpbuf, nbytes);
89 asmscn->content->len += nbytes;
92 asmscn->offset += nbytes;
  /external/valgrind/main/memcheck/tests/
malloc2.c 15 int i, j, k, nbytes; local
27 nbytes = 1 + random() % M_TEST_MALLOC;
29 nbytes *= 17;
30 test_arr[j] = malloc( nbytes );
32 for (k = 1; k < nbytes; k++)
  /external/expat/xmlwf/
readfilemap.c 48 size_t nbytes; local
67 nbytes = sb.st_size;
68 /* malloc will return NULL with nbytes == 0, handle files with size 0 */
69 if (nbytes == 0) {
75 p = malloc(nbytes);
81 n = read(fd, p, nbytes);
88 if (n != nbytes) {
94 processor(p, nbytes, name, arg);
unixfilemap.c 26 size_t nbytes; local
46 nbytes = sb.st_size;
48 if (nbytes == 0) {
54 p = (void *)mmap((caddr_t)0, (size_t)nbytes, PROT_READ,
61 processor(p, nbytes, name, arg);
62 munmap((caddr_t)p, nbytes);
  /external/bison/lib/
mbswidth.h 54 /* Returns the number of screen columns needed for the NBYTES bytes
56 extern int mbsnwidth (const char *buf, size_t nbytes, int flags);
  /external/libmtp/src/
util.h 26 void data_dump(FILE *f, void *buf, uint32_t nbytes);
  /frameworks/native/include/utils/
Compat.h 35 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) {
36 return pread(fd, buf, nbytes, offset);
  /external/valgrind/main/coregrind/m_replacemalloc/
replacemalloc_core.c 78 void* VG_(cli_malloc) ( SizeT align, SizeT nbytes )
84 nbytes );
87 align, nbytes );
  /external/speex/libspeex/
kiss_fft.h 28 #define KISS_FFT_MALLOC(nbytes) memalign(16,nbytes)
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 133 byte ctrlReq( byte addr, byte ep, byte bmReqType, byte bRequest, byte wValLo, byte wValHi, unsigned int wInd, unsigned int nbytes, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
135 byte getDevDescr( byte addr, byte ep, unsigned int nbytes, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
136 byte getConfDescr( byte addr, byte ep, unsigned int nbytes, byte conf, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
137 byte getStrDescr( byte addr, byte ep, unsigned int nbytes, byte index, unsigned int langid, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
143 byte getReportDescr( byte addr, byte ep, unsigned int nbytes, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
144 byte setReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
145 byte getReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
149 byte ctrlData( byte addr, byte ep, unsigned int nbytes, char* dataptr, boolean direction, unsigned int nak_limit = USB_NAK_LIMIT );
151 byte inTransfer( byte addr, byte ep, unsigned int nbytes, char* data, unsigned int nak_limit = USB_NAK_LIMIT );
152 int newInTransfer( byte addr, byte ep, unsigned int nbytes, char* data, unsigned int nak_limit = USB_NAK_LIMIT)
    [all...]
  /external/oprofile/libutil++/
bfd_spu_support.cpp 69 file_ptr nbytes, file_ptr offset)
74 nbytes = fread(buf, sizeof(char), nbytes, my_stream->stream);
79 return nbytes;
  /external/valgrind/main/VEX/priv/
main_globals.c 53 void (*vex_log_bytes) ( HChar*, Int nbytes ) = NULL;

Completed in 695 milliseconds

1 2 3 4 5 6 7 8