Home
last modified time | relevance | path

Searched refs:iValue (Results 1 - 22 of 22) sorted by relevance

/third_party/backends/backend/
H A Dhp5400_sanei.c67 _UsbWriteControl (int fd, int iValue, int iIndex, void *pabData, int iSize) in _UsbWriteControl() argument
74 requesttype, request, iValue, iSize); in _UsbWriteControl()
89 sanei_usb_control_msg (fd, requesttype, request, iValue, iIndex, iSize, in _UsbWriteControl()
97 hp5400_command_write_noverify (int fd, int iValue, void *pabData, int iSize) in hp5400_command_write_noverify() argument
99 _UsbWriteControl (fd, iValue, 0, pabData, iSize); in hp5400_command_write_noverify()
103 _UsbReadControl (int fd, int iValue, int iIndex, void *pabData, int iSize) in _UsbReadControl() argument
109 requesttype, request, iValue); in _UsbReadControl()
113 sanei_usb_control_msg (fd, requesttype, request, iValue, iIndex, iSize, in _UsbReadControl()
H A Dhp5400_sanei.h65 HP5400_SANE_STATIC void _UsbWriteControl (int fd, int iValue, int iIndex, void *pabData, int iSize);
67 HP5400_SANE_STATIC void hp5400_command_write_noverify (int fd, int iValue, void *pabData, int iSize);
69 HP5400_SANE_STATIC void _UsbReadControl (int fd, int iValue, int iIndex, void *pabData, int iSize);
H A Dhp5400_xfer.h63 HP5400_SANE_STATIC void hp5400_command_write_noverify (int fd, int iValue, void *pabData,
H A Dhp3900_rts8822.c5165 SANE_Int iValue, myctpc; in SetMultiExposure() local
5176 iValue = 0x00895440; in SetMultiExposure()
5180 iValue = 0x00b71b00; in SetMultiExposure()
5183 iValue = 0x0112a880; in SetMultiExposure()
5187 iValue = 0x016e3600; in SetMultiExposure()
5190 iValue = 0x02255100; in SetMultiExposure()
5193 iValue = 0x02dc6c00; in SetMultiExposure()
5196 iValue = 0x044aa200; in SetMultiExposure()
5199 iValue = 0x05b8d800; in SetMultiExposure()
5203 iValue in SetMultiExposure()
10398 SANE_Int iValue; RTS_GetImage() local
10858 SANE_Int mygain, iValue; Lamp_GetGainMode() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcTextureFilterAnisotropicTests.cpp224 GLint iValue; in verifyTexParameters() local
225 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue); in verifyTexParameters()
229 if (iValue != 1) in verifyTexParameters()
232 << "GetTexParameteriv failed. Expected value: 1, Queried value: " << iValue in verifyTexParameters()
245 << "GetTexParameterfv failed. Expected value: 1.0, Queried value: " << iValue in verifyTexParameters()
251 iValue = 2; in verifyTexParameters()
252 gl.texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, iValue); in verifyTexParameters()
255 gl.getTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, &iValue); in verifyTexParameters()
258 if (iValue != 2) in verifyTexParameters()
261 << "texParameteri failed. Expected value: 2, Queried value: " << iValue in verifyTexParameters()
339 GLint iValue; verifyGet() local
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A DToken.cpp56 bool Token::iValue(int *value) const in iValue() function in angle::pp::Token
H A DToken.h88 bool iValue(int *value) const;
H A Dpreprocessor.y354 if (!token->uValue(&val) || (!token->iValue(&testVal) &&
H A DDirectiveParser.cpp736 if (valid && !token->iValue(&version)) in parseVersion()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DToken.cpp64 bool Token::iValue(int *value) const in iValue() function in pp::Token
H A DToken.h93 bool iValue(int *value) const;
H A DExpressionParser.y366 if (!token->uValue(&val) || (!token->iValue(&testVal) &&
H A DDirectiveParser.cpp794 if (valid && !token->iValue(&version)) in parseVersion()
/third_party/icu/icu4c/source/test/intltest/
H A Dnumfmtst.h421 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
H A Dnumfmtst.cpp3364 double iValue=base+(increment*(i*0.1)); in checkRounding() local
3366 if (iValue!=0) { in checkRounding()
3367 smallIncrement*=iValue; in checkRounding()
3370 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
3371 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding()
3372 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
3376 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() argument
3381 df->format(iValue, formattedDecimal, status); in checkRound()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberFormatTest.java2570 BigDecimal iValue = base.add(increment.multiply(new BigDecimal(i)).movePointLeft(1)); in checkRounding()
2572 if (iValue.signum() != 0) { in checkRounding()
2573 smallIncrement.multiply(iValue); // scale unless zero in checkRounding()
2576 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding()
2577 lastParsed = checkRound(nf, iValue, lastParsed); in checkRounding()
2578 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding()
2582 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { in checkRound() argument
2583 String formatedBigDecimal = nf.format(iValue); in checkRound()
2584 String formattedDouble = nf.format(iValue.doubleValue()); in checkRound()
2587 errln("Failure at: " + iValue in checkRound()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java2567 BigDecimal iValue = base.add(increment.multiply(new BigDecimal(i)).movePointLeft(1)); in checkRounding()
2569 if (iValue.signum() != 0) { in checkRounding()
2570 smallIncrement.multiply(iValue); // scale unless zero in checkRounding()
2573 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding()
2574 lastParsed = checkRound(nf, iValue, lastParsed); in checkRounding()
2575 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding()
2579 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { in checkRound() argument
2580 String formatedBigDecimal = nf.format(iValue); in checkRound()
2581 String formattedDouble = nf.format(iValue.doubleValue()); in checkRound()
2584 errln("Failure at: " + iValue in checkRound()
[all...]
/third_party/python/Tools/msi/bundle/bootstrap/
H A DPythonBootstrapperApplication.cpp1400 int iValue; in ParseVariablesFromUnattendXml() local
1450 } else if (tryConvert && ::StrToIntExW(bstrValue, STIF_DEFAULT, &iValue)) { in ParseVariablesFromUnattendXml()
1451 _engine->SetVariableNumeric(scz, iValue); in ParseVariablesFromUnattendXml()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cExplicitUniformLocationTest.cpp516 UniformValueGenerator() : fValue(0.0f), iValue(0) in UniformValueGenerator()
529 return (iValue += 1); in genI()
535 GLint iValue; member in glcts::__anon27691::UniformValueGenerator
/third_party/sqlite/src/
H A Dshell.c3371 sqlite3_int64 iValue; /* Current value ("value") */ member
3457 pCur->iValue -= pCur->iStep; in seriesNext()
3459 pCur->iValue += pCur->iStep; in seriesNext()
3480 default: x = pCur->iValue; break; in seriesColumn()
3504 return pCur->iValue < pCur->mnValue; in seriesEof()
3506 return pCur->iValue > pCur->mxValue; in seriesEof()
3580 pCur->iValue = pCur->mxValue; in seriesFilter()
3582 pCur->iValue -= (pCur->mxValue - pCur->mnValue)%pCur->iStep; in seriesFilter()
3586 pCur->iValue = pCur->mnValue; in seriesFilter()
H A Dsqlite3.c18317 int iValue; /* Non-negative integer value if EP_IntValue */ member
18384 #define EP_IntValue 0x000800 /* Integer value contained in u.iValue */
27427 memsys5Log(int iValue) memsys5Log() argument
89449 sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue) global() argument
89452 sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue) global() argument
90587 i64 iValue; global() local
106659 int iValue = 0; global() local
134287 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2}; global() local
[all...]
/third_party/skia/src/sksl/codegen/
H A DSkSLSPIRVCodeGenerator.cpp2888 SKSL_INT iValue = value; in writeLiteral() local
2889 valueBits = iValue; in writeLiteral()

Completed in 207 milliseconds