Searched defs:len (Results 176 - 200 of 5216) sorted by relevance

1234567891011>>

/external/speex/libspeex/
H A Dresample_neon.h55 static inline int32_t inner_product_single(const int16_t *a, const int16_t *b, unsigned int len) argument
58 uint32_t remainder = len % 16;
59 len = len - remainder;
61 asm volatile (" cmp %[len], #0\n"
72 " subs %[len], %[len], #16\n"
81 " subs %[len], %[len], #16\n"
103 [len] "
128 inner_product_single(const float *a, const float *b, unsigned int len) argument
[all...]
/external/srec/portable/src/
H A DPANSIFileSystem.c36 ESR_ReturnCode PANSIFileSystemGetcwd(LCHAR* path, size_t* len) argument
38 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->getcwd(PANSIFileSystemSingleton, path, len);
/external/srtp/crypto/rng/
H A Dctr_prng.c77 ctr_prng_get_octet_string(void *dest, uint32_t len) { argument
85 if (ctr_prng.octet_count > MAX_PRNG_OUT_LEN - len) {
90 ctr_prng.octet_count += len;
95 status = aes_icm_output(&ctr_prng.state, (uint8_t*)dest, len);
H A Drand_source.c100 rand_source_get_octet_string(void *dest, uint32_t len) { argument
103 * read len octets from /dev/random to dest, and
108 if (read(dev_random_fdes, dest, len) != len)
112 while (len)
121 len--;
127 while (len)
134 len--;
/external/tcpdump/
H A Dprint-carp.c51 carp_print(register const u_char *bp, register u_int len, int ttl) argument
63 printf("CARPv%d-%s %d: ", version, type_s, len);
75 vec[0].len = len;
76 if (TTEST2(bp[0], len) && in_cksum(vec, 1))
/external/valgrind/main/none/tests/s390x/
H A Dtr.c10 void tr(uint8_t *codepage, uint8_t *addr, uint64_t len) argument
16 : "+&a" (addr), "+a" (len)
20 void run_test(void *tran_table, void *srcaddr, uint64_t len) argument
24 tr(tran_table, buff, len);
26 for (i = 0; i < len; i++) {
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_none.c15 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) argument
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_none.c15 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) argument
/external/wpa_supplicant_8/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_none.c15 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) argument
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp101 INT len,
114 for (int i=0; i<(len>>2); i++)
133 for (int i=len&3; i--;)
144 for (int i=0; i<(len>>2); i++)
163 for (int i=len&3; i--;)
98 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java120 CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException;
119 parseChallenge( CharArrayBuffer buffer, int pos, int len) argument
H A DRFC2617Scheme.java72 final CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException {
71 parseChallenge( final CharArrayBuffer buffer, int pos, int len) argument
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java109 public void write(byte[] b, int off, int len) throws IOException { argument
115 if (len > max) {
116 len = (int) max;
118 this.out.write(b, off, len);
119 this.total += len;
H A DIdentityInputStream.java87 public int read(final byte[] b, int off, int len) throws IOException { argument
91 return this.in.read(b, off, len);
H A DIdentityOutputStream.java87 public void write(byte[] b, int off, int len) throws IOException { argument
91 this.out.write(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java54 int read(byte[] b, int off, int len) throws IOException; argument
H A DSessionOutputBuffer.java54 void write(byte[] b, int off, int len) throws IOException; argument
/external/bison/lib/
H A Dobstack_printf.c63 size_t len = obstack_room (obs); local
66 if (len < CUTOFF)
69 len = CUTOFF;
71 str = vasnprintf (base, &len, format, args);
81 obstack_blank_fast (obs, len);
86 obstack_grow (obs, str, len);
90 return len;
H A Dopen.c109 size_t len = strlen (filename); local
110 if (len > 0 && filename[len - 1] == '/')
159 /* We know len is positive, since open did not fail with ENOENT. */
160 size_t len = strlen (filename); local
161 if (filename[len - 1] == '/')
H A Dstat.c88 size_t len = strlen (name); local
89 if (ISSLASH (name[len - 1]))
110 size_t len = strlen (name); local
113 if (PATH_MAX <= len)
115 else if (len)
118 if (ISSLASH (fixed_name[len - 1]))
121 while (len && ISSLASH (fixed_name[len - 1]))
122 fixed_name[--len] = '\0';
123 if (!len)
[all...]
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_at.c188 void bta_ag_at_parse(tBTA_AG_AT_CB *p_cb, char *p_buf, UINT16 len) argument
199 for (i = 0; i < len;)
201 while (p_cb->cmd_pos < p_cb->cmd_max_len-1 && i < len)
239 if (i < len)
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_bld_ct.c54 p_pkt->len = (p_data - p_start);
85 p_pkt->len = (p_data - p_start);
112 p_pkt->len = (p_data - p_start);
129 UINT16 offset = 0, chnl = AVCT_DATA_CTRL, len=AVRC_META_CMD_POOL_SIZE; local
148 p_pkt = (BT_HDR *)GKI_getbuf(len);
174 p_pkt->len = (p_data - p_start);

Completed in 462 milliseconds

1234567891011>>