Home
last modified time | relevance | path

Searched refs:mapId (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/xeen/
H A Dmap.cpp661 if (mapId >= 113 && mapId <= 127) { in load()
754 (mapId == 42 || mapId == 43 || mapId == 4)) { in load()
907 if (files._ccNum && (mapId == 125 || mapId == 126 || mapId == 127)) in load()
1010 if ((mapId >= 89 && mapId <= 112) || mapId == 128 || mapId == 129) in load()
1013 if (mapId >= 25 && mapId <= 27) in load()
1270 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
1271 mapId == 125 || mapId == 126 || mapId == 128 || mapId == 129) { in getCell()
1303 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
1304 mapId == 125 || mapId == 126 || mapId == 128 || mapId == 129) { in getCell()
1339 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/xeen/
H A Dmap.cpp682 if (mapId >= 113 && mapId <= 127) { in load()
775 (mapId == 42 || mapId == 43 || mapId == 4)) { in load()
927 if (files._ccNum && (mapId == 125 || mapId == 126 || mapId == 127)) in load()
1029 if ((mapId >= 89 && mapId <= 112) || mapId == 128 || mapId == 129) in load()
1032 if (mapId >= 25 && mapId <= 27) in load()
1289 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
1290 mapId == 125 || mapId == 126 || mapId == 128 || mapId == 129) { in getCell()
1322 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
1323 mapId == 125 || mapId == 126 || mapId == 128 || mapId == 129) { in getCell()
1358 if ((mapId >= 53 && mapId <= 88 && mapId != 73) || (mapId >= 74 && mapId <= 120) || in getCell()
[all …]
/dports/graphics/cal3d/cal3d-20060720/src/cal3d/
H A Dcorematerial.cpp78 const std::string& CalCoreMaterial::getMapFilename(int mapId) const in getMapFilename()
81 if((mapId < 0) || (mapId >= (int)m_vectorMap.size())) in getMapFilename()
88 return m_vectorMap[mapId].strFilename; in getMapFilename()
104 Cal::UserData CalCoreMaterial::getMapUserData(int mapId) in getMapUserData() argument
107 if((mapId < 0) || (mapId >= (int)m_vectorMap.size())) in getMapUserData()
113 return m_vectorMap[mapId].userData; in getMapUserData()
230 bool CalCoreMaterial::setMap(int mapId, const Map& map) in setMap() argument
232 if((mapId < 0) || (mapId >= (int)m_vectorMap.size())) return false; in setMap()
234 m_vectorMap[mapId] = map; in setMap()
255 if((mapId < 0) || (mapId >= (int)m_vectorMap.size())) return false; in setMapUserData()
[all …]
H A Dhardwaremodel.cpp170 if( 0 <= mapId && mapId < 8) in setTextureCoordBuffer()
173 m_textureCoordStride[mapId] = stride; in setTextureCoordBuffer()
190 if( 0 <= mapId && mapId < 8) in setTangentSpaceBuffer()
559 if((mapId < 0) || (mapId >= (int)vectorMap.size())) in getMapUserData()
565 return vectorMap[mapId].userData; in getMapUserData()
595 int mapId; in load() local
596 for(mapId = 0; mapId < m_textureCoordNum; mapId++) in load()
759 size_t mapId; in addVertex() local
760 for(mapId = 0; int(mapId) < m_textureCoordNum; mapId++) in addVertex()
769 for(mapId = 0; mapId < 8 ; mapId++) in addVertex()
[all …]
H A Dcoresubmesh.cpp119 bool CalCoreSubmesh::isTangentsEnabled(int mapId) const in isTangentsEnabled()
121 if((mapId < 0) || (mapId >= (int)m_vectorTangentsEnabled.size())) return false; in isTangentsEnabled()
123 return m_vectorTangentsEnabled[mapId]; in isTangentsEnabled()
163 m_vectorvectorTangentSpace[mapId][v0].tangent+=tangent; in UpdateTangentVector()
173 bool CalCoreSubmesh::enableTangents(int mapId, bool enabled) in enableTangents() argument
175 if((mapId < 0) || (mapId >= (int)m_vectorTangentsEnabled.size())) return false; in enableTangents()
177 m_vectorTangentsEnabled[mapId] = enabled; in enableTangents()
181 m_vectorvectorTangentSpace[mapId].clear(); in enableTangents()
185 m_vectorvectorTangentSpace[mapId].reserve(m_vectorVertex.size()); in enableTangents()
186 m_vectorvectorTangentSpace[mapId].resize(m_vectorVertex.size()); in enableTangents()
[all …]
H A Drenderer.cpp230 Cal::UserData CalRenderer::getMapUserData(int mapId) in getMapUserData() argument
241 if((mapId < 0) || (mapId >= (int)vectorMap.size())) in getMapUserData()
247 return vectorMap[mapId].userData; in getMapUserData()
281 int CalRenderer::getTangentSpaces(int mapId, float *pTangentSpaceBuffer, int stride) in getTangentSpaces() argument
287 …if((mapId < 0) || (mapId >= (int)vectorvectorTangentSpace.size()) || !m_pSelectedSubmesh->isTangen… in getTangentSpaces()
468 int CalRenderer::getTextureCoordinates(int mapId, float *pTextureCoordinateBuffer, int stride) in getTextureCoordinates() argument
474 if((mapId < 0) || (mapId >= (int)vectorvectorTextureCoordinate.size())) in getTextureCoordinates()
495 …memcpy(&pBuffer[0], &vectorvectorTextureCoordinate[mapId][i], sizeof(CalCoreSubmesh::TextureCoordi… in getTextureCoordinates()
525 bool CalRenderer::isTangentsEnabled(int mapId) const in isTangentsEnabled()
527 return m_pSelectedSubmesh->isTangentsEnabled(mapId); in isTangentsEnabled()
[all …]
H A Dsubmesh.cpp259 bool CalSubmesh::isTangentsEnabled(int mapId) const in isTangentsEnabled()
261 return m_pCoreSubmesh->isTangentsEnabled(mapId); in isTangentsEnabled()
270 bool CalSubmesh::enableTangents(int mapId, bool enabled) in enableTangents() argument
272 if(!m_pCoreSubmesh->enableTangents(mapId,enabled)) in enableTangents()
280 m_vectorvectorTangentSpace[mapId].clear(); in enableTangents()
284 m_vectorvectorTangentSpace[mapId].reserve(m_pCoreSubmesh->getVertexCount()); in enableTangents()
285 m_vectorvectorTangentSpace[mapId].resize(m_pCoreSubmesh->getVertexCount()); in enableTangents()
288 …Submesh::TangentSpace >& vectorTangentSpace = m_pCoreSubmesh->getVectorVectorTangentSpace()[mapId]; in enableTangents()
295 m_vectorvectorTangentSpace[mapId][vertexId].tangent=vectorTangentSpace[vertexId].tangent; in enableTangents()
296 … m_vectorvectorTangentSpace[mapId][vertexId].crossFactor=vectorTangentSpace[vertexId].crossFactor; in enableTangents()
/dports/devel/qt5-location/kde-qtlocation-5.15.2p6/src/plugins/geoservices/osm/
H A Dqgeofiletilecacheosm.cpp88 int mapId = m_providers[i]->mapType().mapId(); in onProviderResolutionFinished() local
92 dropTiles(mapId); in onProviderResolutionFinished()
93 loadTiles(mapId); in onProviderResolutionFinished()
96 emit mapDataUpdated(mapId); in onProviderResolutionFinished()
120 if (p->mapType().mapId() > max) in init()
152 int providerId = spec.mapId() - 1; in getFromOfflineStorage()
182 if (k.mapId() == mapId) in dropTiles()
187 if (k.mapId() == mapId) in dropTiles()
192 if (k.mapId() == mapId) in dropTiles()
206 if (spec.zoom() == -1 || spec.mapId() != mapId) in loadTiles()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DIndexCache.java63 IndexInformation info = cache.get(mapId); in getIndexInformation()
77 LOG.debug("IndexCache HIT: MapId " + mapId + " found"); in getIndexInformation()
83 " Map Id = " + mapId + " Reducer = " + reduce + in getIndexInformation()
93 if ((info = cache.putIfAbsent(mapId, newInd)) != null) { in readIndexFileToCache()
103 LOG.debug("IndexCache HIT: MapId " + mapId + " found"); in readIndexFileToCache()
112 cache.remove(mapId); in readIndexFileToCache()
120 queue.add(mapId); in readIndexFileToCache()
133 public void removeMap(String mapId) { in removeMap() argument
134 IndexInformation info = cache.remove(mapId); in removeMap()
137 if (!queue.remove(mapId)) { in removeMap()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/
H A DIndexCache.java65 IndexInformation info = cache.get(mapId); in getIndexInformation()
79 LOG.debug("IndexCache HIT: MapId " + mapId + " found"); in getIndexInformation()
85 " Map Id = " + mapId + " Reducer = " + reduce + in getIndexInformation()
103 if ((info = cache.putIfAbsent(mapId, newInd)) != null) { in readIndexFileToCache()
122 cache.remove(mapId); in readIndexFileToCache()
130 queue.add(mapId); in readIndexFileToCache()
146 public void removeMap(String mapId) { in removeMap() argument
147 IndexInformation info = cache.get(mapId); in removeMap()
151 info = cache.remove(mapId); in removeMap()
154 if (!queue.remove(mapId)) { in removeMap()
[all …]
/dports/devel/qt5-location/kde-qtlocation-5.15.2p6/src/plugins/geoservices/mapboxgl/
H A Dqgeomappingmanagerenginemapboxgl.cpp69 int mapId = 0; in QGeoMappingManagerEngineMapboxGL() local
88 tr("China Streets"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
90 tr("China Light"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
92 tr("China Dark"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
95 tr("Streets"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
97 tr("Basic"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
99 tr("Bright"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
101 tr("Outdoors"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
103 tr("Satellite"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
107 tr("Light"), false, false, ++mapId, pluginName, cameraCaps, metadata); in QGeoMappingManagerEngineMapboxGL()
[all …]
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/storage/
H A DBlockId.scala59 case class ShuffleBlockId(shuffleId: Int, mapId: Int, reduceId: Int) extends BlockId {
60 override def name: String = "shuffle_" + shuffleId + "_" + mapId + "_" + reduceId
64 case class ShuffleDataBlockId(shuffleId: Int, mapId: Int, reduceId: Int) extends BlockId {
65 override def name: String = "shuffle_" + shuffleId + "_" + mapId + "_" + reduceId + ".data"
69 case class ShuffleIndexBlockId(shuffleId: Int, mapId: Int, reduceId: Int) extends BlockId {
118 case SHUFFLE(shuffleId, mapId, reduceId) =>
119 ShuffleBlockId(shuffleId.toInt, mapId.toInt, reduceId.toInt)
120 case SHUFFLE_DATA(shuffleId, mapId, reduceId) =>
121 ShuffleDataBlockId(shuffleId.toInt, mapId.toInt, reduceId.toInt)
122 case SHUFFLE_INDEX(shuffleId, mapId, reduceId) =>
[all …]
/dports/devel/qt5-location/kde-qtlocation-5.15.2p6/src/plugins/geoservices/nokia/
H A Dqgeotiledmappingmanagerengine_nokia.cpp93 int mapId = 0; in QGeoTiledMappingManagerEngineNokia() local
96 …tr("Street Map"), tr("Normal map view in daylight mode"), false, false, ++mapId, pluginName, capab… in QGeoTiledMappingManagerEngineNokia()
97 …tellite Map"), tr("Satellite map view in daylight mode"), false, false, ++mapId, pluginName, capab… in QGeoTiledMappingManagerEngineNokia()
98 …("Terrain Map"), tr("Terrain map view in daylight mode"), false, false, ++mapId, pluginName, capab… in QGeoTiledMappingManagerEngineNokia()
107 …tom Street Map"), tr("Normal map view in daylight mode"), false, false, ++mapId, pluginName, capab… in QGeoTiledMappingManagerEngineNokia()
108 …("Night Street Map"), tr("Normal map view in night mode"), false, true, ++mapId, pluginName, capab… in QGeoTiledMappingManagerEngineNokia()
239 QString QGeoTiledMappingManagerEngineNokia::getScheme(int mapId) in getScheme() argument
241 return m_mapSchemes[mapId]; in getScheme()
244 QString QGeoTiledMappingManagerEngineNokia::getBaseScheme(int mapId) in getBaseScheme() argument
246 QString fullScheme(m_mapSchemes[mapId]); in getBaseScheme()
[all …]
H A Dqgeotilefetcher_nokia.cpp99 if ((spec.mapId() == 2) || (spec.mapId() == 12) || (spec.mapId() == 21)) { in getTileImage()
101 } else if ((spec.mapId() >= 7 && spec.mapId() <= 11) in getTileImage()
102 || (spec.mapId() == 14) in getTileImage()
103 || (spec.mapId() == 16) in getTileImage()
104 || (spec.mapId() == 18) in getTileImage()
105 || (spec.mapId() == 20)) { in getTileImage()
136 const QString mapScheme = m_engineNokia->getScheme(spec.mapId()); in getRequestString()
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/shuffle/
H A DIndexShuffleBlockResolver.scala54 def getDataFile(shuffleId: Int, mapId: Int): File = {
55 blockManager.diskBlockManager.getFile(ShuffleDataBlockId(shuffleId, mapId, NOOP_REDUCE_ID))
58 private def getIndexFile(shuffleId: Int, mapId: Int): File = {
65 def removeDataByMap(shuffleId: Int, mapId: Int): Unit = {
66 var file = getDataFile(shuffleId, mapId)
73 file = getIndexFile(shuffleId, mapId)
138 mapId: Int,
141 val indexFile = getIndexFile(shuffleId, mapId)
157 val dataFile = getDataFile(shuffleId, mapId)
197 val indexFile = getIndexFile(blockId.shuffleId, blockId.mapId)
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/shared/maps/
H A Dmap.cpp37 void Map::load(MapId mapId) { in load() argument
42 int mapId; in synchronize() local
46 mapId = _mapArea->getMapId(); in synchronize()
47 s.syncAsUint16LE(mapId); in synchronize()
50 s.syncAsUint16LE(mapId); in synchronize()
51 load(mapId); in synchronize()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/ultima1/maps/
H A Dmap.cpp57 void Ultima1Map::load(Shared::Maps::MapId mapId) { in load() argument
62 Shared::Maps::Map::load(mapId); in load()
65 if (mapId == MAPID_OVERWORLD) { in load()
68 } else if (mapId < 33) { in load()
71 } else if (mapId < 41) { in load()
74 } else if (mapId < 49) { in load()
82 _mapArea->load(mapId); in load()
/dports/www/squid/squid-4.15/src/ipc/
H A DSharedListen.cc71 Ipc::SharedListenRequest::SharedListenRequest(): requestorId(-1), mapId(-1) in SharedListenRequest()
89 fd(aFd), errNo(anErrNo), mapId(aMapId) in SharedListenResponse()
94 fd(-1), errNo(0), mapId(-1) in SharedListenResponse()
115 request.mapId = AddToMap(por); in SendSharedListenRequest()
118 " mapId=" << request.mapId); in SendSharedListenRequest()
159 response.errNo << " mapId=" << response.mapId << " with " << in SharedListenJoined()
163 Must(TheSharedListenRequestMap.find(response.mapId) != TheSharedListenRequestMap.end()); in SharedListenJoined()
164 PendingOpenRequest por = TheSharedListenRequestMap[response.mapId]; in SharedListenJoined()
166 TheSharedListenRequestMap.erase(response.mapId); in SharedListenJoined()
/dports/devel/qt5-location/kde-qtlocation-5.15.2p6/src/location/maps/
H A Dqgeotilespec.cpp47 QGeoTileSpec::QGeoTileSpec(const QString &plugin, int mapId, int zoom, int x, int y, int version) in QGeoTileSpec() argument
48 …: d(QSharedDataPointer<QGeoTileSpecPrivate>(new QGeoTileSpecPrivate(plugin, mapId, zoom, x, y, ver… in QGeoTileSpec()
100 void QGeoTileSpec::setMapId(int mapId) in setMapId() argument
102 d->mapId_ = mapId; in setMapId()
105 int QGeoTileSpec::mapId() const in mapId() function in QGeoTileSpec
133 result += ((spec.mapId() * 17) % 31) << 5; in qHash()
143 dbg << spec.plugin() << spec.mapId() << spec.zoom() << spec.x() << spec.y() << spec.version(); in operator <<()
163 QGeoTileSpecPrivate::QGeoTileSpecPrivate(const QString &plugin, int mapId, int zoom, int x, int y, … in QGeoTileSpecPrivate() argument
165 mapId_(mapId), in QGeoTileSpecPrivate()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/
H A DFetcher.java474 TaskAttemptID mapId = null; in copyMapOutput() local
485 mapId = TaskAttemptID.forName(header.mapId); in copyMapOutput()
503 remaining, mapId)) { in copyMapOutput()
504 return new TaskAttemptID[] {mapId}; in copyMapOutput()
552 remaining.remove(mapId); in copyMapOutput()
567 mapId + " decomp: " + in copyMapOutput()
569 if(mapId == null) { in copyMapOutput()
581 return new TaskAttemptID[] {mapId}; in copyMapOutput()
637 if (!remaining.contains(mapId)) { in verifySanity()
660 for (TaskAttemptID mapId : maps) { in getMapOutputURL()
[all …]
H A DShuffleHeader.java50 String mapId; field in ShuffleHeader
57 public ShuffleHeader(String mapId, long compressedLength, in ShuffleHeader() argument
59 this.mapId = mapId; in ShuffleHeader()
66 mapId = WritableUtils.readStringSafely(in, MAX_ID_LENGTH); in readFields()
73 Text.writeString(out, mapId); in write()
H A DMapOutput.java39 private final TaskAttemptID mapId; field in MapOutput
43 public MapOutput(TaskAttemptID mapId, long size, boolean primaryMapOutput) { in MapOutput() argument
45 this.mapId = mapId; in MapOutput()
68 return mapId; in getMapId()
88 return "MapOutput(" + mapId + ", " + getDescription() + ")"; in toString()
H A DShuffleSchedulerImpl.java184 public synchronized void copySucceeded(TaskAttemptID mapId, in copySucceeded() argument
191 failureCounts.remove(mapId); in copySucceeded()
193 int mapIndex = mapId.getTaskID().getId(); in copySucceeded()
258 if (failureCounts.containsKey(mapId)) { in copyFailed()
259 IntWritable x = failureCounts.get(mapId); in copyFailed()
263 failureCounts.put(mapId, new IntWritable(1)); in copyFailed()
315 int failures, TaskAttemptID mapId, boolean readError, in checkAndInformMRAppMaster() argument
383 TaskAttemptID mapId) { in addKnownMapOutput() argument
389 host.addKnownMap(mapId); in addKnownMapOutput()
400 obsoleteMaps.add(mapId); in obsoleteMapOutput()
[all …]
/dports/devel/doxygen/doxygen-1.9.3/src/
H A Ddotfilepatcher.cpp391 int mapId=-1; in run() local
394 if (n==1 && mapId>=0 && mapId<(int)m_maps.size()) in run()
397 const Map &map = m_maps.at(mapId); in run()
414 int mapId=-1; in run() local
417 if (n==1 && mapId>=0 && mapId<(int)m_maps.size()) in run()
420 const Map &map = m_maps.at(mapId); in run()
439 int mapId=-1; in run() local
440 int n = sscanf(line.data()+i+2,"FIG %d",&mapId); in run()
442 if (n==1 && mapId>=0 && mapId<(int)m_maps.size()) in run()
444 const Map &map = m_maps.at(mapId); in run()
[all …]
/dports/net-mgmt/zabbix4-server/zabbix-4.0.30/frontends/php/include/classes/import/importers/
H A DCMapImporter.php44 $mapId = $this->referencer->resolveMap($mapWithoutElements['name']);
45 if ($mapId) {
47 $mapWithoutElements['sysmapid'] = $mapId;
48 $maps[$mapName]['sysmapid'] = $mapId;
60 $mapId = $newMapIds['sysmapids'][$num];
61 $this->referencer->addMapRef($map['name'], $mapId);
63 $maps[$map['name']]['sysmapid'] = $mapId;

12345678910>>...12