/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/ |
H A D | poly1305-sparcv9.pl | 92 stx %g0,[$ctx+8] ! zero hash value 161 ld [$ctx+0],$h1 ! load hash value 268 st $h1,[$ctx+0] ! store hash value 298 ldx [$ctx+0],$H0 ! load hash value 362 stx $H0,[$ctx+0] ! store hash value 380 ld [$ctx+0],$h1 ! load hash value 477 std $two0,[$ctx+8*0] ! initial hash value, biased 0 628 ldd [$ctx+8*0],$h0lo ! load [biased] hash value 699 fsubd $h0lo,$two0, $h0lo ! de-bias hash value 907 std $x1,[$ctx+8*1] ! store [biased] hash value [all...] |
/third_party/python/Lib/collections/ |
H A D | __init__.py | 106 def __setitem__(self, key, value, 110 # and the inherited dictionary is updated with the new key/value pair. 118 dict_setitem(self, key, value) 159 '''Remove and return a (key, value) pair from the dictionary. 178 value = dict.pop(self, key) 179 return key, value 235 value. If key is not found, d is returned if given, otherwise KeyError 256 '''Insert key with a value of default if key is not in the dictionary. 258 Return the value for key if key is in the dictionary, else default. 296 def fromkeys(cls, iterable, value [all...] |
/third_party/openssl/crypto/poly1305/asm/ |
H A D | poly1305-sparcv9.pl | 92 stx %g0,[$ctx+8] ! zero hash value 161 ld [$ctx+0],$h1 ! load hash value 268 st $h1,[$ctx+0] ! store hash value 298 ldx [$ctx+0],$H0 ! load hash value 362 stx $H0,[$ctx+0] ! store hash value 380 ld [$ctx+0],$h1 ! load hash value 477 std $two0,[$ctx+8*0] ! initial hash value, biased 0 628 ldd [$ctx+8*0],$h0lo ! load [biased] hash value 699 fsubd $h0lo,$two0, $h0lo ! de-bias hash value 907 std $x1,[$ctx+8*1] ! store [biased] hash value [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_3_2_autogen.cpp | 899 void GL_APIENTRY GL_MinSampleShading(GLfloat value) in GL_MinSampleShading() argument 902 EVENT(context, GLMinSampleShading, "context = %d, value = %f", CID(context), value); in GL_MinSampleShading() 909 ValidateMinSampleShading(context, angle::EntryPoint::GLMinSampleShading, value)); in GL_MinSampleShading() 912 context->minSampleShading(value); in GL_MinSampleShading() 914 ANGLE_CAPTURE(MinSampleShading, isCallValid, context, value); in GL_MinSampleShading() 973 void GL_APIENTRY GL_PatchParameteri(GLenum pname, GLint value) in GL_PatchParameteri() argument 976 EVENT(context, GLPatchParameteri, "context = %d, pname = %s, value = %d", CID(context), in GL_PatchParameteri() 977 GLenumToString(GLenumGroup::PatchParameterName, pname), value); in GL_PatchParameteri() 984 ValidatePatchParameteri(context, angle::EntryPoint::GLPatchParameteri, pname, value)); in GL_PatchParameteri() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | number_skeletons.cpp | 315 void enum_to_stem_string::roundingMode(UNumberFormatRoundingMode value, UnicodeString& sb) { in roundingMode() argument 316 switch (value) { in roundingMode() 355 void enum_to_stem_string::groupingStrategy(UNumberGroupingStrategy value, UnicodeString& sb) { in groupingStrategy() argument 356 switch (value) { in groupingStrategy() 377 void enum_to_stem_string::unitWidth(UNumberUnitWidth value, UnicodeString& sb) { in unitWidth() argument 378 switch (value) { in unitWidth() 405 void enum_to_stem_string::signDisplay(UNumberSignDisplay value, UnicodeString& sb) { in signDisplay() argument 406 switch (value) { in signDisplay() 440 enum_to_stem_string::decimalSeparatorDisplay(UNumberDecimalSeparatorDisplay value, UnicodeString& sb) { in decimalSeparatorDisplay() argument 441 switch (value) { in decimalSeparatorDisplay() [all...] |
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | sfwoff2.c | 124 FT_UShort* value ) in Read255UShort() 141 /* Read next two bytes and store `FT_UShort' value. */ in Read255UShort() 144 *value = result_short; in Read255UShort() 151 *value = result_byte + lowestUCode; in Read255UShort() 158 *value = result_byte + lowestUCode * 2; in Read255UShort() 163 *value = code; in Read255UShort() 171 FT_ULong* value ) in ReadBase128() 198 *value = result; in ReadBase128() 243 /* Set pointer of `dst' to its correct value. */ in write_buf() 788 FT_ULong value in store_loca() local [all...] |
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | parser_unittest.cc | 672 " name: \"value\" number: 2 label:LABEL_OPTIONAL" in TEST_F() 684 " name: \"value\" number: 2 label:LABEL_OPTIONAL" in TEST_F() 1060 " value { name:\"FOO\" number:0 }" in TEST_F() 1078 " value { name:\"FOO\" number:13 }" in TEST_F() 1079 " value { name:\"BAR\" number:-10 }" in TEST_F() 1080 " value { name:\"BAZ\" number:500 }" in TEST_F() 1081 " value { name:\"HEX_MAX\" number:2147483647 }" in TEST_F() 1082 " value { name:\"HEX_MIN\" number:-2147483648 }" in TEST_F() 1083 " value { name:\"INT_MAX\" number:2147483647 }" in TEST_F() 1084 " value { nam in TEST_F() 3411 const EnumValueDescriptorProto& value = file_.enum_type(0).value(0); TEST_F() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_sys_settrace.py | 17 def __init__(self, output, value): 19 self.value = value 22 self.output.append(self.value) 25 self.output.append(-self.value) 29 def __init__(self, output, value): 31 self.value = value 34 self.output.append(self.value) 37 self.output.append(-self.value) [all...] |
/third_party/python/Modules/_sqlite/ |
H A D | connection.c | 624 sqlite_int64 value = _pysqlite_long_as_int64(py_val); in _pysqlite_set_result() local 625 if (value == -1 && PyErr_Occurred()) in _pysqlite_set_result() 627 sqlite3_result_int64(context, value); in _pysqlite_set_result() 629 double value = PyFloat_AsDouble(py_val); in _pysqlite_set_result() local 630 if (value == -1 && PyErr_Occurred()) { in _pysqlite_set_result() 633 sqlite3_result_double(context, value); in _pysqlite_set_result() 856 PyObject *exception, *value, *tb; in final_callback() local 870 // Keep the exception (if any) of the last call to step, value, or inverse in final_callback() 871 PyErr_Fetch(&exception, &value, &tb); in final_callback() 886 _PyErr_ChainExceptions(exception, value, t in final_callback() [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | MapForProto2Test.java | 305 private <K, V> void assertImmutable(Map<K, V> map, K key, V value) { in assertImmutable() argument 307 map.put(key, value); in assertImmutable() 627 Message.Builder mapEntry, String name, Object value) { in setFieldValue() 629 mapEntry.setField(field, value); in setFieldValue() 638 Object value = getFieldValue(mapEntry, "value"); in assertHasMapValues() 640 assertEquals(value, values.get(key)); in assertHasMapValues() 646 Object value = getFieldValue(mapEntry, "value"); in assertHasMapValues() 648 assertEquals(value, value in assertHasMapValues() 626 setFieldValue( Message.Builder mapEntry, String name, Object value) setFieldValue() argument 652 newMapEntry(Message.Builder builder, String name, K key, V value) newMapEntry() argument [all...] |
/third_party/python/Modules/ |
H A D | pyexpat.c | 103 set_error_attr(PyObject *err, const char *name, int value) in set_error_attr() argument 105 PyObject *v = PyLong_FromLong(value); in set_error_attr() 232 PyObject *value; in string_intern() local 238 value = PyDict_GetItemWithError(self->intern, result); in string_intern() 239 if (!value) { in string_intern() 250 Py_INCREF(value); in string_intern() 252 return value; in string_intern() 494 const XML_Char *value, 502 (conv_string_len_to_unicode(value, value_length)), 1661 {NULL, NULL}, /* XML_ERROR_NONE (value [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fVertexArrayObjectTests.cpp | 423 std::stringstream value; in createProgram() local 450 value << (attribNdx != 0 ? " + " : "" ) << scale << " * vec4(a_attrib" << attribNdx << ")"; in createProgram() 468 value << (attribNdx != 0 ? " + " : "" ) << scale << " * a_attrib" << attribNdx; in createProgram() 471 value << (attribNdx != 0 ? " + " : "" ) << "a_attrib" << attribNdx; in createProgram() 478 << "\tv_value = " << value.str() << ";\n"; in createProgram() 1007 std::stringstream value; in createProgram() local 1034 value << (attribNdx != 0 ? " + " : "" ) << scale << " * vec4(a_attrib" << attribNdx << ")"; in createProgram() 1052 value << (attribNdx != 0 ? " + " : "" ) << scale << " * a_attrib" << attribNdx; in createProgram() 1055 value << (attribNdx != 0 ? " + " : "" ) << "a_attrib" << attribNdx; in createProgram() 1062 << "\tv_value = " << value in createProgram() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_core_linux.c | 342 * only if the caller checks the return value. 574 bool value; in write_ctx_infinite_cache() local 576 err = kstrtobool_from_user(ubuf, size, &value); in write_ctx_infinite_cache() 581 if (value) { in write_ctx_infinite_cache() 596 bool value; in read_ctx_infinite_cache() local 598 value = kbase_ctx_flag(kctx, KCTX_INFINITE_CACHE); in read_ctx_infinite_cache() 600 count = scnprintf(buf, sizeof(buf), "%s\n", value ? "Y" : "N"); in read_ctx_infinite_cache() 617 bool value; in write_ctx_force_same_va() local 619 err = kstrtobool_from_user(ubuf, size, &value); in write_ctx_force_same_va() 624 if (value) { in write_ctx_force_same_va() 648 bool value; read_ctx_force_same_va() local 5028 kbase_trace_mali_pm_status(u32 dev_id, u32 event, u64 value) kbase_trace_mali_pm_status() argument 5041 kbase_trace_mali_page_fault_insert_pages(u32 dev_id, int event, u32 value) kbase_trace_mali_page_fault_insert_pages() argument [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_core_linux.c | 311 * only if the caller checks the return value. 524 bool value; in write_ctx_infinite_cache() local 526 err = kstrtobool_from_user(ubuf, size, &value); in write_ctx_infinite_cache() 530 if (value) in write_ctx_infinite_cache() 543 bool value; in read_ctx_infinite_cache() local 545 value = kbase_ctx_flag(kctx, KCTX_INFINITE_CACHE); in read_ctx_infinite_cache() 547 count = scnprintf(buf, sizeof(buf), "%s\n", value ? "Y" : "N"); in read_ctx_infinite_cache() 564 bool value; in write_ctx_force_same_va() local 566 err = kstrtobool_from_user(ubuf, size, &value); in write_ctx_force_same_va() 570 if (value) { in write_ctx_force_same_va() 593 bool value; read_ctx_force_same_va() local 5524 kbase_trace_mali_pm_status(u32 dev_id, u32 event, u64 value) kbase_trace_mali_pm_status() argument 5537 kbase_trace_mali_page_fault_insert_pages(u32 dev_id, int event, u32 value) kbase_trace_mali_page_fault_insert_pages() argument [all...] |
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | scsi_transport_fc.c | 44 * The maximum will be capped by the value of SCSI_DEVICE_BLOCK_MAX_TIMEOUT. 51 " insulate the loss of a remote port. Once this value is" 71 if (table[i].value == table_key) { \ 81 enum table_type *value) \ 88 *value = table[i].value; \ 98 enum fc_port_type value; member 119 enum fc_host_event_code value; member 143 enum fc_port_state value; member 164 enum fc_vport_state value; member 187 enum fc_tgtid_binding_type value; global() member 225 u32 value; global() member 239 u32 value; global() member 276 u32 value; global() member 1818 int value; fc_parse_wwn() local [all...] |
/kernel/linux/linux-5.10/tools/lib/bpf/ |
H A D | btf.c | 368 * setting it to a large value in btf_parse_type_sec() 467 * guessed value by using btf__set_pointer_size() API. 1308 const struct btf_member *key, *value; in btf__get_map_kv_tids() local 1342 value = key + 1; in btf__get_map_kv_tids() 1356 value_size = btf__resolve_size(btf, value->type); in btf__get_map_kv_tids() 1369 *value_type_id = value->type; in btf__get_map_kv_tids() 1923 * Append new enum value for the current ENUM type with: 1924 * - *name* - name of the enumerator value, can't be NULL or empty; 1925 * - *value* - integer value correspondin 1930 btf__add_enum_value(struct btf *btf, const char *name, __s64 value) btf__add_enum_value() argument 2889 hash_combine(long h, long value) hash_combine() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/ |
H A D | ice_ethtool.c | 1502 * undefined memory access or incorrect string<->value in ice_get_sset_count() 3457 * value on cmd line but we get non-zero value anyway via in ice_set_channels() 3567 /* Set WoL only if there is a new value */ in ice_set_wol() 3720 netdev_info(vsi->netdev, "Invalid value, %s-usecs-high valid values are 0 (disabled), %d-%d\n", in ice_set_rc_coalesce() 3727 netdev_info(vsi->netdev, "Invalid value, %s-usecs-high cannot be changed if adaptive-tx or adaptive-rx is enabled\n", in ice_set_rc_coalesce() 3758 netdev_info(vsi->netdev, "Invalid value, %s-usecs range is 0-%d\n", in ice_set_rc_coalesce() 3767 /* store user facing value how it was set */ in ice_set_rc_coalesce() 3826 * @coalesce_usecs: requested value of [tx|rx]-usecs 3989 u8 value in ice_get_module_info() local 4058 u8 value[SFF_READ_BLOCK_SIZE] = { 0 }; ice_get_module_eeprom() local [all...] |
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | scsi_transport_fc.c | 50 * The maximum will be capped by the value of SCSI_DEVICE_BLOCK_MAX_TIMEOUT. 57 " insulate the loss of a remote port. Once this value is" 77 if (table[i].value == table_key) { \ 87 enum table_type *value) \ 94 *value = table[i].value; \ 104 enum fc_port_type value; member 125 enum fc_host_event_code value; member 150 enum fc_port_state value; member 174 enum fc_vport_state value; member 197 enum fc_tgtid_binding_type value; global() member 235 u32 value; global() member 249 u32 value; global() member 286 u32 value; global() member 2285 int value; fc_parse_wwn() local [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | unistdndk.cpp | 1088 char *value;
in Getcwd() local 1090 value = getcwd(buf, sizeof(buf));
in Getcwd() 1092 if (value != nullptr) {
in Getcwd() 1122 long value = fpathconf(PARAM_0, _PC_LINK_MAX);
in Fpathconf() local 1124 if (value != FAIL) {
in Fpathconf() 1201 int value = lchown(strTemp, TEST_ID_VALUE, TEST_ID_VALUE);
in LChOwn() local 1203 napi_create_int32(env, value, &result);
in LChOwn() 1219 int value = link(oldPath, newPath);
in Link() local 1224 napi_create_int32(env, value, &result);
in Link() 1242 int value in LinkAt() local 1510 int value; Nice() local 1588 char *value = static_cast<char *>(malloc(sizeof(char) * size)); Pread() local [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-layout-common.hh | 550 HBUINT16 value; /* Value */ member 868 * and make the following value checks. If it fails, assume the size in sanitize() 928 * same subfamily value, and no fonts which 930 * same subfamily value. If this value is 933 NameID subfamilyNameID;/* If the preceding value is non-zero, this 934 * value must be set in the range 256 - 32767 935 * (inclusive). It records the value of a 1173 * alternative location. We would know sanitize "failed" if old value in sanitize() 1509 ? (unsigned int) range.value in get_coverage() [all...] |
/third_party/python/Lib/ |
H A D | turtle.py | 182 key, value = line.split("=") 187 value = value.strip() 188 if value in ["True", "False", "None", "''", '""']: 189 value = eval(value) 192 if "." in value: 193 value = float(value) 195 value [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_shader.c | 409 uint32_t value[4]; member 721 /* Make sure that all really used indices have nonzero value, so in r600_spi_sid() 837 alu.src[0].value = src0_chan_val; in single_alu_op2() 842 alu.src[1].value = src1_chan_val; in single_alu_op2() 860 alu.src[0].value = src0_chan_val; in single_alu_op2() 865 alu.src[1].value = src1_chan_val; in single_alu_op2() 894 alu.src[0].value = src0_chan_val; in single_alu_op3() 899 alu.src[1].value = src1_chan_val; in single_alu_op3() 904 alu.src[2].value = src2_chan_val; in single_alu_op3() 1499 alu.src[0].value in eg_load_helper_invocation() 8822 int value = (ctx->literals[4 * inst->Src[src_idx].Register.Index + inst->Src[src_idx].Register.SwizzleX]); load_buffer_coord() local 9425 int value = (ctx->literals[4 * inst->Src[3].Register.Index + inst->Src[3].Register.SwizzleX]); tgsi_atomic_op_gds() local 9451 int value = (ctx->literals[4 * inst->Src[2].Register.Index + inst->Src[2].Register.SwizzleX]); tgsi_atomic_op_gds() local [all...] |
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/ |
H A D | nested.c | 612 * and 0x8ff, it just lets the processor take the value in nested_vmx_prepare_msr_bitmap() 930 if (kvm_set_msr(vcpu, e.index, e.value)) { in nested_vmx_load_msr() 933 __func__, i, e.index, e.value); in nested_vmx_load_msr() 950 * If the L0 hypervisor stored a more accurate value for the TSC that in nested_vmx_get_vmexit_msr_value() 952 * VM-exit in L0, use the more accurate value. in nested_vmx_get_vmexit_msr_value() 959 u64 val = vmx->msr_autostore.guest.val[i].value; in nested_vmx_get_vmexit_msr_value() 1013 offsetof(struct vmx_msr_entry, value), in nested_vmx_store_msr() 1060 * accurate value will be returned by in prepare_vmx_msr_autostore_list() 1062 * instead of reading the value from the vmcs02 VMExit in prepare_vmx_msr_autostore_list() 1354 * must be 1 in the restored value in vmx_restore_fixed0_msr() 4197 u64 value; vmx_get_preemption_timer_value() local 5352 u64 value; handle_vmread() local 5469 u64 value = 0; handle_vmwrite() local [all...] |
/third_party/backends/sanei/ |
H A D | sanei_usb.c | 261 unsigned short value; member 349 /* copy from 16 to 32 bit value */ in kernel_get_vendor_product() 842 // freeing the returned value 2281 /* each scan method will reset this value to 0 (not missing) in sanei_usb_scan_devices() 3737 // returns non-negative value on success, -1 on failure 4130 // returns non-negative value on success, -1 on failure 4459 SANE_Int value, SANE_Int index, SANE_Int len, in sanei_usb_record_control_msg() 4475 sanei_xml_set_hex_attr(e_tx, "wValue", value); in sanei_usb_record_control_msg() 4502 SANE_Int value, SANE_Int index, SANE_Int len, in sanei_usb_record_replace_control_msg() 4517 sanei_usb_record_control_msg(node, dn, rtype, req, value, inde in sanei_usb_record_replace_control_msg() 4457 sanei_usb_record_control_msg(xmlNode* node, SANE_Int dn, SANE_Int rtype, SANE_Int req, SANE_Int value, SANE_Int index, SANE_Int len, const SANE_Byte* data) sanei_usb_record_control_msg() argument 4500 sanei_usb_record_replace_control_msg(xmlNode* node, SANE_Int dn, SANE_Int rtype, SANE_Int req, SANE_Int value, SANE_Int index, SANE_Int len, const SANE_Byte* data) sanei_usb_record_replace_control_msg() argument 4524 sanei_usb_replay_control_msg(SANE_Int dn, SANE_Int rtype, SANE_Int req, SANE_Int value, SANE_Int index, SANE_Int len, SANE_Byte* data) sanei_usb_replay_control_msg() argument 4611 sanei_usb_control_msg(SANE_Int dn, SANE_Int rtype, SANE_Int req, SANE_Int value, SANE_Int index, SANE_Int len, SANE_Byte * data) sanei_usb_control_msg() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
H A D | nir_to_spirv.c | 116 unsigned num_components, double value); 120 unsigned num_components, int64_t value); 252 emit_float_const(struct ntv_context *ctx, int bit_size, double value) in emit_float_const() argument 255 return spirv_builder_const_float(&ctx->builder, bit_size, value); in emit_float_const() 259 emit_uint_const(struct ntv_context *ctx, int bit_size, uint64_t value) in emit_uint_const() argument 262 return spirv_builder_const_uint(&ctx->builder, bit_size, value); in emit_uint_const() 266 emit_int_const(struct ntv_context *ctx, int bit_size, int64_t value) in emit_int_const() argument 269 return spirv_builder_const_int(&ctx->builder, bit_size, value); in emit_int_const() 529 unreachable("unknown interpolation value"); in emit_interpolation() 1224 emit_bitcast(struct ntv_context *ctx, SpvId type, SpvId value) in emit_bitcast() argument 1230 bitcast_to_uvec(struct ntv_context *ctx, SpvId value, unsigned bit_size, unsigned num_components) bitcast_to_uvec() argument 1238 bitcast_to_ivec(struct ntv_context *ctx, SpvId value, unsigned bit_size, unsigned num_components) bitcast_to_ivec() argument 1246 bitcast_to_fvec(struct ntv_context *ctx, SpvId value, unsigned bit_size, unsigned num_components) bitcast_to_fvec() argument 1762 get_fvec_constant(struct ntv_context *ctx, unsigned bit_size, unsigned num_components, double value) get_fvec_constant() argument 1782 get_ivec_constant(struct ntv_context *ctx, unsigned bit_size, unsigned num_components, int64_t value) get_ivec_constant() argument 2315 SpvId value = spirv_builder_const_composite(&ctx->builder, emit_load_const() local [all...] |