Searched defs:len (Results 301 - 325 of 5037) sorted by relevance

<<11121314151617181920>>

/external/vboot_reference/utility/
H A Dpad_digest_utility.c24 uint64_t len; local
37 digest = BufferFromFile(argv[2], &len);
H A Dsignature_digest_utility.c25 uint64_t len; local
38 buf = BufferFromFile(argv[2], &len);
44 signature_digest = SignatureDigest(buf, len, algorithm);
/external/webrtc/webrtc/base/
H A Dcrc32.cc40 uint32_t UpdateCrc32(uint32_t start, const void* buf, size_t len) { argument
45 for (size_t i = 0; i < len; ++i) {
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dhp_input.c33 size_t len) /* (i) Number of samples to filter */
39 for (i=0; i<len; i++) {
25 WebRtcIlbcfix_HpInput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, size_t len) argument
H A Dhp_output.c33 size_t len) /* (i) Number of samples to filter */
39 for (i=0; i<len; i++) {
25 WebRtcIlbcfix_HpOutput( int16_t *signal, int16_t *ba, int16_t *y, int16_t *x, size_t len) argument
/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/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_passphrase.c20 size_t len; local
51 len = os_strlen(passphrase);
52 if (len < 8 || len > 63) {
56 if (has_ctrl_char((u8 *) passphrase, len)) {
/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/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DLimitedInputStream.java62 public int read(byte[] b, int off, int len) throws IOException { argument
66 int maxRead = (int) Math.min(len, numToRead);
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
H A DLimitedInputStreamTest.java46 public int read(byte[] b, int off, int len) throws IOException { argument
47 return len;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DCountingOutputStream.java59 public void write(byte[] b, int off, int len) throws IOException { argument
60 bytesWritten += len;
61 out.write(b, off, len);
H A DRandomAccessFileOutputStream.java72 public void write(byte[] b, int off, int len) throws IOException { argument
73 raf.write(b, off, len);
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
H A DCountingOutputStreamTest.java51 public void write(byte[] b, int off, int len) throws IOException { argument

Completed in 1489 milliseconds

<<11121314151617181920>>