Searched refs:map (Results 276 - 300 of 1481) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/libstdc++/include/precompiled/
H A Dstdc++.h71 #include <map>
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_ioctl.c147 struct drm_map *map = data; local
152 idx = map->offset;
162 map->offset = mapinlist->offset;
163 map->size = mapinlist->size;
164 map->type = mapinlist->type;
165 map->flags = mapinlist->flags;
166 map->handle = mapinlist->handle;
167 map->mtrr = mapinlist->mtrr;
H A DdrmP.h242 #define DRM_READ8(map, offset) \
243 *(volatile u_int8_t *)(((vm_offset_t)(map)->virtual) + \
245 #define DRM_READ16(map, offset) \
246 le16toh(*(volatile u_int16_t *)(((vm_offset_t)(map)->virtual) + \
248 #define DRM_READ32(map, offset) \
249 le32toh(*(volatile u_int32_t *)(((vm_offset_t)(map)->virtual) + \
251 #define DRM_WRITE8(map, offset, val) \
252 *(volatile u_int8_t *)(((vm_offset_t)(map)->virtual) + \
254 #define DRM_WRITE16(map, offset, val) \
255 *(volatile u_int16_t *)(((vm_offset_t)(map)
399 bus_dmamap_t map; member in struct:drm_dma_handle
977 drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev) argument
982 drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev) argument
987 drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev) argument
996 drm_local_map_t *map; local
1006 drm_core_dropmap(struct drm_map *map) argument
[all...]
/freebsd-11-stable/lib/libc/yp/
H A DMakefile.inc10 SYM_MAPS+= ${LIBC_SRCTOP}/yp/Symbol.map
/freebsd-11-stable/lib/libc/resolv/
H A DMakefile.inc10 SYM_MAPS+= ${LIBC_SRCTOP}/resolv/Symbol.map
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_catas.c226 i, swab32(readl(priv->catas_err.map + i)));
241 } else if (readl(priv->catas_err.map)) {
276 priv->catas_err.map = NULL;
283 priv->catas_err.map = ioremap(addr, priv->fw.catas_size * 4);
284 if (!priv->catas_err.map) {
285 mlx4_warn(dev, "Failed to map internal error buffer at 0x%llx\n",
304 if (priv->catas_err.map) {
305 iounmap(priv->catas_err.map);
306 priv->catas_err.map = NULL;
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_hs.h86 struct ck_hs_map *map; member in struct:ck_hs
103 struct ck_hs_map *map; member in struct:ck_hs_iterator
/freebsd-11-stable/lib/msun/amd64/
H A DMakefile.inc11 SYM_MAPS += ${.CURDIR}/amd64/Symbol.map
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h12 #include <map>
76 typedef std::map<ConstString, lldb::OptionValueSP> collection;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DInstrumentationRuntime.h12 #include <map>
23 typedef std::map<lldb::InstrumentationRuntimeType,
H A DSectionLoadHistory.h12 #include <map>
73 typedef std::map<uint32_t, lldb::SectionLoadListSP> StopIDToSectionLoadList;
H A DSectionLoadList.h13 #include <map>
64 typedef std::map<lldb::addr_t, lldb::SectionSP> addr_to_sect_collection;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h21 #include <map>
38 /// TokenAtLoc - This map indicates which token exists at a specific
40 /// one to one map. The token can return its own location directly, to map
42 std::map<SourceLocation, TokenRefTy> TokenAtLoc;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMachineFunctionInfo.h13 #include <map>
35 std::map<const MachineInstr*, unsigned> PacketInfo;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h19 #include <map>
81 std::map<const char *, const Mips16HardFloatInfo::FuncSignature *>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossExSubsection.h19 #include <map>
61 std::map<uint32_t, uint32_t> Mappings;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DGlobalMappingLayer.h18 #include <map>
105 std::map<std::string, JITTargetAddress> SymbolTable;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DConstantPools.h21 #include <map>
47 std::map<int64_t, const MCSymbolRefExpr *> CachedEntries;
72 // ldr-pseudo opcode. The map associates a section to its constant pool. The
80 // We use the MapVector for the map type to ensure stable iteration of
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DProfileCommon.h24 #include <map>
42 /// appears in the profile. The map is kept sorted in the descending order of
44 std::map<uint64_t, uint32_t, std::greater<uint64_t>> CountFrequencies;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSetTheory.h54 #include <map>
97 using ExpandMap = std::map<Record *, RecVec>;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.h20 #include <map>
61 std::map<std::pair<const SmallVectorImpl<AnnotatedLine *> *, unsigned>,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.h12 #include <map>
72 std::map<lldb::addr_t, uint32_t> m_memory; // Eventually will want to change
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h12 #include <map>
73 typedef std::map<lldb::addr_t, const lldb::ModuleSP> JITObjectMap;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.h13 #include <map>
58 typedef std::map<dw_offset_t, DWARFAbbreviationDeclarationSet>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.h25 #include <map>
58 // is intentionally an ordered map so that we can find all symbols up to a
60 std::map<lldb::addr_t, PdbSymUid> m_symbols_by_va;
74 /// Indexes information about all compile units. This is really just a map of

Completed in 187 milliseconds

<<11121314151617181920>>