Home
last modified time | relevance | path

Searched refs:val2 (Results 126 - 150 of 156) sorted by relevance

1234567

/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Denc_msa.c311 const uint32_t val2 = __msa_copy_s_w((v4i32)R2, 0); in RD4() local
313 SW4(val3, val2, val1, val0, dst, BPS); in RD4()
331 const uint32_t val2 = __msa_copy_s_w((v4i32)R2, 0); in LD4() local
333 SW4(val0, val1, val2, val3, dst, BPS); in LD4()
/third_party/python/Python/
H A Dhamt.c628 PyObject *key2, PyObject *val2) in hamt_node_new_bitmap_or_collision()
630 /* Helper method. Creates a new node for key1/val and key2/val2 in hamt_node_new_bitmap_or_collision()
657 Py_INCREF(val2); in hamt_node_new_bitmap_or_collision()
658 n->c_array[3] = val2; in hamt_node_new_bitmap_or_collision()
676 n = hamt_node_assoc(n2, shift, key2_hash, key2, val2, &added_leaf); in hamt_node_new_bitmap_or_collision()
706 | key1 | val1 | key2 | val2 | ... | keyN | valN | in hamt_node_bitmap_assoc()
625 hamt_node_new_bitmap_or_collision(uint32_t shift, PyObject *key1, PyObject *val1, int32_t key2_hash, PyObject *key2, PyObject *val2) hamt_node_new_bitmap_or_collision() argument
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/
H A Dlocal_subscribe_store_test.cpp1938 std::vector<uint8_t> val2(maxValueSize2); in HWTEST_F()
1940 val2[i] = static_cast<uint8_t>(i); in HWTEST_F()
1942 Value value2 = val2; in HWTEST_F()
1974 entry5.value = val2; in HWTEST_F()
1978 entry7.value = val2; in HWTEST_F()
H A Dlocal_subscribe_device_store_test.cpp1925 std::vector<uint8_t> val2(maxValueSize2); in HWTEST_F()
1927 val2[i] = static_cast<uint8_t>(i); in HWTEST_F()
1929 Value value2 = val2; in HWTEST_F()
1960 entry5.value = val2; in HWTEST_F()
1964 entry7.value = val2; in HWTEST_F()
/third_party/vixl/src/aarch64/
H A Dlogic-aarch64.cc657 int64_t val2 = src2.Int(vform, i); in sdiv() local
660 if ((val1 == min_int) && (val2 == -1)) { in sdiv()
662 } else if (val2 != 0) { in sdiv()
663 quotient = val1 / val2; in sdiv()
679 uint64_t val2 = src2.Uint(vform, i); in udiv() local
681 if (val2 != 0) { in udiv()
682 quotient = val1 / val2; in udiv()
746 int64_t val2 = src2.Int(vform, i); in smulh() local
749 dst_val = internal::MultiplyHigh<8>(val1, val2); in smulh()
752 dst_val = internal::MultiplyHigh<16>(val1, val2); in smulh()
777 uint64_t val2 = src2.Uint(vform, i); umulh() local
[all...]
/third_party/python/Objects/
H A Ddictobject.c4916 PyObject *key = NULL, *val1 = NULL, *val2 = NULL; in dictitems_xor() local
4920 while (_PyDict_Next(d2, &pos, &key, &val2, &hash)) { in dictitems_xor()
4922 Py_INCREF(val2); in dictitems_xor()
4934 to_delete = PyObject_RichCompareBool(val1, val2, Py_EQ); in dictitems_xor()
4946 PyObject *pair = PyTuple_Pack(2, key, val2); in dictitems_xor()
4958 Py_DECREF(val2); in dictitems_xor()
4960 key = val1 = val2 = NULL; in dictitems_xor()
4980 Py_XDECREF(val2); in dictitems_xor()
/third_party/icu/icu4c/source/test/intltest/
H A Dnumrgts.cpp1980 double val2 = num.getDouble(); in Test4145457() local
1988 if (val == val2 && out == out2) { in Test4145457()
1991 out2 + "\" -> " + val2); in Test4145457() local
1996 out2 + "\" -> " + val2); in Test4145457() local
/third_party/mesa3d/src/intel/isl/
H A Disl_tiled_memcpy.c583 __m128i val2 = _mm_stream_load_si128(((__m128i *)src) + 2); in _memcpy_streaming_load() local
587 _mm_storeu_si128(((__m128i *)dest) + 2, val2); in _memcpy_streaming_load()
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dstorage.c415 VALUE val2 = native_slot_get(type, type_class, mem2); in native_slot_eq() local
416 VALUE ret = rb_funcall(val1, rb_intern("=="), 1, val2); in native_slot_eq()
/third_party/backends/backend/
H A Dhp-option.c476 const void * val1, const void * val2) in _values_are_equal()
481 return strncmp((const char *)val1, (const char *)val2, optd->size) == 0; in _values_are_equal()
483 return memcmp(val1, val2, optd->size) == 0; in _values_are_equal()
813 int val = 0, val2; in _probe_resolution() local
820 RETURN_IF_FAIL( sanei_hp_scl_inquire(scsi, SCL_Y_RESOLUTION, &val2, &min2, &max2)); in _probe_resolution()
475 _values_are_equal(HpOption this, HpData data, const void * val1, const void * val2) _values_are_equal() argument
/third_party/vk-gl-cts/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp4896 bool operator() (const T& val1, const T& val2) const in operator ()()
4898 return val1 < val2; in operator ()()
4903 bool inputLess (const T& val1, const T& val2) in inputLess() argument
4905 return InputLess<T>()(val1, val2); in inputLess()
4911 bool operator() (const float& val1, const float& val2) const in operator ()()
4915 if (deIsNaN(val2)) in operator ()()
4917 return val1 < val2; in operator ()()
/third_party/json/tests/src/
H A Dunit-regression2.cpp615 auto val2 = j.value("y", defval); variable
/foundation/distributeddatamgr/relational_store/test/native/relational_store_test/unittest/
H A Drelational_store_test.cpp1575 int64_t val2 = 0; in HWTEST_F() local
1576 ret = obj.GetLong(val2); in HWTEST_F()
1578 EXPECT_EQ(val2, 1); in HWTEST_F()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dsiutils.c3591 uint32 val2 = val; in si_srpwr_request() local
3620 if (val2) { in si_srpwr_request()
3622 (val2 << SRPWR_STATUS_SHIFT)) { in si_srpwr_request()
3625 si_srpwr_stat_spinwait(sih, mask2, val2); in si_srpwr_request()
/third_party/node/deps/v8/src/execution/arm/
H A Dsimulator-arm.cc1243 void Simulator::Compute_FPSCR_Flags(float val1, float val2) { in Compute_FPSCR_Flags() argument
1244 if (std::isnan(val1) || std::isnan(val2)) { in Compute_FPSCR_Flags()
1250 } else if (val1 == val2) { in Compute_FPSCR_Flags()
1255 } else if (val1 < val2) { in Compute_FPSCR_Flags()
1261 // Case when (val1 > val2). in Compute_FPSCR_Flags()
1269 void Simulator::Compute_FPSCR_Flags(double val1, double val2) { in Compute_FPSCR_Flags() argument
1270 if (std::isnan(val1) || std::isnan(val2)) { in Compute_FPSCR_Flags()
1276 } else if (val1 == val2) { in Compute_FPSCR_Flags()
1281 } else if (val1 < val2) { in Compute_FPSCR_Flags()
1287 // Case when (val1 > val2) in Compute_FPSCR_Flags()
[all...]
/third_party/python/Modules/
H A Dposixmodule.c5734 PyObject *key, *val, *key2, *val2, *keyval; in parse_envlist() local
5767 if (!PyUnicode_FSDecoder(val, &val2)) { in parse_envlist()
5778 Py_DECREF(val2); in parse_envlist()
5781 keyval = PyUnicode_FromFormat("%U=%U", key2, val2); in parse_envlist()
5785 if (!PyUnicode_FSConverter(val, &val2)) { in parse_envlist()
5794 Py_DECREF(val2); in parse_envlist()
5798 PyBytes_AS_STRING(val2)); in parse_envlist()
5801 Py_DECREF(val2); in parse_envlist()
/third_party/googletest/googletest/test/
H A Dgoogletest-printers-test.cc1887 const std::string val2 = "content"; in TEST_F() local
1892 any = val2; in TEST_F()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberRegressionTests.java1238 double val2 = nf.parse(out2).doubleValue(); in Test4145457()
1246 if (val == val2 && out.equals(out2)) { in Test4145457()
1249 out2 + "\" -> " + val2); in Test4145457()
1254 out2 + "\" -> " + val2); in Test4145457()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberRegressionTests.java1235 double val2 = nf.parse(out2).doubleValue(); in Test4145457()
1243 if (val == val2 && out.equals(out2)) { in Test4145457()
1246 out2 + "\" -> " + val2); in Test4145457()
1251 out2 + "\" -> " + val2); in Test4145457()
/third_party/ltp/tools/sparse/sparse-src/
H A Dexample.c887 static void do_binop(struct bb_state *state, struct instruction *insn, pseudo_t val1, pseudo_t val2) in do_binop() argument
891 struct operand *src2 = get_generic_operand(state, val2); in do_binop()
/third_party/backends/backend/genesys/
H A Dgenesys.cpp3105 unsigned int x, avgpixels, basepixels, i, j, val1, val2; in compute_shifted_coefficients() local
3157 val2 = br_tmp[j] - dk_tmp[j]; in compute_shifted_coefficients()
3158 if (65535 * val2 > (target_bright - target_dark) * coeff) in compute_shifted_coefficients()
3159 val2 = (coeff * (target_bright - target_dark)) / val2; in compute_shifted_coefficients()
3161 val2 = 65535; in compute_shifted_coefficients()
3164 dk_tmp[j] = val2; in compute_shifted_coefficients()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp6537 bool operator() (const T& val1, const T& val2) const
6539 return val1 < val2;
6544 bool inputLess (const T& val1, const T& val2)
6546 return InputLess<T>()(val1, val2);
6552 bool operator() (const float& val1, const float& val2) const
6556 if (deIsNaN(val2))
6558 return val1 < val2;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp6526 bool operator() (const T& val1, const T& val2) const
6528 return val1 < val2;
6533 bool inputLess (const T& val1, const T& val2)
6535 return InputLess<T>()(val1, val2);
6541 bool operator() (const float& val1, const float& val2) const
6545 if (deIsNaN(val2))
6547 return val1 < val2;
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_nir_soa.c933 LLVMValueRef val, LLVMValueRef val2, in emit_atomic_global()
961 LLVMValueRef cas_src_ptr = LLVMBuildExtractElement(gallivm->builder, val2, in emit_atomic_global()
1404 LLVMValueRef val, LLVMValueRef val2, in emit_atomic_mem()
1452 LLVMValueRef cas_src_ptr = LLVMBuildExtractElement(gallivm->builder, val2, in emit_atomic_mem()
928 emit_atomic_global(struct lp_build_nir_context *bld_base, nir_intrinsic_op nir_op, unsigned addr_bit_size, unsigned val_bit_size, LLVMValueRef addr, LLVMValueRef val, LLVMValueRef val2, LLVMValueRef *result) emit_atomic_global() argument
1400 emit_atomic_mem(struct lp_build_nir_context *bld_base, nir_intrinsic_op nir_op, uint32_t bit_size, LLVMValueRef index, LLVMValueRef offset, LLVMValueRef val, LLVMValueRef val2, LLVMValueRef *result) emit_atomic_mem() argument
H A Dlp_bld_sample.c1737 * Returns sel1 ? val2 : (sel0 ? val0 : val1).
1745 LLVMValueRef val2) in lp_build_select3()
1749 return lp_build_select(sel_bld, sel1, val2, tmp); in lp_build_select3()
1740 lp_build_select3(struct lp_build_context *sel_bld, LLVMValueRef sel0, LLVMValueRef sel1, LLVMValueRef val0, LLVMValueRef val1, LLVMValueRef val2) lp_build_select3() argument

Completed in 162 milliseconds

1234567