/external/parameter-framework/upstream/parameter/ |
D | IntegerParameterType.h | 76 userValue > static_cast<UserType>(_max)) { in doToBlackboard() 97 xmlElement.getAttribute("Max", _max); in fromXml() 99 if (_min > _max) { in fromXml() 101 std::to_string(_min) + " > " + std::to_string(_max) + ")."); in fromXml() 115 xmlElement.setAttribute("Max", _max); in toXml() 187 if (iConvertedValue < _min || iConvertedValue > _max) { in toBlackboard() 280 << "Max: " << _max << "\n"; in showProperties() 312 if (value < _min || value > _max) { in checkValueAgainstRange() 325 stream << _max; in checkValueAgainstRange() 329 stream << _min << ", " << _max; in checkValueAgainstRange() [all …]
|
/external/grpc-grpc/src/python/grpcio_tests/tests/qps/ |
D | histogram.py | 36 self._max = 0 45 self._max = 0 54 self._max = max(self._max, val) 62 data.max_seen = self._max
|
/external/lzma/CPP/Common/ |
D | StringToInt.cpp | 18 if (res > (k_ ## uintType ## _max) / 10) return 0; \ 21 if (res > (k_ ## uintType ## _max) - v) return 0; \
|
/external/freetype/include/freetype/internal/ |
D | psaux.h | 302 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument 308 _max, \ 313 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument 319 _max, 0, \
|
/external/libopus/celt/ |
D | fixed_c6x.h | 50 #define MAX16(a,b) _max(a,b)
|
D | fixed_c5x.h | 46 #define MAX16(a,b) _max(a,b)
|
/external/u-boot/drivers/power/regulator/ |
D | sandbox.c | 22 #define RANGE(_min, _max, _step) { \ argument 24 .max = _max, \
|
/external/mesa3d/src/mesa/x86/ |
D | mmx_blend.S | 342 #define TAG(x) CONCAT(x,_max) 343 #define LLTAG(x) LLBL2(x,_max)
|
/external/eigen/Eigen/src/Geometry/ |
D | AlignedBox.h | 75 …lignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {} in AlignedBox() argument
|
/external/libpcap/ |
D | pcap-dos.h | 77 #define max(a,b) _max(a,b)
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
D | xla.py | 51 _max = max variable
|
/external/tensorflow/tensorflow/lite/toco/ |
D | toco_flags.proto | 110 // Equivalent versions of default_ranges_min/_max for arrays quantized with
|
/external/scapy/scapy/ |
D | utils.py | 1404 _max = max(colwidth) 1405 colwidth = [_med if x == _max else x for x in colwidth]
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/ |
D | JavaScript.stg | 974 DFA<dfa.decisionNumber>_max: 997 this.max = <grammar.recognizerName>.DFA<dfa.decisionNumber>_max;
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Perl5/ |
D | Perl5.stg | 983 Readonly my $DFA<dfa.decisionNumber>_max => ANTLR::Runtime::DFA->unpack_rle([ <dfa.javaCompressedMa… 1013 $self->max($DFA<dfa.decisionNumber>_max);
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python3/ |
D | Python3.stg | 1118 DFA<dfa.decisionNumber>_max = DFA.unpack( 1174 max = self.DFA<dfa.decisionNumber>_max,
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Scala/ |
D | Scala.stg | 1026 val DFA<dfa.decisionNumber>_max: Array[Char] = DFA.unpackEncodedStringToUnsignedChars(DFA<dfa.decis… 1044 this.max = DFA<dfa.decisionNumber>_max
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
D | Java.stg | 1084 static final char[] DFA<dfa.decisionNumber>_max = DFA.unpackEncodedStringToUnsignedChars(DFA<dfa.de… 1105 this.max = DFA<dfa.decisionNumber>_max;
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
D | ActionScript.stg | 960 … DFA<dfa.decisionNumber>_max, DFA<dfa.decisionNumber>_accept, DFA<dfa.decisionNumber>_special, 980 private const DFA<dfa.decisionNumber>_max:Array =
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
D | Python.stg | 1111 DFA<dfa.decisionNumber>_max = DFA.unpack( 1167 max = self.DFA<dfa.decisionNumber>_max,
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
D | CSharp3.stg | 1318 …private static readonly char[] DFA<dfa.decisionNumber>_max = DFA.UnpackEncodedStringToUnsignedChar… 1343 this.max = DFA<dfa.decisionNumber>_max;
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
D | CSharp2.stg | 1341 …private static readonly char[] DFA<dfa.decisionNumber>_max = DFA.UnpackEncodedStringToUnsignedChar… 1366 this.max = DFA<dfa.decisionNumber>_max;
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
D | ObjC.stg | 1530 const static unichar dfa<dfa.decisionNumber>_max[<dfa.numberOfStates>] = 1565 max = dfa<dfa.decisionNumber>_max;
|
/external/tensorflow/tensorflow/python/ops/ |
D | array_ops.py | 3101 maxlen = gen_math_ops._max(lengths, _all_dimensions(lengths))
|
D | math_ops.py | 2046 gen_math_ops._max(
|