Home
last modified time | relevance | path

Searched refs:value (Results 1426 - 1450 of 26757) sorted by relevance

1...<<51525354555657585960>>...1071

/kernel/linux/linux-5.10/fs/fuse/
H A Dxattr.c14 int fuse_setxattr(struct inode *inode, const char *name, const void *value, in fuse_setxattr() argument
32 args.in_args[0].value = &inarg; in fuse_setxattr()
34 args.in_args[1].value = name; in fuse_setxattr()
36 args.in_args[2].value = value; in fuse_setxattr()
49 ssize_t fuse_getxattr(struct inode *inode, const char *name, void *value, in fuse_getxattr() argument
67 args.in_args[0].value = &inarg; in fuse_getxattr()
69 args.in_args[1].value = name; in fuse_getxattr()
75 args.out_args[0].value = value; in fuse_getxattr()
180 fuse_xattr_get(const struct xattr_handler *handler, struct dentry *dentry, struct inode *inode, const char *name, void *value, size_t size) fuse_xattr_get() argument
190 fuse_xattr_set(const struct xattr_handler *handler, struct dentry *dentry, struct inode *inode, const char *name, const void *value, size_t size, int flags) fuse_xattr_set() argument
209 no_xattr_get(const struct xattr_handler *handler, struct dentry *dentry, struct inode *inode, const char *name, void *value, size_t size) no_xattr_get() argument
216 no_xattr_set(const struct xattr_handler *handler, struct dentry *dentry, struct inode *nodee, const char *name, const void *value, size_t size, int flags) no_xattr_set() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/dsa/b53/
H A Db53_spi.c148 __le16 value; in b53_spi_read16() local
151 ret = b53_spi_read(dev, page, reg, (u8 *)&value, 2); in b53_spi_read16()
154 *val = le16_to_cpu(value); in b53_spi_read16()
161 __le32 value; in b53_spi_read32() local
164 ret = b53_spi_read(dev, page, reg, (u8 *)&value, 4); in b53_spi_read32()
167 *val = le32_to_cpu(value); in b53_spi_read32()
174 __le64 value; in b53_spi_read48() local
178 ret = b53_spi_read(dev, page, reg, (u8 *)&value, 6); in b53_spi_read48()
180 *val = le64_to_cpu(value); in b53_spi_read48()
187 __le64 value; in b53_spi_read64() local
198 b53_spi_write8(struct b53_device *dev, u8 page, u8 reg, u8 value) b53_spi_write8() argument
215 b53_spi_write16(struct b53_device *dev, u8 page, u8 reg, u16 value) b53_spi_write16() argument
232 b53_spi_write32(struct b53_device *dev, u8 page, u8 reg, u32 value) b53_spi_write32() argument
249 b53_spi_write48(struct b53_device *dev, u8 page, u8 reg, u64 value) b53_spi_write48() argument
266 b53_spi_write64(struct b53_device *dev, u8 page, u8 reg, u64 value) b53_spi_write64() argument
[all...]
/kernel/linux/linux-6.6/drivers/iio/test/
H A Diio-test-format.c203 s64 value; in iio_test_iio_format_value_integer_64() local
210 value = 24; in iio_test_iio_format_value_integer_64()
211 values[0] = lower_32_bits(value); in iio_test_iio_format_value_integer_64()
212 values[1] = upper_32_bits(value); in iio_test_iio_format_value_integer_64()
216 value = -24; in iio_test_iio_format_value_integer_64()
217 values[0] = lower_32_bits(value); in iio_test_iio_format_value_integer_64()
218 values[1] = upper_32_bits(value); in iio_test_iio_format_value_integer_64()
222 value = 0; in iio_test_iio_format_value_integer_64()
223 values[0] = lower_32_bits(value); in iio_test_iio_format_value_integer_64()
224 values[1] = upper_32_bits(value); in iio_test_iio_format_value_integer_64()
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H A Dvmx_ops.h14 void vmwrite_error(unsigned long field, unsigned long value);
93 unsigned long value; in __vmcs_readl() local
102 : [output] "=r" (value) in __vmcs_readl()
107 return value; in __vmcs_readl()
147 : ASM_CALL_CONSTRAINT, "=&r"(value) : "r"(field) : "cc"); in __vmcs_readl()
148 return value; in __vmcs_readl()
223 static __always_inline void __vmcs_writel(unsigned long field, unsigned long value) in __vmcs_writel() argument
225 vmx_asm2(vmwrite, "r"(field), "rm"(value), field, value); in __vmcs_writel()
228 static __always_inline void vmcs_write16(unsigned long field, u16 value) in vmcs_write16() argument
237 vmcs_write32(unsigned long field, u32 value) vmcs_write32() argument
246 vmcs_write64(unsigned long field, u64 value) vmcs_write64() argument
258 vmcs_writel(unsigned long field, unsigned long value) vmcs_writel() argument
[all...]
/kernel/liteos_a/arch/arm/arm/src/pmu/
H A Darmv7_pmu.c42 UINT32 value = 0; in Armv7PmncRead() local
43 __asm__ volatile("mrc p15, 0, %0, c9, c12, 0" : "=r"(value)); in Armv7PmncRead()
44 return value; in Armv7PmncRead()
47 STATIC INLINE VOID Armv7PmncWrite(UINT32 value) in Armv7PmncWrite() argument
49 value &= ARMV7_PMNC_MASK; in Armv7PmncWrite()
50 __asm__ volatile("mcr p15, 0, %0, c9, c12, 0" : : "r"(value)); in Armv7PmncWrite()
88 STATIC INLINE VOID Armv7BindEvt2Cnt(UINT32 index, UINT32 value) in Armv7BindEvt2Cnt() argument
90 PRINT_DEBUG("bind event: %u to counter: %u\n", value, index); in Armv7BindEvt2Cnt()
92 value &= ARMV7_EVTYPE_MASK; in Armv7BindEvt2Cnt()
93 __asm__ volatile("mcr p15, 0, %0, c9, c13, 1" : : "r" (value)); in Armv7BindEvt2Cnt()
128 UINT32 value; Armv7PmuGetOverflowStatus() local
241 UINT32 value = 0; Armv7ReadEventCnt() local
[all...]
/third_party/gn/src/base/numerics/
H A Dclamped_math.h20 static_assert(std::is_arithmetic<T>::value,
39 constexpr ClampedNumeric(Src value) // NOLINT(runtime/explicit) in ClampedNumeric() argument
40 : value_(saturated_cast<T>(value)) { in ClampedNumeric()
41 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric."); in ClampedNumeric()
48 StrictNumeric<Src> value) // NOLINT(runtime/explicit) in ClampedNumeric()
49 : value_(saturated_cast<T>(static_cast<Src>(value))) {} in ClampedNumeric()
101 ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
109 ClampedMinOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Min()
113 // integer of the same width as the source type, containing the absolute value
127 ClampedNumeric value in operator ++() local
47 ClampedNumeric( StrictNumeric<Src> value) ClampedNumeric() argument
138 ClampedNumeric value = *this; operator --() local
181 static constexpr Src value(Src value) { value() function
190 MakeClampedNum( const T value) MakeClampedNum() argument
197 operator <<(std::ostream& os, const ClampedNumeric<T>& value) operator <<() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DDayPeriodRules.java81 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument
82 UResource.Table dayPeriodData = value.getTable(); in put()
83 for (int i = 0; dayPeriodData.getKeyAndValue(i, key, value); ++i) { in put()
85 UResource.Table locales = value.getTable(); in put()
86 for (int j = 0; locales.getKeyAndValue(j, key, value); ++j) { in put()
87 int setNum = parseSetNum(value.getString()); in put()
91 UResource.Table rules = value.getTable(); in put()
92 processRules(rules, key, value); in put()
97 private void processRules(UResource.Table rules, UResource.Key key, UResource.Value value) { in processRules() argument
98 for (int i = 0; rules.getKeyAndValue(i, key, value); in processRules()
215 put(UResource.Key key, UResource.Value value, boolean noFallback) put() argument
[all...]
/third_party/alsa-lib/include/
H A Dmixer.h83 * \return zero if success, otherwise a negative error value
251 int snd_mixer_selem_ask_playback_vol_dB(snd_mixer_elem_t *elem, long value, long *dBvalue);
252 int snd_mixer_selem_ask_capture_vol_dB(snd_mixer_elem_t *elem, long value, long *dBvalue);
253 int snd_mixer_selem_ask_playback_dB_vol(snd_mixer_elem_t *elem, long dBvalue, int dir, long *value);
254 int snd_mixer_selem_ask_capture_dB_vol(snd_mixer_elem_t *elem, long dBvalue, int dir, long *value);
255 int snd_mixer_selem_get_playback_volume(snd_mixer_elem_t *elem, snd_mixer_selem_channel_id_t channel, long *value);
256 int snd_mixer_selem_get_capture_volume(snd_mixer_elem_t *elem, snd_mixer_selem_channel_id_t channel, long *value);
257 int snd_mixer_selem_get_playback_dB(snd_mixer_elem_t *elem, snd_mixer_selem_channel_id_t channel, long *value);
258 int snd_mixer_selem_get_capture_dB(snd_mixer_elem_t *elem, snd_mixer_selem_channel_id_t channel, long *value);
259 int snd_mixer_selem_get_playback_switch(snd_mixer_elem_t *elem, snd_mixer_selem_channel_id_t channel, int *value);
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DDayPeriodRules.java88 public void put(UResource.Key key, UResource.Value value, boolean noFallback) { in put() argument
89 UResource.Table dayPeriodData = value.getTable(); in put()
90 for (int i = 0; dayPeriodData.getKeyAndValue(i, key, value); ++i) { in put()
92 UResource.Table locales = value.getTable(); in put()
93 for (int j = 0; locales.getKeyAndValue(j, key, value); ++j) { in put()
94 int setNum = parseSetNum(value.getString()); in put()
98 UResource.Table rules = value.getTable(); in put()
99 processRules(rules, key, value); in put()
104 private void processRules(UResource.Table rules, UResource.Key key, UResource.Value value) { in processRules() argument
105 for (int i = 0; rules.getKeyAndValue(i, key, value); in processRules()
222 put(UResource.Key key, UResource.Value value, boolean noFallback) put() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_lower_image_casts.c35 convert_value(nir_builder *b, nir_ssa_def *value, in convert_value() argument
40 return value; in convert_value()
42 assert(value->num_components == 4); in convert_value()
44 assert(value->bit_size == 32); in convert_value()
60 value = nir_format_float_to_unorm(b, value, rgba1010102_bits); in convert_value()
63 channels[i] = nir_channel(b, value, i); in convert_value()
70 src_as_vec = nir_format_pack_11f11f10f(b, value); in convert_value()
73 src_as_vec = nir_pack_unorm_4x8(b, value); in convert_value()
76 packed_channels[0] = nir_pack_unorm_2x16(b, nir_channels(b, value, in convert_value()
211 nir_ssa_def *value; lower_image_cast_instr() local
[all...]
/third_party/mesa3d/src/util/
H A Du_debug.c125 static bool value = false; in debug_get_option_should_print() local
128 return value; in debug_get_option_should_print()
134 value = debug_get_bool_option("GALLIUM_PRINT_OPTIONS", false); in debug_get_option_should_print()
136 return value; in debug_get_option_should_print()
204 /* Restore the default value when no digits were found. */ in debug_get_num_option()
305 (int)sizeof(uint64_t)*CHAR_BIT/4, flags->value, in debug_get_flags_option()
312 result |= flags->value; in debug_get_flags_option()
332 unsigned long value) in debug_dump_enum()
337 if (names->value == value) in debug_dump_enum()
331 debug_dump_enum(const struct debug_named_value *names, unsigned long value) debug_dump_enum() argument
348 debug_dump_enum_noprefix(const struct debug_named_value *names, const char *prefix, unsigned long value) debug_dump_enum_noprefix() argument
372 debug_dump_flags(const struct debug_named_value *names, unsigned long value) debug_dump_flags() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/crmf/
H A Dcrmf_asn.c31 ASN1_SIMPLE(OSSL_CRMF_ENCKEYWITHID_IDENTIFIER, value.string, ASN1_UTF8STRING),
32 ASN1_SIMPLE(OSSL_CRMF_ENCKEYWITHID_IDENTIFIER, value.generalName, GENERAL_NAME)
81 ASN1_SIMPLE(OSSL_CRMF_PKMACVALUE, value, ASN1_BIT_STRING)
87 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.thisMessage, ASN1_BIT_STRING, 0),
88 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.subsequentMessage, ASN1_INTEGER, 1),
89 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.dhMAC, ASN1_BIT_STRING, 2),
90 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.agreeMAC, OSSL_CRMF_PKMACVALUE, 3),
91 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.encryptedKey, ASN1_NULL, 4),
106 ASN1_EXP(OSSL_CRMF_POPOSIGNINGKEYINPUT_AUTHINFO, value.sender,
108 ASN1_SIMPLE(OSSL_CRMF_POPOSIGNINGKEYINPUT_AUTHINFO, value
[all...]
/third_party/openssl/crypto/crmf/
H A Dcrmf_asn.c31 ASN1_SIMPLE(OSSL_CRMF_ENCKEYWITHID_IDENTIFIER, value.string, ASN1_UTF8STRING),
32 ASN1_SIMPLE(OSSL_CRMF_ENCKEYWITHID_IDENTIFIER, value.generalName, GENERAL_NAME)
81 ASN1_SIMPLE(OSSL_CRMF_PKMACVALUE, value, ASN1_BIT_STRING)
87 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.thisMessage, ASN1_BIT_STRING, 0),
88 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.subsequentMessage, ASN1_INTEGER, 1),
89 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.dhMAC, ASN1_BIT_STRING, 2),
90 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.agreeMAC, OSSL_CRMF_PKMACVALUE, 3),
91 ASN1_IMP(OSSL_CRMF_POPOPRIVKEY, value.encryptedKey, ASN1_NULL, 4),
106 ASN1_EXP(OSSL_CRMF_POPOSIGNINGKEYINPUT_AUTHINFO, value.sender,
108 ASN1_SIMPLE(OSSL_CRMF_POPOSIGNINGKEYINPUT_AUTHINFO, value
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dclamped_math.h25 static_assert(std::is_arithmetic<T>::value, "ClampedNumeric<T>: T must be a numeric type.");
43 constexpr ClampedNumeric(Src value) // NOLINT(runtime/explicit) in ClampedNumeric() argument
44 : value_(saturated_cast<T>(value)) in ClampedNumeric()
46 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric."); in ClampedNumeric()
52 constexpr ClampedNumeric(StrictNumeric<Src> value) // NOLINT(runtime/explicit) in ClampedNumeric() argument
53 : value_(saturated_cast<T>(static_cast<Src>(value))) in ClampedNumeric()
109 return ClampedNumeric<result_type>(ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
116 return ClampedNumeric<result_type>(ClampedMinOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Min()
120 // integer of the same width as the source type, containing the absolute value
135 ClampedNumeric value in operator ++() local
148 ClampedNumeric value = *this; operator --() local
191 static constexpr Src value(Src value) value() function
201 MakeClampedNum(const T value) MakeClampedNum() argument
209 operator <<(std::ostream &os, const ClampedNumeric<T> &value) operator <<() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES31.h76 GLint value);
87 const GLfloat *value);
98 const GLint *value);
109 const GLuint *value);
121 const GLfloat *value);
133 const GLint *value);
145 const GLuint *value);
158 const GLfloat *value);
171 const GLint *value);
184 const GLuint *value);
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLPrefixExpression.cpp28 const Expression* value = ConstantFolder::GetConstantValueForVariable(originalExpr); in simplify_negation() local
29 switch (value->kind()) { in simplify_negation()
32 double negated = -value->as<Literal>().value(); in simplify_negation()
33 // Don't simplify the expression if the type can't hold the negated value. in simplify_negation()
34 const Type& type = value->type(); in simplify_negation()
35 if (type.checkForOutOfRangeLiteral(context, negated, value->fLine)) { in simplify_negation()
42 const PrefixExpression& prefix = value->as<PrefixExpression>(); in simplify_negation()
50 if (value->isCompileTimeConstant()) { in simplify_negation()
51 const ConstructorArray& ctor = value in simplify_negation()
111 negate_operand(const Context& context, std::unique_ptr<Expression> value) negate_operand() argument
124 const Expression* value = ConstantFolder::GetConstantValueForVariable(*operand); logical_not_operand() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-map.hh40 k_invalid_t kINVALID = hb_is_pointer (K) ? 0 : std::is_signed<K>::value ? hb_int_min (K) : (K) -1,
41 v_invalid_t vINVALID = hb_is_pointer (V) ? 0 : std::is_signed<V>::value ? hb_int_min (V) : (V) -1>
67 static_assert (std::is_trivially_copyable<K>::value, "");
68 static_assert (std::is_trivially_copyable<V>::value, "");
69 static_assert (std::is_trivially_destructible<K>::value, "");
70 static_assert (std::is_trivially_destructible<V>::value, "");
75 V value; member
78 void clear () { key = kINVALID; value = vINVALID; hash = 0; } in clear()
83 bool is_tombstone () const { return key != kINVALID && value == vINVALID; } in is_tombstone()
84 bool is_real () const { return key != kINVALID && value ! in is_tombstone()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h236 io.enumCase(value, "DW_TAG_" #name, dwarf::DW_TAG_##name);
239 static void enumeration(IO &io, dwarf::Tag &value) { in enumeration()
241 io.enumFallback<Hex16>(value); in enumeration()
246 io.enumCase(value, "DW_LNS_" #name, dwarf::DW_LNS_##name);
249 static void enumeration(IO &io, dwarf::LineNumberOps &value) { in enumeration()
251 io.enumFallback<Hex8>(value); in enumeration()
256 io.enumCase(value, "DW_LNE_" #name, dwarf::DW_LNE_##name);
259 static void enumeration(IO &io, dwarf::LineNumberExtendedOps &value) { in enumeration()
261 io.enumFallback<Hex16>(value); in enumeration()
266 io.enumCase(value, "DW_AT
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dextension_set_inl.h86 uint64 value; \ in ParseFieldWithExtensionInfo()
87 ptr = VarintParse(ptr, &value); \ in ParseFieldWithExtensionInfo()
91 extension.is_packed, value, extension.descriptor); \ in ParseFieldWithExtensionInfo()
93 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
109 auto value = WireFormatLite::ZigZagDecode##SIZE(val); \ in ParseFieldWithExtensionInfo()
112 extension.is_packed, value, extension.descriptor); \ in ParseFieldWithExtensionInfo()
114 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
124 auto value = UnalignedLoad<CPPTYPE>(ptr); \ in ParseFieldWithExtensionInfo()
128 extension.is_packed, value, extension.descriptor); \ in ParseFieldWithExtensionInfo()
130 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
147 int value = val; ParseFieldWithExtensionInfo() local
164 std::string* value = ParseFieldWithExtensionInfo() local
176 MessageLite* value = ParseFieldWithExtensionInfo() local
189 MessageLite* value = ParseFieldWithExtensionInfo() local
226 MessageLite* value = ParseMessageSetItemTmpl() local
[all...]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DTimestamps.java124 * Compares two timestamps. The value returned is identical to what would be returned by: {@code
127 * @return the value {@code 0} if {@code x == y}; a value less than {@code 0} if {@code x < y};
128 * and a value greater than {@code 0} if {@code x > y}
135 * Returns true if the given {@link Timestamp} is valid. The {@code seconds} value must be in the
137 * 9999-12-31T23:59:59Z). The {@code nanos} value must be in the range [0, +999,999,999].
148 * seconds} value must be in the range [-62,135,596,800, +253,402,300,799] (i.e., between
149 * 0001-01-01T00:00:00Z and 9999-12-31T23:59:59Z). The {@code nanos} value must be in the range
194 * uses 3, 6 or 9 fractional digits as required to represent the exact value. Note that Timestamp
232 public static Timestamp parse(String value) throw argument
402 parseTimezoneOffset(String value) parseTimezoneOffset() argument
412 parseNanos(String value) parseNanos() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/
H A Dhns3_debugfs.c23 u32 value, i; in hns3_dbg_queue_info() local
64 value = readl_relaxed(ring->tqp->io_base + in hns3_dbg_queue_info()
66 dev_info(&h->pdev->dev, "RX(%u) RING BD NUM: %u\n", i, value); in hns3_dbg_queue_info()
68 value = readl_relaxed(ring->tqp->io_base + in hns3_dbg_queue_info()
70 dev_info(&h->pdev->dev, "RX(%u) RING BD LEN: %u\n", i, value); in hns3_dbg_queue_info()
72 value = readl_relaxed(ring->tqp->io_base + in hns3_dbg_queue_info()
74 dev_info(&h->pdev->dev, "RX(%u) RING TAIL: %u\n", i, value); in hns3_dbg_queue_info()
76 value = readl_relaxed(ring->tqp->io_base + in hns3_dbg_queue_info()
78 dev_info(&h->pdev->dev, "RX(%u) RING HEAD: %u\n", i, value); in hns3_dbg_queue_info()
80 value in hns3_dbg_queue_info()
179 u32 q_num, value; hns3_dbg_bd_info() local
[all...]
/third_party/gn/src/base/files/
H A Dfile_util_posix.cc85 if (CallLstat(path.value().c_str(), &stat_info) != 0) { in VerifySpecificPathControlledByUser()
86 DPLOG(ERROR) << "Failed to get information on path " << path.value(); in VerifySpecificPathControlledByUser()
91 DLOG(ERROR) << "Path " << path.value() << " is a symbolic link."; in VerifySpecificPathControlledByUser()
96 DLOG(ERROR) << "Path " << path.value() << " is owned by the wrong user."; in VerifySpecificPathControlledByUser()
102 DLOG(ERROR) << "Path " << path.value() in VerifySpecificPathControlledByUser()
108 DLOG(ERROR) << "Path " << path.value() << " is writable by any user."; in VerifySpecificPathControlledByUser()
164 if (realpath(input.value().c_str(), full_path) == nullptr) in MakeAbsoluteFilePath()
174 const char* path_str = path.value().c_str(); in DeleteFile()
187 directories.push(path.value()); in DeleteFile()
194 directories.push(current.value()); in DeleteFile()
[all...]
/third_party/node/deps/v8/include/
H A Dv8-util.h58 PersistentContainerValue value) { in Set()
59 std::pair<Iterator, bool> res = impl->insert(std::make_pair(key, value)); in Set()
63 res.first->second = value; in Set()
75 PersistentContainerValue value = it->second; in Remove()
77 return value; in Remove()
100 MapType* map, const K& key, Local<V> value) { in WeakCallbackParameter()
112 static void Dispose(Isolate* isolate, Global<V> value, K key) {} in Dispose() argument
129 Local<V> value) { in WeakCallbackParameter()
143 static void Dispose(Isolate* isolate, Global<V> value, K key) {} in Dispose() argument
156 * A map wrapper that allows using Global as a mapped value
57 Set(Impl* impl, K key, PersistentContainerValue value) Set() argument
99 WeakCallbackParameter( MapType* map, const K& key, Local<V> value) WeakCallbackParameter() argument
128 WeakCallbackParameter(MapType* map, const K& key, Local<V> value) WeakCallbackParameter() argument
260 PersistentValueReference(PersistentContainerValue value) PersistentValueReference() argument
263 operator =(PersistentContainerValue value) operator =() argument
338 SetReturnValueFromVal(ReturnValue<Value>* returnValue, PersistentContainerValue value) SetReturnValueFromVal() argument
370 Set(const K& key, Local<V> value) Set() argument
378 Set(const K& key, Global<V> value) Set() argument
408 Set(const K& key, Global<V> value, PersistentValueReference* reference) Set() argument
446 Set(const K& key, Local<V> value) Set() argument
454 Set(const K& key, Global<V> value) Set() argument
484 Set(const K& key, Global<V> value, PersistentValueReference* reference) Set() argument
545 Append(Impl* impl, PersistentContainerValue value) Append() argument
588 Append(Local<V> value) Append() argument
[all...]
/third_party/node/deps/v8/src/baseline/x64/
H A Dbaseline-assembler-x64-inl.h108 void BaselineAssembler::JumpIfRoot(Register value, RootIndex index, in JumpIfRoot() argument
110 __ JumpIfRoot(value, index, target, distance); in JumpIfRoot()
112 void BaselineAssembler::JumpIfNotRoot(Register value, RootIndex index, in JumpIfNotRoot() argument
114 __ JumpIfNotRoot(value, index, target, distance); in JumpIfNotRoot()
116 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi() argument
118 __ JumpIfSmi(value, target, distance); in JumpIfSmi()
120 void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, in JumpIfNotSmi() argument
122 __ JumpIfNotSmi(value, target, distance); in JumpIfNotSmi()
147 void BaselineAssembler::TestAndBranch(Register value, int mask, Condition cc, in TestAndBranch() argument
150 __ testb(value, Immediat in TestAndBranch()
182 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfPointer() argument
207 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfTagged() argument
213 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance distance) JumpIfTagged() argument
219 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance distance) JumpIfByte() argument
228 Move(Register output, TaggedIndex value) Move() argument
237 Move(Register output, Handle<HeapObject> value) Move() argument
240 Move(Register output, int32_t value) Move() argument
255 PushSingle(MacroAssembler* masm, TaggedIndex value) PushSingle() argument
258 PushSingle(MacroAssembler* masm, Smi value) PushSingle() argument
357 StoreTaggedSignedField(Register target, int offset, Smi value) StoreTaggedSignedField() argument
359 __ StoreTaggedSignedField(FieldOperand(target, offset), value); StoreTaggedSignedField() local
361 StoreTaggedFieldWithWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldWithWriteBarrier() argument
367 __ StoreTaggedField(FieldOperand(target, offset), value); StoreTaggedFieldWithWriteBarrier() local
370 StoreTaggedFieldNoWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldNoWriteBarrier() argument
373 __ StoreTaggedField(FieldOperand(target, offset), value); StoreTaggedFieldNoWriteBarrier() local
[all...]
/kernel/linux/linux-6.6/drivers/pinctrl/intel/
H A Dpinctrl-lynxpoint.c246 u32 value; in lp_gpio_ioxapic_use() local
248 value = ioread32(ioxapic_use); in lp_gpio_ioxapic_use()
251 return !!(value & BIT(offset - 8 + 0)); in lp_gpio_ioxapic_use()
253 return !!(value & BIT(offset - 13 + 3)); in lp_gpio_ioxapic_use()
255 return !!(value & BIT(offset - 45 + 5)); in lp_gpio_ioxapic_use()
266 u32 value, mode; in lp_pin_dbg_show() local
268 value = ioread32(reg); in lp_pin_dbg_show()
270 mode = value & USE_SEL_MASK; in lp_pin_dbg_show()
276 seq_printf(s, "0x%08x 0x%08x", value, ioread32(conf2)); in lp_pin_dbg_show()
302 u32 value; in lp_pinmux_set_mux() local
338 u32 value; lp_gpio_request_enable() local
387 u32 value; lp_gpio_set_direction() local
429 u32 value, pull; lp_pin_config_get() local
473 u32 value; lp_pin_config_set() local
530 lp_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) lp_gpio_set() argument
551 lp_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int value) lp_gpio_direction_output() argument
651 u32 value; lp_irq_set_type() local
[all...]

Completed in 20 milliseconds

1...<<51525354555657585960>>...1071