HomeSort by: relevance | last modified time | path
    Searched refs:_input (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/providers/
decoders.inc 28 #define DECODER(_name, _input, _output, _fips) \
30 "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input, \
31 (ossl_##_input##_to_##_output##_decoder_functions) }
32 #define DECODER_w_structure(_name, _input, _structure, _output, _fips) \
34 "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input \
36 (ossl_##_structure##_##_input##_to_##_output##_decoder_functions) }
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
csv.d 905 Input!(Range, ErrorLevel)* _input;
955 _input = new Input!(Range, ErrorLevel)(input);
960 if (_input.range.empty)
993 _input = new Input!(Range, ErrorLevel)(input);
998 if (_input.range.empty)
1011 (_input, _separator, _quote, indices,
1131 if (_input.rowLength == 0)
1132 _input.rowLength = _input.col;
1134 _input.col = 0
    [all...]
string.d 2762 Range _input;
2764 alias IndexType = typeof(unsigned(_input.length));
2773 _input = input;
2784 return iStart == _unComputed && iNext == _input.length;
2788 @property typeof(_input) front()
2796 if (i == _input.length)
2802 switch (_input[i])
2810 if (i + 1 < _input.length && _input[i + 1] == '\n')
2821 static if (_input[i].sizeof == 1
    [all...]
random.d 3238 private Range _input;
3248 _input = input;
3249 _chosen = RandomCoverChoices(_input.length);
3250 if (_input.empty)
3266 _input = input;
3268 _chosen = RandomCoverChoices(_input.length);
3269 if (_input.empty)
3289 return _input.length - _alreadyChosen;
3296 return _input[_current];
3303 size_t k = _input.length - _alreadyChosen - 1
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/
decoders.inc 28 #define DECODER(_name, _input, _output, _fips) \
30 "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input, \
31 (ossl_##_input##_to_##_output##_decoder_functions) }
32 #define DECODER_w_structure(_name, _input, _structure, _output, _fips) \
34 "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input \
36 (ossl_##_structure##_##_input##_to_##_output##_decoder_functions) }
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
iteration.d 538 R _input;
545 return fun(_input.back);
551 _input.popBack();
557 _input = input;
569 return _input.empty;
576 _input.popFront();
582 return fun(_input.front);
594 return fun(_input[index]);
598 mixin ImplementLength!_input;
602 static if (is(typeof(_input[ulong.max .. ulong.max]))
    [all...]
setops.d 1181 Rs _input;
1193 foreach (i, ref r; _input)
1195 alias next = _input[(i + 1) % Rs.length];
1215 this._input = input;
1223 foreach (ref r; _input)
1234 static if (Rs.length > 1) foreach (i, ref r; _input)
1236 alias next = _input[(i + 1) % Rs.length];
1241 foreach (ref r; _input)
1252 return _input[0].front;
1261 foreach (i, ref r; _input)
    [all...]
searching.d 5039 private Range _input;
5051 _input = input;
5054 _done = _input.empty || openRight && predSatisfied();
5059 _input = input;
5070 _input = input;
5072 _done = _input.empty || openRight && predSatisfied();
5076 _input = input;
5092 return _input.front;
5098 return cast(bool) unaryFun!pred(_input.front);
5100 return cast(bool) startsWith!pred(_input, _sentinel)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
package.d 544 R _input;
550 _input = input;
559 _input = rmatch._input;
570 return *m ? _input[m.begin .. m.end] : null;
577 return _nMatch == 0 ? _input[] : _input[0 .. matches[0].begin];
583 return _nMatch == 0 ? _input[] : _input[matches[0].end .. $];
590 return _input[matches[0].begin .. matches[0].end]
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 2634 static if (is(typeof(takeExactly(range._input, n)) == R))
2656 R _input;
2663 return _input.front;
2665 void popFront() { _input.popFront(); --_n; }
2671 return take(_input, _n);
2679 return Result(_input.save, _n);
2689 return _input.moveFront();
2700 return _input.front = v;
6957 while (!_input.empty && _input.front.empty
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
fake_rsaprov.c 1185 #define DECODER(_name, _input, _output) \
1187 "provider=" DECODER_PROVIDER ",fips=yes,input=" #_input, \
1188 (fake_rsa_##_input##_to_##_output##_decoder_functions) }
1189 #define DECODER_w_structure(_name, _input, _structure, _output) \
1191 "provider=" DECODER_PROVIDER ",fips=yes,input=" #_input \
1193 (fake_rsa_##_structure##_##_input##_to_##_output##_decoder_functions) }
tls-provider.c 2549 #define DECODER(_name, _input, _output) \
2551 "provider=" DECODER_PROVIDER ",fips=yes,input=" #_input, \
2552 (xor_##_input##_to_##_output##_decoder_functions) }
2553 #define DECODER_w_structure(_name, _input, _structure, _output) \
2555 "provider=" DECODER_PROVIDER ",fips=yes,input=" #_input \
2557 (xor_##_structure##_##_input##_to_##_output##_decoder_functions) }
quic_wire_test.c 1465 ack_case_##n##_input, \
1466 sizeof(ack_case_##n##_input), \

Completed in 53 milliseconds