Home
last modified time | relevance | path

Searched full:specific (Results 1 – 25 of 46764) sorted by relevance

12345678910>>...1871

/aosp_15_r20/external/deqp/external/vulkancts/data/vulkan/amber/graphicsfuzz/
H A Dindex.txt22 …ysis-reachable-from-many", "A fragment shader that covers a specific LLVM analysis cod…
23 …even-numbers-from-fragcoord", "A fragment shader that covers specific NIR code paths" …
24 …cov-apfloat-acos-ldexp", "A fragment shader that covers a specific AP float code pat…
25 …ov-apfloat-determinant", "A fragment shader that covers a specific arbitrary precisi…
26 … "cov-apfloat-mix-nan", "A fragment shader that covers a specific floating point co…
27 …"cov-apfloat-mod-zero", "A fragment shader that covers a specific floating point co…
28 …loat-module-small-number", "A fragment shader that covers a specific floating point co…
29 …float-negative-step-func", "A fragment shader that covers a specific floating point co…
30 …float-sinh-negative-log2", "A fragment shader that covers a specific floating point co…
31 … "cov-apfloat-tanh", "A fragment shader that covers a specific arbitrary precisi…
[all …]
/aosp_15_r20/external/tcpdump/tests/
H A Ddcb_ets.out23 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
27 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
31 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
36 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
40 Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
54 Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
120 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
124 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
128 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
133 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
[all …]
H A Ddcb_qcn.out34 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
38 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
42 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
47 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
51 Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2)
65 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
69 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
73 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
78 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
82 Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2)
[all …]
/aosp_15_r20/frameworks/av/media/libeffects/preprocessing/aidl/
H A DEffectPreProcessing.cpp13 * See the License for the specific language governing permissions and
111 ndk::ScopedAStatus EffectPreProcessing::setParameterSpecific(const Parameter::Specific& specific) { in setParameterSpecific() argument
112 LOG(VERBOSE) << __func__ << " specific " << specific.toString(); in setParameterSpecific()
115 auto tag = specific.getTag(); in setParameterSpecific()
117 case Parameter::Specific::acousticEchoCanceler: in setParameterSpecific()
118 return setParameterAcousticEchoCanceler(specific); in setParameterSpecific()
119 case Parameter::Specific::automaticGainControlV1: in setParameterSpecific()
120 return setParameterAutomaticGainControlV1(specific); in setParameterSpecific()
121 case Parameter::Specific::automaticGainControlV2: in setParameterSpecific()
122 return setParameterAutomaticGainControlV2(specific); in setParameterSpecific()
[all …]
H A DEffectPreProcessing.h13 * See the License for the specific language governing permissions and
34 ndk::ScopedAStatus setParameterSpecific(const Parameter::Specific& specific)
36 ndk::ScopedAStatus getParameterSpecific(const Parameter::Id& id, Parameter::Specific* specific)
54 ndk::ScopedAStatus setParameterAcousticEchoCanceler(const Parameter::Specific& specific)
57 Parameter::Specific* specific)
60 ndk::ScopedAStatus setParameterAutomaticGainControlV1(const Parameter::Specific& specific)
63 Parameter::Specific* specific)
66 ndk::ScopedAStatus setParameterAutomaticGainControlV2(const Parameter::Specific& specific)
69 Parameter::Specific* specific)
72 ndk::ScopedAStatus setParameterNoiseSuppression(const Parameter::Specific& specific)
[all …]
/aosp_15_r20/frameworks/av/media/libeffects/lvm/wrapper/Aidl/
H A DEffectBundleAidl.cpp13 * See the License for the specific language governing permissions and
152 ndk::ScopedAStatus EffectBundleAidl::setParameterSpecific(const Parameter::Specific& specific) { in setParameterSpecific() argument
155 auto tag = specific.getTag(); in setParameterSpecific()
157 case Parameter::Specific::equalizer: in setParameterSpecific()
158 return setParameterEqualizer(specific); in setParameterSpecific()
159 case Parameter::Specific::bassBoost: in setParameterSpecific()
160 return setParameterBassBoost(specific); in setParameterSpecific()
161 case Parameter::Specific::virtualizer: in setParameterSpecific()
162 return setParameterVirtualizer(specific); in setParameterSpecific()
163 case Parameter::Specific::volume: in setParameterSpecific()
[all …]
H A DEffectBundleAidl.h13 * See the License for the specific language governing permissions and
40 ndk::ScopedAStatus setParameterSpecific(const Parameter::Specific& specific)
42 ndk::ScopedAStatus getParameterSpecific(const Parameter::Id& id, Parameter::Specific* specific)
62 ndk::ScopedAStatus setParameterBassBoost(const Parameter::Specific& specific)
64 ndk::ScopedAStatus getParameterBassBoost(const BassBoost::Id& id, Parameter::Specific* specific)
67 ndk::ScopedAStatus setParameterEqualizer(const Parameter::Specific& specific)
69 ndk::ScopedAStatus getParameterEqualizer(const Equalizer::Id& id, Parameter::Specific* specific)
71 ndk::ScopedAStatus setParameterVolume(const Parameter::Specific& specific) REQUIRES(mImplMutex);
72 ndk::ScopedAStatus getParameterVolume(const Volume::Id& id, Parameter::Specific* specific)
74 ndk::ScopedAStatus setParameterVirtualizer(const Parameter::Specific& specific)
[all …]
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dmybusinesslodging.v1.json102 "description": "Returns the Lodging of a specific location.",
118 …"description": "Required. The specific fields to return. Use \"*\" to include all fields. Repeated…
130 "description": "Updates the Lodging of a specific location.",
146 …"description": "Required. The specific fields to update. Use \"*\" to update all fields, which may…
165 "description": "Returns the Google updated Lodging of a specific location.",
181 …"description": "Required. The specific fields to return. Use \"*\" to include all fields. Repeated…
221 … "Default unspecified exception. Use this only if a more specific exception does not match.",
237 … "Default unspecified exception. Use this only if a more specific exception does not match.",
257 … "Default unspecified exception. Use this only if a more specific exception does not match.",
277 … "Default unspecified exception. Use this only if a more specific exception does not match.",
[all …]
Ddisplayvideo.v1.json137 …"description": "Optional. The specific fields to return. If no mask is specified, all fields in th…
767 "Target a specific app (for example, Angry Birds).",
768 "Target a specific url (for example, quora.com).",
769 "Target ads during a chosen time period on a specific day.",
770 "Target ads to a specific age range (for example, 18-24).",
773 "Target ads to a specific gender (for example, female or male).",
774 "Target a specific video player size for video ads.",
776 … "Target ads to a specific parental status (for example, parent or not a parent).",
777 …"Target video or audio ads in a specific content instream position (for example, pre-roll, mid-rol…
778 "Target ads in a specific content outstream position.",
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Ddisplayvideo_v1.targetingTypes.targetingOptions.html111 TARGETING_TYPE_APP - Target a specific app (for example, Angry Birds).
112 TARGETING_TYPE_URL - Target a specific url (for example, quora.com).
113 TARGETING_TYPE_DAY_AND_TIME - Target ads during a chosen time period on a specific day.
114 TARGETING_TYPE_AGE_RANGE - Target ads to a specific age range (for example, 18-24).
117 TARGETING_TYPE_GENDER - Target ads to a specific gender (for example, female or male).
118 TARGETING_TYPE_VIDEO_PLAYER_SIZE - Target a specific video player size for video ads.
120 …TARGETING_TYPE_PARENTAL_STATUS - Target ads to a specific parental status (for example, parent or …
121 …TARGETING_TYPE_CONTENT_INSTREAM_POSITION - Target video or audio ads in a specific content instrea…
122 … TARGETING_TYPE_CONTENT_OUTSTREAM_POSITION - Target ads in a specific content outstream position.
123 …TARGETING_TYPE_DEVICE_TYPE - Target ads to a specific device type (for example, tablet or connecte…
[all …]
/aosp_15_r20/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothCodecConfig.java13 * See the License for the specific language governing permissions and
239 * @param codecSpecific1 the specific value 1
240 * @param codecSpecific2 the specific value 2
241 * @param codecSpecific3 the specific value 3
242 * @param codecSpecific4 the specific value 4 values to 0.
276 * @param codecSpecific1 the specific value 1
277 * @param codecSpecific2 the specific value 2
278 * @param codecSpecific3 the specific value 3
279 * @param codecSpecific4 the specific value 4 values to 0.
310 * BluetoothCodecConfig#CHANNEL_MODE_NONE}, and all the codec specific values to 0.
[all …]
/aosp_15_r20/external/skia/bazel/
H A Ddevicesrc4 test:AlphaR2 --test_arg=--device-specific-bazel-config
17 test:AndroidOne --test_arg=--device-specific-bazel-config
30 test:GCE_Debian10_AVX2 --test_arg=--device-specific-bazel-config
45 test:GCE_Debian10_AVX512 --test_arg=--device-specific-bazel-config
60 test:GCE_Debian10_Rome --test_arg=--device-specific-bazel-config
75 test:GCE_Win2019_AVX2 --test_arg=--device-specific-bazel-config
90 test:GCE_Win2019_AVX512 --test_arg=--device-specific-bazel-config
105 test:GCE_Win2019_Rome --test_arg=--device-specific-bazel-config
120 test:GCE_x86_Debian10_AVX2 --test_arg=--device-specific-bazel-config
135 test:GCE_x86_Debian10_AVX512 --test_arg=--device-specific-bazel-config
[all …]
/aosp_15_r20/frameworks/av/media/libeffects/dynamicsproc/aidl/
H A DDynamicsProcessing.cpp13 * See the License for the specific language governing permissions and
206 const std::optional<Parameter::Specific>& specific, in open() argument
223 if (specific.has_value()) { in open()
224 RETURN_IF_ASTATUS_NOT_OK(setParameterSpecific(specific.value()), "setSpecParamErr"); in open()
226 Parameter::Specific defaultSpecific = in open()
227 Parameter::Specific::make<Parameter::Specific::dynamicsProcessing>( in open()
247 bool DynamicsProcessingImpl::isParamInRange(const Parameter::Specific& specific) { in isParamInRange() argument
248 auto& dp = specific.get<Parameter::Specific::dynamicsProcessing>(); in isParamInRange()
253 const Parameter::Specific& specific) { in setParameterSpecific() argument
254 RETURN_IF(Parameter::Specific::dynamicsProcessing != specific.getTag(), EX_ILLEGAL_ARGUMENT, in setParameterSpecific()
[all …]
/aosp_15_r20/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
H A DInstConstraintVisitor.java14 * See the License for the specific language governing permissions and
460 * Ensures the specific preconditions of the said instruction.
479 * Ensures the specific preconditions of the said instruction.
505 * Ensures the specific preconditions of the said instruction.
513 * Ensures the specific preconditions of the said instruction.
523 * Ensures the specific preconditions of the said instruction.
535 * Ensures the specific preconditions of the said instruction.
555 * Ensures the specific preconditions of the said instruction.
564 * Ensures the specific preconditions of the said instruction.
577 * Ensures the specific preconditions of the said instruction.
[all …]
/aosp_15_r20/packages/apps/TvSettings/
Dcolor-check-baseline.xml59 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
75 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
91 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
107 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
123 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
139 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
155 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
171 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
187 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
203 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/amd/pi/00670F00/Proc/CPU/
H A DcpuFamilyTranslation.h30 * from this software without specific prior written permission.
51 * @page cpuimplfss CPU Family Specific Services Implementation Guide
53 * CPU Family Specific Services provides access to supported family service functions and data,
57 * @par Adding a Method to Family Specific Services
59 * To add a new method to Family Specific Services, follow these steps.
73 …* <li> The first parameter to @b all Family Specific Service Methods is @b required to be a refere…
92 * @par Implementing a Family Specific Instance of the method.
94 * To implement an instance of a method for a specific family follow these steps.
96 …* - In appropriate files in the family specific directory, implement the method with the return ty…
109 * - To access other family specific services as part of the method implementation, the function
[all …]
/aosp_15_r20/packages/apps/Settings/
Dcolor-check-baseline.xml11 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
27 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
43 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
59 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
75 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
91 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
107 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
123 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
139 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
155 …because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?…
[all …]
/aosp_15_r20/external/scapy/scapy/contrib/
H A Dbgp.uts13 = BGPNLRI_IPv4 - Instantiation with specific values (1)
16 = BGPNLRI_IPv4 - Instantiation with specific values (2)
19 = BGPNLRI_IPv4 - Instantiation with specific values (3)
26 = BGPNLRI_IPv4 - Dissection with specific values
37 = BGPNLRI_IPv6 - Instantiation with specific values (1)
40 = BGPNLRI_IPv6 - Instantiation with specific values (2)
47 = BGPNLRI_IPv6 - Dissection with specific values
60 = BGP - Instantiation with specific values (1)
63 = BGP - Instantiation with specific values (2)
66 = BGP - Instantiation with specific values (3)
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/bta/le_audio/
Dstorage_helper_test.cc13 * See the License for the specific language governing permissions and
45 0x13, // Codec specific cap. size in TEST()
46 …01, 0x02, 0x03, 0x01, 0x05, 0x04, 0x1e, 0x00, 0x1e, 0x00, 0x02, 0x05, 0x01, // Codec specific capa in TEST()
51 0x13, // Codec specific cap. size in TEST()
52 …01, 0x02, 0x03, 0x01, 0x05, 0x04, 0x3c, 0x00, 0x3c, 0x00, 0x02, 0x05, 0x01, // Codec specific capa in TEST()
53 0x04, // Codec specific capa in TEST()
65 0x13, // Codec specific cap. size in TEST()
66 …01, 0x02, 0x03, 0x01, 0x05, 0x04, 0x1e, 0x00, 0x1e, 0x00, 0x02, 0x05, 0x01, // Codec specific capa in TEST()
71 0x13, // Codec specific cap. size in TEST()
72 …01, 0x02, 0x03, 0x01, 0x05, 0x04, 0x3c, 0x00, 0x3c, 0x00, 0x02, 0x05, 0x01, // Codec specific capa in TEST()
[all …]
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/
H A Dapr_portable.h13 * See the License for the specific language governing permissions and
17 /* This header file is where you should put ANY platform specific information.
218 * convert the file from apr type to os specific type.
219 * @param thefile The os specific file we are converting to
228 * convert the dir from apr type to os specific type.
229 * @param thedir The os specific dir we are converting to
236 * Convert the socket from an apr type to an OS specific socket
238 * @param sock The os specific equivalent of the apr socket..
244 * Convert the proc mutex from os specific type to apr type
245 * @param ospmutex The os specific proc mutex we are converting to.
[all …]
/aosp_15_r20/external/crosvm/docs/book/src/contributing/
H A Dstyle_guide_platform_specific_code.md1 # Style guide for platform specific code
5 The crosvm code can heavily interleave platform specific code into platform agnostic code using
13 specific code layout.
16 platform specific code, `WinPrinter` and `UnixPrinter` to tweak the behavior according to the
22 exports interfaces implemented by platform specific code.
25 exported by platform specific code, `linux/print.rs` and `windows/print.rs`, and adds some more
29 The files that contain platform specific code **only** should live in a directory named `sys/` and
170 It is OK to have a few platform specific fields inlined with cfgs. When inlining
173 - Organize common fields first and then platform specific fields ordered by the target os name i.e.
176 If the structure has a large set of fields that are platform specific, it is more readable to split
[all …]
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/audio/aidl/android.hardware.audio.effect-V3-ndk-source/gen/include/aidl/android/hardware/audio/effect/
DParameter.h86 specific = 6, enumerator
321 class Specific {
368 …nstexpr bool _not_self = !std::is_same_v<std::remove_cv_t<std::remove_reference_t<_Tp>>, Specific>;
370Specific() : _value(std::in_place_index<static_cast<size_t>(vendorEffect)>, ::aidl::android::hardw… in Specific() function
374 constexpr Specific(_Tp&& _arg) in Specific() function
378 constexpr explicit Specific(std::in_place_index_t<_Np>, _Tp&&... _args) in Specific() function
382 static Specific make(_Tp&&... _args) { in make()
383 return Specific(std::in_place_index<static_cast<size_t>(_tag)>, std::forward<_Tp>(_args)...); in make()
387 static Specific make(std::initializer_list<_Tp> _il, _Up&&... _args) { in make()
388 …return Specific(std::in_place_index<static_cast<size_t>(_tag)>, std::move(_il), std::forward<_Up>(… in make()
[all …]
/aosp_15_r20/packages/services/Car/service/res/values/
Dstrings.xml13 See the License for the specific language governing permissions and
84 <!-- Permission text: apps can access car-manufacturer specific data [CHAR LIMIT=NONE] -->
86 <!-- Permission text: apps can access car-manufacturer specific data [CHAR LIMIT=NONE] -->
88 exchange car-specific information.</string>
431 …bel_set_car_vendor_category_window" translatable="false">control vendor specific window properties…
433 …esc_set_car_vendor_category_window" translatable="false">Control vendor specific window properties…
436 …abel_get_car_vendor_category_window" translatable="false">access vendor specific window properties…
438 …desc_get_car_vendor_category_window" translatable="false">Access vendor specific window properties…
441 …label_set_car_vendor_category_door" translatable="false">control vendor specific door properties</…
443 …_desc_set_car_vendor_category_door" translatable="false">Control vendor specific door properties.<…
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/stack/include/
Da2dp_vendor.h13 * See the License for the specific language governing permissions and
18 // Vendor Specific A2DP Codecs Support
50 // Checks whether the codec capabilities contain a valid A2DP vendor-specific
54 // vendor-specific codec, otherwise false.
58 // vendor-specific Source codec.
61 // vendor-specific codec, otherwise false.
65 // vendor-specific Sink codec.
68 // vendor-specific codec, otherwise false.
71 // Checks whether a vendor-specific A2DP Sink codec is supported.
73 // Returns true if the vendor-specific A2DP Sink codec is supported,
[all …]
/aosp_15_r20/frameworks/av/media/libeffects/lvm/wrapper/Reverb/aidl/
H A DEffectReverb.cpp13 * See the License for the specific language governing permissions and
115 ndk::ScopedAStatus EffectReverb::setParameterSpecific(const Parameter::Specific& specific) { in setParameterSpecific() argument
116 LOG(VERBOSE) << __func__ << " specific " << specific.toString(); in setParameterSpecific()
119 auto tag = specific.getTag(); in setParameterSpecific()
121 case Parameter::Specific::presetReverb: in setParameterSpecific()
122 return setParameterPresetReverb(specific); in setParameterSpecific()
123 case Parameter::Specific::environmentalReverb: in setParameterSpecific()
124 return setParameterEnvironmentalReverb(specific); in setParameterSpecific()
132 ndk::ScopedAStatus EffectReverb::setParameterPresetReverb(const Parameter::Specific& specific) { in setParameterPresetReverb() argument
133 auto& prParam = specific.get<Parameter::Specific::presetReverb>(); in setParameterPresetReverb()
[all …]

12345678910>>...1871