HomeSort by relevance Sort by last modified time
    Searched defs:Map (Results 251 - 275 of 409) sorted by null

<<11121314151617

  /external/llvm/lib/Analysis/
GlobalsModRef.cpp 70 AlignedMap(const AlignedMap &Arg) : Map(Arg.Map) {}
71 GlobalInfoMapType Map;
74 /// Pointer traits for our aligned map.
149 auto I = P->Map.find(&GV);
150 if (I != P->Map.end())
165 for (const auto &G : P->Map)
175 auto &GlobalMRI = P->Map[&GV];
183 P->Map.erase(&GV);
190 /// the pointer, when non-null, points to a map from GlobalValue t
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 588 MapTy Map;
591 typename MapTy::iterator begin() { return Map.begin(); }
592 typename MapTy::iterator end() { return Map.end(); }
595 for (auto &I : Map)
603 Map.insert_as(Result, HashKey);
609 /// Return the specified constant from the map, creating it if necessary.
617 auto I = Map.find_as(Lookup);
618 if (I == Map.end())
627 /// Remove this constant from the map
629 typename MapTy::iterator I = Map.find(CP)
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 63 StringMap<int> Map;
65 /// \returns true if name is already present in the map.
67 return !Map.insert(std::make_pair(Name, (int)i)).second;
69 /// \returns true if name is not present in the map
71 StringMap<int>::const_iterator I = Map.find(Name);
72 if (I == Map.end())
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 609 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
610 Map map_;
624 for (PrototypeMap::Map::iterator iter = prototypes_->map_.begin();
746 // instance on memory. e.g., message Foo { map<int32, Foo> a = 1; }. When
747 // creating prototype for Foo, prototype of the map entry will also be
749 // map). To break the cyclic dependency, we have to assgin the address of
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ValueMap.h 1 //===- llvm/ADT/ValueMap.h - Safe map from Values to data -------*- C++ -*-===//
66 /// Returns a mutex that should be acquired around any changes to the map.
83 MapT Map;
93 : Map(NumInitBuckets), Data() {}
95 : Map(NumInitBuckets), Data(Data) {}
101 inline iterator begin() { return iterator(Map.begin()); }
102 inline iterator end() { return iterator(Map.end()); }
103 inline const_iterator begin() const { return const_iterator(Map.begin()); }
104 inline const_iterator end() const { return const_iterator(Map.end()); }
106 bool empty() const { return Map.empty();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineModuleInfo.cpp 38 MMIAddrLabelMap *Map;
40 MMIAddrLabelMapCallbackPtr() : Map(0) {}
41 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(0) {}
47 void setMap(MMIAddrLabelMap *map) { Map = map; }
203 // Get the entry for the RAUW'd block and remove it from our map.
244 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
248 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
502 /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call sit
    [all...]
  /external/syslinux/efi32/include/efi/
efipciio.h 206 EFI_PCI_IO_PROTOCOL_MAP Map;
  /external/syslinux/efi64/include/efi/
efipciio.h 206 EFI_PCI_IO_PROTOCOL_MAP Map;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efipciio.h 206 EFI_PCI_IO_PROTOCOL_MAP Map;
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
PciRootBridgeIo.h 173 @param HostAddress The system memory address to map to the PCI controller.
174 @param NumberOfBytes On input the number of bytes to map. On output the number of bytes
176 @param DeviceAddress The resulting map address for the bus master PCI controller to use to
184 @retval EFI_DEVICE_ERROR The system hardware could not map the requested address.
199 Completes the Map() operation and releases any corresponding resources.
202 @param Mapping The mapping value returned from Map().
205 @retval EFI_INVALID_PARAMETER Mapping is not a value that was returned by Map().
376 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_MAP Map;
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.cc 459 ComputationDataHandle LocalComputationBuilder::Map(
464 return builder_.Map(operands, local_computation.computation(), dimensions,
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 406 struct Map {
411 static const Map kMap[] = {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueMap.h 1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===//
77 /// Returns a mutex that should be acquired around any changes to the map.
94 MapT Map;
107 : Map(NumInitBuckets), Data() {}
109 : Map(NumInitBuckets), Data(Data) {}
125 /// Get the mapped metadata, if it's in the map.
137 inline iterator begin() { return iterator(Map.begin()); }
138 inline iterator end() { return iterator(Map.end()); }
139 inline const_iterator begin() const { return const_iterator(Map.begin()); }
140 inline const_iterator end() const { return const_iterator(Map.end());
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ValueMap.h 1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===//
77 /// Returns a mutex that should be acquired around any changes to the map.
94 MapT Map;
107 : Map(NumInitBuckets), Data() {}
109 : Map(NumInitBuckets), Data(Data) {}
125 /// Get the mapped metadata, if it's in the map.
137 inline iterator begin() { return iterator(Map.begin()); }
138 inline iterator end() { return iterator(Map.end()); }
139 inline const_iterator begin() const { return const_iterator(Map.begin()); }
140 inline const_iterator end() const { return const_iterator(Map.end());
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 96 func (BuiltinTypes) Map(args *Args, reply *map[int]int) error {
363 // Map
365 replyMap := map[int]int{}
366 err = client.Call("BuiltinTypes.Map", args, &replyMap)
368 t.Errorf("Map: expected no error but got string %q", err.Error())
371 t.Errorf("Map: expected %d got %d", args.B, replyMap[args.A])
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 96 func (BuiltinTypes) Map(args *Args, reply *map[int]int) error {
363 // Map
365 replyMap := map[int]int{}
366 err = client.Call("BuiltinTypes.Map", args, &replyMap)
368 t.Errorf("Map: expected no error but got string %q", err.Error())
371 t.Errorf("Map: expected %d got %d", args.B, replyMap[args.A])
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PciIo/
PciIo.h 68 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE 0x0080 // Map a memory range so write are combined
72 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_CACHED 0x0800 // Map a memory range so all r/w accesses are cached
260 EFI_PCI_IO_PROTOCOL_MAP Map;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
Ata.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Gcd/
Gcd.c 104 /// Lookup table used to print GCD Memory Space Map
117 /// Lookup table used to print GCD I/O Space Map
139 Dump the entire contents if the GCD Memory Space Map using DEBUG() macros when
142 @param InitialMap TRUE if the initial GCD Memory Map is being dumped. Otherwise, FALSE.
161 DEBUG ((DEBUG_GCD, "GCD:Initial GCD Memory Space Map\n"));
181 Dump the entire contents if the GCD I/O Space Map using DEBUG() macros when
184 @param InitialMap TRUE if the initial GCD I/O Map is being dumped. Otherwise, FALSE.
203 DEBUG ((DEBUG_GCD, "GCD:Initial GCD I/O Space Map\n"));
374 @param TopEntry An entry of GCD map
375 @param BottomEntry An entry of GCD map
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciIo.h 62 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE 0x0080 ///< Map a memory range so writes are combined
66 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_CACHED 0x0800 ///< Map a memory range so all r/w accesses are cached
290 @param HostAddress The system memory address to map to the PCI controller.
291 @param NumberOfBytes On input the number of bytes to map. On output the number of bytes
293 @param DeviceAddress The resulting map address for the bus master PCI controller to use to
301 @retval EFI_DEVICE_ERROR The system hardware could not map the requested address.
316 Completes the Map() operation and releases any corresponding resources.
319 @param Mapping The mapping value returned from Map().
530 EFI_PCI_IO_PROTOCOL_MAP Map;
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 308 * Specialization of Map<Quaternion<Scalar>>
313 struct traits<Map<Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
315 typedef Map<Matrix<_Scalar,4,1>, _Options> Coefficients;
321 struct traits<Map<const Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
323 typedef Map<const Matrix<_Scalar,4,1>, _Options> Coefficients;
335 * \tparam _Options see class Map
337 * This is a specialization of class Map for Quaternion. This class allows to view
340 * \sa class Map, class Quaternion, class QuaternionBase
343 class Map<const Quaternion<_Scalar>, _Options >
344 : public QuaternionBase<Map<const Quaternion<_Scalar>, _Options>
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 175 static SluMatrix Map(MatrixBase<MatrixType>& _mat)
193 static SluMatrix Map(SparseMatrixBase<MatrixType>& a_mat)
293 return SluMatrix::Map(mat);
331 typedef Map<PermutationMatrix<Dynamic,Dynamic,int> > PermutationMap;
668 m_sluB = SluMatrix::Map(b_ref.const_cast_derived());
669 m_sluX = SluMatrix::Map(x_ref.const_cast_derived());
675 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
    [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 425 class Map(ReferenceKind):
426 """A map.
775 return isinstance(kind, Map)
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 620 /// the SCEVUnknown components following the Map (Value -> Value).
624 ValueToValueMap &Map,
626 SCEVParameterRewriter Rewriter(SE, Map, InterpretConsts);
631 : SCEVRewriteVisitor(SE), Map(M), InterpretConsts(C) {}
635 if (Map.count(V)) {
636 Value *NV = Map[V];
645 ValueToValueMap &Map;
652 /// the Map (Loop -> SCEV) to all AddRecExprs.
656 static const SCEV *rewrite(const SCEV *Scev, LoopToScevMapT &Map,
658 SCEVLoopAddRecRewriter Rewriter(SE, Map);
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 763 RelocAddrMap *Map = StringSwitch<RelocAddrMap*>(RelSecName)
774 if (!Map) {
778 Map = &TypesSections[*RelocatedSection].Relocs;
780 Map = &TypesDWOSections[*RelocatedSection].Relocs;
878 Map->insert(std::make_pair(Address, std::make_pair(R.Width, R.Value)));

Completed in 2936 milliseconds

<<11121314151617