Searched refs:len (Results 251 - 275 of 9451) sorted by relevance

<<11121314151617181920>>

/external/iproute2/include/
H A Drtm_map.h4 char *rtnl_rtntype_n2a(int id, char *buf, int len);
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dmman.h3 #define arch_mmap_check(addr, len, flags) \
/external/libedit/src/
H A Dfgetln.c48 fgetln(FILE *fp, size_t *len) argument
64 *len = 0;
65 while ((ptr = strchr(&buf[*len], '\n')) == NULL) {
80 *len = strlen(buf);
84 *len = bufsiz;
88 *len = (ptr - buf) + 1;
99 size_t len; local
101 while ((p = fgetln(stdin, &len)) != NULL) {
102 (void)printf("%zu %s", len, p);
/external/libopus/celt/arm/
H A Dpitch_arm.h37 opus_val32 *xcorr, int len, int max_pitch);
46 opus_val32 *xcorr, int len, int max_pitch);
51 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \
52 ((void)(arch),PRESUME_NEON(celt_pitch_xcorr)(_x, _y, xcorr, len, max_pitch))
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dquote.c29 size_t len = strcspn(src, "'!"); local
30 strbuf_add(dst, src, len);
31 src += len;
51 if (maxlen && dst->len > maxlen)
/external/qemu/distrib/ext4_utils/src/
H A Dwipe.c35 int wipe_block_device(int fd, s64 len) argument
46 range[1] = len;
50 range[1] = len;
70 int wipe_block_device(int fd, s64 len) argument
/external/qemu/distrib/libsparse/src/
H A Dsparse_file.h24 int64_t len; member in struct:sparse_file
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesticonv.c8 size_t len = 0; local
11 ++len;
13 return len;
50 size_t len; local
52 len = (widelen(ucs4)+1)*4;
54 test[0] = SDL_iconv_string(formats[i], "UCS-4", ucs4, len);
55 test[1] = SDL_iconv_string("UCS-4", formats[i], test[0], len);
56 if ( !test[1] || SDL_memcmp(test[1], ucs4, len) != 0 ) {
67 test[0] = SDL_iconv_string("UTF-8", "UCS-4", ucs4, len);
/external/skia/src/ports/
H A DSkXMLParser_empty.cpp15 bool SkXMLParser::parse(const char doc[], size_t len) argument
/external/srec/shared/include/
H A DESR_CommandLine.h43 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW,
50 size_t* len);
/external/tcpdump/
H A Dprint-otv.c44 otv_print(const u_char *bp, u_int len) argument
50 if (len < 8) {
77 ether_print(gndo, bp, len - 8, len - 8, NULL, NULL);
H A Dprint-sip.c36 sip_print(register const u_char *pptr, register u_int len) argument
40 printf("SIP, length: %u%s", len, vflag ? "\n\t" : "");
46 for (idx = 0; idx < len; idx++) {
58 print_unknown_data(pptr,"\n\t",len);
H A Dprint-vxlan.c44 vxlan_print(const u_char *bp, u_int len) argument
49 if (len < 8) {
72 ether_print(gndo, bp, len - 8, len - 8, NULL, NULL);
H A Dprint-igmp.c110 print_mtrace(register const u_char *bp, register u_int len) argument
115 if (len < 8 + sizeof (struct tr_query)) {
116 (void)printf(" [invalid len %d]", len);
132 print_mresp(register const u_char *bp, register u_int len) argument
137 if (len < 8 + sizeof (struct tr_query)) {
138 (void)printf(" [invalid len %d]", len);
154 print_igmpv3_report(register const u_char *bp, register u_int len) argument
159 /* Minimum len i
208 print_igmpv3_query(register const u_char *bp, register u_int len) argument
264 igmp_print(register const u_char *bp, register u_int len) argument
[all...]
/external/zlib/src/contrib/blast/
H A Dblast.h39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
52 * The input function is invoked: len = infun(how, &buf), where buf is set by
58 * The output function is invoked: err = outfun(how, buf, len), where the bytes
59 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
60 * with an output error. outfun() is always called with len <= 4096. outhow
H A Dblast.c127 int len; /* current number of bits in code */ local
128 int code; /* len bits being decoded */
129 int first; /* first code of length len */
130 int count; /* number of codes of length len */
131 int index; /* index of first code of length len in symbol table */
139 len = 1;
146 if (code < first + count) { /* if length len, return symbol */
148 s->bitcnt = (s->bitcnt - len) & 7;
155 len++;
157 left = (MAXBITS+1) - len;
190 int len; /* current length when stepping through h->count[] */ local
283 int len; /* length for copy */ local
424 outf(void *how, unsigned char *buf, unsigned len) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dcbc.c59 void CRYPTO_cbc128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
69 while (len >= 16) {
75 len -= 16;
80 while (len >= 16) {
86 len -= 16;
92 while (len) {
93 for (n = 0; n < 16 && n < len; ++n) {
101 if (len <= 16) {
104 len -= 16;
112 void CRYPTO_cbc128_decrypt(const uint8_t *in, uint8_t *out, size_t len, argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dgenmodule.c51 size_t len; local
74 len = strlen(argv[2]);
76 inc->filename = malloc(len+1);
80 isam = argv[2][len-2] == 'a' && argv[2][len-1] == 'm';
95 len = strlen(str);
96 if (len > 0) {
97 strp = &str[len-1];
98 while (len > 0 && isspace(*strp)) {
100 len
[all...]
/external/openssl/crypto/modes/
H A Dcbc128.c67 size_t len, const void *key,
78 while (len>=16) {
83 len -= 16;
88 while (len>=16) {
94 len -= 16;
100 while (len) {
101 for(n=0; n<16 && n<len; ++n)
107 if (len<=16) break;
108 len -= 16;
116 size_t len, cons
66 CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block) argument
115 CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block) argument
[all...]
/external/iproute2/include/linux/
H A Dnetlink.h79 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
81 #define NLMSG_LENGTH(len) ((len)+NLMSG_ALIGN(NLMSG_HDRLEN))
82 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
84 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
86 #define NLMSG_OK(nlh,len) ((len) >
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dnetlink.h80 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
82 #define NLMSG_LENGTH(len) ((len) + NLMSG_HDRLEN)
83 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
85 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
87 #define NLMSG_OK(nlh,len) ((len) >
[all...]
/external/liblzf/
H A Dlzf_d.c48 # define lzf_movsb(dst, src, len) \
50 : "=D" (dst), "=S" (src), "=c" (len) \
51 : "0" (dst), "1" (src), "2" (len));
104 unsigned int len = ctrl >> 5; local
115 if (len == 7)
117 len += *ip++;
129 if (op + len + 2 > out_end)
142 len += 2;
143 lzf_movsb (op, ref, len);
145 switch (len)
[all...]
/external/opencv/cv/src/
H A D_cvmatrix.h45 #define icvCopyVector( src, dst, len ) memcpy( (dst), (src), (len)*sizeof((dst)[0]))
46 #define icvSetZero( dst, len ) memset( (dst), 0, (len)*sizeof((dst)[0]))
48 #define icvCopyVector_32f( src, len, dst ) memcpy((dst),(src),(len)*sizeof(float))
50 #define icvCopyVector_64d( src, len, dst ) memcpy((dst),(src),(len)*sizeof(double))
55 #define icvCreateVector_32f( len ) (float*)cvAlloc( (len)*sizeo
185 int i, len = MIN( w, h ); local
194 int i, len = MIN( w, h ); local
203 int i, len = MIN( w, h ); local
215 int i, len = MIN( w, h ); local
225 icvScaleVector_32f( const float* src, float* dst, int len, double scale ) argument
236 icvScaleVector_64d( const double* src, double* dst, int len, double scale ) argument
[all...]
/external/zlib/src/contrib/puff/
H A Dpufftest.c57 failure. *len is the number of bytes of data read from the input file (even
59 or read, *len is zero. */
60 local void *load(const char *name, size_t *len) argument
66 *len = 0;
73 *len += fread((char *)buf + *len, 1, size - *len, in);
74 if (*len < size) break;
76 if (size == *len || (swap = realloc(buf, size)) == NULL) {
94 size_t len local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTSearch.cpp62 size_t len, size_t elemSize)
66 SkAutoAsciiToLC tolc(target, len);
68 return SkStrSearch(base, count, tolc.lc(), len, elemSize);
79 SkAutoAsciiToLC::SkAutoAsciiToLC(const char str[], size_t len) argument
82 if ((long)len < 0) {
83 len = strlen(str);
85 fLength = len;
87 // assign lc to our preallocated storage if len is small enough, or allocate
90 if (len <= STORAGE) {
93 lc = (char*)sk_malloc_throw(len
61 SkStrLCSearch(const char*const* base, int count, const char target[], size_t len, size_t elemSize) argument
[all...]

Completed in 4978 milliseconds

<<11121314151617181920>>