Searched refs:input_length (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dpunyref.h54 punycode_uint input_length,
67 /* needed.) The input_length is the number of code points in */
72 /* holds input_length boolean values, where nonzero suggests that */
86 punycode_uint input_length,
95 /* input_length is the number of code points in the input. The */
111 /* input_length, because of how the encoding is defined. */
H A Dpunyref.c127 punycode_uint input_length,
144 for (j = 0; j < input_length; ++j) {
164 while (h < input_length) {
168 for (m = maxint, j = 0; j < input_length; ++j) {
181 for (j = 0; j < input_length; ++j) {
216 punycode_uint input_length,
236 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
248 for (in = b > 0 ? b + 1 : 0; in < input_length; ++out) {
259 if (in >= input_length) return punycode_bad_input;
126 punycode_encode( punycode_uint input_length, const punycode_uint input[], const unsigned char case_flags[], punycode_uint *output_length, char output[] ) argument
215 punycode_decode( punycode_uint input_length, const char input[], punycode_uint *output_length, punycode_uint output[], unsigned char case_flags[] ) argument
/macosx-10.10/Heimdal-398.1.2/appl/popper/
H A Dpop_auth.c91 size_t input_length, output_length; local
96 input_length = 0;
103 input_length = base64_decode(line, input);
104 if(input_length == (size_t)-1) {
110 status = (*m->loop)(p, state, input, input_length, &output, &output_length);
H A Dauth_gssapi.c82 /* const */ void *input, size_t input_length,
96 if(input == NULL && input_length == 0) {
105 input_token->length = input_length;
164 input_token->length = input_length;
81 gss_loop(POP *p, void *state, void *input, size_t input_length, void **output, size_t *output_length) argument
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/krb5/
H A Darcfour.c692 size_t input_length,
706 if (input_length < len)
709 *max_input_size = (OM_uint32)(input_length - len);
716 len = 8 + input_length + blocksize + extrasize;
720 total_len -= input_length; /* token length */
721 if (total_len < input_length) {
722 *max_input_size = (OM_uint32)(input_length - total_len);
690 max_wrap_length_arcfour(const gsskrb5_ctx ctx, krb5_crypto crypto, size_t input_length, OM_uint32 *max_input_size) argument
H A Dcfx.c89 size_t input_length,
113 input_length += sizeof(gss_cfx_wrap_token_desc);
125 *padlength = padsize - (input_length % padsize);
128 input_length += *padlength;
132 ctx->crypto, input_length);
135 *output_length += input_length + *cksumsize;
138 assert(*output_length > input_length);
86 _gsskrb5cfx_wrap_length_cfx(krb5_context context, struct gsskrb5_crypto *ctx, int conf_req_flag, size_t input_length, size_t *output_length, size_t *cksumsize, uint16_t *padlength) argument
H A Dgsskrb5-private.h889 size_t input_length,
/macosx-10.10/dtrace-147/libdtrace/
H A Ddt_ld.cpp79 size_t input_length = strlen(string); local
80 std::shared_ptr<char> results((char*)malloc(input_length * 2 + 1), &::free);
81 for (int i = 0; i < input_length; i++) {
84 results.get()[input_length*2] = 0;
91 size_t input_length = strlen(string) / 2; local
92 std::shared_ptr<char> results((char*)malloc(input_length * 2 + 1), &::free);
93 for (int i = 0; i < input_length; i++) {
98 results.get()[input_length] = 0;
/macosx-10.10/bind9-45.101/bind9/contrib/queryperf/
H A Dqueryperf.c2046 int input_length = MAX_INPUT_LEN; local
2073 int len = next_input_line(input_line, input_length);
/macosx-10.10/ruby-106/ruby/ext/nkf/nkf-utf8/
H A Dnkf.c5522 size_t input_length = (size_t)0; local
5530 input_buffer[input_length++] = c;
5531 if (input_length < converter->input_buffer_size) break;
5535 size_t ret = iconv(converter->cd, &input_buffer, &input_length, &output_buffer, &output_length);
5543 memmove(converter->input_buffer, input_buffer, input_length);

Completed in 134 milliseconds