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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/Hexagon/
BitTracker.h 17 #include <map>
39 typedef std::map<unsigned, RegisterCell> CellMapType;
73 CellMapType &Map;
299 return Map.find(Reg) != Map.end();
305 CellMapType::const_iterator F = Map.find(Reg);
306 assert(F != Map.end());
417 // Evaluate a non-branching machine instruction, given the cell map with
418 // the input values. Place the results in the Outputs map. Return "true"
422 // Evaluate a branch, given the cell map with the input values. Fill ou
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFixIrreducibleControlFlow.cpp 228 DenseMap<MachineBasicBlock *, MachineBasicBlock *> Map;
247 Map[Succ] = Split;
253 Op.setMBB(Map[Op.getMBB()]);
254 for (auto Rewrite : Map)
  /external/llvm/unittests/ADT/
StringMapTest.cpp 78 // Empty map tests.
83 // Constant map tests.
104 // A map with a single entry.
140 // StringMap has a tricky corner case when the map is small (<8 buckets) and
143 llvm::StringMap<int> Map(2);
145 Map["eins"] = 1;
146 Map["zwei"] = 2;
147 Map["drei"] = 3;
148 Map.erase("drei");
149 Map.erase("eins")
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
protobuf.h 98 `---------------|-----------------' (get_def_obj map)
333 // These operate on a map field (i.e., a repeated field of submessages whose
334 // submessage type is a map-entry msgdef).
339 // These operate on a map-entry msgdef.
386 // Defined in repeated_field.c; also used by Map.
390 // Map container type.
398 } Map;
409 Map* ruby_to_Map(VALUE value);
429 Map* self;
518 // Global map from upb {msg,enum}defs to wrapper Descriptor/EnumDescripto
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 56 #include <map>
80 // A bi-way map
86 // Initialize map entries
89 static Ty2 map(Ty1 Key) { function in struct:SPIRV::SPIRVMap
109 static const SPIRVMap Map(false);
110 return Map;
117 static const SPIRVMap Map(true);
118 return Map;
122 for (auto &I:getMap().Map)
126 // For each key/value in the map executes function \p F
205 VT map(KT Key) { function in namespace:SPIRV
216 map(const std::unordered_set<KT> &KSet) { function in namespace:SPIRV
227 map(const std::set<KT> &KSet) { function in namespace:SPIRV
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 202 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
206 I = Map.begin(), E = Map.end(); I != E; ++I)
213 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantsContext.h 24 #include <map>
576 typedef std::map<MapKey, ConstantClass *> MapTy;
577 typedef std::map<ConstantClass *, typename MapTy::iterator> InverseMapTy;
579 /// Map - This is the main map from the element descriptor to the Constants.
582 MapTy Map;
585 /// from the constants to their element in Map. This is important for
587 /// through the map with very large keys.
591 typename MapTy::iterator map_begin() { return Map.begin(); }
592 typename MapTy::iterator map_end() { return Map.end();
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Timer.cpp 190 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
194 I = Map.begin(), E = Map.end(); I != E; ++I)
202 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
  /external/swiftshader/third_party/subzero/src/
IceVariableSplitting.cpp 48 /// need to clear the entire Map[] vector for each block.
74 : Func(Func), NumVars(Func->getNumVariables()), Map(NumVars) {}
86 Map[VarNum].LastUseInst = &Instr;
87 Map[VarNum].LastUseNode = Node;
95 Variable *MappedVar = Map[VarNum].MappedVar;
98 if (Map[VarNum].MappedVarNode != Node)
109 Map[VarNum].MappedVar = NewVar;
110 Map[VarNum].MappedVarNode = Node;
120 Variable *Link = Map[VarNum].MappedVar;
121 if (Link == nullptr || Map[VarNum].MappedVarNode != Node
    [all...]
  /hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
cbor.h 44 MAP = 5,
145 struct Map;
148 struct Map<MapElement<HeadKey, HeadValue>, Tail...> {
150 Map<Tail...> tail_;
151 Map(const MapElement<HeadKey, HeadValue>& head, const Tail&... tail)
157 struct Map<> {};
160 Map<MapElement<Keys, Values>...> map(const MapElement<Keys, Values>&... elements) { function in namespace:android::hardware::confirmationui::support
161 return Map<MapElement<Keys, Values>...>(elements...);
304 WriteState write(WriteState wState, const Map<Elems...>& map)
    [all...]
  /packages/apps/Camera2/jni/
jpegutil.cpp 131 void jpegutil::Transform::Map(int x, int y, int* x_out, int* y_out) const {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 78 // Provide public access to the underlying map to allow overlap iteration.
79 typedef LiveSegments Map;
80 const Map &getMap() const { return Segments; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 78 // Provide public access to the underlying map to allow overlap iteration.
79 typedef LiveSegments Map;
80 const Map &getMap() const { return Segments; }
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 414 // Map returns a copy of the byte slice s with all its characters modified
418 func Map(mapping func(r rune) rune, s []byte) []byte {
476 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
479 func ToLower(s []byte) []byte { return Map(unicode.ToLower, s) }
482 func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
487 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
493 return Map(func(r rune) rune { return c.ToLower(r) }, s)
499 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
533 // Hackish but effective. Depends on Map scanning in order and calling
536 return Map(
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
strings.go 454 // Map returns a copy of the string s with all its characters modified
457 func Map(mapping func(rune) rune, s string) string {
578 return Map(unicode.ToUpper, s)
607 return Map(unicode.ToLower, s)
611 func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
616 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
622 return Map(func(r rune) rune { return c.ToLower(r) }, s)
628 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
662 // Hackish but effective. Depends on Map scanning in order and calling
665 return Map(
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 414 // Map returns a copy of the byte slice s with all its characters modified
418 func Map(mapping func(r rune) rune, s []byte) []byte {
476 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
479 func ToLower(s []byte) []byte { return Map(unicode.ToLower, s) }
482 func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
487 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
493 return Map(func(r rune) rune { return c.ToLower(r) }, s)
499 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
533 // Hackish but effective. Depends on Map scanning in order and calling
536 return Map(
    [all...]
  /prebuilts/go/linux-x86/src/strings/
strings.go 454 // Map returns a copy of the string s with all its characters modified
457 func Map(mapping func(rune) rune, s string) string {
578 return Map(unicode.ToUpper, s)
607 return Map(unicode.ToLower, s)
611 func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
616 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
622 return Map(func(r rune) rune { return c.ToLower(r) }, s)
628 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
662 // Hackish but effective. Depends on Map scanning in order and calling
665 return Map(
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/XenonDxe/
SdMmcPciHcDxe.h 168 VOID *Map;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PciRootBridgeIo/
PciRootBridgeIo.h 207 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_MAP Map;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AhciMode.c 712 VOID *Map;
740 Status = PciIo->Map (
746 &Map
885 Map
939 VOID *Map;
950 Map = NULL;
989 Status = PciIo->Map (
995 &Map
1003 Task->Map = Map;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/
SdMmcPciHcDxe.h 168 VOID *Map;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciRootBridgeIo.h 222 @param HostAddress The system memory address to map to the PCI controller.
223 @param NumberOfBytes On input the number of bytes to map. On output the number of bytes
225 @param DeviceAddress The resulting map address for the bus master PCI controller to use to
233 @retval EFI_DEVICE_ERROR The system hardware could not map the requested address.
248 Completes the Map() operation and releases any corresponding resources.
251 @param Mapping The mapping value returned from Map().
254 @retval EFI_INVALID_PARAMETER Mapping is not a value that was returned by Map().
425 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_MAP Map;
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
Ohci.c 380 Status = Ohc->PciIo->Map (Ohc->PciIo, MapOp, (UINT8 *)Request, &ReqMapLength, &ReqMapPhyAddr, &ReqMapping);
382 DEBUG ((EFI_D_INFO, "OhciControlTransfer: Fail to Map Request Buffer\r\n"));
414 Status = Ohc->PciIo->Map (Ohc->PciIo, MapOp, Data, &DataMapLength, &DataMapPhyAddr, &DataMapping);
416 DEBUG ((EFI_D_INFO, "OhciControlTransfer: Fail To Map Data Buffer\r\n"));
719 Status = Ohc->PciIo->Map (Ohc->PciIo, MapOp, (UINT8 *)Data, &MapLength, &MapPyhAddr, &Mapping);
721 DEBUG ((EFI_D_INFO, "OhciBulkTransfer: Fail to Map Data Buffer for Bulk\r\n"));
    [all...]
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 121 template<typename PlainObjectType, int MapOptions, typename StrideType> friend class Eigen::Map;
122 friend class Eigen::Map<Derived, Unaligned>;
123 typedef Eigen::Map<Derived, Unaligned> MapType;
124 friend class Eigen::Map<const Derived, Unaligned>;
125 typedef const Eigen::Map<const Derived, Unaligned> ConstMapType;
128 friend class Eigen::Map<Derived, AlignedMax>;
129 friend class Eigen::Map<const Derived, AlignedMax>;
131 typedef Eigen::Map<Derived, AlignedMax> AlignedMapType;
132 typedef const Eigen::Map<const Derived, AlignedMax> ConstAlignedMapType;
133 template<typename StrideType> struct StridedMapType { typedef Eigen::Map<Derived, Unaligned, StrideType> type; }
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 1 //===- ValueMap.h - Safe map from Values to data ----------------*- C++ -*-===//
71 /// Returns a mutex that should be acquired around any changes to the map.
87 MapT Map;
102 : Map(NumInitBuckets), Data() {}
104 : Map(NumInitBuckets), Data(Data) {}
118 /// Get the mapped metadata, if it's in the map.
130 inline iterator begin() { return iterator(Map.begin()); }
131 inline iterator end() { return iterator(Map.end()); }
132 inline const_iterator begin() const { return const_iterator(Map.begin()); }
133 inline const_iterator end() const { return const_iterator(Map.end());
    [all...]

Completed in 2777 milliseconds

1 2 3 4 5 6 7 8 91011>>