Home
last modified time | relevance | path

Searched refs:As (Results 1 – 25 of 2712) sorted by relevance

12345678910>>...109

/external/rust/crates/libz-sys/src/zlib/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
33 String, comprLen As Any, ByVal buf As String, ByVal buflen
34 As Long) As Integer
36 As String, uncomprLen As Any, ByVal compr As String, ByVal
37 lcompr As Long) As Integer
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
39 String, ByVal mode As String) As Long
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
41 Long, ByVal uncompr As String, ByVal uncomprLen As Integer)
42 As Integer
[all …]
/external/swiftshader/src/Pipeline/
DPixelRoutine.cpp393 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
406 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
412 equal = CmpGT(As<SByte8>(equal), As<SByte8>(value)); in stencilTest()
417 …value = CmpGT(As<SByte8>(value), *Pointer<SByte8>(data + OFFSET(DrawData, stencil[isBack].referenc… in stencilTest()
452 zValue16 = As<UShort4>(Insert(As<Int2>(zValue16), *Pointer<Int>(buffer), 0)); in readDepth16()
453 zValue16 = As<UShort4>(Insert(As<Int2>(zValue16), *Pointer<Int>(buffer + pitch), 1)); in readDepth16()
567 Float4 zValue = Float4(As<UShort4>(z)) * (1.0f / 0xFFFF); in depthBoundsTest16()
653 …Z = As<Float4>(As<Int4>(Z) & *Pointer<Int4>(constants + OFFSET(Constants, maskD4X) + zMask * 16, 1… in writeDepth32F()
654 …zValue = As<Float4>(As<Int4>(zValue) & *Pointer<Int4>(constants + OFFSET(Constants, invMaskD4X) + … in writeDepth32F()
655 Z = As<Float4>(As<Int4>(Z) | As<Int4>(zValue)); in writeDepth32F()
[all …]
DShaderCore.cpp228 …return As<SIMD::Float>(As<SIMD::Int>(half_pi - Sqrt<Highp>(1.0f - absx) * (a0 + absx * (a1 + absx … in Asin_4_terms()
229 (As<SIMD::Int>(x) & SIMD::Int(0x80000000))); in Asin_4_terms()
246 …return As<SIMD::Float>(As<SIMD::Int>(half_pi - Sqrt<Highp>(1.0f - absx) * (a0 + absx * (a1 + absx … in Asin_8_terms()
247 (As<SIMD::Int>(x) & SIMD::Int(0x80000000))); in Asin_8_terms()
273 …SIMD::Float y = As<SIMD::Float>((O & As<SIMD::Int>(1.0f / absx)) | (~O & As<SIMD::Int>(absx))); /… in Atan()
277 …return As<SIMD::Float>(((O & As<SIMD::Int>(half_pi - theta)) | (~O & As<SIMD::Int>(theta))) ^ // … in Atan()
278 (As<SIMD::Int>(x) & SIMD::Int(0x80000000))); in Atan()
290 SIMD::Float theta = As<SIMD::Float>(S & As<SIMD::Int>(minus_pi)); in Atan2()
291 SIMD::Float x0 = As<SIMD::Float>((As<SIMD::Int>(y) & SIMD::Int(0x80000000)) ^ As<SIMD::Int>(x)); in Atan2()
296 theta += As<SIMD::Float>(Q & As<SIMD::Int>(half_pi)); in Atan2()
[all …]
DSamplerCore.cpp84 w = As<Float4>(face); in sampleTexture128()
135 lod = Float(As<Int>(lodOrBias)); in sampleTexture128()
189 c[component] = Float4(As<UShort4>(cs[component])); in sampleTexture128()
246 c.x = c.y = c.z = c.w = integer ? As<Float4>(Int4(1)) : RValue<Float4>(Float4(1.0f)); in sampleTexture128()
266 return Float4(As<Float4>(sw::Int4(1, 1, 1, 1))); in applySwizzle()
303 case -1: return SubSat(As<UShort4>(uvw), As<UShort4>(offset)); in offsetSample()
305 case +1: return AddSat(As<UShort4>(uvw), As<UShort4>(offset)); in offsetSample()
306 case 2: return AddSat(AddSat(As<UShort4>(uvw), As<UShort4>(offset)), As<UShort4>(offset)); in offsetSample()
332 cc.x = MulHigh(As<UShort4>(cc.x), utri); in sampleFilter()
336 cc.y = MulHigh(As<UShort4>(cc.y), utri); in sampleFilter()
[all …]
DSpirvShaderImage.cpp478 in[i] = As<SIMD::Float>(SIMD::Int(0)); in callSamplerFunction()
488 in[i] = As<SIMD::Float>(offsetValue.Int(j)); // Integer values, but transfered as float. in callSamplerFunction()
495 in[i] = As<SIMD::Float>(sampleValue.Int(0)); in callSamplerFunction()
727 SIMD::Int oobMask = As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.u), width)); in GetNonUniformTexelAddress()
731 …SIMD::UInt height = As<SIMD::UInt>((descriptor + OFFSET(vk::StorageImageDescriptor, height)).Load<… in GetNonUniformTexelAddress()
732 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.v), height)); in GetNonUniformTexelAddress()
737 …SIMD::UInt depth = As<SIMD::UInt>((descriptor + OFFSET(vk::StorageImageDescriptor, depth)).Load<SI… in GetNonUniformTexelAddress()
739 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(texelData.w), depth)); in GetNonUniformTexelAddress()
744 …SIMD::UInt sampleCount = As<SIMD::UInt>((descriptor + OFFSET(vk::StorageImageDescriptor, sampleCou… in GetNonUniformTexelAddress()
745 oobMask |= As<SIMD::Int>(CmpNLT(As<SIMD::UInt>(sample), sampleCount)); in GetNonUniformTexelAddress()
[all …]
DComputeProgram.cpp62 value[builtin.FirstComponent + 0] = As<SIMD::Float>(SIMD::Int(routine->numWorkgroups.x)); in setWorkgroupBuiltins()
63 value[builtin.FirstComponent + 1] = As<SIMD::Float>(SIMD::Int(routine->numWorkgroups.y)); in setWorkgroupBuiltins()
64 value[builtin.FirstComponent + 2] = As<SIMD::Float>(SIMD::Int(routine->numWorkgroups.z)); in setWorkgroupBuiltins()
68 value[builtin.FirstComponent + 0] = As<SIMD::Float>(SIMD::Int(workgroupID[0])); in setWorkgroupBuiltins()
69 value[builtin.FirstComponent + 1] = As<SIMD::Float>(SIMD::Int(workgroupID[1])); in setWorkgroupBuiltins()
70 value[builtin.FirstComponent + 2] = As<SIMD::Float>(SIMD::Int(workgroupID[2])); in setWorkgroupBuiltins()
74 value[builtin.FirstComponent + 0] = As<SIMD::Float>(SIMD::Int(routine->workgroupSize.x)); in setWorkgroupBuiltins()
75 value[builtin.FirstComponent + 1] = As<SIMD::Float>(SIMD::Int(routine->workgroupSize.y)); in setWorkgroupBuiltins()
76 value[builtin.FirstComponent + 2] = As<SIMD::Float>(SIMD::Int(routine->workgroupSize.z)); in setWorkgroupBuiltins()
80 value[builtin.FirstComponent] = As<SIMD::Float>(SIMD::Int(routine->subgroupsPerWorkgroup)); in setWorkgroupBuiltins()
[all …]
DVertexRoutine.cpp146 SIMD::Float maxPos = As<SIMD::Float>(SIMD::Int(0x7F7FFFFF)); in computeClipFlags()
182 …UInt4 offsets = (*Pointer<UInt4>(As<Pointer<UInt4>>(batch)) + As<UInt4>(Int4(baseVertex))) * UInt4… in readStream()
201 Pointer<Byte> zeroSource = As<Pointer<Byte>>(&zero); in readStream()
269 v.x = As<Float4>(Int4(*Pointer<Byte4>(source0))); in readStream()
270 v.y = As<Float4>(Int4(*Pointer<Byte4>(source1))); in readStream()
271 v.z = As<Float4>(Int4(*Pointer<Byte4>(source2))); in readStream()
272 v.w = As<Float4>(Int4(*Pointer<Byte4>(source3))); in readStream()
318 v.x = As<Float4>(Int4(*Pointer<SByte4>(source0))); in readStream()
319 v.y = As<Float4>(Int4(*Pointer<SByte4>(source1))); in readStream()
320 v.z = As<Float4>(Int4(*Pointer<SByte4>(source2))); in readStream()
[all …]
/external/pigweed/pw_protobuf/public/pw_protobuf/
Dmessage.h264 FieldType As() { in As() function
334 Bytes AsBytes(uint32_t field_number) { return As<Bytes>(field_number); } in AsBytes()
337 String AsString(uint32_t field_number) { return As<String>(field_number); } in AsString()
341 Int32 AsInt32(uint32_t field_number) { return As<Int32>(field_number); } in AsInt32()
342 Sint32 AsSint32(uint32_t field_number) { return As<Sint32>(field_number); } in AsSint32()
343 Uint32 AsUint32(uint32_t field_number) { return As<Uint32>(field_number); } in AsUint32()
344 Fixed32 AsFixed32(uint32_t field_number) { return As<Fixed32>(field_number); } in AsFixed32()
345 Int64 AsInt64(uint32_t field_number) { return As<Int64>(field_number); } in AsInt64()
346 Sint64 AsSint64(uint32_t field_number) { return As<Sint64>(field_number); } in AsSint64()
347 Uint64 AsUint64(uint32_t field_number) { return As<Uint64>(field_number); } in AsUint64()
[all …]
/external/pigweed/pw_protobuf/
Dmessage.cc29 Uint32 Message::Field::As<Uint32>() { in As() function in pw::protobuf::Message::Field
36 Int32 Message::Field::As<Int32>() { in As() function in pw::protobuf::Message::Field
43 Sint32 Message::Field::As<Sint32>() { in As() function in pw::protobuf::Message::Field
50 Fixed32 Message::Field::As<Fixed32>() { in As() function in pw::protobuf::Message::Field
57 Sfixed32 Message::Field::As<Sfixed32>() { in As() function in pw::protobuf::Message::Field
64 Uint64 Message::Field::As<Uint64>() { in As() function in pw::protobuf::Message::Field
71 Int64 Message::Field::As<Int64>() { in As() function in pw::protobuf::Message::Field
78 Sint64 Message::Field::As<Sint64>() { in As() function in pw::protobuf::Message::Field
85 Fixed64 Message::Field::As<Fixed64>() { in As() function in pw::protobuf::Message::Field
92 Sfixed64 Message::Field::As<Sfixed64>() { in As() function in pw::protobuf::Message::Field
[all …]
/external/clang/test/SemaCXX/
Dcxx1y-generic-lambdas-variadics.cpp39 auto L = [](auto ... As) { in test() argument
44 auto L = [](auto A, auto B, auto ... As) { in test() argument
51 auto L = [](auto ... As) { in test() argument
52 print("\nL::As = ", As ...); in test()
53 return [](decltype(As) ... as, auto ... Bs) { in test()
64 auto L = [](auto A, auto ... As) { in test() argument
65 print("\nL::As = ", As ...); in test()
66 return [](decltype(As) ... as, decltype(A) a, auto ... Bs) { in test()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
Dp3-generic-lambda-1y.cpp9 auto GL2 = [](auto ... As) -> int { return vfoo(As...); }; in __anon85cb43100202() argument
10 auto GL3 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); }; in __anon85cb43100302() argument
12 auto GL4 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); }; in __anon85cb43100402() argument
18 auto GL2 = [](auto ... As) -> int { return vfoo(As...); }; in foo() argument
/external/openthread/src/core/meshcop/
Ddataset.cpp199 aDatasetInfo.SetActiveTimestamp(As<ActiveTimestampTlv>(cur)->GetTimestamp()); in ConvertTo()
203 aDatasetInfo.SetChannel(As<ChannelTlv>(cur)->GetChannel()); in ConvertTo()
208 uint32_t mask = As<ChannelMaskTlv>(cur)->GetChannelMask(); in ConvertTo()
219 aDatasetInfo.SetDelay(As<DelayTimerTlv>(cur)->GetDelayTimer()); in ConvertTo()
223 aDatasetInfo.SetExtendedPanId(As<ExtendedPanIdTlv>(cur)->GetExtendedPanId()); in ConvertTo()
227 aDatasetInfo.SetMeshLocalPrefix(As<MeshLocalPrefixTlv>(cur)->GetMeshLocalPrefix()); in ConvertTo()
231 aDatasetInfo.SetNetworkKey(As<NetworkKeyTlv>(cur)->GetNetworkKey()); in ConvertTo()
235 aDatasetInfo.SetNetworkName(As<NetworkNameTlv>(cur)->GetNetworkName()); in ConvertTo()
239 aDatasetInfo.SetPanId(As<PanIdTlv>(cur)->GetPanId()); in ConvertTo()
243 aDatasetInfo.SetPendingTimestamp(As<PendingTimestampTlv>(cur)->GetTimestamp()); in ConvertTo()
[all …]
/external/ComputeLibrary/utils/command_line/
DCommandLineParser.h58 template <typename T, typename... As>
59 T *add_option(const std::string &name, As &&... args);
67 template <typename T, typename... As>
68 T *add_positional_option(As &&... args);
103 template <typename T, typename... As>
104 inline T *CommandLineParser::add_option(const std::string &name, As &&... args) in add_option()
106 auto result = _options.emplace(name, std::make_unique<T>(name, std::forward<As>(args)...)); in add_option()
110 template <typename T, typename... As>
111 inline T *CommandLineParser::add_positional_option(As &&... args) in add_positional_option()
113 _positional_options.emplace_back(std::make_unique<T>(std::forward<As>(args)...)); in add_positional_option()
/external/turbine/javatests/com/google/turbine/lower/testdata/
Dannotation_scope.test1 === As.java ===
3 public @interface As {
12 import a.As;
14 @As({A.class /* a.A */, Test.class /* Test is in scope */})
18 @As(A.class /* Test$A */)
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DItaniumManglingCanonicalizer.cpp97 std::pair<Node *, bool> getOrCreateNode(bool CreateNewNodes, Args &&... As) { in getOrCreateNode() argument
105 T(std::forward<Args>(As)...), in getOrCreateNode()
110 profileCtor(ID, NodeKind<T>::Kind, As...); in getOrCreateNode()
124 T *Result = new (New->getNode()) T(std::forward<Args>(As)...); in getOrCreateNode()
130 Node *makeNode(Args &&...As) { in makeNode() argument
131 return getOrCreateNode<T>(true, std::forward<Args>(As)...).first; in makeNode()
146 template<typename T, typename ...Args> Node *makeNodeSimple(Args &&...As) { in makeNodeSimple() argument
148 getOrCreateNode<T>(CreateNewNodes, std::forward<Args>(As)...); in makeNodeSimple()
168 template<typename ...Args> Node *make(Args &&...As) { in make()
169 return Self.makeNodeSimple<T>(std::forward<Args>(As)...); in make()
[all …]
/external/clang/lib/CodeGen/
DEHScopeStack.h197 template <class T, class... As>
199 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
206 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
210 restore(CGF, llvm::index_sequence_for<As...>()).Emit(CGF, flags);
214 ConditionalCleanup(typename DominatingValue<As>::saved_type... A)
273 template <class T, class... As> void pushCleanup(CleanupKind Kind, As... A) {
282 template <class T, class... As>
283 void pushCleanupTuple(CleanupKind Kind, std::tuple<As...> A) {
304 template <class T, class... As>
305 T *pushCleanupWithExtra(CleanupKind Kind, size_t N, As... A) {
/external/ComputeLibrary/tests/framework/
DMacros.h130 apply(this, &FIXTURE::setup<As...>, _data); \
136 apply(this, &FIXTURE::setup<As...>, _data); \
190 …template <typename... As> …
191 …class TEST_NAME<std::tuple<As...>> : public arm_compute::test::framework::DataTestCase<decltype(DA…
197 …arm_compute::test::framework::apply(this, &TEST_NAME::run<As...>, _data); …
203 …template <typename... As> …
205 void TEST_NAME<std::tuple<As...>>::run(MAKE_ARG_PARAMS(__VA_ARGS__))
241 …template <typename... As> …
242 …class TEST_NAME<std::tuple<As...>> : public arm_compute::test::framework::DataTestCase<decltype(DA…
251 …template <typename... As> …
[all …]
/external/openthread/src/core/thread/
Dnetwork_data_local.cpp105 prefixTlv = As<PrefixTlv>(AppendTlv(sizeof(PrefixTlv) + aPrefix.GetBytesSize() + subTlvLength)); in AddPrefix()
113 BorderRouterTlv *brTlv = As<BorderRouterTlv>(prefixTlv->GetSubTlvs()); in AddPrefix()
121 HasRouteTlv *hasRouteTlv = As<HasRouteTlv>(prefixTlv->GetSubTlvs()); in AddPrefix()
162 As<HasRouteTlv>(cur)->GetEntry(0)->SetRloc(rloc16); in UpdateRloc()
166 As<BorderRouterTlv>(cur)->GetEntry(0)->SetRloc(rloc16); in UpdateRloc()
194 serviceTlv = As<ServiceTlv>(AppendTlv(serviceTlvSize)); in AddService()
200 serverTlv = As<ServerTlv>(serviceTlv->GetSubTlvs()); in AddService()
241 As<ServerTlv>(cur)->SetServer16(rloc16); in UpdateRloc()
261 UpdateRloc(*As<PrefixTlv>(cur)); in UpdateRloc()
268 UpdateRloc(*As<ServiceTlv>(cur)); in UpdateRloc()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DTestVisibleTypeId.java4 import com.fasterxml.jackson.annotation.JsonTypeInfo.As;
14 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.PROPERTY,
26 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_ARRAY,
38 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_OBJECT,
60 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.PROPERTY,
69 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_ARRAY,
77 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_OBJECT,
87 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.EXTERNAL_PROPERTY,
133 @JsonTypeInfo(use=Id.NAME, include=As.EXTERNAL_PROPERTY, property="type", visible=true)
DTestTypedArraySerialization.java28 @JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, include=JsonTypeInfo.As.WRAPPER_ARRAY)
32 @JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, include=JsonTypeInfo.As.PROPERTY)
36 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_OBJECT)
40 @JsonTypeInfo(use=JsonTypeInfo.Id.CLASS, include=JsonTypeInfo.As.WRAPPER_OBJECT)
44 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.WRAPPER_OBJECT)
53 @JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include=JsonTypeInfo.As.PROPERTY)
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DErrno.h34 const Args &... As) -> decltype(F(As...)) {
35 decltype(F(As...)) Res;
38 Res = F(As...);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/Disassembler/
DMSP430Disassembler.cpp154 static AddrMode DecodeSrcAddrMode(unsigned Rs, unsigned As) { in DecodeSrcAddrMode() argument
157 if (As == 1) return amSymbolic; in DecodeSrcAddrMode()
158 if (As == 2) return amInvalid; in DecodeSrcAddrMode()
159 if (As == 3) return amImmediate; in DecodeSrcAddrMode()
162 if (As == 1) return amAbsolute; in DecodeSrcAddrMode()
163 if (As == 2) return amConstant; in DecodeSrcAddrMode()
164 if (As == 3) return amConstant; in DecodeSrcAddrMode()
171 switch (As) { in DecodeSrcAddrMode()
183 unsigned As = fieldFromInstruction(Insn, 4, 2); in DecodeSrcAddrModeI() local
184 return DecodeSrcAddrMode(Rs, As); in DecodeSrcAddrModeI()
[all …]
/external/llvm/test/Transforms/InstCombine/
Dphi-merge-gep.ll8 define void @foo(float* %Ar, float* %Ai, i64 %As, float* %Cr, float* %Ci, i64 %Cs, i64 %n) nounwind…
12 %2 = mul i64 %n, %As ; <i64> [#uses=1]
14 %4 = mul i64 %n, %As ; <i64> [#uses=1]
17 %7 = mul i64 %6, %As ; <i64> [#uses=1]
20 %10 = mul i64 %9, %As ; <i64> [#uses=1]
65 %46 = getelementptr inbounds float, float* %A0r.0, i64 %As ; <float*> [#uses=1]
66 %47 = getelementptr inbounds float, float* %A0i.0, i64 %As ; <float*> [#uses=1]
67 %48 = getelementptr inbounds float, float* %A1r.0, i64 %As ; <float*> [#uses=1]
68 %49 = getelementptr inbounds float, float* %A1i.0, i64 %As ; <float*> [#uses=1]
69 %50 = getelementptr inbounds float, float* %A2r.0, i64 %As ; <float*> [#uses=1]
[all …]
/external/harfbuzz_ng/src/
Dhb-ot-shaper-myanmar-machine.rl82 export As = 32; # Asat
93 k = (Ra As H); # Kinzi
97 medial_group = MY? As? MR? ((MW MH? ML? | MH ML? | ML) As?)?;
98 main_vowel_group = (VPre.VS?)* VAbv* VBlw* A* (DB As?)?;
99 post_vowel_group = VPst MH? ML? As* VAbv* A* (DB As?)?;
100 pwo_tone_group = PT A* DB? As?;
102 complex_syllable_tail = As* medial_group main_vowel_group post_vowel_group* pwo_tone_group* SM* j?;
/external/flatbuffers/tests/union_vector/
DCharacter.cs26 public T As<T>() where T : class { return this.Value as T; }
27 public AttackerT AsMuLan() { return this.As<AttackerT>(); } in AsMuLan()
29 public RapunzelT AsRapunzel() { return this.As<RapunzelT>(); } in AsRapunzel()
31 public BookReaderT AsBelle() { return this.As<BookReaderT>(); } in AsBelle()
33 public BookReaderT AsBookFan() { return this.As<BookReaderT>(); } in AsBookFan()
35 public string AsOther() { return this.As<string>(); } in AsOther()
37 public string AsUnused() { return this.As<string>(); } in AsUnused()

12345678910>>...109