Home
last modified time | relevance | path

Searched refs:value (Results 1026 - 1050 of 33818) sorted by relevance

1...<<41424344454647484950>>...1353

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCodePointMap.java19 * Selectors for how getRange() should report value ranges overlapping with surrogates.
27 * getRange() enumerates all same-value ranges as stored in the map.
34 * getRange() enumerates all same-value ranges as stored in the map,
51 * getRange() enumerates all same-value ranges as stored in the map,
70 * Callback function interface: Modifies a map value.
72 * The modified value will be returned by the getRange() function.
74 * <p>Can be used to ignore some of the value bits,
76 * return a value index computed from the map value, etc.
84 * Modifies the map value
90 apply(int value) apply() argument
106 private int value; global() field in CodePointMap.Range
142 set(int start, int end, int value) set() argument
215 protected int value; global() field in CodePointMap.StringIterator
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DTrie2_16.java25 * code points (values ranging from 0 to 0x10ffff) to a 16 or 32 bit value.
64 * Get the value for a code point as stored in the Trie2.
67 * @return the value
71 int value; in get()
81 value = index[ix]; in get()
82 return value; in get()
93 value = index[ix]; in get()
94 return value; in get()
103 value = index[ix]; in get()
104 return value; in get()
184 rangeEnd(int startingCP, int limit, int value) rangeEnd() argument
[all...]
H A DTrie2_32.java24 * code points (values ranging from 0 to 0x10ffff) to a 16 or 32 bit value.
63 * Get the value for a code point as stored in the Trie2.
66 * @return the value
70 int value; in get()
80 value = data32[ix]; in get()
81 return value; in get()
92 value = data32[ix]; in get()
93 return value; in get()
102 value = data32[ix]; in get()
103 return value; in get()
181 rangeEnd(int startingCP, int limit, int value) rangeEnd() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCodePointMap.java20 * Selectors for how getRange() should report value ranges overlapping with surrogates.
28 * getRange() enumerates all same-value ranges as stored in the map.
33 * getRange() enumerates all same-value ranges as stored in the map,
48 * getRange() enumerates all same-value ranges as stored in the map,
65 * Callback function interface: Modifies a map value.
67 * The modified value will be returned by the getRange() function.
69 * <p>Can be used to ignore some of the value bits,
71 * return a value index computed from the map value, etc.
79 * Modifies the map value
84 apply(int value) apply() argument
100 private int value; global() field in CodePointMap.Range
130 set(int start, int end, int value) set() argument
203 protected int value; global() field in CodePointMap.StringIterator
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/
H A DCustomFormatterGrammarCaseTest.java44 private static String getDativeAndGenitive(String value) { in getDativeAndGenitive() argument
45 if (value.endsWith("ana")) in getDativeAndGenitive()
46 return value.substring(0, value.length() - 3) + "nei"; in getDativeAndGenitive()
47 if (value.endsWith("ca")) in getDativeAndGenitive()
48 return value.substring(0, value.length() - 2) + "căi"; in getDativeAndGenitive()
49 if (value.endsWith("ga")) in getDativeAndGenitive()
50 return value.substring(0, value in getDativeAndGenitive()
[all...]
/third_party/lzma/CPP/Windows/
H A DRegistry.h12 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValue(LPCTSTR valueName, bool value) throw();
49 LONG SetValue(LPCTSTR valueName, LPCTSTR value) throw();
50 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
52 LONG SetValue(LPCWSTR name, LPCWSTR value);
53 // LONG SetValue(LPCWSTR name, const UString &value);
56 LONG SetValue(LPCTSTR name, const void *value, UInt32 size) throw();
61 LONG SetKeyValue(LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value) throw();
63 LONG QueryValue(LPCTSTR name, UInt32 &value) thro
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dump.h58 util_str_blend_factor(unsigned value, boolean shortened);
61 util_str_blend_func(unsigned value, boolean shortened);
64 util_str_logicop(unsigned value, boolean shortened);
67 util_str_func(unsigned value, boolean shortened);
70 util_str_stencil_op(unsigned value, boolean shortened);
73 util_str_tex_target(unsigned value, boolean shortened);
76 util_str_tex_wrap(unsigned value, boolean shortened);
79 util_str_tex_mipfilter(unsigned value, boolean shortened);
82 util_str_tex_filter(unsigned value, boolean shortened);
85 util_str_query_type(unsigned value, boolea
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DSwapByteOrder.h58 inline uint16_t SwapByteOrder_16(uint16_t value) { in SwapByteOrder_16() argument
62 return _byteswap_ushort(value); in SwapByteOrder_16()
64 uint16_t Hi = value << 8; in SwapByteOrder_16()
65 uint16_t Lo = value >> 8; in SwapByteOrder_16()
71 inline uint32_t SwapByteOrder_32(uint32_t value) { in SwapByteOrder_32() argument
73 return __builtin_bswap32(value); in SwapByteOrder_32()
75 return _byteswap_ulong(value); in SwapByteOrder_32()
77 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
78 uint32_t Byte1 = value & 0x0000FF00; in SwapByteOrder_32()
79 uint32_t Byte2 = value in SwapByteOrder_32()
86 SwapByteOrder_64(uint64_t value) SwapByteOrder_64() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DasyncFunctionsAndStrictNullChecks.js4 then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void): IPromise<U>;
5 then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
6 then<U>(success?: (value: TResult) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void): IPromise<U>;
7 then<U>(success?: (value: TResult) => U, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
8 done<U>(success?: (value: TResult) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
19 declare function resolve1<T>(value: T): Promise<T>;
20 declare function resolve2<T>(value: T): Windows.Foundation.IPromise<T>;
30 function adopt(value) { return value instanceof P ? value
[all...]
H A DautoAccessor2(target=es2015).js24 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
26 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
30 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
42 _a = C1, _C1_instances = new WeakSet(), _C1_a_accessor_storage = new WeakMap(), _C1_b_accessor_storage = new WeakMap(), _C1_a_get = function _C1_a_get() { return __classPrivateFieldGet(this, _C1_a_accessor_storage, "f"); }, _C1_a_set = function _C1_a_set(value) { __classPrivateFieldSet(this, _C1_a_accessor_storage, value, "f"); }, _C1_b_get = function _C1_b_get() { return __classPrivateFieldGet(this, _C1_b_accessor_storage, "f"); }, _C1_b_set = function _C1_b_set(value) { __classPrivateFieldSe
[all...]
H A DautoAccessorExperimentalDecorators(target=es2015).js31 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
33 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
37 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
45 set a(value) { __classPrivateFieldSet(this, _C1_a_accessor_storage, value, "f"); }
47 static set b(value) { __classPrivateFieldSe
[all...]
/third_party/python/Lib/
H A Dconfigparser.py4 and followed by "name: value" entries, with continuations and such in
47 a multiline option are kept as part of the value.
50 values are accepted; the value presented for these is None.
55 value can be retrieved using the ``parser_instance.default_section``
59 instance. It will be used as the handler for option value
66 represents the name of a type converter and each value is a callable
104 Return a string value for the named option. All % interpolations are
109 `vars`, the value from `vars` is used.
112 Like get(), but convert value to an integer.
115 Like get(), but convert value t
[all...]
/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dpac_map.cpp63 #define PAC_MAP_PUT_VALUE(id, iid, key, value, mapList) \
66 sptr<iid> val = id::Box(value); \
70 #define PAC_MAP_GET_VALUE(id, key, value, mapList, defaultValue) \
76 value retVal = 0; \
84 #define PAC_MAP_GET_STRING_VALUE(id, key, value, mapList, defaultValue) \
90 value retVal; \
98 #define PAC_MAP_ADD_ARRAY(id, key, value, mapList) \
101 std::size_t size = (value).size(); \
104 ao->Set(i, id::Box((value)[i])); \
109 #define GET_PAC_MAP_ARRAY(id, mapList, key, value) \
303 PutShortValue(const std::string &key, short value) PutShortValue() argument
308 InnerPutShortValue(PacMapList &mapList, const std::string &key, short value) InnerPutShortValue() argument
317 PutIntValue(const std::string &key, int value) PutIntValue() argument
322 InnerPutIntValue(PacMapList &mapList, const std::string &key, int value) InnerPutIntValue() argument
331 PutLongValue(const std::string &key, long value) PutLongValue() argument
336 InnerPutLongValue(PacMapList &mapList, const std::string &key, long value) InnerPutLongValue() argument
345 PutBooleanValue(const std::string &key, bool value) PutBooleanValue() argument
350 InnerPutBooleanValue(PacMapList &mapList, const std::string &key, bool value) InnerPutBooleanValue() argument
359 PutCharValue(const std::string &key, char value) PutCharValue() argument
364 InnerPutCharValue(PacMapList &mapList, const std::string &key, char value) InnerPutCharValue() argument
374 PutByteValue(const std::string &key, AAFwk::byte value) PutByteValue() argument
379 InnerPutByteValue(PacMapList &mapList, const std::string &key, AAFwk::byte value) InnerPutByteValue() argument
388 PutFloatValue(const std::string &key, float value) PutFloatValue() argument
393 InnerPutFloatValue(PacMapList &mapList, const std::string &key, float value) InnerPutFloatValue() argument
403 PutDoubleValue(const std::string &key, double value) PutDoubleValue() argument
408 InnerPutDoubleValue(PacMapList &mapList, const std::string &key, double value) InnerPutDoubleValue() argument
417 PutStringValue(const std::string &key, const std::string &value) PutStringValue() argument
422 InnerPutStringValue(PacMapList &mapList, const std::string &key, const std::string &value) InnerPutStringValue() argument
432 PutObject(const std::string &key, const std::shared_ptr<UserObjectBase> &value) PutObject() argument
440 InnerPutObject(PacMapList &mapList, const std::string &key, const std::shared_ptr<UserObjectBase> &value) InnerPutObject() argument
454 PutPacMap(const std::string &key, const PacMap &value) PutPacMap() argument
459 InnerPutPacMap(PacMapList &mapList, const std::string &key, PacMap &value) InnerPutPacMap() argument
474 PutShortValueArray(const std::string &key, const std::vector<short> &value) PutShortValueArray() argument
479 InnerPutShortValueArray(PacMapList &mapList, const std::string &key, const std::vector<short> &value) InnerPutShortValueArray() argument
488 PutIntValueArray(const std::string &key, const std::vector<int> &value) PutIntValueArray() argument
493 InnerPutIntValueArray(PacMapList &mapList, const std::string &key, const std::vector<int> &value) InnerPutIntValueArray() argument
502 PutLongValueArray(const std::string &key, const std::vector<long> &value) PutLongValueArray() argument
507 InnerPutLongValueArray(PacMapList &mapList, const std::string &key, const std::vector<long> &value) InnerPutLongValueArray() argument
516 PutBooleanValueArray(const std::string &key, const std::vector<bool> &value) PutBooleanValueArray() argument
521 InnerPutBooleanValueArray(PacMapList &mapList, const std::string &key, const std::vector<bool> &value) InnerPutBooleanValueArray() argument
530 PutCharValueArray(const std::string &key, const std::vector<char> &value) PutCharValueArray() argument
535 InnerPutCharValueArray(PacMapList &mapList, const std::string &key, const std::vector<char> &value) InnerPutCharValueArray() argument
544 PutByteValueArray(const std::string &key, const std::vector<AAFwk::byte> &value) PutByteValueArray() argument
549 InnerPutByteValueArray(PacMapList &mapList, const std::string &key, const std::vector<AAFwk::byte> &value) InnerPutByteValueArray() argument
558 PutFloatValueArray(const std::string &key, const std::vector<float> &value) PutFloatValueArray() argument
563 InnerPutFloatValueArray(PacMapList &mapList, const std::string &key, const std::vector<float> &value) InnerPutFloatValueArray() argument
572 PutDoubleValueArray(const std::string &key, const std::vector<double> &value) PutDoubleValueArray() argument
577 InnerPutDoubleValueArray(PacMapList &mapList, const std::string &key, const std::vector<double> &value) InnerPutDoubleValueArray() argument
586 PutStringValueArray(const std::string &key, const std::vector<std::string> &value) PutStringValueArray() argument
591 InnerPutStringValueArray( PacMapList &mapList, const std::string &key, const std::vector<std::string> &value) InnerPutStringValueArray() argument
741 GetIntValueArray(const std::string &key, std::vector<int> &value) GetIntValueArray() argument
752 GetShortValueArray(const std::string &key, std::vector<short> &value) GetShortValueArray() argument
762 GetBooleanValueArray(const std::string &key, std::vector<bool> &value) GetBooleanValueArray() argument
773 GetLongValueArray(const std::string &key, std::vector<long> &value) GetLongValueArray() argument
784 GetCharValueArray(const std::string &key, std::vector<char> &value) GetCharValueArray() argument
795 GetByteValueArray(const std::string &key, std::vector<AAFwk::byte> &value) GetByteValueArray() argument
806 GetFloatValueArray(const std::string &key, std::vector<float> &value) GetFloatValueArray() argument
817 GetDoubleValueArray(const std::string &key, std::vector<double> &value) GetDoubleValueArray() argument
828 GetStringValueArray(const std::string &key, std::vector<std::string> &value) GetStringValueArray() argument
1133 std::string value = parcel.ReadString(); ReadFromParcel() local
1162 std::string value = parcel.ReadString(); Unmarshalling() local
1233 RawTypeToString(const RawType value, unsigned int precisionAfterPoint) RawTypeToString() argument
1854 Json::Value value = item["data"]; InnerPutPacMapValue() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_toggle.cpp57 [](DOMToggle& toggle, const std::string& value) { in SetSpecializedAttr()
58 toggle.toggleChild_->SetCheckedState(StringToBool(value)); in SetSpecializedAttr()
60 { DOM_DISABLED, [](DOMToggle& toggle, const std::string& value) { in SetSpecializedAttr()
61 toggle.toggleChild_->SetDisabled(StringToBool(value)); } }, in SetSpecializedAttr()
62 { DOM_TEXT_VALUE, [](DOMToggle& toggle, const std::string& value) { toggle.textChild_->SetData(value); } }, in SetSpecializedAttr()
66 toggleAttrOperators[operatorIter].value(*this, attr.second); in SetSpecializedAttr()
76 [](DOMToggle& toggle, const std::string& value) { toggle.textStyle_.SetAllowScale(StringToBool(value)); } }, in SetSpecializedStyle()
78 [](DOMToggle& toggle, const std::string& value) { in SetSpecializedStyle()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/
H A Dtext_clock_model_ng.cpp53 void TextClockModelNG::SetTextShadow(const std::vector<Shadow>& value) in SetTextShadow() argument
55 ACE_UPDATE_LAYOUT_PROPERTY(TextClockLayoutProperty, TextShadow, value); in SetTextShadow()
58 void TextClockModelNG::SetFontFeature(const FONT_FEATURES_LIST& value) in SetFontFeature() argument
60 ACE_UPDATE_LAYOUT_PROPERTY(TextClockLayoutProperty, FontFeature, value); in SetFontFeature()
77 void TextClockModelNG::SetFontSize(const Dimension& value) in SetFontSize() argument
79 ACE_UPDATE_LAYOUT_PROPERTY(TextClockLayoutProperty, FontSize, value); in SetFontSize()
82 void TextClockModelNG::SetTextColor(const Color& value) in SetTextColor() argument
84 ACE_UPDATE_LAYOUT_PROPERTY(TextClockLayoutProperty, TextColor, value); in SetTextColor()
85 ACE_UPDATE_RENDER_CONTEXT(ForegroundColor, value); in SetTextColor()
90 void TextClockModelNG::SetItalicFontStyle(Ace::FontStyle value) in SetItalicFontStyle() argument
95 SetFontWeight(FontWeight value) SetFontWeight() argument
100 SetFontFamily(const std::vector<std::string>& value) SetFontFamily() argument
178 SetTextShadow(FrameNode* frameNode, const std::vector<Shadow>& value) SetTextShadow() argument
183 SetFontFeature(FrameNode* frameNode, const FONT_FEATURES_LIST& value) SetFontFeature() argument
188 SetFontColor(FrameNode* frameNode, const Color& value) SetFontColor() argument
196 SetFontSize(FrameNode* frameNode, const Dimension& value) SetFontSize() argument
201 SetFontStyle(FrameNode* frameNode, Ace::FontStyle value) SetFontStyle() argument
206 SetFontWeight(FrameNode* frameNode, FontWeight value) SetFontWeight() argument
211 SetFontFamily(FrameNode* frameNode, const std::vector<std::string>& value) SetFontFamily() argument
[all...]
/foundation/distributeddatamgr/data_share/interfaces/inner_api/common/include/
H A Ddatashare_predicates.h60 * @param value Indicates the queried value.
62 DataSharePredicates *EqualTo(const std::string &field, const SingleValue &value) in EqualTo() argument
64 SetOperationList(EQUAL_TO, field, value); in EqualTo()
72 * @param value Indicates the queried value.
74 DataSharePredicates *NotEqualTo(const std::string &field, const SingleValue &value) in NotEqualTo() argument
76 SetOperationList(NOT_EQUAL_TO, field, value); in NotEqualTo()
84 * @param value Indicates the queried value
86 GreaterThan(const std::string &field, const SingleValue &value) GreaterThan() argument
98 LessThan(const std::string &field, const SingleValue &value) LessThan() argument
110 GreaterThanOrEqualTo(const std::string &field, const SingleValue &value) GreaterThanOrEqualTo() argument
122 LessThanOrEqualTo(const std::string &field, const SingleValue &value) LessThanOrEqualTo() argument
194 Contains(const std::string &field, const std::string &value) Contains() argument
206 BeginsWith(const std::string &field, const std::string &value) BeginsWith() argument
218 EndsWith(const std::string &field, const std::string &value) EndsWith() argument
254 Like(const std::string &field, const std::string &value) Like() argument
266 Unlike(const std::string &field, const std::string &value) Unlike() argument
278 Glob(const std::string &field, const std::string &value) Glob() argument
[all...]
/kernel/linux/linux-6.6/drivers/usb/mtu3/
H A Dmtu3_host.c136 u32 value; in ssusb_host_enable() local
150 value = mtu3_readl(ibase, SSUSB_U3_CTRL(i)); in ssusb_host_enable()
151 value &= ~(SSUSB_U3_PORT_PDN | SSUSB_U3_PORT_DIS); in ssusb_host_enable()
152 value |= SSUSB_U3_PORT_HOST_SEL; in ssusb_host_enable()
153 mtu3_writel(ibase, SSUSB_U3_CTRL(i), value); in ssusb_host_enable()
161 value = mtu3_readl(ibase, SSUSB_U2_CTRL(i)); in ssusb_host_enable()
162 value &= ~(SSUSB_U2_PORT_PDN | SSUSB_U2_PORT_DIS); in ssusb_host_enable()
163 value |= SSUSB_U2_PORT_HOST_SEL; in ssusb_host_enable()
164 mtu3_writel(ibase, SSUSB_U2_CTRL(i), value); in ssusb_host_enable()
179 u32 value; in ssusb_host_disable() local
215 u32 value; ssusb_host_resume() local
256 u32 value; ssusb_host_suspend() local
[all...]
/third_party/node/deps/v8/include/cppgc/
H A Dvisitor.h73 static_assert(internal::IsGarbageCollectedOrMixinType<T>::value, in Trace()
88 const T* value = member.GetRawAtomic(); in Trace() local
89 CPPGC_DCHECK(value != kSentinelPointer); in Trace()
90 Trace(value); in Trace()
101 static_assert(internal::IsGarbageCollectedOrMixinType<T>::value, in Trace()
103 static_assert(!internal::IsAllocatedOnCompactableSpace<T>::value, in Trace()
106 const T* value = weak_member.GetRawAtomic(); in Trace() local
109 if (!value) { in Trace()
113 CPPGC_DCHECK(value != kSentinelPointer); in Trace()
114 VisitWeak(value, TraceTrai in Trace()
176 const ValueType* value = member_value->GetRawAtomic(); TraceEphemeron() local
202 TraceEphemeron(const WeakMember<KeyType>& weak_member_key, const ValueType* value) TraceEphemeron() argument
232 const T* value = weak_member.GetRawAtomic(); TraceStrongly() local
303 VisitEphemeron(const void* key, const void* value, TraceDescriptor value_desc) VisitEphemeron() argument
[all...]
/third_party/python/Lib/json/
H A Dencoder.py297 for value in lst:
302 if isinstance(value, str):
303 yield buf + _encoder(value)
304 elif value is None:
306 elif value is True:
308 elif value is False:
310 elif isinstance(value, int):
314 yield buf + _intstr(value)
315 elif isinstance(value, float):
317 yield buf + _floatstr(value)
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcPackedPixelsTests.cpp701 static Type unpackSizedComponents(float value, int s1, int s2, int s3, int s4);
704 static Type unpackSizedComponentsRev(float value, int s1, int s2, int s3, int s4);
706 static GLubyte unpack_UNSIGNED_BYTE(float value);
707 static GLbyte unpack_BYTE(float value);
708 static GLushort unpack_UNSIGNED_SHORT(float value);
709 static GLshort unpack_SHORT(float value);
710 static GLuint unpack_UNSIGNED_INT(float value);
711 static GLint unpack_INT(float value);
712 static GLhalf unpack_HALF_FLOAT(float value);
713 static GLfloat unpack_FLOAT(float value);
3403 pack_UNSIGNED_INT_2_10_10_10_REV_INT(rawIntPixel* values, GLuint value) pack_UNSIGNED_INT_2_10_10_10_REV_INT() argument
3411 pack_UNSIGNED_INT_24_8(rawFloatPixel* values, GLuint value) pack_UNSIGNED_INT_24_8() argument
3417 pack_UNSIGNED_INT_10F_11F_11F_REV(rawFloatPixel* values, GLuint value) pack_UNSIGNED_INT_10F_11F_11F_REV() argument
3424 pack_UNSIGNED_INT_5_9_9_9_REV(rawFloatPixel* values, GLuint value) pack_UNSIGNED_INT_5_9_9_9_REV() argument
3439 pack_FLOAT_32_UNSIGNED_INT_24_8_REV(rawFloatPixel* values, F_32_UINT_24_8_REV value) pack_FLOAT_32_UNSIGNED_INT_24_8_REV() argument
3726 GLint value; global() member
3813 GLint value = currentCase->value; iterate() local
[all...]
/foundation/graphic/graphic_2d/rosen/modules/platform/utils/
H A Dparcel.h81 * @param b Specific flag value.
92 * @param b Specific flag value. See BehaviorFlag.
102 * @param b Specific flag value.
112 mutable uint8_t behavior_; // value of flag of behaviors
256 * @param dataSize Desired value of size in bytes.
266 * @param maxCapacity Desired value of maximum capacity.
272 bool WriteBool(bool value);
273 bool WriteInt8(int8_t value);
274 bool WriteInt16(int16_t value);
275 bool WriteInt32(int32_t value);
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsclientproperty_fuzzer/
H A Drsclientproperty_fuzzer.cpp69 float value = GetData<float>(); in DoSetAndGet() local
70 RSProperty<float> rsProperty(value); in DoSetAndGet()
88 float value = GetData<float>(); in DoSetThresholdType001() local
89 auto prop = std::make_shared<RSAnimatableProperty<float>>(value); in DoSetThresholdType001()
106 float value = GetData<float>(); in DoSetThresholdType002() local
107 auto prop = std::make_shared<RSAnimatableProperty<float>>(value); in DoSetThresholdType002()
124 float value = GetData<float>(); in DoSetThresholdType003() local
125 auto prop = std::make_shared<RSAnimatableProperty<float>>(value); in DoSetThresholdType003()
142 float value = GetData<float>(); in DoSetThresholdType004() local
143 auto prop = std::make_shared<RSAnimatableProperty<float>>(value); in DoSetThresholdType004()
160 float value = GetData<float>(); DoSetThresholdType005() local
178 float value = GetData<float>(); DoSetThresholdType006() local
196 float value = GetData<float>(); DoSetThresholdType007() local
214 float value = GetData<float>(); DoGetRenderProperty() local
232 float value = GetData<float>(); DoSetValueFromRender() local
251 float value = GetData<float>(); DoAttachModifier() local
270 float value = GetData<float>(); DoAdd() local
289 float value = GetData<float>(); DoAddPathAnimation() local
307 float value = GetData<float>(); DoAnimateWithInitialVelocity() local
329 float value = GetData<float>(); DoGetId() local
347 float value = GetData<float>(); DoGetShowingValueAndCancelAnimation() local
365 float value = GetData<float>(); DoGetStagingValue() local
383 float value = GetData<float>(); DoRequestCancelAnimation() local
401 float value = GetData<float>(); DoSetPropertyUnit() local
419 float value = GetData<float>(); DoUpdateCustomAnimation() local
437 float value = GetData<float>(); DoUpdateOnAllAnimationFinish() local
[all...]
/foundation/distributeddatamgr/udmf/framework/common/
H A Dtlv_object.cpp91 size_t TLVObject::Count(const std::string &value) in Count() argument
93 auto size = sizeof(TLVHead) + value.size(); in Count()
98 size_t TLVObject::Count(const std::vector<uint8_t> &value) in Count() argument
100 auto size = sizeof(TLVHead) + value.size(); in Count()
105 size_t TLVObject::Count(const OHOS::AAFwk::Want &value) in Count() argument
108 if (!value.Marshalling(parcel)) { in Count()
117 size_t TLVObject::Count(const std::monostate &value) in Count() argument
124 size_t TLVObject::Count(const void *value) in Count() argument
131 bool TLVObject::Write(TAG tag, const std::string &value) in Write() argument
133 if (!HasExpectBuffer(sizeof(TLVHead) + value in Write()
153 Read(std::string &value, const TLVHead &head) Read() argument
169 Write(TAG tag, const std::vector<uint8_t> &value) Write() argument
190 Read(std::vector<uint8_t> &value, const TLVHead &head) Read() argument
207 Write(TAG tag, const OHOS::AAFwk::Want &value) Write() argument
235 Read(OHOS::AAFwk::Want &value, const TLVHead &head) Read() argument
265 Write(TAG tag, const std::monostate &value) Write() argument
270 Read(std::monostate &value, const TLVHead &head) Read() argument
275 Write(TAG tag, const void *value) Write() argument
281 Read(void *value, const TLVHead &head) Read() argument
[all...]
/kernel/linux/linux-5.10/sound/soc/sof/
H A Dcontrol.c29 if (ucontrol->value.integer.value[i]) { in update_mute_led()
48 static inline u32 mixer_to_ipc(unsigned int value, u32 *volume_map, int size) in mixer_to_ipc() argument
50 if (value >= size) in mixer_to_ipc()
53 return volume_map[value]; in mixer_to_ipc()
56 static inline u32 ipc_to_mixer(u32 value, u32 *volume_map, int size) in ipc_to_mixer() argument
61 if (volume_map[i] >= value) in ipc_to_mixer()
79 ucontrol->value.integer.value[i] = in snd_sof_volume_get()
80 ipc_to_mixer(cdata->chanv[i].value, in snd_sof_volume_get()
96 u32 value; snd_sof_volume_put() local
143 u32 value; snd_sof_switch_put() local
193 u32 value; snd_sof_enum_put() local
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dperf_event_attr_fprintf.c17 static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits) in __p_bits() argument
23 if (value & bits[i].bit) { in __p_bits()
30 static void __p_sample_type(char *buf, size_t size, u64 value) in __p_sample_type() argument
45 __p_bits(buf, size, value, bits); in __p_sample_type()
48 static void __p_branch_sample_type(char *buf, size_t size, u64 value) in __p_branch_sample_type() argument
61 __p_bits(buf, size, value, bits); in __p_branch_sample_type()
64 static void __p_read_format(char *buf, size_t size, u64 value) in __p_read_format() argument
73 __p_bits(buf, size, value, bits); in __p_read_format()
77 static const char *stringify_perf_type_id(u64 value) in stringify_perf_type_id() argument
79 switch (value) { in stringify_perf_type_id()
91 stringify_perf_hw_id(u64 value) stringify_perf_hw_id() argument
109 stringify_perf_hw_cache_id(u64 value) stringify_perf_hw_cache_id() argument
124 stringify_perf_hw_cache_op_id(u64 value) stringify_perf_hw_cache_op_id() argument
135 stringify_perf_hw_cache_op_result_id(u64 value) stringify_perf_hw_cache_op_result_id() argument
145 stringify_perf_sw_id(u64 value) stringify_perf_sw_id() argument
177 __p_type_id(char *buf, size_t size, u64 value) __p_type_id() argument
182 __p_config_hw_id(char *buf, size_t size, u64 value) __p_config_hw_id() argument
187 __p_config_sw_id(char *buf, size_t size, u64 value) __p_config_sw_id() argument
192 __p_config_hw_cache_id(char *buf, size_t size, u64 value) __p_config_hw_cache_id() argument
210 __p_config_tracepoint_id(char *buf, size_t size, u64 value) __p_config_tracepoint_id() argument
219 __p_config_id(char *buf, size_t size, u32 type, u64 value) __p_config_id() argument
[all...]

Completed in 16 milliseconds

1...<<41424344454647484950>>...1353