Searched refs:length (Results 226 - 250 of 13728) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libxml2/doc/examples/
H A Dparse3.c21 * @length: the length in bytes
26 example3Func(const char *content, int length) { argument
33 doc = xmlReadMemory(content, length, "noname.xml", NULL, 0);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/heimdal/lib/gssapi/krb5/
H A Dexport_name.c57 exported_name->length = 10 + len + GSS_KRB5_MECHANISM->length;
58 exported_name->value = malloc(exported_name->length);
70 buf[0] = ((GSS_KRB5_MECHANISM->length + 2) >> 8) & 0xff;
71 buf[1] = (GSS_KRB5_MECHANISM->length + 2) & 0xff;
74 buf[1] = (GSS_KRB5_MECHANISM->length) & 0xFF;
77 memcpy(buf, GSS_KRB5_MECHANISM->elements, GSS_KRB5_MECHANISM->length);
78 buf += GSS_KRB5_MECHANISM->length;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/crypto/aes/
H A Daes_ctr.c56 size_t length, const AES_KEY *key,
61 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
55 AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE], unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num) argument
H A Daes_ofb.c56 size_t length, const AES_KEY *key,
59 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
55 AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/crypto/bio/
H A Dbss_rtcp.c89 unsigned short int length; member in struct:rpc_msg
136 static int get(io_channel chan, char *buffer, int maxlen, int *length) argument
145 *length = iosb.count;
149 static int put(io_channel chan, char *buffer, int length) argument
154 buffer, length, 0, 0, 0, 0);
191 int status, length; local
198 length = ctx->filled - ctx->pos;
199 if (length > outl)
200 length = outl;
201 memmove(out, &ctx->msg.data[ctx->pos], length);
241 int status, i, segment, length; local
312 int length; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/crypto/camellia/
H A Dcmll_ctr.c56 size_t length, const CAMELLIA_KEY *key,
62 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
55 Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char ivec[CAMELLIA_BLOCK_SIZE], unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num) argument
H A Dcmll_ofb.c117 size_t length, const CAMELLIA_KEY *key,
120 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
116 Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/rand/
H A Drand_vms.c86 short length, code; /* length is amount of bytes */ member in struct:items_data_st
119 short length, code; member in struct:__anon6100
131 while (pitems_data->length && (total_length + pitems_data->length <= 256)) {
132 pitem->length = pitems_data->length;
136 total_length += pitems_data->length;
140 pitem->length = pitem->code = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf, int length, const char *prompt, argument
62 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/aes/
H A Daes_ctr.c56 size_t length, const AES_KEY *key,
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
55 AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE], unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num) argument
H A Daes_ofb.c56 size_t length, const AES_KEY *key,
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
55 AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/bio/
H A Dbss_rtcp.c81 unsigned short int length; /* Amount of data returned or max to return */ member in struct:rpc_msg
126 static int get ( io_channel chan, char *buffer, int maxlen, int *length )
133 if ( (status&1) == 1 ) *length = iosb.count;
137 static int put ( io_channel chan, char *buffer, int length )
142 buffer, length, 0, 0, 0, 0 );
176 int status, length; local
183 length = ctx->filled - ctx->pos;
184 if ( length > outl ) length = outl;
185 memmove ( out, &ctx->msg.data[ctx->pos], length );
223 int status, i, segment, length; local
288 int length; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/camellia/
H A Dcmll_ctr.c56 size_t length, const CAMELLIA_KEY *key,
62 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)Camellia_encrypt);
55 Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char ivec[CAMELLIA_BLOCK_SIZE], unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num) argument
H A Dcmll_ofb.c116 size_t length, const CAMELLIA_KEY *key,
118 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)Camellia_encrypt);
115 Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/rand/
H A Drand_vms.c85 short length, code; /* length is amount of bytes */ member in struct:items_data_st
103 short length, code; member in struct:__anon6394
115 while (pitems_data->length
116 && (total_length + pitems_data->length <= 256))
118 pitem->length = pitems_data->length;
122 total_length += pitems_data->length;
126 pitem->length = pitem->code = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libxml2/doc/examples/
H A Dparse3.c21 * @length: the length in bytes
26 example3Func(const char *content, int length) { argument
33 doc = xmlReadMemory(content, length, "noname.xml", NULL, 0);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/aes/
H A Daes_ctr.c56 size_t length, const AES_KEY *key,
61 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
55 AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE], unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num) argument
H A Daes_ofb.c56 size_t length, const AES_KEY *key,
59 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
55 AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/bio/
H A Dbss_rtcp.c89 unsigned short int length; member in struct:rpc_msg
136 static int get(io_channel chan, char *buffer, int maxlen, int *length) argument
145 *length = iosb.count;
149 static int put(io_channel chan, char *buffer, int length) argument
154 buffer, length, 0, 0, 0, 0);
191 int status, length; local
198 length = ctx->filled - ctx->pos;
199 if (length > outl)
200 length = outl;
201 memmove(out, &ctx->msg.data[ctx->pos], length);
241 int status, i, segment, length; local
312 int length; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/camellia/
H A Dcmll_ctr.c56 size_t length, const CAMELLIA_KEY *key,
62 CRYPTO_ctr128_encrypt(in, out, length, key, ivec, ecount_buf, num,
55 Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char ivec[CAMELLIA_BLOCK_SIZE], unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num) argument
H A Dcmll_ofb.c117 size_t length, const CAMELLIA_KEY *key,
120 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
116 Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pppd/pppd/plugins/pppoatm/
H A Datmres.h31 int ans_byname(const char *text,struct sockaddr_atmsvc *addr,int length,
33 int ans_byaddr(char *buffer,int length,const struct sockaddr_atmsvc *addr,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/crypto/rand/
H A Drand_vms.c86 short length, code; /* length is amount of bytes */ member in struct:items_data_st
119 short length, code; member in struct:__anon40125
131 while (pitems_data->length && (total_length + pitems_data->length <= 256)) {
132 pitem->length = pitems_data->length;
136 total_length += pitems_data->length;
140 pitem->length = pitem->code = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf, int length, const char *prompt, argument
62 return UI_UTIL_read_pw_string(buf, length, prompt, verify);

Completed in 137 milliseconds

1234567891011>>