/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
DWARFDebugArangeSet.h | 34 // The size in bytes of a segment descriptor on the target architecture. 39 struct Descriptor { 46 typedef std::vector<Descriptor> DescriptorColl; 66 const Descriptor *getDescriptor(uint32_t i) const {
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/ |
QNCInit.c | 377 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
385 Status = gDS->GetMemorySpaceDescriptor (BaseAddress, &Descriptor);
405 Status = gDS->GetMemorySpaceDescriptor (0, &Descriptor);
409 Descriptor.BaseAddress,
410 Descriptor.Length,
411 Descriptor.Attributes
434 Status = gDS->GetMemorySpaceDescriptor (0xA0000, &Descriptor);
438 Descriptor.BaseAddress,
439 Descriptor.Length,
440 Descriptor.Attributes [all...] |
/external/vulkan-validation-layers/layers/ |
descriptor_sets.h | 59 // Descriptor Data structures 66 * type, descriptor count, stage flags, and pImmutableSamplers. 83 * descriptor 0 of pBinding[0] is index 0 and each descriptor in the layout increments 143 * Descriptor classes 144 * Descriptor is an abstract base class from which 5 separate descriptor types are derived. 146 * descriptor type, but all descriptors in a set can be accessed via the common Descriptor*. 152 class Descriptor { [all...] |
/prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/ |
descriptor_sets.h | 55 // Descriptor Data structures 62 * type, descriptor count, stage flags, and pImmutableSamplers. 79 * descriptor 0 of pBinding[0] is index 0 and each descriptor in the layout increments 137 * Descriptor classes 138 * Descriptor is an abstract base class from which 5 separate descriptor types are derived. 140 * descriptor type, but all descriptors in a set can be accessed via the common Descriptor*. 146 class Descriptor { [all...] |
/external/v8/src/ |
code-stubs.cc | 339 Node* left = assembler.Parameter(Descriptor::kLeft); 340 Node* right = assembler.Parameter(Descriptor::kRight); 341 Node* context = assembler.Parameter(Descriptor::kContext); 436 CallInterfaceDescriptor descriptor(GetCallInterfaceDescriptor()); 437 compiler::CodeAssemblerState state(isolate(), &zone, descriptor, local 449 Node* receiver = assembler.Parameter(Descriptor::kReceiver); 450 Node* key = assembler.Parameter(Descriptor::kName); 451 Node* value = assembler.Parameter(Descriptor::kValue); 452 Node* map = assembler.Parameter(Descriptor::kMap); 453 Node* slot = assembler.Parameter(Descriptor::kSlot) [all...] |
/external/llvm/lib/MC/ |
MCSectionMachO.cpp | 214 [&](decltype(*SectionTypeDescriptors) &Descriptor) { 215 return Descriptor.AssemblerName && 216 SectionType == Descriptor.AssemblerName; 243 [&](decltype(*SectionAttrDescriptors) &Descriptor) { 244 return Descriptor.AssemblerName && 245 SectionAttr.trim() == Descriptor.AssemblerName;
|
/external/javassist/src/main/javassist/ |
ClassMap.java | 18 import javassist.bytecode.Descriptor; 160 return Descriptor.toJvmName(classname); 168 return Descriptor.toJavaName(classname);
|
/external/protobuf/src/google/protobuf/ |
any.cc | 38 string GetTypeUrl(const Descriptor* message, 77 bool AnyMetadata::InternalIs(const Descriptor* descriptor) const { 84 return full_name == descriptor->full_name(); 100 const Descriptor* descriptor = message.GetDescriptor(); local 101 if (descriptor->full_name() != kAnyFullTypeName) { 104 *type_url_field = descriptor->FindFieldByNumber(1); 105 *value_field = descriptor->FindFieldByNumber(2);
|
/external/r8/src/main/java/com/android/tools/r8/graph/ |
AppInfo.java | 21 private final ConcurrentHashMap<DexType, Map<Descriptor, KeyedDexItem>> definitions = 41 private Map<Descriptor, KeyedDexItem> computeDefinitions(DexType type) { 42 Builder<Descriptor, KeyedDexItem> builder = ImmutableMap.builder(); 53 private void registerDefinitions(Builder<Descriptor, KeyedDexItem> builder, 54 KeyedDexItem<? extends Descriptor>[] items) { 55 for (KeyedDexItem<? extends Descriptor> item : items) { 80 private Map<Descriptor, KeyedDexItem> getDefinitions(DexType type) { 81 Map<Descriptor, KeyedDexItem> typeDefinitions = definitions.get(type); 87 Map<Descriptor, KeyedDexItem> existing = definitions.putIfAbsent(type, typeDefinitions); 183 private <S extends DexItem, T extends Descriptor<S, T>> S lookupTargetAlongSuperChain [all...] |
DexMethodHandle.java | 120 public Descriptor<? extends DexItem, ? extends Descriptor> fieldOrMethod; 123 MethodHandleType type, Descriptor<? extends DexItem, ? extends Descriptor> fieldOrMethod) {
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/SmramMemoryReserve/ |
SmramMemoryReserve.h | 65 EFI_SMRAM_DESCRIPTOR Descriptor[1];
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
usb_descriptors.py | 66 Metaclass for creating a USB descriptor class. 68 A derived descriptor class takes raw descriptor data as an array of unsigned 70 as instance attributes. A derived class of |Descriptor| should specify the 73 DESCRIPTOR_TYPE: An unsigned 8-bit number specifying the descriptor 77 DESCRIPTOR_SUBTYPE: An unsigned 8-bit number specifying the descriptor 83 in the USB descriptor. Each inner tuple is a field definition and 86 field from the raw descriptor data. The second element specifies the 88 derived descriptor class for storing the field. Each derived descriptor [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
ExtensionProfileLevelDescriptor.java | 31 @Descriptor(tags = {0x13})
|
/external/protobuf/php/ext/google/protobuf/ |
protobuf.h | 13 struct Descriptor; 23 typedef struct Descriptor Descriptor; 70 struct Descriptor { 158 Descriptor* descriptor; // kept alive by self.class.descriptor reference. member in struct:MessageHeader 164 zval* descriptor; member in struct:MessageBuilderContext 170 // VALUE descriptor; 189 Descriptor* php_to_descriptor(zval* value TSRMLS_DC) [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_helpers.h | 41 #include <google/protobuf/descriptor.pb.h> 42 #include <google/protobuf/descriptor.h> 67 string ClassName(const Descriptor* descriptor, bool qualified); 72 string DependentBaseClassTemplateName(const Descriptor* descriptor); 76 string SuperClassName(const Descriptor* descriptor, const Options& options); 98 inline const Descriptor* FieldScope(const FieldDescriptor* field) { 163 string SafeFunctionName(const Descriptor* descriptor [all...] |
/external/protobuf/src/google/protobuf/compiler/csharp/ |
csharp_doc_comment.h | 36 #include <google/protobuf/descriptor.h> 42 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message);
|
csharp_reflection_class.h | 59 void WriteGeneratedCodeInfo(const Descriptor* descriptor,
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_doc_comment.h | 38 #include <google/protobuf/descriptor.h> 51 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message);
|
/external/skia/src/shaders/gradients/ |
SkSweepGradient.h | 15 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugPubTable.h | 31 dwarf::PubIndexEntryDescriptor Descriptor;
|