Home
last modified time | relevance | path

Searched refs:iVal (Results 1 – 10 of 10) sorted by relevance

/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp477 int iVal = 0; in SetOption() local
509 iVal = * ((int*)pOption); // boolean value for whether enabled End Of Stream flag in SetOption()
513 pDecContext->bEndOfStreamFlag = iVal ? true : false; in SetOption()
522 iVal = * ((int*)pOption); // int value for error concealment idc in SetOption()
523iVal = WELS_CLIP3 (iVal, (int32_t)ERROR_CON_DISABLE, (int32_t)ERROR_CON_SLICE_MV_COPY_CROSS_IDR_FR… in SetOption()
524 if ((pDecContext->pParam->bParseOnly) && (iVal != (int32_t)ERROR_CON_DISABLE)) { in SetOption()
526 … "CWelsDecoder::SetOption for ERROR_CON_IDC = %d not allowd for parse only!.", iVal); in SetOption()
530 pDecContext->pParam->eEcActiveIdc = (ERROR_CON_IDC)iVal; in SetOption()
533 "CWelsDecoder::SetOption for ERROR_CON_IDC = %d.", iVal); in SetOption()
580 int iVal = 0; in GetOption() local
[all …]
/third_party/openh264/codec/encoder/core/src/
Dset_mb_syn_cavlc.cpp166 int32_t iVal = iLevel[i]; in WriteBlockResidualCavlc() local
168 iLevelCode = (iVal - 1) * (1 << 1); in WriteBlockResidualCavlc()
199 uiSuffixLength += ((iVal > iThreshold) || (iVal < -iThreshold)) && (uiSuffixLength < 6); in WriteBlockResidualCavlc()
/third_party/typescript/tests/baselines/reference/
DquickInfoDisplayPartsTypeParameterInInterface.baseline1933 "text": "iVal",
2027 "text": "iVal",
2156 "text": "iVal",
2277 "text": "iVal",
5584 "text": "iVal",
5637 "text": "iVal",
5859 "text": "iVal",
5912 "text": "iVal",
6219 "text": "iVal",
6272 "text": "iVal",
/third_party/sqlite/include/
Dsqlite3.h10920 int iVal, /* Column number */
10954 int iVal, /* Column number */
10982 int iVal, /* Column number */
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantTests.cpp1825 …const std::string iVal = (i == specConstNdx ? specConstName : glu::getDataTypeScalarType(type) == … in generateInitializerListWithSpecConstant() local
1826 … ? ", " : "") << (castToType ? de::toString(glu::getDataTypeName(type)) + "(" + iVal + ")" : iVal); in generateInitializerListWithSpecConstant()
/third_party/sqlite/src/
Dsqlite3.c11254 int iVal, /* Column number */
11288 int iVal, /* Column number */
11316 int iVal, /* Column number */
33797 int iVal /* Value to associate with zName */
33815 pIn[i] = iVal;
33830 SQLITE_PRIVATE const char *sqlite3VListNumToName(VList *pIn, int iVal){
33836 if( pIn[i]==iVal ) return (char*)&pIn[i+2];
78844 int iVal;
78890 pRec->nField = p->iVal+1;
78891 return &pRec->aMem[p->iVal];
[all …]
Dshell.c10720 i64 iVal; /* SQLITE_INTEGER value */ member
10751 sqlite3_result_int64(pCtx, pSlot->iVal); in idxRemFunc()
10774 pSlot->iVal = sqlite3_value_int64(argv[1]); in idxRemFunc()
11114 int iVal = va_arg(ap, int); in sqlite3_expert_config() local
11115 if( iVal<0 ) iVal = 0; in sqlite3_expert_config()
11116 if( iVal>100 ) iVal = 100; in sqlite3_expert_config()
11117 p->iSample = iVal; in sqlite3_expert_config()
15579 sqlite3_int64 iVal = ((sqlite3_int64)a[0]<<24) in shellInt32() local
15583 sqlite3_result_int64(context, iVal); in shellInt32()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp38 Result.Value.Int16 = V.iVal; in VariantFromVARIANT()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp6630 uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue(); in LowerConstantFP() local
6635 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32)) in LowerConstantFP()
6639 SDValue NewVal = isVMOVModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), in LowerConstantFP()
6656 NewVal = isVMOVModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), VMovVT, in LowerConstantFP()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch101813 u64 iVal = (p->nRow + nDistinct - 1) / nDistinct;
101814 + if( iVal==2 && p->nRow*10 <= nDistinct*11 ) iVal = 1;
101815 sqlite3_str_appendf(&sStat, " %llu", iVal);
106811 + int iVal = 0;
106813 + if( sqlite3ExprIsInteger(pExpr, &iVal) && iVal>=0 ){
106817 + pVal->u.iValue = iVal;
139454 u64 iVal = (p->nRow + nDistinct - 1) / nDistinct;
139455 + if( iVal==2 && p->nRow*10 <= nDistinct*11 ) iVal = 1;
139456 sqlite3_str_appendf(&sStat, " %llu", iVal);
144452 + int iVal = 0;
[all …]