HomeSort by relevance Sort by last modified time
    Searched refs:len (Results 51 - 75 of 4801) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/dropbear/
random.h 32 void genrandom(unsigned char* buf, int len);
33 void addrandom(unsigned char* buf, int len);
  /external/ppp/pppd/
magic.h 49 void random_bytes __P((unsigned char *buf, int len));
  /external/zlib/examples/
gzlog.h 51 int gzlog_write(void *log, char *data, size_t len);
  /frameworks/base/include/utils/
Buffer.h 32 void ensureCapacity(int len);
35 makeRoomFor(int len)
37 if (len + used >= bufsiz) {
38 bufsiz = (len + used) * 3/2 + 2;
83 append(const char *s, int len)
85 makeRoomFor(len);
87 memcpy(buf + used, s, len);
88 used += len;
  /system/core/libcutils/
uio.c 28 int len = vecs->iov_len; local
30 while (len > 0) {
31 int ret = read( fd, buf, len );
42 len -= ret;
55 int len = (int)vecs->iov_len; local
57 while (len > 0) {
58 int ret = write( fd, buf, len );
69 len -= ret;
  /external/dropbear/libtomcrypt/src/pk/asn1/der/short_integer/
der_decode_short_integer.c 30 unsigned long len, x, y; local
46 /* get the packet len */
47 len = in[x++];
49 if (x + len > inlen) {
55 while (len--) {
  /external/elfutils/libebl/
libebl_mips.h 28 extern const char *mips_reloc_type_name (int type, char *buf, size_t len);
31 extern const char *mips_segment_type_name (int type, char *buf, size_t len);
34 extern const char *mips_section_type_name (int type, char *buf, size_t len);
40 extern const char *mips_dynamic_tag_name (int64_t tag, char *buf, size_t len);
eblreloctypename.c 24 ebl_reloc_type_name (ebl, reloc, buf, len)
28 size_t len;
32 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
  /external/opencore/codecs_v2/audio/sbc/enc/src/
sbcenc_crc8.h 26 UWord8 crc8(const UWord8 *data, UInt len);
  /external/openssl/crypto/des/
enc_writ.c 80 int DES_enc_write(int fd, const void *_buf, int len,
109 if (len > MAXWRITE)
112 for (i=0; i<len; i+=k)
115 ((len-i) > MAXWRITE)?MAXWRITE:(len-i),sched,iv);
126 l2n(len,p);
129 if (len < 8)
132 memcpy(shortbuf,buf,len);
133 RAND_pseudo_bytes(shortbuf+len, 8-len);
    [all...]
  /external/speex/include/speex/
speex_buffer.h 50 int speex_buffer_write(SpeexBuffer *st, void *data, int len);
52 int speex_buffer_writezeros(SpeexBuffer *st, int len);
54 int speex_buffer_read(SpeexBuffer *st, void *data, int len);
58 int speex_buffer_resize(SpeexBuffer *st, int len);
  /external/tcpdump/
print-sip.c 36 sip_print(register const u_char *pptr, register u_int len)
40 printf("SIP, length: %u%s", len, vflag ? "\n\t" : "");
46 for (idx = 0; idx < len; idx++) {
57 print_unknown_data(pptr,"\n\t",len);
print-gre.c 94 u_int len = length, vers; local
96 if (len < 2) {
105 gre_print_0(bp, len);
108 gre_print_1(bp, len);
121 u_int len = length; local
129 len -= 2;
132 if (len < 2)
135 len -= 2;
139 if (len < 2)
144 len -= 2
240 u_int len = length; local
    [all...]
  /external/webkit/JavaScriptCore/wtf/
StringExtras.cpp 46 int strncasecmp(const char* s1, const char* s2, size_t len)
48 while (len > 0 && toASCIIUpper(*s1) == toASCIIUpper(*s2)) {
53 len--;
56 if (!len)
  /system/core/adb/
test_track_devices.c 17 unix_write( int fd, const char* buf, int len )
20 while (len > 0) {
21 int len2 = write(fd, buf, len);
28 len -= len2;
35 unix_read( int fd, char* buf, int len )
38 while (len > 0) {
39 int len2 = read(fd, buf, len);
46 len -= len2;
59 int len; local
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request )
    [all...]
test_track_jdwp.c 17 unix_write( int fd, const char* buf, int len )
20 while (len > 0) {
21 int len2 = write(fd, buf, len);
28 len -= len2;
35 unix_read( int fd, char* buf, int len )
38 while (len > 0) {
39 int len2 = read(fd, buf, len);
46 len -= len2;
59 int len; local
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request )
    [all...]
  /bionic/libc/string/
strcasestr.c 46 size_t len; local
50 len = strlen(find);
56 } while (strncasecmp(s, find, len) != 0);
strstr.c 43 size_t len; local
46 len = strlen(find);
52 } while (strncmp(s, find, len) != 0);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
MGFParameters.java 22 int len)
24 this.seed = new byte[len];
25 System.arraycopy(seed, off, this.seed, 0, len);
  /external/dropbear/libtomcrypt/src/modes/cbc/
cbc_setiv.c 24 @param len The length of the vector (in octets)
28 int cbc_setiv(const unsigned char *IV, unsigned long len, symmetric_CBC *cbc)
32 if (len != (unsigned long)cbc->blocklen) {
35 XMEMCPY(cbc->IV, IV, len);
  /external/elfutils/lib/
xstrndup.c 28 size_t len = strnlen (string, n); local
29 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
  /external/gtest/samples/
sample2.cc 42 const size_t len = strlen(c_string); local
43 char * const clone = new char[ len + 1 ];
44 memcpy(clone, c_string, len + 1);
  /external/sqlite/android/
PhoneticStringUtils.h 41 bool GetUtf8FromCodePoint(int codepoint, char *dst, size_t len, size_t *index);
48 bool GetPhoneticallySortableString(const char *src, char **dst, size_t *len);
55 bool GetNormalizedString(const char *src, char **dst, size_t *len);
  /external/webkit/WebCore/rendering/
break_lines.h 28 int nextBreakablePosition(const UChar*, int pos, int len, bool breakNBSP = false);
30 inline bool isBreakable(const UChar* str, int pos, int len, int& nextBreakable, bool breakNBSP = false)
33 nextBreakable = nextBreakablePosition(str, pos, len, breakNBSP);
  /frameworks/base/core/java/android/util/
StringBuilderPrinter.java 37 int len = x.length(); local
38 if (len <= 0 || x.charAt(len-1) != '\n') {

Completed in 469 milliseconds

1 23 4 5 6 7 8 91011>>