Home
last modified time | relevance | path

Searched refs:value (Results 10051 - 10075 of 14395) sorted by relevance

1...<<401402403404405406407408409410>>...576

/third_party/rust/crates/serde/serde_derive/src/
H A Dde.rs159 // each generic field type that will be set to a default value.
372 let value = match field.attrs.default() { in deserialize_transparent()
377 quote!(#member: #value) in deserialize_transparent()
715 |__wrap| __wrap.value) in deserialize_seq()
758 // We don't need the default value, to prevent an unused variable warning in deserialize_seq()
816 self.place.#member = __wrap.value; in deserialize_seq_in_place()
840 // We don't need the default value, to prevent an unused variable warning in deserialize_seq_in_place()
861 let value = match field.attrs.deserialize_with() { in deserialize_newtype_struct()
891 let __field0: #field_ty = #value; in deserialize_newtype_struct()
1955 |__wrapper| #this_value::#variant_ident(__wrapper.value)) in deserialize_externally_tagged_newtype_variant()
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuCompressedTexture.cpp888 deInt16 value; in decompressEAC11Block() local
891 value = (deInt16)deClamp32(baseCodeword*8 + multiplier*modifier*8, -1023, 1023); in decompressEAC11Block()
893 value = (deInt16)deClamp32(baseCodeword*8 + modifier, -1023, 1023); in decompressEAC11Block()
895 *((deInt16*)(dst + dstOffset)) = value; in decompressEAC11Block()
899 deUint16 value; in decompressEAC11Block() local
902 value = (deUint16)deClamp32(baseCodeword*8 + 4 + multiplier*modifier*8, 0, 2047); in decompressEAC11Block()
904 value= (deUint16)deClamp32(baseCodeword*8 + 4 + modifier, 0, 2047); in decompressEAC11Block()
906 *((deUint16*)(dst + dstOffset)) = value; in decompressEAC11Block()
1408 inline deInt32 signExtend (deInt32 value, deInt32 srcBits, deInt32 dstBits)
1410 deUint32 sign = value
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dbcmutils.c299 * DSCP priority value. This is required for Linux APs because in pktsetprio()
301 * with the priority value in the vlan tag in pktsetprio()
369 /* 255 is unused value so return up from dscp */ in dscp2up()
439 /* usr_prio range from low to high with usr_prio value */
1063 uint16 start; /* start value of 16bit ids to be managed */
1256 void BCMFASTPATH /* Free a 16bit id value into the id16 allocator */
1737 uint64 result, last_result = 0, value; in bcm_strtoull() local
1770 (value = (uint64)(bcm_isdigit(*cp) ? *cp-'0' : bcm_toupper(*cp)-'A'+10)) < base) { in bcm_strtoull()
1771 result = result*base + value; in bcm_strtoull()
2411 bcm_object_feature_set(void *obj, uint32 type, uint32 value) in bcm_object_feature_set() argument
2450 bcm_object_feature_get(void *obj, uint32 type, uint32 value) bcm_object_feature_get() argument
3972 sqrt_int(uint32 value) sqrt_int() argument
4169 array_value_mismatch_count(uint8 value, uint8 *array, int array_size) array_value_mismatch_count() argument
[all...]
/third_party/ffmpeg/libavformat/
H A Dmatroskaenc.c263 /** Seek preroll value for opus */
1497 int stereo_mode = atoi(tag->value); in mkv_write_stereo_mode()
1500 if (!strcmp(tag->value, ff_matroska_video_stereo_mode[i])){ in mkv_write_stereo_mode()
1635 if (((tag = av_dict_get(st->metadata, "alpha_mode", NULL, 0)) && atoi(tag->value)) || in mkv_write_track_video()
1636 ((tag = av_dict_get( s->metadata, "alpha_mode", NULL, 0)) && atoi(tag->value)) || in mkv_write_track_video()
1712 put_ebml_string(pb, MATROSKA_ID_TRACKNAME, tag->value); in mkv_write_track()
1715 tag && tag->value[0] ? tag->value : "und"); in mkv_write_track()
1717 // The default value for TRACKFLAGDEFAULT is 1, so add element in mkv_write_track()
2006 ebml_writer_add_string(&writer, MATROSKA_ID_TAGSTRING, t->value); in mkv_write_simpletag()
[all...]
H A Dffmetaenc.c47 write_escape_str(s, t->value); in write_tags()
H A Drtpdec_formats.h40 const char *value);
/third_party/FreeBSD/sys/dev/usb/controller/
H A Dehci.c3040 uint16_t value; local
3050 value = UGETW(req->wValue);
3056 UGETW(req->wLength), value, index);
3073 switch (value >> 8) {
3075 if ((value & 0xff) != 0) {
3088 if ((value & 0xff) != 0) {
3097 if ((value & 0xff) != 0) {
3106 switch (value & 0xff) {
3148 if (value >= EHCI_MAX_DEVICES) {
3152 sc->sc_addr = value;
[all...]
/third_party/nghttp2/src/
H A Dshrpx.cc131 // socket, the value must be comma separated 2 parameters: tcp,<FD>.
132 // <FD> is file descriptor. For UNIX domain socket, the value must be
145 // The value must be comma separated parameters:
1060 std::string value = "tcp,"; in get_inherited_addr_from_env() local
1061 value += fdenv; in get_inherited_addr_from_env()
1062 setenv(name.c_str(), value.c_str(), 0); in get_inherited_addr_from_env()
1067 // The return value of getenv may be allocated statically. in get_inherited_addr_from_env()
1071 std::string value = "unix,"; in get_inherited_addr_from_env() local
1072 value += getenv(ENV_UNIX_FD.c_str()); in get_inherited_addr_from_env()
1073 value in get_inherited_addr_from_env()
1098 auto value = end_type + 1; get_inherited_addr_from_env() local
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_alu.cpp551 void AluInstr::add_extra_dependency(PVirtualValue value) in add_extra_dependency() argument
553 auto reg = value->as_register(); in add_extra_dependency()
598 void visit(const Register& value){(void) value;} in visit() argument
599 void visit(const LocalArray& value) {(void)value; unreachable("An array can't be used as address");} in visit() argument
600 void visit(const LocalArrayValue& value);
601 void visit(const UniformValue& value);
602 void visit(const LiteralConstant& value) {(void)value;} in visit() argument
603 visit(const InlineConstant& value) visit() argument
609 visit(const LocalArrayValue& value) visit() argument
616 visit(const UniformValue& value) visit() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.c153 * the following instruction group gets the right value. The in r600_bytecode_init()
735 void r600_bytecode_special_constants(uint32_t value, unsigned *sel) in r600_bytecode_special_constants() argument
737 switch(value) { in r600_bytecode_special_constants()
768 uint32_t value = alu->src[i].value; in r600_bytecode_alu_nliterals() local
771 if (literal[j] == value) { in r600_bytecode_alu_nliterals()
779 literal[(*nliteral)++] = value; in r600_bytecode_alu_nliterals()
794 uint32_t value = alu->src[i].value; in r600_bytecode_alu_adjust_literals() local
796 if (literal[j] == value) { in r600_bytecode_alu_adjust_literals()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DContext.cpp606 void Context::setSampleCoverageParams(GLclampf value, bool invert) in setSampleCoverageParams() argument
608 if(mState.sampleCoverageValue != value || in setSampleCoverageParams()
611 mState.sampleCoverageValue = value; in setSampleCoverageParams()
1573 // that byte offset to this function's return value to get its required buffer
3474 void Context::clearColorBuffer(GLint drawbuffer, void *value, sw::Format format) in clearColorBuffer() argument
3495 device->clear(value, format, colorbuffer, clearRect, rgbaMask); in clearColorBuffer()
3502 void Context::clearColorBuffer(GLint drawbuffer, const GLint *value) in clearColorBuffer() argument
3504 clearColorBuffer(drawbuffer, (void*)value, sw::FORMAT_A32B32G32R32I); in clearColorBuffer()
3507 void Context::clearColorBuffer(GLint drawbuffer, const GLuint *value) in clearColorBuffer() argument
3509 clearColorBuffer(drawbuffer, (void*)value, s in clearColorBuffer()
3512 clearColorBuffer(GLint drawbuffer, const GLfloat *value) clearColorBuffer() argument
3517 clearDepthBuffer(const GLfloat value) clearDepthBuffer() argument
3545 clearStencilBuffer(const GLint value) clearStencilBuffer() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_openssl.c138 uint8_t *value = NULL; in BIO_from_keystore() local
139 int length = keystore_get(key, strlen(key), &value); in BIO_from_keystore()
141 BIO_write(bio, value, length); in BIO_from_keystore()
142 free(value); in BIO_from_keystore()
1682 const char *value, size_t len) in tls_match_altsubject_component()
1696 os_memcmp(value, gen->d.ia5->data, len) == 0) in tls_match_altsubject_component()
1825 * @value DN field value which is passed from configuration
1831 const char *value, in match_dn_field()
1837 len = os_strlen(value); in match_dn_field()
1681 tls_match_altsubject_component(X509 *cert, int type, const char *value, size_t len) tls_match_altsubject_component() argument
1830 match_dn_field(const X509 *cert, int nid, const char *field, const char *value, const struct tls_dn_field_order_cnt *dn_cnt) match_dn_field() argument
1907 char *context = NULL, *name, *value; get_value_from_field() local
[all...]
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp266 uint8x16_t value; member
267 static const int SIZE = sizeof(value);
270 simdutf_really_inline base_u8(const uint8x16_t _value) : value(_value) {} in base_u8()
271 simdutf_really_inline operator const uint8x16_t&() const { return this->value; } in operator const uint8x16_t&()
272 simdutf_really_inline operator uint8x16_t&() { return this->value; } in operator uint8x16_t&()
423 // Perform a lookup assuming the value is between 0 and 16 (undefined behavior for out of range values)
453 int8x16_t value; member
465 // mov v0.16b, value[0]
467 // mov v0.16b, value[1]
473 ? int8x16x2_t{{this->value, vmovq_n_s in store_ascii_as_utf16()
777 uint16x8_t value; global() member
1678 __m256i value; global() member
2584 __m128i value; global() member
3473 __m128i value; global() member
11108 uint32_t value = (diff << 10) + diff2 + 0x10000; convert_valid() local
11183 uint32_t value = (diff << 10) + diff2 + 0x10000; convert() local
11242 uint32_t value = (diff << 10) + diff2 + 0x10000; convert_with_errors() local
11289 uint32_t value = (diff << 10) + diff2 + 0x10000; convert_valid() local
11332 uint32_t value = (diff << 10) + diff2 + 0x10000; convert() local
11359 uint32_t value = (diff << 10) + diff2 + 0x10000; convert_with_errors() local
14043 uint32_t value = (diff << 10) + diff2 + 0x10000; arm_convert_utf16_to_utf8() local
14297 uint32_t value = (diff << 10) + diff2 + 0x10000; arm_convert_utf16_to_utf8_with_errors() local
14404 uint32_t value = (diff << 10) + diff2 + 0x10000; arm_convert_utf16_to_utf32() local
14462 uint32_t value = (diff << 10) + diff2 + 0x10000; arm_convert_utf16_to_utf32_with_errors() local
[all...]
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/wal/
H A Dwal_event_msg.h116 hi_u32 value; member
/device/soc/hisilicon/common/hal/display/source/display_device/src/drm/
H A Ddrm_device.h36 uint64_t value; member
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/hcc/
H A Dhcc_slave.h120 hi_void hcc_set_thruput_bypass_enable(hcc_thruput_bypass bypass_type, hi_u8 value);
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
H A Dhmac_ext_if.h192 hi_u32 value; member
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/
H A Dmali_kbase_regs_history_debugfs.c73 seq_printf(sfile, "%6i: %c: reg 0x%p val %08x\n", i, access, (void *)(io->addr & ~0x1), io->value); in regs_history_show()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_regs_history_debugfs.c84 (void *)(io->addr & ~0x1), io->value); in regs_history_show()
/third_party/ffmpeg/libavcodec/
H A Dcodec_internal.h78 * FFCodec.codec_tags termination value
84 const char *value; member
/third_party/ffmpeg/libavfilter/
H A Ddrawutils.h73 * @param range sample value range of the frames that will be drawn onto,
90 * Prepare a color. The rgba value passed is always 8-bit full-range in the RGB space
153 * @param value value to round
154 * @return the rounded value
157 int value);
/third_party/ffmpeg/libavutil/tests/
H A Ddict.c27 printf("%s %s ", t->key, t->value); in print_dict()
96 printf("%s %s\n", e->key, e->value); in main()
104 printf("'%s' '%s'\n", e->key, e->value); in main()
120 printf("%s %s\n", e->key, e->value); in main()
129 printf("%s\n", e->value); in main()
130 av_dict_set(&dict, e->key, e->value, 0); in main()
132 printf("%s\n", e->value); in main()
/third_party/curl/packages/vms/
H A Dreport_openssl_version.c40 const struct dsc$descriptor_s * value,
/third_party/gn/src/gn/
H A Dargs.h35 Value default_value; // Default value given in declare_args.
48 void AddArgOverride(const char* name, const Value& value);
55 // Returns the value corresponding to the given argument name, or NULL if no
H A Dfile_writer_unittest.cc60 EXPECT_GE(file_path.value().size(), MAX_PATH); in TEST()

Completed in 57 milliseconds

1...<<401402403404405406407408409410>>...576