/third_party/ffmpeg/libavcodec/ |
H A D | jpeg2000dwt.c | 105 lv = s->linelen[lev][1], in dwt_encode53() local 116 for (i = 0; i < lv; i++) in dwt_encode53() 119 sd_1d53(line, mv, mv + lv); in dwt_encode53() 122 for (i = mv; i < lv; i+=2, j++) in dwt_encode53() 124 for (i = 1-mv; i < lv; i+=2, j++) in dwt_encode53() 130 for (lp = 0; lp < lv; lp++){ in dwt_encode53() 180 lv = s->linelen[lev][1], in dwt_encode97_float() local 188 for (lp = 0; lp < lv; lp++){ in dwt_encode97_float() 208 for (i = 0; i < lv; i++) in dwt_encode97_float() 211 sd_1d97_float(line, mv, mv + lv); in dwt_encode97_float() 261 lv = s->linelen[lev][1], dwt_encode97_int() local 334 lv = s->linelen[lev][1], dwt_decode53() local 412 lv = s->linelen[lev][1], dwt_decode97_float() local 494 lv = s->linelen[lev][1], dwt_decode97_int() local [all...] |
H A D | agm.c | 771 uint8_t ly0 = 0, ly1 = 0, ly2 = 0, ly3 = 0, lu = 0, lv = 0; in decode_raw_intra() local 785 vdst[x] = bytestream2_get_byte(gbyte) + lv; in decode_raw_intra() 786 lv = vdst[x]; in decode_raw_intra()
|
/third_party/python/Python/ |
H A D | ast_opt.c | 453 PyObject *lv = lhs->v.Constant.value; in fold_binop() local 457 PyUnicode_Check(lv) && in fold_binop() 460 return optimize_format(node, lv, rhs->v.Tuple.elts, arena); in fold_binop() 472 newval = PyNumber_Add(lv, rv); in fold_binop() 475 newval = PyNumber_Subtract(lv, rv); in fold_binop() 478 newval = safe_multiply(lv, rv); in fold_binop() 481 newval = PyNumber_TrueDivide(lv, rv); in fold_binop() 484 newval = PyNumber_FloorDivide(lv, rv); in fold_binop() 487 newval = safe_mod(lv, rv); in fold_binop() 490 newval = safe_power(lv, r in fold_binop() [all...] |
/third_party/python/Lib/idlelib/ |
H A D | debugger.py | 318 lv = self.localsviewer 320 if not lv: 323 if lv: 325 lv.close() 342 lv = self.localsviewer 350 if lv and gv and ldict is gdict: 352 if lv: 353 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_bc_finalize.cpp | 417 literal lv = v->literal_value; in finalize_alu_src() local 420 if (lv == literal(0)) in finalize_alu_src() 422 else if (lv == literal(0.5f)) in finalize_alu_src() 424 else if (lv == literal(1.0f)) in finalize_alu_src() 426 else if (lv == literal(1)) in finalize_alu_src() 428 else if (lv == literal(-1)) in finalize_alu_src() 432 src.chan = g->literal_chan(lv); in finalize_alu_src() 433 src.value = lv; in finalize_alu_src()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_liverangeevaluator.cpp | 451 const auto& lv = lc[j]; in operator ==() local 454 if (lv.m_start != rv.m_start || in operator ==() 455 lv.m_end != rv.m_end || in operator ==() 456 lv.m_color != rv.m_color || in operator ==() 457 !lv.m_register->equal_to(*rv.m_register)) in operator ==()
|
/third_party/lame/Dll/ |
H A D | BladeMP3EncDLL.c | 628 lame_version_t lv = { 0, }; in __declspec() local 635 get_lame_version_numerical ( &lv ); in __declspec() 638 pbeVersion->byMajorVersion = (BYTE)lv.major; in __declspec() 639 pbeVersion->byMinorVersion = (BYTE)lv.minor; in __declspec() 640 pbeVersion->byAlphaLevel = (BYTE)lv.alpha; in __declspec() 641 pbeVersion->byBetaLevel = (BYTE)lv.beta; in __declspec()
|
/third_party/ltp/testcases/kernel/mce-test/kvm/host/ |
H A D | host_run.sh | 172 lv=lv_root 174 if [ ! -b /dev/mapper/${vg}-${lv} ]; then 180 mount /dev/mapper/${vg}-${lv} $mnt
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | Mf2DataModel.java | 749 for (Entry<String, Expression> lv : localVariables.entrySet()) { in toString() 750 result.append("let $").append(lv.getKey()); in toString() 752 result.append(lv.getValue()); in toString()
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | openssl-x509.c | 260 lv = (nval->value ? strlen(nval->value) : 0), in lws_tls_openssl_cert_info() local 261 l = ln + lv; in lws_tls_openssl_cert_info() 267 memcpy(buf->ns.name + buf->ns.len + ln, nval->value, lv); in lws_tls_openssl_cert_info()
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | h264dsp.c | 186 vec_u8 lv = vec_ld( 7, d); \ 187 vec_u8 dstv = vec_perm( hv, lv, (vec_u8)perm_ldv ); 192 lv = vec_sel( lv, bodyv, edgelv ); \ 193 vec_st( lv, 7, d ); \
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | DecimalQuantityTest.java | 151 double lv = d.longValue(); in testDecimalQuantity() 152 qs.add(new DecimalQuantity_SimpleStorage(lv)); in testDecimalQuantity() 154 qs.add(new DecimalQuantity_64BitBCD(lv)); in testDecimalQuantity() 155 qs.add(new DecimalQuantity_ByteArrayBCD(lv)); in testDecimalQuantity() 156 qs.add(new DecimalQuantity_DualStorageBCD(lv)); in testDecimalQuantity()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | DecimalQuantityTest.java | 148 double lv = d.longValue(); in testDecimalQuantity() 149 qs.add(new DecimalQuantity_SimpleStorage(lv)); in testDecimalQuantity() 151 qs.add(new DecimalQuantity_64BitBCD(lv)); in testDecimalQuantity() 152 qs.add(new DecimalQuantity_ByteArrayBCD(lv)); in testDecimalQuantity() 153 qs.add(new DecimalQuantity_DualStorageBCD(lv)); in testDecimalQuantity()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_pullup.c | 380 int lv = f->prev->vars[i]; in compute_affinity() local 382 int lc = f-> combs[i] - 2*(v < lv ? v : lv); in compute_affinity()
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLSPIRVCodeGenerator.cpp | 1210 std::unique_ptr<LValue> lv = this->getLValue(arg, out); in writeFunctionCallArgument() local 1211 SpvId ptr = lv->getPointer(); in writeFunctionCallArgument() 1212 if (ptr != (SpvId) -1 && lv->isMemoryObjectPointer()) { in writeFunctionCallArgument() 1219 tmpValueId = lv->load(out); in writeFunctionCallArgument() 1222 tempVars->push_back(TempVar{tmpVar, &arg.type(), std::move(lv)}); in writeFunctionCallArgument() 2819 std::unique_ptr<LValue> lv = this->getLValue(*p.operand(), out); in writePrefixExpression() local 2821 SpvId result = this->writeBinaryOperation(type, type, lv->load(out), one, in writePrefixExpression() 2824 lv->store(result, out); in writePrefixExpression() 2828 std::unique_ptr<LValue> lv = this->getLValue(*p.operand(), out); in writePrefixExpression() local 2830 SpvId result = this->writeBinaryOperation(type, type, lv in writePrefixExpression() 2856 std::unique_ptr<LValue> lv = this->getLValue(*p.operand(), out); writePostfixExpression() local [all...] |
/third_party/icu/icu4c/source/tools/gennorm2/ |
H A D | n2builder.cpp | 539 uint32_t lv=indexes[Normalizer2Impl::IX_MIN_YES_NO]; in setHangulData() local 548 umutablecptrie_set(norm16Trie, Hangul::HANGUL_BASE, lv, errorCode); in setHangulData() 552 umutablecptrie_set(norm16Trie, c, lv, errorCode); in setHangulData()
|
/third_party/skia/third_party/externals/icu/source/tools/gennorm2/ |
H A D | n2builder.cpp | 539 uint32_t lv=indexes[Normalizer2Impl::IX_MIN_YES_NO]; in setHangulData() local 548 umutablecptrie_set(norm16Trie, Hangul::HANGUL_BASE, lv, errorCode); in setHangulData() 552 umutablecptrie_set(norm16Trie, c, lv, errorCode); in setHangulData()
|
/third_party/icu/icu4c/source/common/ |
H A D | locmap.cpp | 484 ILCID_POSIX_ELEMENT_ARRAY(0x0426, lv, lv_LV) 875 ILCID_POSIX_MAP(lv), /* lv Latvian, Lettish 0x26 */
|
/third_party/node/deps/icu-small/source/common/ |
H A D | locmap.cpp | 484 ILCID_POSIX_ELEMENT_ARRAY(0x0426, lv, lv_LV) 875 ILCID_POSIX_MAP(lv), /* lv Latvian, Lettish 0x26 */
|
/third_party/libabigail/src/ |
H A D | abg-ini.cc | 1566 else if (list_property_value_sptr lv = is_list_property_value(value)) in read_property() 1567 result.reset(new list_property(name, lv)); in read_property()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locmap.cpp | 484 ILCID_POSIX_ELEMENT_ARRAY(0x0426, lv, lv_LV) 875 ILCID_POSIX_MAP(lv), /* lv Latvian, Lettish 0x26 */
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2test.c | 1096 #define PCHARS(lv, p, offset, len, utf, f) \ 1098 lv = pchars32((PCRE2_SPTR32)(p)+offset, len, utf, f); \ 1100 lv = pchars16((PCRE2_SPTR16)(p)+offset, len, utf, f); \ 1102 lv = pchars8((PCRE2_SPTR8)(p)+offset, len, utf, f) 1644 #define PCHARS(lv, p, offset, len, utf, f) \ 1646 lv = G(pchars,BITONE)((G(PCRE2_SPTR,BITONE))(p)+offset, len, utf, f); \ 1648 lv = G(pchars,BITTWO)((G(PCRE2_SPTR,BITTWO))(p)+offset, len, utf, f) 2056 #define PCHARS(lv, p, offset, len, utf, f) \ 2057 lv = pchars8((PCRE2_SPTR8)(p)+offset, len, utf, f) 2164 #define PCHARS(lv, [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 1503 final UnicodeSet lv = new UnicodeSet("[:Hangul_Syllable_Type=LV_Syllable:]"); in TestHangulSyllable() 1504 assertNotEquals("LV count", new UnicodeSet(), lv); in TestHangulSyllable() 1505 logln(lv + ": " + lv.size()); in TestHangulSyllable()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 1517 final UnicodeSet lv = new UnicodeSet("[:Hangul_Syllable_Type=LV_Syllable:]"); in TestHangulSyllable() 1518 assertNotEquals("LV count", new UnicodeSet(), lv); in TestHangulSyllable() 1519 logln(lv + ": " + lv.size()); in TestHangulSyllable()
|
/third_party/backends/backend/escl/ |
H A D | escl.c | 396 int len, lv = 0; in convertFromESCLDev() local 425 lv = strlen(sdev->vendor) + 1; in convertFromESCLDev() 430 sdev->model = strdup(lv + cdev->model_name); in convertFromESCLDev()
|