Home
last modified time | relevance | path

Searched refs:ReadUInt (Results 1 – 25 of 154) sorted by relevance

1234567

/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/global/actors/
H A Dglobal_character.cpp370 SetHitPoints(file.ReadUInt("hit_points")); in LoadCharacter()
376 SetPhysAtk(file.ReadUInt("strength")); in LoadCharacter()
377 SetMagAtk(file.ReadUInt("vigor")); in LoadCharacter()
380 SetStamina(file.ReadUInt("agility")); in LoadCharacter()
383 SetPhysAtk(file.ReadUInt("phys_atk")); in LoadCharacter()
384 SetMagAtk(file.ReadUInt("mag_atk")); in LoadCharacter()
385 SetPhysDef(file.ReadUInt("phys_def")); in LoadCharacter()
386 SetMagDef(file.ReadUInt("mag_def")); in LoadCharacter()
387 SetStamina(file.ReadUInt("stamina")); in LoadCharacter()
396 equip_id = file.ReadUInt("weapon"); in LoadCharacter()
[all …]
H A Dglobal_enemy.cpp104 _max_hit_points = enemy_data.ReadUInt("hit_points"); in GlobalEnemy()
106 _max_skill_points = enemy_data.ReadUInt("skill_points"); in GlobalEnemy()
108 _experience_points = enemy_data.ReadUInt("experience_points"); in GlobalEnemy()
109 _char_phys_atk.SetBase(enemy_data.ReadUInt("phys_atk")); in GlobalEnemy()
110 _char_mag_atk.SetBase(enemy_data.ReadUInt("mag_atk")); in GlobalEnemy()
111 _char_phys_def.SetBase(enemy_data.ReadUInt("phys_def")); in GlobalEnemy()
112 _char_mag_def.SetBase(enemy_data.ReadUInt("mag_def")); in GlobalEnemy()
113 _stamina.SetBase(enemy_data.ReadUInt("stamina")); in GlobalEnemy()
115 _drunes_dropped = enemy_data.ReadUInt("drunes"); in GlobalEnemy()
138 _skill_set.push_back(enemy_data.ReadUInt(i)); in GlobalEnemy()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS/FedAuthInfo/
H A DTDSFedAuthInfoToken.cs53 uint tokenLength = TDSUtilities.ReadUInt(source); in Inflate()
54 uint countOfIds = TDSUtilities.ReadUInt(source); in Inflate()
72 infoDataLength = TDSUtilities.ReadUInt(source); in Inflate()
73 infoDataOffset = TDSUtilities.ReadUInt(source); in Inflate()
82 infoDataLength = TDSUtilities.ReadUInt(source); in Inflate()
83 infoDataOffset = TDSUtilities.ReadUInt(source); in Inflate()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/
H A DModel.cpp100 unsigned numVertexBuffers = source.ReadUInt(); in BeginLoad()
109 desc.vertexCount_ = source.ReadUInt(); in BeginLoad()
129 morphRangeStarts_[i] = source.ReadUInt(); in BeginLoad()
130 morphRangeCounts_[i] = source.ReadUInt(); in BeginLoad()
163 unsigned indexCount = source.ReadUInt(); in BeginLoad()
164 unsigned indexSize = source.ReadUInt(); in BeginLoad()
193 unsigned numGeometries = source.ReadUInt(); in BeginLoad()
204 boneMapping[j] = source.ReadUInt(); in BeginLoad()
217 unsigned vbRef = source.ReadUInt(); in BeginLoad()
218 unsigned ibRef = source.ReadUInt(); in BeginLoad()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/IO/
H A DPackageFile.cpp72 unsigned newStartOffset = fileSize - file->ReadUInt(); in Open()
93 unsigned numFiles = file->ReadUInt(); in Open()
94 checksum_ = file->ReadUInt(); in Open()
100 newEntry.offset_ = file->ReadUInt() + startOffset; in Open()
101 totalDataSize_ += (newEntry.size_ = file->ReadUInt()); in Open()
102 newEntry.checksum_ = file->ReadUInt(); in Open()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/global/maps/
H A Dmap_data_handler.cpp62 _x_save_map_position = file.ReadUInt("location_x"); in Load()
63 _y_save_map_position = file.ReadUInt("location_y"); in Load()
65 _save_stamina = file.ReadUInt("stamina"); in Load()
71 uint32_t x_pos = file.ReadUInt("location_x"); in Load()
72 uint32_t y_pos = file.ReadUInt("location_y"); in Load()
/dports/games/allacrost/allacrost-1.0.2/src/common/global/
H A Dglobal.cpp736 hours = file.ReadUInt("play_hours"); in LoadGame()
737 minutes = file.ReadUInt("play_minutes"); in LoadGame()
738 seconds = file.ReadUInt("play_seconds"); in LoadGame()
740 _drunes = file.ReadUInt("drunes"); in LoadGame()
1077 character->SetVigor(file.ReadUInt("vigor")); in _LoadCharacter()
1080 character->SetAgility(file.ReadUInt("agility")); in _LoadCharacter()
1088 equip_id = file.ReadUInt("weapon"); in _LoadCharacter()
1093 equip_id = file.ReadUInt("head_armor"); in _LoadCharacter()
1098 equip_id = file.ReadUInt("torso_armor"); in _LoadCharacter()
1103 equip_id = file.ReadUInt("arm_armor"); in _LoadCharacter()
[all …]
H A Dglobal_objects.cpp40 _price = script.ReadUInt("standard_price"); in _LoadObjectData()
182 _physical_attack = script_file.ReadUInt("physical_attack"); in GlobalWeapon()
183 _metaphysical_attack = script_file.ReadUInt("metaphysical_attack"); in GlobalWeapon()
184 _usable_by = script_file.ReadUInt("usable_by"); in GlobalWeapon()
250 _physical_defense = script_file->ReadUInt("physical_defense"); in GlobalArmor()
251 _metaphysical_defense = script_file->ReadUInt("metaphysical_defense"); in GlobalArmor()
252 _usable_by = script_file->ReadUInt("usable_by"); in GlobalArmor()
H A Dglobal_actors.cpp1088 _strength = char_script.ReadUInt("strength"); in GlobalCharacter()
1089 _vigor = char_script.ReadUInt("vigor"); in GlobalCharacter()
1090 _fortitude = char_script.ReadUInt("fortitude"); in GlobalCharacter()
1092 _agility = char_script.ReadUInt("agility"); in GlobalCharacter()
1097 equipment_id = char_script.ReadUInt("weapon"); in GlobalCharacter()
1364 _strength = enemy_data.ReadUInt("strength"); in GlobalEnemy()
1365 _vigor = enemy_data.ReadUInt("vigor"); in GlobalEnemy()
1366 _fortitude = enemy_data.ReadUInt("fortitude"); in GlobalEnemy()
1367 _protection = enemy_data.ReadUInt("protection"); in GlobalEnemy()
1368 _agility = enemy_data.ReadUInt("agility"); in GlobalEnemy()
[all …]
H A Dglobal_skills.cpp78 _sp_required = skill_script->ReadUInt("sp_required"); in GlobalSkill()
79 _warmup_time = skill_script->ReadUInt("warmup_time"); in GlobalSkill()
80 _cooldown_time = skill_script->ReadUInt("cooldown_time"); in GlobalSkill()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/global/objects/
H A Dglobal_armor.cpp65 _physical_defense = script_file->ReadUInt("physical_defense"); in GlobalArmor()
66 _magical_defense = script_file->ReadUInt("magical_defense"); in GlobalArmor()
68 _usable_by = script_file->ReadUInt("usable_by"); in GlobalArmor()
70 uint32_t spirits_number = script_file->ReadUInt("slots"); in GlobalArmor()
H A Dglobal_weapon.cpp46 _physical_attack = script_file.ReadUInt("physical_attack"); in GlobalWeapon()
47 _magical_attack = script_file.ReadUInt("magical_attack"); in GlobalWeapon()
49 _usable_by = script_file.ReadUInt("usable_by"); in GlobalWeapon()
51 uint32_t spirits_number = script_file.ReadUInt("slots"); in GlobalWeapon()
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/pylib/dex/
H A Ddex_parser.py121 factory = lambda x: _TypeIdItem(x.ReadUInt())
128 factory = lambda x: _ProtoIdItem(x.ReadUInt(), x.ReadUInt(), x.ReadUInt())
136 lambda x: _MethodIdItem(x.ReadUShort(), x.ReadUShort(), x.ReadUInt()))
144 string_item_offsets = iter([reader.ReadUInt() for _ in xrange(size)])
158 size = reader.ReadUInt()
184 return _ClassDefItem(*(x.ReadUInt()
195 self.size = reader.ReadUInt()
196 self.offset = reader.ReadUInt()
211 self._size = reader.ReadUInt()
244 def ReadUInt(self): member in _DexReader
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/build/android/pylib/dex/
H A Ddex_parser.py121 factory = lambda x: _TypeIdItem(x.ReadUInt())
128 factory = lambda x: _ProtoIdItem(x.ReadUInt(), x.ReadUInt(), x.ReadUInt())
136 lambda x: _MethodIdItem(x.ReadUShort(), x.ReadUShort(), x.ReadUInt()))
144 string_item_offsets = iter([reader.ReadUInt() for _ in xrange(size)])
158 size = reader.ReadUInt()
184 return _ClassDefItem(*(x.ReadUInt()
195 self.size = reader.ReadUInt()
196 self.offset = reader.ReadUInt()
211 self._size = reader.ReadUInt()
244 def ReadUInt(self): member in _DexReader
/dports/lang/v8/v8-9.6.180.12/build/android/pylib/dex/
H A Ddex_parser.py121 factory = lambda x: _TypeIdItem(x.ReadUInt())
128 factory = lambda x: _ProtoIdItem(x.ReadUInt(), x.ReadUInt(), x.ReadUInt())
136 lambda x: _MethodIdItem(x.ReadUShort(), x.ReadUShort(), x.ReadUInt()))
144 string_item_offsets = iter([reader.ReadUInt() for _ in range(size)])
158 size = reader.ReadUInt()
184 return _ClassDefItem(*(x.ReadUInt()
195 self.size = reader.ReadUInt()
196 self.offset = reader.ReadUInt()
211 self._size = reader.ReadUInt()
244 def ReadUInt(self): member in _DexReader
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/pylib/dex/
H A Ddex_parser.py121 factory = lambda x: _TypeIdItem(x.ReadUInt())
128 factory = lambda x: _ProtoIdItem(x.ReadUInt(), x.ReadUInt(), x.ReadUInt())
136 lambda x: _MethodIdItem(x.ReadUShort(), x.ReadUShort(), x.ReadUInt()))
144 string_item_offsets = iter([reader.ReadUInt() for _ in xrange(size)])
158 size = reader.ReadUInt()
184 return _ClassDefItem(*(x.ReadUInt()
195 self.size = reader.ReadUInt()
196 self.offset = reader.ReadUInt()
211 self._size = reader.ReadUInt()
244 def ReadUInt(self): member in _DexReader
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS/Login7/
H A DTDSLogin7Token.cs204 uint length = TDSUtilities.ReadUInt(source); in Inflate()
207 string tdsVersion = String.Format("{0:X}", TDSUtilities.ReadUInt(source)); in Inflate()
213 PacketSize = TDSUtilities.ReadUInt(source); in Inflate()
216 ClientProgramVersion = TDSUtilities.ReadUInt(source); in Inflate()
219 ClientPID = TDSUtilities.ReadUInt(source); in Inflate()
222 ConnectionID = TDSUtilities.ReadUInt(source); in Inflate()
240 ClientLCID = TDSUtilities.ReadUInt(source); in Inflate()
295 uint sspiLength = TDSUtilities.ReadUInt(source); in Inflate()
372 property.Position = TDSUtilities.ReadUInt(source); in Inflate()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Resource/
H A DImage.cpp534 unsigned type = source.ReadUInt(); in BeginLoad()
536 unsigned format = source.ReadUInt(); in BeginLoad()
539 unsigned width = source.ReadUInt(); in BeginLoad()
540 unsigned height = source.ReadUInt(); in BeginLoad()
541 unsigned depth = source.ReadUInt(); in BeginLoad()
543 unsigned faces = source.ReadUInt(); in BeginLoad()
544 unsigned mipmaps = source.ReadUInt(); in BeginLoad()
657 unsigned height = source.ReadUInt(); in BeginLoad()
658 unsigned width = source.ReadUInt(); in BeginLoad()
659 unsigned depth = source.ReadUInt(); in BeginLoad()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Audio/
H A DSound.cpp141 header.totalLength_ = source.ReadUInt(); in LoadWav()
154 header.formatLength_ = source.ReadUInt(); in LoadWav()
169 header.frequency_ = source.ReadUInt(); in LoadWav()
170 header.avgBytes_ = source.ReadUInt(); in LoadWav()
188 header.dataLength_ = source.ReadUInt(); in LoadWav()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/save/
H A Dsave_mode.cpp599 character.SetExperienceLevel(file.ReadUInt("experience_level")); in _PreviewGame()
601 uint32_t total_xp = file.ReadUInt("experience_points"); in _PreviewGame()
603 total_xp = file.ReadUInt("total_experience_points"); in _PreviewGame()
606 character.SetUnspentExperiencePoints(file.ReadUInt("unspent_experience_points")); in _PreviewGame()
607 character.AddExperienceForNextLevel(file.ReadUInt("experience_points_next")); in _PreviewGame()
609 character.SetMaxHitPoints(file.ReadUInt("max_hit_points")); in _PreviewGame()
610 character.SetHitPoints(file.ReadUInt("hit_points")); in _PreviewGame()
611 character.SetMaxSkillPoints(file.ReadUInt("max_skill_points")); in _PreviewGame()
612 character.SetSkillPoints(file.ReadUInt("skill_points")); in _PreviewGame()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS/ColMetadata/
H A DTDSColumnData.cs62 UserType = TDSUtilities.ReadUInt(source); in Inflate()
138 typedSpecific.Collation.WCID = TDSUtilities.ReadUInt(source); in Inflate()
154 DataTypeSpecific = TDSUtilities.ReadUInt(source); in Inflate()
160 DataTypeSpecific = TDSUtilities.ReadUInt(source); in Inflate()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/global/skill_graph/
H A Dskill_graph.cpp49 uint32_t experience_points_needed = script.ReadUInt("experience_points_needed"); in Initialize()
98 uint32_t item_number = script.ReadUInt(item_id); in _ReadItemsNeeded()
116 uint32_t upgrade = script.ReadUInt(stat_id); in _ReadStatsUpgrades()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/ntlm/
H A Dntlm_buffer_reader.cc33 return ReadUInt<uint16_t>(value); in ReadUInt16()
37 return ReadUInt<uint32_t>(value); in ReadUInt32()
41 return ReadUInt<uint64_t>(value); in ReadUInt64()
281 bool NtlmBufferReader::ReadUInt(T* value) { in ReadUInt() function in net::ntlm::NtlmBufferReader
/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/global/
H A Dglobal.cpp288 hours = file.ReadUInt("play_hours"); in LoadGame()
289 minutes = file.ReadUInt("play_minutes"); in LoadGame()
290 seconds = file.ReadUInt("play_seconds"); in LoadGame()
292 _drunes = file.ReadUInt("drunes"); in LoadGame()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/ntlm/
H A Dntlm_buffer_reader.cc33 return ReadUInt<uint16_t>(value); in ReadUInt16()
37 return ReadUInt<uint32_t>(value); in ReadUInt32()
41 return ReadUInt<uint64_t>(value); in ReadUInt64()
281 bool NtlmBufferReader::ReadUInt(T* value) { in ReadUInt() function in net::ntlm::NtlmBufferReader

1234567