Searched refs:len (Results 101 - 125 of 9451) sorted by relevance

1234567891011>>

/external/qemu/distrib/ext4_utils/src/
H A Dindirect.h22 void inode_allocate_indirect(struct ext4_inode *inode, unsigned long len);
23 u8 *inode_allocate_data_indirect(struct ext4_inode *inode, unsigned long len,
H A Dwipe.h31 int wipe_block_device(int fd, s64 len);
/external/qemu/distrib/libsparse/src/
H A Doutput_file.h24 struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t len,
27 void *priv, unsigned int block_size, int64_t len, int gz, int sparse,
29 int write_data_chunk(struct output_file *out, unsigned int len, void *data);
30 int write_fill_chunk(struct output_file *out, unsigned int len,
32 int write_file_chunk(struct output_file *out, unsigned int len,
34 int write_fd_chunk(struct output_file *out, unsigned int len,
36 int write_skip_chunk(struct output_file *out, int64_t len);
39 int read_all(int fd, void *buf, size_t len);
/external/srtp/crypto/rng/
H A Drand_linux_kernel.c55 rand_source_get_octet_string(void *dest, uint32_t len) { argument
57 get_random_bytes(dest, len);
/external/tcpdump/
H A Dprint-gre.c94 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
243 u_int len = length; local
321 gre_sre_print(u_int16_t af, u_int8_t sreoff, u_int8_t srelen, const u_char *bp, u_int len) argument
340 gre_sre_ip_print(u_int8_t sreoff, u_int8_t srelen, const u_char *bp, u_int len) argument
374 gre_sre_asn_print(u_int8_t sreoff, u_int8_t srelen, const u_char *bp, u_int len) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs8.h12 struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
/external/wpa_supplicant_8/src/tls/
H A Dpkcs8.h12 struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs8.h12 struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
/external/chromium_org/media/base/
H A Dvector_math.h18 // Multiply each element of |src| (up to |len|) by |scale| and add to |dest|.
20 MEDIA_EXPORT void FMAC(const float src[], float scale, int len, float dest[]);
24 MEDIA_EXPORT void FMUL(const float src[], float scale, int len, float dest[]);
34 float initial_value, const float src[], int len, float smoothing_factor);
36 MEDIA_EXPORT void Crossfade(const float src[], int len, float dest[]);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/
H A Dpipe_event_emitter.cc16 Error PipeEventEmitter::Read_Locked(char* data, size_t len, int* out_bytes) { argument
17 *out_bytes = fifo_.Read(data, len);
24 size_t len,
26 *out_bytes = fifo_.Write(data, len);
23 Write_Locked(const char* data, size_t len, int* out_bytes) argument
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_print.c63 int ASN1_PRINTABLE_type(const unsigned char *s, int len) argument
69 if (len <= 0) len= -1;
72 while ((*s) && (len-- != 0))
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_utf8utils.h17 int len,
/external/chromium_org/third_party/speex/include/speex/
H A Dspeex_buffer.h50 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/chromium_org/third_party/tlslite/tlslite/utils/
H A Dtripledes.py8 if len(key) != 24:
12 if len(IV) != 8:
22 assert(len(plaintext) % 8 == 0)
27 assert(len(ciphertext) % 8 == 0)
/external/compiler-rt/test/tsan/
H A Dignore_lib_lib.h8 volatile int len; variable
13 memset(p, 0, len);
20 len = 10;
21 __atomic_store_n(&mem, malloc(len), __ATOMIC_RELEASE);
/external/e2fsprogs/lib/ext2fs/
H A Dcrc16.h24 extern crc16_t ext2fs_crc16(crc16_t crc, const void *buffer, unsigned int len);
/external/libedit/src/
H A Dwcsdup.c30 size_t len; local
34 len = wcslen(str) + 1;
35 copy = malloc(len * sizeof (wchar_t));
40 return wmemcpy(copy, str, len);
/external/libvpx/libvpx/
H A Dy4menc.c13 int y4m_write_file_header(char *buf, size_t len, int width, int height, argument
21 return snprintf(buf, len, "YUV4MPEG2 W%u H%u F%u:%u I%c %s", width, height,
25 int y4m_write_frame_header(char *buf, size_t len) { argument
26 return snprintf(buf, len, "FRAME\n");
/external/openssl/crypto/des/
H A Denc_writ.c80 int DES_enc_write(int fd, const void *_buf, int len, argument
112 if (len > MAXWRITE)
115 for (i=0; i<len; i+=k)
118 ((len-i) > MAXWRITE)?MAXWRITE:(len-i),sched,iv);
129 l2n(len,p);
132 if (len < 8)
135 memcpy(shortbuf,buf,len);
136 RAND_pseudo_bytes(shortbuf+len, 8-len);
[all...]
/external/speex/include/speex/
H A Dspeex_buffer.h50 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/chromium_org/third_party/icu/source/common/
H A Dcharstr.cpp23 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
24 len=s.len;
25 uprv_memcpy(buffer.getAlias(), s.buffer.getAlias(), len+1);
34 if(newLength<len) {
35 buffer[len=newLength]=0;
41 if(ensureCapacity(len+2, 0, errorCode)) {
42 buffer[len++]=c;
43 buffer[len]=0;
60 if(s==(buffer.getAlias()+len)) {
[all...]
/external/icu/icu4c/source/common/
H A Dcharstr.cpp23 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
24 len=s.len;
25 uprv_memcpy(buffer.getAlias(), s.buffer.getAlias(), len+1);
34 if(newLength<len) {
35 buffer[len=newLength]=0;
41 if(ensureCapacity(len+2, 0, errorCode)) {
42 buffer[len++]=c;
43 buffer[len]=0;
60 if(s==(buffer.getAlias()+len)) {
[all...]
/external/chromium_org/testing/gtest/samples/
H A Dsample2.cc42 const size_t len = strlen(a_c_string); local
43 char* const clone = new char[ len + 1 ];
44 memcpy(clone, a_c_string, len + 1);
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.h15 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
17 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
19 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.h29 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
31 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
33 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );

Completed in 892 milliseconds

1234567891011>>