Home
last modified time | relevance | path

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

/third_party/python/Lib/
D_pydecimal.py252 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
566 self._int = str(int(intpart+fracpart))
573 self._int = str(int(diag or '0')).lstrip('0')
580 self._int = '0'
592 self._int = str(abs(value))
600 self._int = value._int
607 self._int = str(value.int)
626 self._int = '0'
643 self._int = ''.join(map(str, digits))
648 self._int = ''.join(map(str, digits or [0]))
[all …]
Dsre_compile.py411 def _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int): argument
413 return [_int(s[i - _CODEBITS: i], 2)
/third_party/mesa3d/src/util/
Dxmlconfig.c233 v->_int = strToI(string, &tail, 0); in parseValue()
301 return (info->range.start._int == info->range.end._int || in checkValue()
302 (v->_int >= info->range.start._int && in checkValue()
303 v->_int <= info->range.end._int)); in checkValue()
363 optval->_int = opt->value._int; in driParseOptionInfo()
465 ralloc_asprintf_append(&str, "%d", opt->value._int); in driGetOptionsXml()
486 if (opt->info.range.start._int < opt->info.range.end._int) { in driGetOptionsXml()
488 opt->info.range.start._int, in driGetOptionsXml()
489 opt->info.range.end._int); in driGetOptionsXml()
633 info->range.start._int >= info->range.end._int) { in parseRange()
[all …]
Dxmlconfig.h58 int _int; /**< \brief Integer or Enum */ member
195 cache->values[i]._int); in driComputeOptionsSha1()
Ddriconf.h57 .start = { ._int = min }, \
58 .end = { ._int = max }, \
88 .value = { ._int = def }, \
108 .value = { ._int = def }, \
/third_party/openssl/util/
Dfix-includes.sed1 s|internal/([a-z0-9_]+)_int\.h|crypto/\1.h|g ;
5 s/_int\.h/_local.h/g ;
/third_party/node/deps/openssl/openssl/util/
Dfix-includes.sed1 s|internal/([a-z0-9_]+)_int\.h|crypto/\1.h|g ;
5 s/_int\.h/_local.h/g ;
/third_party/mbedtls/tests/data_files/
DReadme-x509.txt88 _int-ca-exp.crt: S7 + expired I1
89 _int-ca.crt: S7 + I1
90 _int-ca_ca2.crt: S7 + I1 + 2
95 - server8*.crt: I2 R L: RSA signed by EC signed by RSA (P1 for _int-ca2)
/third_party/ffmpeg/libavcodec/
Dbit_depth_template.c106 #define FUNC4(a, b, c) a ## _int ## b ## _ ## c ## bit
/third_party/ffmpeg/libavcodec/x86/
Daudiodsp.asm123 VECTOR_CLIP_INT32 6, 1, 0, 0, _int
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderOperatorTests.cpp665 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
671 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)tcu::FUNC_NAME((int)c.i…
677 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
846 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
852 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
951 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp875 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
881 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
899 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
1141 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
1147 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
1264 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC… in init()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderOperatorTests.cpp1159 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
1165 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
1183 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME((int)c.in[0].…
1482 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
1488 …void eval_##FUNC_NAME##_int (ShaderEvalContext& c) { c.color.x() = (float)FUNC_NAME(chopToInt(c.i…
1574 …#define INT_GENTYPE_FUNCS(FUNC_NAME) eval_##FUNC_NAME##_int, eval_##FUNC_NAME##_ivec2, eval_##FUNC…
/third_party/python/Lib/test/
Dtest_decimal.py4627 self.assertEqual(d1._int, b1._int)
4630 self.assertEqual(d2._int, b2._int)
4635 self.assertEqual(d1._int, b1._int)
4640 self.assertEqual(d1._int, b1._int)
/third_party/python/Modules/_decimal/tests/
Ddeccheck.py409 return _dec_from_triple(0, '1', dec._exp+len(dec._int)-prec)
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cEnhancedLayoutsTests.cpp152 const Type Type::_int = Type::GetType(Type::Int, 1, 1); member in gl4cts::EnhancedLayouts::Utils::Type
5499 type = Utils::Type::_int; in getType()
6991 Utils::Program::Uniform(gl, Utils::Type::_int, 1 /* count */, location, &image_unit); in test()
14912 name.append(Utils::Type::_int.GetGLSLTypeName()); in test()
28511 …m_test_cases.push_back(testCase{(Utils::Shader::STAGES) stage, { {Utils::Type::_int, 1}, {Utils::T… in test()
28512 …m_test_cases.push_back(testCase{(Utils::Shader::STAGES) stage, { {Utils::Type::_int, 5}, {Utils::T… in test()
Dgl4cEnhancedLayoutsTests.hpp112 static const Type _int; member