HomeSort by relevance Sort by last modified time
    Searched full:len (Results 751 - 775 of 5669) sorted by null

<<31323334353637383940>>

  /system/core/toolbox/
insmod.c 71 int i, len; local
76 len = min(strlen(argv[i]), end - ptr);
77 memcpy(ptr, argv[i], len);
78 ptr += len;
  /external/freetype/src/psaux/
afmparse.c 381 FT_Offset len; local
393 len = AFM_STREAM_KEY_LEN( stream, str );
404 if ( !FT_QALLOC( val->u.s, len + 1 ) )
406 ft_memcpy( val->u.s, str, len );
407 val->u.s[len] = '\0';
414 (FT_Byte*)str + len, 0 );
419 (FT_Byte*)str + len );
423 val->u.b = FT_BOOL( len == 4 &&
429 val->u.i = parser->get_index( str, len, parser->user_data );
443 FT_Offset* len )
588 FT_Offset len; local
689 FT_Offset len; local
779 FT_Offset len; local
822 FT_Offset len; local
853 FT_Offset len; local
    [all...]
  /external/iproute2/tc/
tc_util.c 97 int print_tc_classid(char *buf, int len, __u32 h)
102 snprintf(buf, len, "none");
104 snprintf(buf, len, ":%x", TC_H_MIN(h));
106 snprintf(buf, len, "%x:", TC_H_MAJ(h)>>16);
108 snprintf(buf, len, "%x:%x", TC_H_MAJ(h)>>16, TC_H_MIN(h));
199 void print_rate(char *buf, int len, __u32 rate)
206 snprintf(buf, len, "%.0fMibit", tmp/1024.0*1024.0);
208 snprintf(buf, len, "%.0fKibit", tmp/1024);
210 snprintf(buf, len, "%.0fbit", tmp);
213 snprintf(buf, len, "%.0fMbit", tmp/1000000.0)
    [all...]
  /external/v8/src/
debug-agent.cc 179 int len = 0; local
182 len++;
184 int16_t* temp = NewArray<int16_t>(len + 1);
186 for (int i = 0; i < len; i++) {
191 v8::Debug::SendCommand(reinterpret_cast<const uint16_t *>(temp), len); local
306 int len; local
309 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
311 ok = conn->Send(buffer, len);
314 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
316 ok = conn->Send(buffer, len);
359 int len; local
    [all...]
  /external/tcpdump/
print-isakmp.c 325 rawprint(caddr_t loc, size_t len)
330 TCHECK2(*loc, len);
333 for (i = 0; i < len; i++)
378 printf("len=%d value=", EXTRACT_16BITS(&q[1]));
410 printf("len=%d value=", EXTRACT_16BITS(&q[1]));
647 printf(" key len=%d", ntohs(e.len) - 4);
648 if (2 < vflag && 4 < ntohs(e.len)) {
650 if (!rawprint((caddr_t)(ext + 1), ntohs(e.len) - 4))
653 return (u_char *)ext + ntohs(e.len);
675 int len; local
    [all...]
  /bionic/libc/kernel/common/linux/lockd/
xdr.h 30 int len; member in struct:nlm_lock
40 unsigned int len; member in struct:nlm_cookie
64 int len; member in struct:nlm_reboot
  /bionic/libc/kernel/common/linux/sunrpc/
gss_asn1.h 34 #define g_OID_equal(o1,o2) (((o1)->len == (o2)->len) && (memcmp((o1)->data,(o2)->data,(int) (o1)->len) == 0))
  /bionic/libc/stdio/
fgetln.c 74 size_t len; local
94 *lenp = len = p - fp->_p;
96 fp->_r -= len;
111 for (len = fp->_r, off = 0;; len += fp->_r) {
119 if (__slbexpand(fp, len + OPTIMISTIC))
122 len - off);
123 off = len;
132 len += diff;
133 if (__slbexpand(fp, len))
    [all...]
  /bootable/bootloader/legacy/libc/
strlen.c 31 int len = 0; local
32 while(*s++) len++;
33 return len;
  /cts/tests/tests/content/src/android/content/res/cts/
AssetManager_AssetInputStreamTest.java 141 int len = mAssetInputStream.available(); local
143 assertEquals(CONTENT_STRING.length(), len); local
144 for (int i = 0; i < len; i++) {
158 data = new byte[len - dataLength];
159 assertEquals(len - dataLength, mAssetInputStream.read(data));
160 for (int i = 0; i < len - dataLength; i++) {
180 data = new byte[len + offset];
181 ret = mAssetInputStream.read(data, offset, len);
182 assertEquals(len - dataLength, ret);
186 assertEquals(end, mAssetInputStream.read(data, offset, len));
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
AsymmetricBlockCipher.java 34 * process the block of len bytes stored in in from offset inOff.
38 * @param len the length of the block to be processed.
43 public byte[] processBlock(byte[] in, int inOff, int len)
  /external/bison/lib/
strdup.c 43 size_t len = strlen (s) + 1; local
44 void *new = malloc (len);
49 return (char *) memcpy (new, s, len);
  /external/bluetooth/glib/glib/
gbase64.h 33 gsize len,
43 gsize len) G_GNUC_MALLOC;
45 gsize len,
  /external/dropbear/libtomcrypt/src/modes/cfb/
cfb_setiv.c 23 @param len The length of the vector (in octets)
27 int cfb_setiv(const unsigned char *IV, unsigned long len, symmetric_CFB *cfb)
38 if (len != (unsigned long)cfb->blocklen) {
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_setiv.c 23 @param len The length of the vector (in octets)
27 int f8_setiv(const unsigned char *IV, unsigned long len, symmetric_F8 *f8)
38 if (len != (unsigned long)f8->blocklen) {
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_setiv.c 23 @param len The length of the vector (in octets)
27 int ofb_setiv(const unsigned char *IV, unsigned long len, symmetric_OFB *ofb)
38 if (len != (unsigned long)ofb->blocklen) {
  /external/dropbear/libtommath/
bn_mp_clear.c 23 int len; local
28 len = a->alloc;
30 while (len--) {
  /external/dropbear/
random.c 178 /* return len bytes of pseudo-random data */
179 void genrandom(unsigned char* buf, unsigned int len) {
189 while (len > 0) {
200 copylen = MIN(len, SHA1_HASH_SIZE);
202 len -= copylen;
216 unsigned int len = 0; local
221 len = size_bits / 8;
223 len += 1;
226 randbuf = (unsigned char*)m_malloc(len);
228 genrandom(randbuf, len);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
lookup.c 23 int len; member in struct:lookup_struct
39 if (ls->len != (dirent->name_len & 0xFF))
58 ls.len = namelen;
  /external/elfutils/
config-compat-freebsd.h 46 int len = 0; local
48 len++;
49 return len;
  /external/elfutils/libebl/
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;
libebl_ia64.h 28 extern const char *ia64_reloc_type_name (int type, char *buf, size_t len);
34 extern const char *ia64_segment_type_name (int segment, char *buf, size_t len);
37 extern const char *ia64_dynamic_tag_name (int64_t tag, char *buf, size_t len);
  /external/expat/examples/
elements.c 53 int len = (int)fread(buf, 1, sizeof(buf), stdin); local
54 done = len < sizeof(buf);
55 if (XML_Parse(parser, buf, len, done) == XML_STATUS_ERROR) {
  /external/guava/src/com/google/common/io/
CountingOutputStream.java 47 @Override public void write(byte[] b, int off, int len) throws IOException {
48 out.write(b, off, len);
49 count += len;
  /external/icu4c/i18n/
remtrans.cpp 62 int32_t len = index.limit - index.start; local
63 index.contextLimit -= len;
64 index.limit -= len;

Completed in 303 milliseconds

<<31323334353637383940>>