Home
last modified time | relevance | path

Searched refs:_input (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dcsv.d791 Input!(Range, ErrorLevel)* _input;
839 _input = new Input!(Range, ErrorLevel)(input); in this()
869 _input = new Input!(Range, ErrorLevel)(input); in this()
880 (_input, _separator, _quote, indices); in this()
997 if (_input.rowLength == 0) in popFront()
998 _input.rowLength = _input.col; in popFront()
1000 _input.col = 0; in popFront()
1002 if (!_input.range.empty) in popFront()
1004 if (_input.range.front == '\r') in popFront()
1006 _input.range.popFront(); in popFront()
[all …]
H A Drandom.d2336 private Range _input; member
2346 _input = input; in this()
2347 _chosen.length = _input.length; in this()
2348 if (_input.empty) in this()
2364 _input = input; in this()
2366 _chosen.length = _input.length; in this()
2367 if (_input.empty) in this()
2387 return _input.length - _alreadyChosen; in length()
2394 return _input[_current]; in front()
2401 size_t k = _input.length - _alreadyChosen - 1; in popFront()
[all …]
H A Dstring.d2537 Range _input;
2539 alias IndexType = typeof(unsigned(_input.length));
2548 _input = input; in this()
2559 return iStart == _unComputed && iNext == _input.length; in empty()
2563 @property typeof(_input) front() in front()
2571 if (i == _input.length) in front()
2577 switch (_input[i]) in front()
2585 if (i + 1 < _input.length && _input[i + 1] == '\n') in front()
2596 static if (_input[i].sizeof == 1) in front()
2603 if (i + 2 < _input.length && in front()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dcsv.d905 Input!(Range, ErrorLevel)* _input;
955 _input = new Input!(Range, ErrorLevel)(input); in this()
960 if (_input.range.empty) in this()
993 _input = new Input!(Range, ErrorLevel)(input); in this()
998 if (_input.range.empty) in this()
1011 (_input, _separator, _quote, indices, in this()
1131 if (_input.rowLength == 0) in popFront()
1132 _input.rowLength = _input.col; in popFront()
1134 _input.col = 0; in popFront()
1136 if (!_input.range.empty) in popFront()
[all …]
H A Dstring.d2762 Range _input;
2764 alias IndexType = typeof(unsigned(_input.length));
2773 _input = input; in this()
2784 return iStart == _unComputed && iNext == _input.length; in empty()
2788 @property typeof(_input) front() in front()
2796 if (i == _input.length) in front()
2802 switch (_input[i]) in front()
2810 if (i + 1 < _input.length && _input[i + 1] == '\n') in front()
2821 static if (_input[i].sizeof == 1) in front()
2828 if (i + 2 < _input.length && in front()
[all …]
H A Drandom.d3238 private Range _input; member
3248 _input = input; in this()
3249 _chosen = RandomCoverChoices(_input.length); in this()
3250 if (_input.empty) in this()
3266 _input = input; in this()
3268 _chosen = RandomCoverChoices(_input.length); in this()
3269 if (_input.empty) in this()
3289 return _input.length - _alreadyChosen; in length()
3296 return _input[_current]; in front()
3303 size_t k = _input.length - _alreadyChosen - 1; in popFront()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Diteration.d556 R _input; in MapResult() local
563 return fun(_input.back); in MapResult()
569 _input.popBack(); in MapResult()
575 _input = input; in MapResult()
587 return _input.empty; in MapResult()
594 _input.popFront(); in MapResult()
600 return fun(_input.front); in MapResult()
605 static if (is(typeof(_input[ulong.max]))) in MapResult()
612 return fun(_input[index]); in MapResult()
620 return _input.length; in MapResult()
[all …]
H A Dsetops.d1130 Rs _input;
1142 foreach (i, ref r; _input) in adjustPosition()
1144 alias next = _input[(i + 1) % Rs.length]; in adjustPosition()
1164 this._input = input; in this()
1172 foreach (ref r; _input) in empty()
1183 static if (Rs.length > 1) foreach (i, ref r; _input) in popFront()
1185 alias next = _input[(i + 1) % Rs.length]; in popFront()
1189 foreach (ref r; _input) in popFront()
1200 return _input[0].front; in front()
1209 foreach (i, ref r; _input) in save()
[all …]
H A Dsearching.d4464 private Range _input; variable
4475 _input = input;
4478 _done = _input.empty || openRight && predSatisfied();
4484 _input = input;
4486 _done = _input.empty || openRight && predSatisfied();
4499 return _input.front; in front()
4505 return cast(bool) unaryFun!pred(_input.front); in predSatisfied()
4507 return cast(bool) startsWith!pred(_input, _sentinel); in predSatisfied()
4517 _input.popFront(); in popFront()
4518 _done = _done || _input.empty; in popFront()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Diteration.d538 R _input; in MapResult() local
545 return fun(_input.back); in MapResult()
551 _input.popBack(); in MapResult()
557 _input = input; in MapResult()
569 return _input.empty; in MapResult()
576 _input.popFront(); in MapResult()
582 return fun(_input.front); in MapResult()
594 return fun(_input[index]); in MapResult()
598 mixin ImplementLength!_input; in MapResult()
602 static if (is(typeof(_input[ulong.max .. ulong.max]))) in MapResult()
[all …]
H A Dsetops.d1181 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 …]
H A Dsearching.d5039 private Range _input; variable
5051 _input = input;
5054 _done = _input.empty || openRight && predSatisfied();
5059 _input = input; in this()
5070 _input = input;
5072 _done = _input.empty || openRight && predSatisfied();
5076 _input = input; in this()
5092 return _input.front; in front()
5098 return cast(bool) unaryFun!pred(_input.front); in predSatisfied()
5100 return cast(bool) startsWith!pred(_input, _sentinel); in predSatisfied()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/providers/
H A Ddecoders.inc28 #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) }
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dpackage.d2314 static if (is(typeof(takeExactly(range._input, n)) == R))
2336 R _input; member
2343 return _input.front; in front()
2345 void popFront() { _input.popFront(); --_n; } in popFront()
2351 return typeof(return)(_input, _n);
2359 return Result(_input.save, _n); in save()
2369 return _input.moveFront(); in moveFront()
2380 return _input.front = v;
5972 while (!_input.empty && _input.front.empty) in prime()
5974 _input.popFront(); in prime()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/
H A Dpackage.d2634 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)
6959 _input.popFront();
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
H A Dpackage.d708 R _input; in foreach() member
715 _input = input; in foreach()
1523 Range _input;
1532 _input = input; in this()
1534 if (_input.empty) in this()
1541 _match = Rx(_input, separator); in this()
1561 && _match.pre.length <= _input.length); in front()
1566 return _input[_offset .. min($, _match.pre.length)]; in front()
1572 return _input[_offset .. min($, _match.pre.length)]; in front()
1580 return _offset >= _input.length; in empty()
[all …]
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/rfc/
H A Drfc3715.txt764 check on the Source IP Address as part of IPsec_{esp,ah}_input().