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

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
DependentDiagnostic.h 177 const DependentStoredDeclsMap *Map
180 if (!Map)
184 return ddiag_range(ddiag_iterator(Map->FirstDiagnostic), ddiag_iterator());
  /prebuilts/go/darwin-x86/src/expvar/
expvar.go 100 // Map is a string-to-Var map variable that satisfies the Var interface.
101 type Map struct {
102 m sync.Map // map[string]Var
107 // KeyValue represents a single entry in a Map.
113 func (v *Map) String() string {
128 // Init removes all keys from the map.
129 func (v *Map) Init() *Map {
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 61 func (BuiltinTypes) Map(i int, reply *map[int]int) error {
211 // Map
213 replyMap := map[int]int{}
214 err := client.Call("BuiltinTypes.Map", arg, &replyMap)
216 t.Errorf("Map: expected no error but got string %q", err.Error())
219 t.Errorf("Map: expected %d got %d", arg, replyMap[arg])
  /prebuilts/go/linux-x86/src/expvar/
expvar.go 100 // Map is a string-to-Var map variable that satisfies the Var interface.
101 type Map struct {
102 m sync.Map // map[string]Var
107 // KeyValue represents a single entry in a Map.
113 func (v *Map) String() string {
128 // Init removes all keys from the map.
129 func (v *Map) Init() *Map {
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 61 func (BuiltinTypes) Map(i int, reply *map[int]int) error {
211 // Map
213 replyMap := map[int]int{}
214 err := client.Call("BuiltinTypes.Map", arg, &replyMap)
216 t.Errorf("Map: expected no error but got string %q", err.Error())
219 t.Errorf("Map: expected %d got %d", arg, replyMap[arg])
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/VirtualEhciPciIo/
VirtualEhciPciIo.c 362 MEM_MAP_INFO_INSTANCE *Map;
377 Map = AllocatePool (sizeof (MEM_MAP_INFO_INSTANCE));
378 if (Map == NULL) {
382 *Mapping = Map;
401 Map->DoubleBuffer = TRUE;
411 Map->DoubleBuffer = FALSE;
414 Map->DoubleBuffer = FALSE;
425 Map->HostAddress = (UINTN)HostAddress;
426 Map->DeviceAddress = *DeviceAddress;
427 Map->NumberOfBytes = *NumberOfBytes;
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/
DwMmcHcDxe.h 163 VOID *Map;
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridge.h 123 MAP_INFO * Map;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.c 44 ONE_OF_OPTION_MAP *Map;
49 Map = ONE_OF_OPTION_MAP_FROM_LINK (Link);
50 if (QuestionId == Map->QuestionId) {
51 return &Map->OneOfOptionMapEntryListHead;
60 Free OneOfOption map list.
70 ONE_OF_OPTION_MAP *Map;
78 Map = ONE_OF_OPTION_MAP_FROM_LINK (Link);
80 while (!IsListEmpty (&Map->OneOfOptionMapEntryListHead)) {
81 Link2 = GetFirstNode (&Map->OneOfOptionMapEntryListHead);
91 FreePool (Map);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/IsaIo/
IsaIo.h 52 #define EFI_ISA_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE 0x080 // Map a memory range so write are combined
53 #define EFI_ISA_IO_ATTRIBUTE_MEMORY_CACHED 0x800 // Map a memory range so all r/w accesses are cached
173 EFI_ISA_IO_PROTOCOL_MAP Map;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Protocol/
IsaIo.h 56 #define EFI_ISA_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE 0x080 ///< Map a memory range so write are combined.
57 #define EFI_ISA_IO_ATTRIBUTE_MEMORY_CACHED 0x800 ///< Map a memory range so all read and write accesses are cached.
174 This function is used to map system memory for ISA DMA operations. All ISA DMA
185 If performing a DMA read operation, all the data must be present in system memory before the Map() is performed. Similarly,
209 @param[in] HostAddress The system memory address to map to the device.
210 @param[in, out] NumberOfBytes On input the number of bytes to map. On
212 @param[out] DeviceAddress The resulting map address for the bus master
216 resources associated with this map request.
222 @retval EFI_DEVICE_ERROR The system hardware could not map the requested address.
240 Unmaps a memory region that was previously mapped with EFI_ISA_IO_PROTOCOL.Map().
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AtaAtapiPassThru.h 139 VOID *Map; // Pointer to map.
140 VOID *TableMap; // Pointer to PRD table map.
141 EFI_ATA_DMA_PRD *MapBaseAddress; // Pointer to range Base address for Map.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciSched.c 116 VOID *Map;
125 // 1. Allocate and map the memory for the frame list
148 Status = PciIo->Map (
154 &Map
163 Ehc->PeriodFrameMap = Map;
245 PciIo->Unmap (PciIo, Map);
840 VOID *Map;
858 Status = PciIo->Map (PciIo, MapOp, Urb->Data, &Len, &PhyAddr, &Map);
864 Urb->DataMap = Map;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbHub.c 507 always return changed bit map from its interrupt endpoint.
659 // OK, actually something is changed, save the change map
704 // Locate the interrupt endpoint for port change map
796 // changed port map from the interrupt endpoint. The port map
871 USB_CHANGE_FEATURE_MAP *Map;
888 Map = &mHubFeatureMap[Index];
890 if (USB_BIT_IS_SET (PortState.PortChangeStatus, Map->ChangedBit)) {
891 UsbHubCtrlClearPortFeature (HubIf->Device, Port, (UINT16) Map->Feature);
1167 USB_CHANGE_FEATURE_MAP *Map;
    [all...]
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 49 class Map {
70 void testMap(Map &m, int i) {
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3.cpp 54 struct Map {
55 Map(std::initializer_list<std::pair<std::string,int>>) {}
58 Map ship = {{"Sophie",14}, {"Surprise",28}};
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 28 #include <map>
144 using std::map;
198 typedef std::map<const std::type_info*, Entry> Map;
204 Map m_fields;
  /external/eigen/Eigen/src/Core/
PermutationMatrix.h 421 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, _StorageIndex>,_PacketAccess> >
425 typedef Map<const Matrix<_StorageIndex, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1>, _PacketAccess> IndicesType;
432 class Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, _StorageIndex>,_PacketAccess>
433 : public PermutationBase<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, _StorageIndex>,_PacketAccess> >
435 typedef PermutationBase<Map> Base;
436 typedef internal::traits<Map> Traits;
444 inline Map(const StorageIndex* indicesPtr)
448 inline Map(const StorageIndex* indicesPtr, Index size)
454 Map& operator=(const PermutationBase<Other>& other)
459 Map& operator=(const TranspositionsBase<Other>& tr
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) {
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 66 typedef MappedSparseMatrix<Scalar,Flags> Map;
  /external/gemmlowp/test/
benchmark_all_sizes.cc 13 #include <map>
51 typedef MatrixMap<tScalar, tOrder> Map;
53 typedef typename Map::Scalar Scalar;
55 using Map::cols_;
56 using Map::data_;
57 using Map::kOrder;
58 using Map::rows_;
59 using Map::stride_;
62 Matrix() : Map(nullptr, 0, 0, 0) {}
64 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols);
89 Map& map() { return *static_cast<Map*>(this); } function in class:gemmlowp::Matrix
    [all...]
  /external/libmojo/mojo/android/system/
core_impl.cc 308 static ScopedJavaLocalRef<jobject> Map(JNIEnv* env,
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 76 // Provide public access to the underlying map to allow overlap iteration.
77 typedef LiveSegments Map;
78 const Map &getMap() { return Segments; }
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 39 MMIAddrLabelMap *Map;
41 MMIAddrLabelMapCallbackPtr() : Map(nullptr) {}
42 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(nullptr) {}
48 void setMap(MMIAddrLabelMap *map) { Map = map; }
156 // Get the entry for the RAUW'd block and remove it from our map.
179 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
183 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
418 /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call sit
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 188 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
192 I = Map.begin(), E = Map.end(); I != E; ++I)
199 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];

Completed in 748 milliseconds

1 2 3 4 5 6 7 891011>>