/external/llvm/lib/ObjectYAML/ |
D | MachOYAML.cpp | 75 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument 76 IO.mapRequired("magic", FileHdr.magic); in mapping() 77 IO.mapRequired("cputype", FileHdr.cputype); in mapping() 78 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping() 79 IO.mapRequired("filetype", FileHdr.filetype); in mapping() 80 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping() 81 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping() 82 IO.mapRequired("flags", FileHdr.flags); in mapping() 85 IO.mapRequired("reserved", FileHdr.reserved); in mapping() 88 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument [all …]
|
D | COFFYAML.cpp | 16 #define ECase(X) IO.enumCase(Value, #X, COFF::X); 27 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() argument 28 IO.enumCase(Value, "0", 0); in enumeration() 40 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() argument 41 IO.enumCase(Value, "0", 0); in enumeration() 48 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() argument 53 IO &IO, COFF::MachineTypes &Value) { in enumeration() argument 79 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() argument 99 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() argument 130 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | MachOYAML.cpp | 85 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument 86 IO.mapRequired("magic", FileHdr.magic); in mapping() 87 IO.mapRequired("cputype", FileHdr.cputype); in mapping() 88 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping() 89 IO.mapRequired("filetype", FileHdr.filetype); in mapping() 90 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping() 91 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping() 92 IO.mapRequired("flags", FileHdr.flags); in mapping() 95 IO.mapRequired("reserved", FileHdr.reserved); in mapping() 98 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument [all …]
|
D | CodeViewYAMLSymbols.cpp | 77 void ScalarEnumerationTraits<SymbolKind>::enumeration(IO &io, in enumeration() argument 81 io.enumCase(Value, E.Name.str().c_str(), E.Value); in enumeration() 84 void ScalarBitSetTraits<CompileSym2Flags>::bitset(IO &io, in bitset() argument 88 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 93 void ScalarBitSetTraits<CompileSym3Flags>::bitset(IO &io, in bitset() argument 97 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 102 void ScalarBitSetTraits<ExportFlags>::bitset(IO &io, ExportFlags &Flags) { in bitset() argument 105 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 110 void ScalarBitSetTraits<PublicSymFlags>::bitset(IO &io, PublicSymFlags &Flags) { in bitset() argument 113 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() [all …]
|
D | WasmYAML.cpp | 33 IO &IO, WasmYAML::FileHeader &FileHdr) { in mapping() argument 34 IO.mapRequired("Version", FileHdr.Version); in mapping() 37 void MappingTraits<WasmYAML::Object>::mapping(IO &IO, in mapping() argument 39 IO.setContext(&Object); in mapping() 40 IO.mapTag("!WASM", true); in mapping() 41 IO.mapRequired("FileHeader", Object.Header); in mapping() 42 IO.mapOptional("Sections", Object.Sections); in mapping() 43 IO.setContext(nullptr); in mapping() 46 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping() argument 47 IO.mapRequired("Type", Section.Type); in commonSectionMapping() [all …]
|
D | CodeViewYAMLTypes.cpp | 85 virtual void map(yaml::IO &io) = 0; 94 void map(yaml::IO &io) override; 111 void map(yaml::IO &io) override; 124 virtual void map(yaml::IO &io) = 0; 132 void map(yaml::IO &io) override; 194 void ScalarEnumerationTraits<TypeLeafKind>::enumeration(IO &io, in enumeration() argument 196 #define CV_TYPE(name, val) io.enumCase(Value, #name, name); in enumeration() 202 IO &IO, PointerToMemberRepresentation &Value) { in enumeration() argument 203 IO.enumCase(Value, "Unknown", PointerToMemberRepresentation::Unknown); in enumeration() 204 IO.enumCase(Value, "SingleInheritanceData", in enumeration() [all …]
|
D | DWARFYAML.cpp | 25 void MappingTraits<DWARFYAML::Data>::mapping(IO &IO, DWARFYAML::Data &DWARF) { in mapping() argument 26 auto oldContext = IO.getContext(); in mapping() 27 IO.setContext(&DWARF); in mapping() 28 IO.mapOptional("debug_str", DWARF.DebugStrings); in mapping() 29 IO.mapOptional("debug_abbrev", DWARF.AbbrevDecls); in mapping() 30 if (!DWARF.ARanges.empty() || !IO.outputting()) in mapping() 31 IO.mapOptional("debug_aranges", DWARF.ARanges); in mapping() 32 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping() 33 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping() 34 if (!DWARF.PubTypes.Entries.empty() || !IO.outputting()) in mapping() [all …]
|
D | COFFYAML.cpp | 20 #define ECase(X) IO.enumCase(Value, #X, COFF::X); 35 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() argument 36 IO.enumCase(Value, "0", 0); in enumeration() 48 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() argument 49 IO.enumCase(Value, "0", 0); in enumeration() 56 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() argument 61 IO &IO, COFF::MachineTypes &Value) { in enumeration() argument 87 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() argument 107 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() argument 138 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() argument [all …]
|
/external/grpc-grpc-java/compiler/src/test/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/compiler/src/testLite/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/testing-proto/src/generated/main/grpc/io/grpc/testing/protobuf/ |
D | SimpleServiceGrpc.java | 1 package io.grpc.testing.protobuf; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ |
D | TestServiceGrpc.java | 1 package io.grpc.testing.integration; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
D | ReconnectServiceGrpc.java | 1 package io.grpc.testing.integration; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
D | MetricsServiceGrpc.java | 1 package io.grpc.testing.integration; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/services/src/generated/main/grpc/io/grpc/channelz/v1/ |
D | ChannelzGrpc.java | 1 package io.grpc.channelz.v1; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 21 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()() 22 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()() 23 error(IO.mapInteger(Gap.Range)); in operator ()() 29 static Error mapLocalVariableAddrRange(CodeViewRecordIO &IO, in mapLocalVariableAddrRange() argument 31 error(IO.mapInteger(Range.OffsetStart)); in mapLocalVariableAddrRange() 32 error(IO.mapInteger(Range.ISectStart)); in mapLocalVariableAddrRange() 33 error(IO.mapInteger(Range.Range)); in mapLocalVariableAddrRange() 38 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin() 43 error(IO.padToAlignment(alignOf(Container))); in visitSymbolEnd() 44 error(IO.endRecord()); in visitSymbolEnd() [all …]
|
/external/grpc-grpc-java/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ |
D | BenchmarkServiceGrpc.java | 1 package io.grpc.benchmarks.proto; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
D | WorkerServiceGrpc.java | 1 package io.grpc.benchmarks.proto; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | PdbYaml.cpp | 35 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { in enumeration() 36 io.enumCase(Value, "Invalid", PDB_Machine::Invalid); in enumeration() 37 io.enumCase(Value, "Am33", PDB_Machine::Am33); in enumeration() 38 io.enumCase(Value, "Amd64", PDB_Machine::Amd64); in enumeration() 39 io.enumCase(Value, "Arm", PDB_Machine::Arm); in enumeration() 40 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT); in enumeration() 41 io.enumCase(Value, "Ebc", PDB_Machine::Ebc); in enumeration() 42 io.enumCase(Value, "x86", PDB_Machine::x86); in enumeration() 43 io.enumCase(Value, "Ia64", PDB_Machine::Ia64); in enumeration() 44 io.enumCase(Value, "M32R", PDB_Machine::M32R); in enumeration() [all …]
|
/external/grpc-grpc-java/compiler/src/testNano/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler.nano; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_idct8x8_add_sse4.c | 20 void vpx_highbd_idct8x8_half1d_sse4_1(__m128i *const io) { in vpx_highbd_idct8x8_half1d_sse4_1() argument 23 transpose_32bit_4x4x2(io, io); in vpx_highbd_idct8x8_half1d_sse4_1() 26 step1[0] = io[0]; in vpx_highbd_idct8x8_half1d_sse4_1() 27 step1[2] = io[4]; in vpx_highbd_idct8x8_half1d_sse4_1() 28 step1[1] = io[2]; in vpx_highbd_idct8x8_half1d_sse4_1() 29 step1[3] = io[6]; in vpx_highbd_idct8x8_half1d_sse4_1() 30 highbd_butterfly_sse4_1(io[1], io[7], cospi_28_64, cospi_4_64, &step1[4], in vpx_highbd_idct8x8_half1d_sse4_1() 32 highbd_butterfly_sse4_1(io[5], io[3], cospi_12_64, cospi_20_64, &step1[5], in vpx_highbd_idct8x8_half1d_sse4_1() 54 highbd_idct8_stage4(step1, io); in vpx_highbd_idct8x8_half1d_sse4_1() 57 static void highbd_idct8x8_12_half1d(__m128i *const io) { in highbd_idct8x8_12_half1d() argument [all …]
|
D | highbd_idct8x8_add_sse2.c | 18 static void highbd_idct8x8_half1d(__m128i *const io) { in highbd_idct8x8_half1d() argument 21 transpose_32bit_4x4x2(io, io); in highbd_idct8x8_half1d() 24 step1[0] = io[0]; in highbd_idct8x8_half1d() 25 step1[2] = io[4]; in highbd_idct8x8_half1d() 26 step1[1] = io[2]; in highbd_idct8x8_half1d() 27 step1[3] = io[6]; in highbd_idct8x8_half1d() 28 highbd_butterfly_sse2(io[1], io[7], cospi_28_64, cospi_4_64, &step1[4], in highbd_idct8x8_half1d() 30 highbd_butterfly_sse2(io[5], io[3], cospi_12_64, cospi_20_64, &step1[5], in highbd_idct8x8_half1d() 52 highbd_idct8_stage4(step1, io); in highbd_idct8x8_half1d() 55 static void highbd_idct8x8_12_half1d(__m128i *const io) { in highbd_idct8x8_12_half1d() argument [all …]
|
/external/opencensus-java/buildscripts/ |
D | import-control.xml | 23 <import-control pkg="io.opencensus"> 28 <allow class="io.grpc.Context"/> 30 <allow pkg="io.opencensus.common"/> 33 <allow pkg="io.opencensus.common"/> 34 <allow pkg="io.opencensus.internal"/> 37 <allow pkg="io.opencensus.common"/> 38 <allow pkg="io.opencensus.internal"/> 39 <allow pkg="io.opencensus.tags"/> 42 <allow pkg="io.opencensus.internal"/> 43 <allow pkg="io.opencensus.common"/> [all …]
|
/external/grpc-grpc-java/grpclb/src/generated/main/grpc/io/grpc/lb/v1/ |
D | LoadBalancerGrpc.java | 1 package io.grpc.lb.v1; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/services/src/generated/test/grpc/io/grpc/reflection/testing/ |
D | ReflectableServiceGrpc.java | 1 package io.grpc.reflection.testing; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|