Home
last modified time | relevance | path

Searched refs:inValue (Results 1 – 25 of 32) sorted by relevance

12

/third_party/gptfdisk/
Dsupport.cc137 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlig… in IeeeToInt() argument
150 while (inValue[0] == ' ') in IeeeToInt()
151 inValue.erase(0, 1); in IeeeToInt()
154 if ((inValue[0] == '+') || (inValue[0] == '-')) { in IeeeToInt()
155 plusFlag = inValue[0]; in IeeeToInt()
156 inValue.erase(0, 1); in IeeeToInt()
160 istringstream inString(inValue); in IeeeToInt()
167 if ((inValue.length() == 0) || (response == 0)) { in IeeeToInt()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
DNumberFormatterImpl.java56 DecimalQuantity inValue, in formatStatic() argument
58 MicroProps micros = preProcessUnsafe(macros, inValue); in formatStatic()
59 int length = writeNumber(micros, inValue, outString, 0); in formatStatic()
88 public int format(DecimalQuantity inValue, FormattedStringBuilder outString) { in format() argument
89 MicroProps micros = preProcess(inValue); in format()
90 int length = writeNumber(micros, inValue, outString, 0); in format()
98 public MicroProps preProcess(DecimalQuantity inValue) { in preProcess() argument
99 MicroProps micros = microPropsGenerator.processQuantity(inValue); in preProcess()
101 inValue.setMinInteger(micros.integerWidth.minInt); in preProcess()
103 inValue.setMinInteger(micros.integerWidth.minInt); in preProcess()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNumberFormatterImpl.java63 DecimalQuantity inValue, in formatStatic() argument
65 MicroProps result = preProcessUnsafe(macros, inValue); in formatStatic()
66 int length = writeNumber(result, inValue, outString, 0); in formatStatic()
95 public MicroProps format(DecimalQuantity inValue, FormattedStringBuilder outString) { in format() argument
96 MicroProps result = preProcess(inValue); in format()
97 int length = writeNumber(result, inValue, outString, 0); in format()
105 public MicroProps preProcess(DecimalQuantity inValue) { in preProcess() argument
106 MicroProps micros = microPropsGenerator.processQuantity(inValue); in preProcess()
108 inValue.setMinInteger(micros.integerWidth.minInt); in preProcess()
110 inValue.setMinInteger(micros.integerWidth.minInt); in preProcess()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumber_formatimpl.cpp74 int32_t NumberFormatterImpl::formatStatic(const MacroProps& macros, DecimalQuantity& inValue, in formatStatic() argument
77 MicroProps& micros = impl.preProcessUnsafe(inValue, status); in formatStatic()
79 int32_t length = writeNumber(micros, inValue, outString, 0, status); in formatStatic()
96 int32_t NumberFormatterImpl::format(DecimalQuantity& inValue, NumberStringBuilder& outString, in format() argument
99 preProcess(inValue, micros, status); in format()
101 int32_t length = writeNumber(micros, inValue, outString, 0, status); in format()
106 void NumberFormatterImpl::preProcess(DecimalQuantity& inValue, MicroProps& microsOut, in preProcess() argument
113 fMicroPropsGenerator->processQuantity(inValue, microsOut, status); in preProcess()
114 microsOut.rounder.apply(inValue, status); in preProcess()
115 microsOut.integerWidth.apply(inValue, status); in preProcess()
[all …]
Dnumber_formatimpl.h38 formatStatic(const MacroProps &macros, DecimalQuantity &inValue, NumberStringBuilder &outString,
54 …int32_t format(DecimalQuantity& inValue, NumberStringBuilder& outString, UErrorCode& status) const;
59 void preProcess(DecimalQuantity& inValue, MicroProps& microsOut, UErrorCode& status) const;
106 MicroProps& preProcessUnsafe(DecimalQuantity &inValue, UErrorCode &status);
/third_party/node/deps/icu-small/source/i18n/
Dnumber_formatimpl.cpp34 DecimalQuantity &inValue = results->quantity; in formatStatic() local
37 MicroProps& micros = impl.preProcessUnsafe(inValue, status); in formatStatic()
39 int32_t length = writeNumber(micros, inValue, outString, 0, status); in formatStatic()
59 DecimalQuantity &inValue = results->quantity; in format() local
62 preProcess(inValue, micros, status); in format()
64 int32_t length = writeNumber(micros, inValue, outString, 0, status); in format()
71 void NumberFormatterImpl::preProcess(DecimalQuantity& inValue, MicroProps& microsOut, in preProcess() argument
78 fMicroPropsGenerator->processQuantity(inValue, microsOut, status); in preProcess()
79 microsOut.integerWidth.apply(inValue, status); in preProcess()
82 MicroProps& NumberFormatterImpl::preProcessUnsafe(DecimalQuantity& inValue, UErrorCode& status) { in preProcessUnsafe() argument
[all …]
Dnumber_formatimpl.h66 void preProcess(DecimalQuantity& inValue, MicroProps& microsOut, UErrorCode& status) const;
120 MicroProps& preProcessUnsafe(DecimalQuantity &inValue, UErrorCode &status);
/third_party/icu/icu4c/source/i18n/
Dnumber_formatimpl.cpp34 DecimalQuantity &inValue = results->quantity; in formatStatic() local
37 MicroProps& micros = impl.preProcessUnsafe(inValue, status); in formatStatic()
39 int32_t length = writeNumber(micros, inValue, outString, 0, status); in formatStatic()
59 DecimalQuantity &inValue = results->quantity; in format() local
62 preProcess(inValue, micros, status); in format()
64 int32_t length = writeNumber(micros, inValue, outString, 0, status); in format()
71 void NumberFormatterImpl::preProcess(DecimalQuantity& inValue, MicroProps& microsOut, in preProcess() argument
78 fMicroPropsGenerator->processQuantity(inValue, microsOut, status); in preProcess()
79 microsOut.integerWidth.apply(inValue, status); in preProcess()
82 MicroProps& NumberFormatterImpl::preProcessUnsafe(DecimalQuantity& inValue, UErrorCode& status) { in preProcessUnsafe() argument
[all …]
Dnumber_formatimpl.h60 void preProcess(DecimalQuantity& inValue, MicroProps& microsOut, UErrorCode& status) const;
120 MicroProps& preProcessUnsafe(DecimalQuantity &inValue, UErrorCode &status);
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumber_formatimpl.cpp34 DecimalQuantity &inValue = results->quantity; in formatStatic() local
37 MicroProps& micros = impl.preProcessUnsafe(inValue, status); in formatStatic()
39 int32_t length = writeNumber(micros, inValue, outString, 0, status); in formatStatic()
59 DecimalQuantity &inValue = results->quantity; in format() local
62 preProcess(inValue, micros, status); in format()
64 int32_t length = writeNumber(micros, inValue, outString, 0, status); in format()
71 void NumberFormatterImpl::preProcess(DecimalQuantity& inValue, MicroProps& microsOut, in preProcess() argument
78 fMicroPropsGenerator->processQuantity(inValue, microsOut, status); in preProcess()
79 microsOut.integerWidth.apply(inValue, status); in preProcess()
82 MicroProps& NumberFormatterImpl::preProcessUnsafe(DecimalQuantity& inValue, UErrorCode& status) { in preProcessUnsafe() argument
[all …]
Dnumber_formatimpl.h60 void preProcess(DecimalQuantity& inValue, MicroProps& microsOut, UErrorCode& status) const;
120 MicroProps& preProcessUnsafe(DecimalQuantity &inValue, UErrorCode &status);
/third_party/typescript/src/compiler/
Dsourcemap.ts547 function base64VLQFormatEncode(inValue: number) {
553 if (inValue < 0) {
554 inValue = ((-inValue) << 1) + 1;
557 inValue = inValue << 1;
563 let currentDigit = inValue & 31; // 11111
564 inValue = inValue >> 5;
565 if (inValue > 0) {
570 } while (inValue > 0);
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DUniformTest.cpp489 GLfloat inValue = static_cast<GLfloat>(inValues[index]); in TEST_P() local
492 glUniform1f(mUniformFLocation, inValue); in TEST_P()
501 GLfloat inValue = static_cast<GLfloat>(inValues[index]); in TEST_P() local
504 glUniform1f(mUniformFLocation, inValue); in TEST_P()
547 GLint inValue = inValues[index]; in TEST_P() local
550 glUniform1i(mUniformILocation, inValue); in TEST_P()
559 GLint inValue = inValues[index]; in TEST_P() local
562 glUniform1i(mUniformILocation, inValue); in TEST_P()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderIntegerFunctionTests.cpp718 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
731 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
864 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
866 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
913 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
915 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
973 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
975 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1033 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1035 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DUniformTest.cpp499 GLfloat inValue = static_cast<GLfloat>(inValues[index]); in TEST_P() local
502 glUniform1f(mUniformFLocation, inValue); in TEST_P()
511 GLfloat inValue = static_cast<GLfloat>(inValues[index]); in TEST_P() local
514 glUniform1f(mUniformFLocation, inValue); in TEST_P()
557 GLint inValue = inValues[index]; in TEST_P() local
560 glUniform1i(mUniformILocation, inValue); in TEST_P()
569 GLint inValue = inValues[index]; in TEST_P() local
572 glUniform1i(mUniformILocation, inValue); in TEST_P()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp844 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
857 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1001 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1003 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1061 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1063 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1125 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1127 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1189 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1191 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
DvktShaderPackingFunctionTests.cpp819 deBool checkValue (deUint16 inValue, float outValue, SubnormalizedConversionType& conversion) in checkValue() argument
821 const tcu::Float16 temp = tcu::Float16(inValue); in checkValue()
/third_party/vk-gl-cts/modules/gles2/scripts/
Dgen-conversions.py194 def __init__(self, inValue, outValue): argument
195 inType = inValue.typeString()
198 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
/third_party/skia/third_party/externals/expat/expat/lib/
Dxmltok_impl.c1505 enum { other, inName, inValue } state = inName; in PREFIX() enumerator
1535 if (state != inValue) { in PREFIX()
1538 state = inValue; in PREFIX()
1548 if (state != inValue) { in PREFIX()
1551 state = inValue; in PREFIX()
1567 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized in PREFIX()
1580 else if (state == inValue && nAtts < attsMax) in PREFIX()
1585 if (state != inValue) in PREFIX()
/third_party/python/Modules/expat/
Dxmltok_impl.c1505 enum { other, inName, inValue } state = inName; in PREFIX() enumerator
1535 if (state != inValue) { in PREFIX()
1538 state = inValue; in PREFIX()
1548 if (state != inValue) { in PREFIX()
1551 state = inValue; in PREFIX()
1567 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized in PREFIX()
1580 else if (state == inValue && nAtts < attsMax) in PREFIX()
1585 if (state != inValue) in PREFIX()
/third_party/expat/lib/
Dxmltok_impl.c1509 enum { other, inName, inValue } state = inName; in PREFIX() enumerator
1539 if (state != inValue) { in PREFIX()
1542 state = inValue; in PREFIX()
1552 if (state != inValue) { in PREFIX()
1555 state = inValue; in PREFIX()
1571 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized in PREFIX()
1584 else if (state == inValue && nAtts < attsMax) in PREFIX()
1589 if (state != inValue) in PREFIX()
/third_party/vk-gl-cts/modules/gles3/scripts/
Dgen-conversions.py207 def __init__(self, inValue, outValue): argument
208 inType = inValue.typeString()
211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderMatrixTests.cpp829 string& inValue = inNdx > 0 ? inValue1 : inValue0; in init() local
846 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in init()
859 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in init()
865 inValue = string("u_in") + de::toString(inNdx); in init()
888 inValue = string("in") + de::toString(inNdx); in init()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderMatrixTests.cpp1490 string& inValue = inNdx > 0 ? inValue1 : inValue0; in init() local
1507 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in init()
1520 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in init()
1526 inValue = string("u_in") + de::toString(inNdx); in init()
1555 inValue = string("in") + de::toString(inNdx); in init()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp1755 string& inValue = inNdx > 0 ? inValue1 : inValue0; in setupShader() local
1771 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in setupShader()
1785 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in setupShader()
1791 inValue = string("u_in") + de::toString(inNdx); in setupShader()
1820 inValue = string("in") + de::toString(inNdx); in setupShader()

12