Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/hardware/google/gfxstream/host/features/include/gfxstream/host/
DFeatures.h25 using FeatureMap = std::map<std::string, FeatureInfo*>;
32 FeatureMap* map) : in FeatureInfo()
37 if (map) { in FeatureInfo()
38 (*map)[std::string(name)] = this; in FeatureInfo()
56 FeatureMap map; member
62 &map,
68 &map,
74 &map,
81 &map,
87 &map,
[all …]
/hardware/google/gfxstream/guest/mesa/include/android_stub/backtrace/
DBacktraceMap.h76 iterator(BacktraceMap* map, size_t index) : map_(map), index_(index) {} in iterator() argument
102 backtrace_map_t* map = &map_->maps_[index_]; variable
103 if (map->load_bias == static_cast<uint64_t>(-1)) {
104 map->load_bias = map_->GetLoadBias(index_);
106 return map;
118 virtual void FillIn(uint64_t addr, backtrace_map_t* map);
127 backtrace_map_t map; in GetFlags() local
128 FillIn(pc, &map); in GetFlags()
129 if (IsValid(map)) { in GetFlags()
130 return map.flags; in GetFlags()
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/vu-to-json/
Dextension.rb14 map = {}
16 map['version info'] = {
23 map['validation'] = {}
77 if map['validation'][parent] == nil
78 map['validation'][parent] = {}
85 if map['validation'][parent][entry_section] == nil
86 map['validation'][parent][entry_section] = []
90 if map['validation'][parent][entry_section].include? entry
96 map['validation'][parent][entry_section] << entry
113 json = JSON.pretty_generate(map)
/hardware/google/gfxstream/guest/android-emu/aemu/base/containers/
DLookup.h45 is_template_instantiation_of<T, std::map>::value ||
63 const typename T::mapped_type* find(const T& map, in find() argument
65 const auto it = map.find(key); in find()
66 if (it == map.end()) { in find()
75 typename T::mapped_type* find(T& map, const typename T::key_type& key) { in find() argument
76 auto it = map.find(key); in find()
77 if (it == map.end()) { in find()
91 typename T::mapped_type findOrDefault(const T& map,
94 if (auto valPtr = find(map, key)) {
107 const T& map, in findFirstOf() argument
[all …]
/hardware/google/aemu/base/include/aemu/base/containers/
DLookup.h48 is_template_instantiation_of<T, std::map>::value ||
66 const typename T::mapped_type* find(const T& map, in find() argument
68 const auto it = map.find(key); in find()
69 if (it == map.end()) { in find()
78 typename T::mapped_type* find(T& map, const typename T::key_type& key) { in find() argument
79 auto it = map.find(key); in find()
80 if (it == map.end()) { in find()
94 typename T::mapped_type findOrDefault(const T& map,
97 if (auto valPtr = find(map, key)) {
110 const T& map, in findFirstOf() argument
[all …]
/hardware/google/pixel/pixelstats/include/pixelstats/
DMmMetricsReporter.h143 std::map<std::string, uint64_t> readSysfsNameValue(const std::string &path);
144 std::map<std::string, std::vector<uint64_t>> readProcStat(const std::string &path);
148 const std::map<std::string, uint64_t> &mm_metrics,
149 std::map<std::string, uint64_t> *prev_mm_metrics,
151 bool getValueFromParsedProcStat(const std::map<std::string, std::vector<uint64_t>> pstat,
154 const std::map<std::string, std::vector<uint64_t>> &cur_pstat,
155 std::map<std::string, std::vector<uint64_t>> *prev_pstat,
163 std::map<std::string, uint64_t> readCmaStat(const std::string &cma_type,
168 std::map<std::string, std::map<std::string, uint64_t>> *all_prev_cma_stat);
195 std::map<std::string, uint64_t> prev_hour_vmstat_;
[all …]
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_extension_inspection.hpp23 std::map<std::string, std::string> const & getDeprecatedExtensions();
24 …std::map<std::string, std::vector<std::vector<std::string>>> const & getExtensionDepends( std::str…
26 std::map<std::string, std::string> const & getObsoletedExtensions();
27 std::map<std::string, std::string> const & getPromotedExtensions();
41 VULKAN_HPP_INLINE std::map<std::string, std::string> const & getDeprecatedExtensions() in getDeprecatedExtensions()
43 static std::map<std::string, std::string> deprecatedExtensions = { in getDeprecatedExtensions()
141 …VULKAN_HPP_INLINE std::map<std::string, std::vector<std::vector<std::string>>> const & getExtensio… in getExtensionDepends()
143 static std::map<std::string, std::vector<std::vector<std::string>>> noDependencies; in getExtensionDepends()
144 …static std::map<std::string, std::map<std::string, std::vector<std::vector<std::string>>>> depende… in getExtensionDepends()
218 VULKAN_HPP_INLINE std::map<std::string, std::string> const & getObsoletedExtensions() in getObsoletedExtensions()
[all …]
/hardware/interfaces/automotive/can/1.0/default/libnl++/protocols/
Dall.cpp27 static std::map<int, std::shared_ptr<NetlinkProtocol>> toMap( in toMap()
29 std::map<int, std::shared_ptr<NetlinkProtocol>> map; in toMap() local
31 map[p->getProtocol()] = p; in toMap()
33 return map; in toMap()
DNetlinkProtocol.cpp43 MessageDescriptorMap map; in toMap() local
46 map.emplace(mtype, descr); in toMap()
57 map.emplace(mtype, descr); in toMap()
61 return map; in toMap()
/hardware/google/gfxstream/host/gl/glsnapshot/
DGLSnapshot.h26 typedef std::map<GLenum, GLValue> GlobalStateMap;
27 typedef std::map<GLenum, bool> GlobalEnables;
36 std::map<GLenum, GLuint> linkage;
68 std::map<GLuint, GLuint> mProgramNames;
69 std::map<GLuint, GLuint> mProgramNamesBack;
70 std::map<GLuint, GLShaderState> mShaderState;
71 std::map<GLuint, GLProgramState> mShaderProgramState;
/hardware/google/gfxstream/guest/OpenglCodecCommon/
DTextureSharedData.h28 std::map<GLsizei, GLsizei> widths;
29 std::map<GLsizei, GLsizei> heights;
30 std::map<GLsizei, GLsizei> depths;
53 using MapType = std::map<GLuint, std::shared_ptr<TextureRec>>;
58 MapType map; member
DKeyedVectorUtils.h21 void clearObjectMap(std::map<GLuint, T>& v) { in clearObjectMap()
22 typename std::map<GLuint, T>::iterator it = v.begin(); in clearObjectMap()
30 V findObjectOrDefault(const std::map<K, V>& m, K key, V defaultValue = 0) {
31 typename std::map<K, V>::const_iterator it = m.find(key);
/hardware/qcom/sm7250/display/gpu_tonemapper/
DEGLImageWrapper.h30 using std::map;
36 explicit DeleteEGLImageCallback(map<string, int>* mapPtr) { buffStrbuffIntMapPtr = mapPtr; } in DeleteEGLImageCallback()
38 map<string, int>* buffStrbuffIntMapPtr = nullptr;
43 map<string, int> buffStrbuffIntMap = {};
/hardware/qcom/sm8150/display/gpu_tonemapper/
DEGLImageWrapper.h30 using std::map;
36 explicit DeleteEGLImageCallback(map<string, int>* mapPtr) { buffStrbuffIntMapPtr = mapPtr; } in DeleteEGLImageCallback()
38 map<string, int>* buffStrbuffIntMapPtr = nullptr;
46 map<string, int> buffStrbuffIntMap = {};
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_QCOM_fragment_density_map_offset.adoc20 density map attachment, changing the framebuffer location where density
21 values are applied to without having to regenerate the fragment density map.
30 If the fragment density map size is larger than framebuffer size /
33 inside of the density map image.
34 This is helpful if apps want to reuse the same density map image to track
39 // Create fragment density map
66 // Shift fragment density map image by offset to put fovea in center of vision
69 1024x1024 for this example before density value access is clamped to edge of map
80 before the density values are clamped to edge of map
/hardware/google/gfxstream/guest/mesa/include/android_stub/log/
Devent_tag_map.h40 void android_closeEventTagMap(EventTagMap* map);
46 const char* android_lookupEventTag_len(const EventTagMap* map, size_t* len,
53 const char* android_lookupEventFormat_len(const EventTagMap* map, size_t* len,
/hardware/interfaces/media/bufferpool/aidl/default/
DAccessor.h63 std::map<void *, std::set<int64_t>> mCookieToConnections;
64 std::map<int64_t, void *> mConnectionToCookie;
65 std::map<int64_t, const std::weak_ptr<Accessor>> mAccessors;
206 std::map<uint32_t, const std::weak_ptr<Accessor>> mAccessors;
219 std::map<uint32_t, const std::weak_ptr<Accessor>> &accessors,
225 std::map<const std::weak_ptr<Accessor>, nsecs_t, std::owner_less<>> mAccessors;
236 std::map<const std::weak_ptr<Accessor>, nsecs_t, std::owner_less<>> &accessors,
DBufferPool.h55 std::map<ConnectionId, std::set<BufferId>> mUsingBuffers;
56 std::map<BufferId, std::set<ConnectionId>> mUsingConnections;
58 std::map<ConnectionId, std::set<TransactionId>> mPendingTransactions;
64 std::map<TransactionId, std::unique_ptr<TransactionStatus>>
67 std::map<BufferId, std::unique_ptr<InternalBuffer>> mBuffers;
95 std::map<ConnectionId, uint32_t> mAcks;
96 std::map<ConnectionId, const std::shared_ptr<IObserver>> mObservers;
118 std::map<ConnectionId, const std::shared_ptr<IObserver>> *observers,
/hardware/interfaces/tv/tuner/1.1/default/
DTuner.h80 map<uint32_t, sp<Frontend>> mFrontends;
81 map<uint32_t, FrontendInfo::FrontendCapabilities> mFrontendCaps;
82 map<uint32_t, vector<FrontendStatusType>> mFrontendStatusCaps;
84 map<uint32_t, uint32_t> mFrontendToDemux;
85 map<uint32_t, sp<Demux>> mDemuxes;
/hardware/google/pixel/powerstats/include/dataproviders/
DPowerStatsEnergyConsumer.h53 std::string powerEntityName, std::map<std::string, int32_t> stateCoeffs);
58 std::map<std::string, int32_t> stateCoeffs);
63 std::map<std::string, int32_t> stateCoeffs);
75 bool addPowerEntity(std::string powerEntityName, std::map<std::string, int32_t> stateCoeffs);
77 std::map<std::string, int32_t> stateCoeffs);
94 std::map<int32_t, int32_t> mCoefficients; // key = stateId, val = coefficients (mW)
/hardware/interfaces/tv/tuner/1.0/default/
DTuner.h74 map<uint32_t, sp<Frontend>> mFrontends;
75 map<uint32_t, FrontendInfo::FrontendCapabilities> mFrontendCaps;
76 map<uint32_t, uint32_t> mFrontendToDemux;
77 map<uint32_t, sp<Demux>> mDemuxes;
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/
DVK_EXT_non_seamless_cube_map.adoc13 When sampling near an edge, instead of interpolating between two texels on the neighboring cube map
22 …ehind this solution is to represent cube map textures as 2D array textures with 6 layers, one for …
23 Cube map coordinates can then be transformed to a face index and a 2D coordinate within this face, …
31 A new per sampler setting to allow to select if cube map edge sampling is seamless can be introduce…
48 Using `VK_SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT` disables seamless cube map edge handling.
52 As an example, if an application creates a cube map and wants to always clamp to the edge within th…
/hardware/google/aemu/host-common/include/host-common/
DMediaTexturePool.h56 std::map<TexSizes, PoolHandle> m_WH_to_PoolHandle;
57 std::map<TexFrame, TexSizes> m_Frame_to_WH;
58 std::map<TexFrame, PoolHandle> m_Frame_to_PoolHandle;
/hardware/nxp/keymint/KM200/
DCborConverter.cpp52 Map map; in addKeyparameters() local
53 std::map<uint64_t, vector<uint8_t>> enum_repetition; in addKeyparameters()
54 std::map<uint64_t, Array> uint_repetition; in addKeyparameters()
59 map.add(static_cast<uint64_t>(param.tag), param.enumerated); in addKeyparameters()
62 map.add(static_cast<uint64_t>(param.tag), param.integer); in addKeyparameters()
72 map.add(static_cast<uint64_t>(param.tag), param.long_integer); in addKeyparameters()
79 map.add(static_cast<uint64_t>(param.tag), param.date_time); in addKeyparameters()
82 map.add(static_cast<uint64_t>(param.tag), static_cast<uint8_t>(param.boolean)); in addKeyparameters()
86 map.add(static_cast<uint64_t>(param.tag & 0x00000000ffffffff), in addKeyparameters()
97 map.add(key, std::move(bstr)); in addKeyparameters()
[all …]
/hardware/google/camera/common/hal/google_camera_hal/
Ddual_ir_result_request_processor.h89 std::map<uint32_t, std::unique_ptr<HalCameraMetadata>> physical_metadata;
105 std::map<uint32_t, std::unique_ptr<HalCameraMetadata>>* physical_metadata);
117 std::map<int32_t, uint32_t> stream_camera_ids_;
123 std::map<uint32_t, PendingResultMetadata> pending_result_metadata_;

12345678910>>...27