blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
f993b06c56f863205ff2243e1f5aa18c72687ffa
299b377022f52b20e3c9696950da9007e9b078a4
/src/blas_like/level1/Symmetric2x2Inv.cpp
8cf4a2d373a135e5adff443154d45767dbf7ebeb
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
sg0/Elemental
43cba65d001de299167363c349127cf8c23f7403
614f02509690449b553451e36bc78e7e132ea517
refs/heads/master
2021-01-15T09:33:56.394836
2016-02-29T18:25:53
2016-02-29T18:25:53
19,929,637
1
0
null
null
null
null
UTF-8
C++
false
false
1,873
cpp
Symmetric2x2Inv.cpp
/* Copyright (c) 2009-2015, Jack Poulson All rights reserved. This file is part of Elemental and is under the BSD 2-Clause License, which can be found in the LICENSE file in the root directory, or at http://opensource.org/licenses/BSD-2-Clause */ #include "El.hpp" namespace El { template<typename F> void Symmetric2x2Inv( UpperOrLower uplo, Matrix<F>& D, bool conjugate ) { DEBUG_ONLY(CallStackEntry cse("Symmetric2x2Inv")) typedef Base<F> Real; if( uplo == LOWER ) { if( conjugate ) { const Real delta11 = D.GetRealPart(0,0); const F delta21 = D.Get(1,0); const Real delta22 = D.GetRealPart(1,1); const Real delta21Abs = SafeAbs( delta21 ); const Real phi21To11 = delta22 / delta21Abs; const Real phi21To22 = delta11 / delta21Abs; const F phi21 = delta21 / delta21Abs; const Real xi = (Real(1)/(phi21To11*phi21To22-Real(1)))/delta21Abs; D.SetRealPart( 0, 0, xi*phi21To11 ); D.Set( 1, 0, -xi*phi21 ); D.SetRealPart( 1, 1, xi*phi21To22 ); } else { const F delta11 = D.Get(0,0); const F delta21 = D.Get(1,0); const F delta22 = D.Get(1,1); const F chi21To11 = -delta22 / delta21; const F chi21To22 = -delta11 / delta21; const F chi21 = (F(1)/(F(1)-chi21To11*chi21To22))/delta21; D.Set( 0, 0, chi21*chi21To11 ); D.Set( 1, 0, chi21 ); D.Set( 1, 1, chi21*chi21To22 ); } } else LogicError("This option not yet supported"); } #define PROTO(F) \ template void Symmetric2x2Inv \ ( UpperOrLower uplo, Matrix<F>& A, bool conjugate ); #define EL_NO_INT_PROTO #include "El/macros/Instantiate.h" } // namespace El
9ea14340b4fc21990af2e90f4d19e75460b7a290
4bb3bf353e28917eaa910ae9c5d9a5a790aaa42a
/OC++Demo/TestSo.h
6a00e082b16a3b41c8331cf68ae6bb6b07d7235c
[]
no_license
yangzhaokun1234/OC-Demo
d4fbcace854f4bca4d5b01c064ab6f4f7e067653
74bdc4ebb5fd25ff1ebe0d548cb58481135c5163
refs/heads/master
2020-12-25T19:15:02.287187
2015-06-18T07:47:57
2015-06-18T07:47:57
37,644,059
0
0
null
null
null
null
UTF-8
C++
false
false
164
h
TestSo.h
#ifndef __SO_DEMO_TEST_HEADER__ #define __SO_DEMO_TEST_HEADER__ #include <iostream> using namespace std; extern "C" int one(int ret); #endif
6aa080d5c43f5319d0da2e479886169ae37e99b9
338f16b907cdca5d99f6fc4ee978b3dede217615
/src/slave/containerizer/mesos/isolators/posix/disk.hpp
df255d910053a3bf06f5e45b6dd795a6630490d0
[ "Apache-2.0", "GPL-2.0-or-later", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-protobuf", "LGPL-2.1-only", "PSF-2.0", "BSL-1.0", "MIT", "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
apache/mesos
24c92eb34ea9cbb2912d6471815a433c9942e0c9
8856d6fba11281df898fd65b0cafa1e20eb90fe8
refs/heads/master
2023-08-28T06:36:36.458732
2023-01-13T21:00:06
2023-01-14T00:29:23
11,469,439
4,860
2,034
Apache-2.0
2023-04-12T06:10:25
2013-07-17T07:00:13
C++
UTF-8
C++
false
false
5,026
hpp
disk.hpp
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef __POSIX_DISK_ISOLATOR_HPP__ #define __POSIX_DISK_ISOLATOR_HPP__ #include <string> #include <process/owned.hpp> #include <stout/bytes.hpp> #include <stout/duration.hpp> #include <stout/hashmap.hpp> #include <stout/hashset.hpp> #include "slave/flags.hpp" #include "slave/containerizer/mesos/isolator.hpp" namespace mesos { namespace internal { namespace slave { // Forward declarations. class DiskUsageCollectorProcess; // Responsible for collecting disk usage for paths, while ensuring // that an interval elapses between each collection. class DiskUsageCollector { public: DiskUsageCollector(const Duration& interval); ~DiskUsageCollector(); // Returns the disk usage rooted at 'path'. The user can discard the // returned future to cancel the check. process::Future<Bytes> usage( const std::string& path, const std::vector<std::string>& excludes); private: DiskUsageCollectorProcess* process; }; // This isolator monitors the disk usage for containers, and reports // ContainerLimitation when a container exceeds its disk quota. This // leverages the DiskUsageCollector to ensure that we don't induce too // much CPU usage and disk caching effects from running 'du' too // often. // // NOTE: Currently all containers are processed in the same queue, // which means that when a container starts, it could take many disk // collection intervals until any data is available in the resource // usage statistics! // // TODO(jieyu): Consider handling each container independently, or // triggering an initial collection when the container starts, to // ensure that we have usage statistics without a large delay. class PosixDiskIsolatorProcess : public MesosIsolatorProcess { public: static Try<mesos::slave::Isolator*> create(const Flags& flags); ~PosixDiskIsolatorProcess() override; bool supportsNesting() override; bool supportsStandalone() override; process::Future<Nothing> recover( const std::vector<mesos::slave::ContainerState>& states, const hashset<ContainerID>& orphans) override; process::Future<Option<mesos::slave::ContainerLaunchInfo>> prepare( const ContainerID& containerId, const mesos::slave::ContainerConfig& containerConfig) override; process::Future<Nothing> isolate( const ContainerID& containerId, pid_t pid) override; process::Future<mesos::slave::ContainerLimitation> watch( const ContainerID& containerId) override; process::Future<Nothing> update( const ContainerID& containerId, const Resources& resourceRequests, const google::protobuf::Map< std::string, Value::Scalar>& resourceLimits = {}) override; process::Future<ResourceStatistics> usage( const ContainerID& containerId) override; process::Future<Nothing> cleanup( const ContainerID& containerId) override; private: PosixDiskIsolatorProcess(const Flags& flags); process::Future<Bytes> collect( const ContainerID& containerId, const std::string& path); void _collect( const ContainerID& containerId, const std::string& path, const process::Future<Bytes>& future); const Flags flags; DiskUsageCollector collector; struct Info { explicit Info(const std::string& _directory) : directories({_directory}), sandbox(_directory) {} Bytes ephemeralUsage() const; // Save the executor ephemeral storage (sandbox and rootfs) // directories so that we know where to collect disk usage // for disk resources without DiskInfo. hashset<std::string> directories; std::string sandbox; process::Promise<mesos::slave::ContainerLimitation> limitation; // The keys of the hashmaps contain the executor working directory // above, and optionally paths of volumes used by the container. // For each path, we maintain its quota and its last usage. struct PathInfo { ~PathInfo(); Resources quota; process::Future<Bytes> usage; Option<Bytes> lastUsage; }; hashmap<std::string, PathInfo> paths; }; hashmap<ContainerID, process::Owned<Info>> infos; }; } // namespace slave { } // namespace internal { } // namespace mesos { #endif // __POSIX_DISK_ISOLATOR_HPP__
360d6b1c77f9db06a326818e8006b748296d76bb
e1caf4d150c95e707d2226bf52fa5c32d1e3d761
/TerrainRenderer/Lightsource.h
62a653b1b0de7023329c98fc3e2030276d652a45
[]
no_license
srhi84/sep3d
d58ead80535566c976c2cb212df15b4f61d0e884
1c9a993a17298a06b26a896b9a7b1f4046e8d59c
refs/heads/master
2018-03-04T20:57:10.965948
2009-04-12T16:05:41
2009-04-12T16:05:41
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
668
h
Lightsource.h
#pragma once #include "DXUT.h" class LightSource { public: /** * Konstruktor. * Erzeugt eine neue Lichtquelle mit bestimmter Farbe und Rotations- * geschwindigkeit. */ LightSource(const D3DXVECTOR3 &color, const D3DXVECTOR3 &rotation) : color_(color), rotation_(rotation) {}; virtual ~LightSource(void) {}; /** * Führt Per-Frame-Updates an der Lichtquelle aus (Rotation). */ virtual void OnFrameMove(float elapsed_time) = 0; virtual HRESULT OnCreateDevice(ID3D10Device *device) { return S_OK; }; virtual void OnDestroyDevice(void) {}; protected: D3DXVECTOR3 color_; D3DXVECTOR3 rotation_; unsigned int instance_id_; };
99c516a36402e17965ca6c4280d042f2cd78dfe8
3fccd469f637096782c70764e178bd804def3b61
/KDL/LanguageMenu.cpp
abf63603fa13d97f1225f5094350f179a0444d3a
[ "MIT" ]
permissive
ara-ayvazyan/kdl
cd99b114341bed2dc88e453c08938f9ee75f961b
62af2d2e891f2676fdb28a9fb9e5f190c30a4edc
refs/heads/master
2021-04-27T00:08:40.403204
2018-03-05T04:54:22
2018-03-05T04:54:22
123,755,761
1
0
null
null
null
null
UTF-8
C++
false
false
1,410
cpp
LanguageMenu.cpp
#include "stdafx.h" #include "LanguageMenu.h" #include "LanguageCollection.h" namespace KDL { LanguageMenu::LanguageMenu(HINSTANCE hInstance, HWND hWnd, const LanguageCollection& langs) : Menu{ hInstance, hWnd, langs } { size_t nLangs = _langs.GetSize(); for (size_t i = 0; i < nLangs; ++i) if (_langs[i].IsCurrent()) ::AppendMenuW(_hMenu, MF_OWNERDRAW, MAKEWORD(-1, i), reinterpret_cast<LPCWSTR>(i)); RecalcWidth(false); } bool LanguageMenu::Remove(int langIndex) { if (::RemoveMenu(_hMenu, MAKEWORD(-1, langIndex), MF_BYCOMMAND)) { RecalcWidth(false); return true; } return false; } bool LanguageMenu::Insert(int langIndex) { if (langIndex < 0 || langIndex >= static_cast<int>(_langs.GetSize())) return false; auto nItems = ::GetMenuItemCount(_hMenu); int pos = 0; while (pos < nItems && HIBYTE(LOWORD(::GetMenuItemID(_hMenu, pos))) <= langIndex) ++pos; if (::InsertMenuW( _hMenu, pos, MF_OWNERDRAW | MF_BYPOSITION, MAKEWORD(-1, langIndex), reinterpret_cast<LPCWSTR>(langIndex))) { RecalcWidth(false); return true; } return false; } } // namesapce KDL
3e2497c377c4ce42f2fec53625ae64f7a9313e7c
62f66d391d4fecfebe757bc4681b111653318314
/Source/Input/FileParser.hpp
ea47233b50d911423f29922292f61b4310b12582
[]
no_license
CheezBoiger/8-PuzzleSimpleSolver
4ce927c94efa5e8b1ce1ef9ceb944cd3e004d165
82a078ececeaea6b58b0cdda5c37604144af1b8c
refs/heads/master
2021-07-24T13:30:54.053320
2017-04-30T00:08:56
2017-04-30T00:08:56
109,657,974
0
0
null
null
null
null
UTF-8
C++
false
false
787
hpp
FileParser.hpp
// 8 Puzzle Solver Algorithm Assignment // Assignment #1 // Author : Mario Garcia // Class : CS 420 // Instructor : Dr. Daisy Tang // // Copyright (c) 2017 Mario Garcia, MIT License. // Built with <3 #pragma once #include <string> #include <list> namespace cs420 { // Parses the given file to this object. The // file parser will then parse the contents and // produce sample cases for each. class FileParser { public: FileParser(); bool Parse(std::string &filepath); std::string Next(); bool is_empty() const { return text.empty(); } int get_curr_percentage_done() const { return percentage_done; } int get_curr_size() const { return static_cast<int>(text.size()); } private: int percentage_done; std::list<std::string> text; }; } // cs420
48ba86de8a20774290de47b7fafdea91b3e6100f
eeb6a2334bdcb689b650f392a00670d0671b2f5c
/algorithm/MemPool.h
6445374cc1284a80bf9d44f7f127129f9bf2f461
[]
no_license
jj4jj/ssukits
64d197af231a6d759b6fe6c9dd909967cc1c1644
4806b2dad578fb5b0ed919eef9b119c1b9dfd887
refs/heads/master
2021-01-17T12:01:45.649644
2014-11-07T13:00:13
2014-11-07T13:00:13
17,021,574
3
0
null
null
null
null
UTF-8
C++
false
false
912
h
MemPool.h
#pragma once #include "base/stdinc.h" class MemPool { public: MemPool(){m_pBufferBase = NULL;} int Init(void* pBuffer,size_t zBufferSize, int iEntySize,int iMaxEntryNum); ///////////////////////////////////////////////////////////////////////////////////////////////// int Attach(void* pBuffer,size_t zBufferSize, int iEntySize,int iMaxEntryNum); static size_t GetBufferSize(int iEntySize,int iMaxEntryNum); //return idx int Alloc(); int Free(int idx); //idx int Addr2Idx(void* p); void* Idx2Addr(int idx); void* operator [](int idx); ////////////////////////// int MaxCount(); int Count(); int GetEntryBegin(); void* GetNextEntry(int & itr); static int Check(void* pBuffer,int iEntrySize,int iMaxEntryNum); public: void* m_pBufferBase; };
38bd30b1ab58fcba44b6242a686935a4384a4742
a6b516ec1027cd3d22f2b19a233083ffe18e9ce8
/Practice Practicums/Practice Practicum 4/8_Players.cpp
5d65a5598c0ed802cf7fe0fd0045066f37276fe2
[]
no_license
kale6834/CSCI1300
931dcb916b928c0dcb90434c2e7ca30ab45e4575
bcfbdd3d78861f72ea3de7657989e7ff21e29b31
refs/heads/master
2021-01-26T07:40:34.060453
2020-02-26T21:20:34
2020-02-26T21:20:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,340
cpp
8_Players.cpp
#include <iostream> #include <string> #include <fstream> using namespace std; #ifndef PLAYERS_H #define PLAYERS_H class Players { public: Players(); void ReadFile(string); float MaxSalary(); string MaxSalaryName(); private: float salaries[50]; string names[50]; int counter = 0; }; #endif Players::Players() { for (int i = 0; i < 50; i++) { salaries[i] = {-1.0}; names[i] = {""}; } } void Players::ReadFile(string fileName) { ifstream myfile; myfile.open(fileName); string line; string Placeholder[50]; if (myfile.is_open()) { while (getline(myfile, line, ',')) { // split(line,',',Placeholder,50); names[counter] = line; getline(myfile, line); salaries[counter] = stof(line); counter++; } } else { myfile.close(); } } float Players::MaxSalary() { float max = 0.0; for (int i = 0; i < 50; i++) { if (salaries[i] > max) { max = salaries[i]; } } return max; } string Players::MaxSalaryName() { float max = 0.0; string best; for (int i = 0; i < 50; i++) { if (salaries[i] > max) { best = names[i]; } } return best; }
550bef4daaeb2d5d406bfe37cb0d3a98729cc229
7e5da02c1b9b60798dfde594eb3e793f5d332b78
/15 Trees/264BinaryTreeTraversal.cpp
1d1c2e3f62cf8ddcc4b0b6ce68ae008a0a21b7fe
[]
no_license
bd4874/dsa-revision-notes
1cfd7ac144f7736d74cd7ed58e3633a73dea7043
484dd9e0f88cefa2e2d6375f82fe7c017bced7a4
refs/heads/master
2023-03-15T18:05:02.069451
2021-02-17T16:04:51
2021-02-17T16:16:03
535,834,968
1
0
null
2022-09-12T20:13:48
2022-09-12T20:13:47
null
UTF-8
C++
false
false
357
cpp
264BinaryTreeTraversal.cpp
// Author: REET /* Preorder: 1.visit(node) 2.preorder(left subtree) 3.preorder(right subtree) Inorder: 1.inorder(left subtree) 2.visit(node) 3.inorder(right subtree) Postorder: 1.postorder(left subtree) 2.postorder(right subtree) 3.visit(node) Levelorder: 1.Level by Level */
36ede7637ba6f88ab90ab473eb8320dc1969f2c2
b1c317e8aeef0ce6ea5b49c590a0d640f0488bf9
/Book/Chapter 2/Linear DS/Array 1D/CF 467A - George and Accommodation.cpp
2a96275ce3ef8b5d00feb5353bd59eb5b87b20e6
[]
no_license
akramsameer/Problems
e94ee6b49f8333c98f0cc60282a88f475f8a04f6
8df3ca030c9c1381388902759b6f391e25463cdf
refs/heads/master
2021-01-01T15:47:31.497082
2018-06-04T18:38:58
2018-06-04T18:38:58
97,703,981
0
1
null
null
null
null
UTF-8
C++
false
false
801
cpp
CF 467A - George and Accommodation.cpp
#include <bits/stdc++.h> #define ll long long #define ull unsigned long long int using namespace std; #define clr(v , d) memset(v , d , sizeof v) #define sz(v) ((int)(v).size()) const int VISITED = 1; const int UNVISITED = -1; const long long OO = 1e12; const int OOI = 1e9; #define f first typedef pair<int, int> ii; typedef vector<ii> vii; typedef vector<int> vi; int xdir[] = { -1, -1, -1, 0, 0, 1, 1, 1 }; int ydir[] = { -1, 0, 1, -1, 1, -1, 0, 1 }; void file() { #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); //freopen("out.txt", "w", stdout); #else // online submission //freopen("interesting.in", "r", stdin); #endif } int main() { file(); int n ; int p , q , ans = 0; cin >> n ; for(int i = 0 ; i < n ; i++){ cin >> p >> q ; if(q - p > 1) ans++; } cout<<ans<<endl; }
66b8a7037a1bd13f4323fa38fe64f2fdcc656c9d
6775ac3b98b6485a7f742673847aed8462b97c78
/compare_string.cpp
fc5e92d930b3e8d99607a2020cb41030ee63482c
[]
no_license
AtikulDUET/Practice-Programm
9f4bff3fb1c3bdda98fb582bf4fa94708168be49
b933c6c05000fcebabbc55405fd0e2305bd9996c
refs/heads/master
2022-11-27T20:08:32.070009
2020-08-04T17:53:01
2020-08-04T17:53:01
283,836,021
1
0
null
null
null
null
UTF-8
C++
false
false
277
cpp
compare_string.cpp
#include<bits/stdc++.h> using namespace std; int main() { char str1[30],str2[30]; int ck = 1; cin>>str1>>str2; while(str1[i]) if(ck==1) cout<<"String is same."<<endl; else cout<<"String is not same."<<endl; return 0; }
c73f33c9aed8024d2ad54444aff2bf85a014e338
a2bde27da5b65e500c13ff4931ef8ccea025d86c
/view_add_edit_delete/view.cpp
b0c724e1dae6d3800142df9a1a9b60c8c9e0342f
[]
no_license
dzikrafathin/pengantar_algoritma_cpp
8913c584efe6adeeca326bc621e8aa7ee4ed2f6e
1b3ddeeaa3d926267e1df5ed85b481cb08657f44
refs/heads/master
2020-04-05T03:03:24.428984
2019-01-09T00:45:36
2019-01-09T00:45:36
156,499,831
0
0
null
null
null
null
UTF-8
C++
false
false
460
cpp
view.cpp
#include <iostream> using namespace std; void view(int arr[], int n) { cout << "================\nSLOT || ISI DATA\n================\n"; for (int i=0;i<n;i++) { if (arr[i] != 0) { cout <<" "<<i<<" || "<<arr[i]<<"\n----------------\n"; } else if (arr[i] == 0) { cout <<" "<<i<<" || EMPTY\n----------------\n"; } } } int main() { int data[10] = {2,4,0,6,7,0,0,9,5,0}; view(data, 10); }
f7f0bbf72c6b61eb632147b5b163f8c147ddb927
e4122bee9547bd3d9eab00137590e8fe1b34f4f2
/Chapter 22/Using memset/Using memset/main.cpp
ded7cbb43aef618e58c578c2bf55933e3a451398
[ "MIT" ]
permissive
MarvelousAudio/CPlusPlus-How-to-program-tenth-edition
230ef55f0d39f36a36c0de62d9e3e7905d8728cf
a667b080938cf964909d79b272f0d863adc300e0
refs/heads/master
2021-05-20T15:50:18.253269
2020-07-23T09:03:28
2020-07-23T09:03:28
252,354,904
0
0
null
null
null
null
UTF-8
C++
false
false
549
cpp
main.cpp
// // main.cpp // Using memset // // Created by ben haywood on 6/6/20. // Copyright © 2020 ben haywood. All rights reserved. // #include <iostream> #include <cstring> // memset prototype using namespace std; int main(int argc, const char * argv[]) { // insert code here... char string1[15]{"BBBBBBBBBBBBBB"}; cout << "string1 = " << string1 << endl; cout << "string1 after memset = " << static_cast<char*>(memset(string1, 'b', 7)) << endl; // sets seven b's and replace them in sting1 return 0; }
adc2ec55f131d906c400f47087c20749a021c778
ed4f0ae5cfc032012cc21fc6ab2a80459825db77
/do while game.cpp
8988e03141bfddc953ce6ba9a8997b97fa6a416f
[]
no_license
ZainArif/C-program-practices
5cb88cb422256cd35ce92ae81521124b3502a266
21047c2c6a01339c4582c40f28c43304ac59b2d3
refs/heads/master
2020-04-08T18:34:19.712748
2018-11-29T06:05:50
2018-11-29T06:05:50
159,614,341
0
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
do while game.cpp
#include<stdio.h> #include<conio.h> int main() { char ch='a'; do { printf("\nType in letter from a to e:"); while((ch=getche())!='d') { printf("\nSorry %c is incoreect",ch); printf("\nTry again"); } printf("\nThats it"); printf("\nPlay again?\n press y/n:"); } while(getche()=='y'); printf("\nThanks for playing!"); }
3fc3a7e2eb85bbc306cf3687046ac755b84cbcd0
4517a61b756f1a2c7e9684be619d872569fda30e
/bin_src/solarmain-8.5.1/src/gwas.cc
03ae931d719eb2300134f0579ccb1362e28aa35a
[]
no_license
brian09/solar-eclipse-8.5.1
096858b0c7a6691af665c2a07213d2ee8ce79ee1
9adf8b29446d4533f0cb384bdda8ecca5800e468
refs/heads/master
2023-06-07T21:59:03.792678
2021-07-02T22:21:19
2021-07-02T22:21:19
342,719,917
1
1
null
null
null
null
UTF-8
C++
false
false
101,504
cc
gwas.cc
#include "solar.h" #include <Eigen/Dense> #include <string> #include <cmath> #include <fstream> #include <vector> #include <random> #include <chrono> #include <array> #include <iterator> #include "plinkio.h" #include <unordered_map> #include <vector> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <algorithm> #include <iomanip> #include "solar-trait-reader.h" using namespace std; void load_phi2_matrix(Tcl_Interp * interp); static const unsigned GWAS_BATCH_SIZE = 6000; static const int PERMUTATION_BATCH_SIZE = 1000; extern "C" void cdfchi_ (int*, double*, double*, double*, double*, int*, double*); double chicdf(double chi, double df){ double p, q, bound; int status = 0; int which = 1; cdfchi_ (&which, &p, &q, &chi, &df, &status, &bound); return q; } double gwas_chicdf(double chi, double df){ return chicdf(chi, df); } extern "C" void symeig_ (int*, double*, double*, double*, double*, int*); void calculate_eigenvectors (double * phi2, double * eigenvalues, double * eigenvectors ,int n) { double* e = new double[n]; memset(e, 0, sizeof(double)*n); int * info = new int; *info = 0; symeig_(&n, phi2, eigenvalues, e, eigenvectors, info); delete [] e; delete [] info; } static int create_gwas_matrices(Tcl_Interp * interp, pio_file_t * plink_file, int * & plink_index_map, Eigen::VectorXd & trait_vector, Eigen::MatrixXd & phi2, int * & snp_values, const char * trait_name, const char * phenotype_filename, const char * plink_filename, vector<string> & snp_names){ const char * errmsg = 0; cout << "Reading phenotype file...\n"; SolarFile * file = SolarFile::open("gwas", phenotype_filename, &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } int field_count; const char ** fields = file->names(&field_count, &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } file->start_setup(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } file->setup("id", &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } char ** file_data; vector<string> phenotype_ids; while (0 != (file_data = file->get (&errmsg))){ phenotype_ids.push_back(string(file_data[0])); } file->rewind(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } file->start_setup(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } file->setup(trait_name, &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } double * trait_data = new double[phenotype_ids.size()]; double row_value; size_t row_index = 0; vector<string> missing_trait_ids; while (0 != (file_data = file->get (&errmsg))){ string str_data = file_data[0]; if(str_data.length() != 0){ trait_data[row_index] = strtod((const char*)file_data[0], NULL); }else{ missing_trait_ids.push_back(phenotype_ids[row_index]); trait_data[row_index] = nan(""); } row_index++; } int * raw_plink_data; size_t n_snps; // size_t n_snp_rows = phenotype_ids.size(); vector<string> plink_ids; if(plink_file){ // pio_file_t * plink_file = new pio_file_t; // pio_status_t status = pio_open(plink_file, plink_filename); pio_status_t status; /* if(status != PIO_OK){ pio_close(plink_file); if(status == P_FAM_IO_ERROR){ RESULT_LIT("Error in loading .fam file"); return TCL_ERROR; }else if (status == P_BIM_IO_ERROR){ RESULT_LIT("Error in loading .bim file"); return TCL_ERROR; }else if (status == P_BED_IO_ERROR){ RESULT_LIT("Error in loading .bed file"); return TCL_ERROR; } } */ n_snps = plink_file->bed_file.header.num_loci; size_t n_snp_rows = plink_file->bed_file.header.num_samples; pio_sample_t * sample; pio_locus_t * locus; // int * snp_index_map = new int[n_snp_rows]; row_index = 0; for(size_t i = 0; i < n_snp_rows; i++){ sample = fam_get_sample(&plink_file->fam_file, i); string id = string(sample->iid); vector<string>::iterator find_iter = find(phenotype_ids.begin(), phenotype_ids.end(), id); if(find_iter != phenotype_ids.end()){ vector<string>::iterator trait_iter = find(missing_trait_ids.begin(),missing_trait_ids.end(), id); if(trait_iter == missing_trait_ids.end()){ plink_ids.push_back(id); // snp_index_map[i] = row_index++; }//else{ // snp_index_map[i] = -1; // } }//else{ //snp_index_map[i] = -1; // } } for(size_t i = 0; i < n_snps; i++){ locus = bim_get_locus(&plink_file->bim_file, i); snp_names.push_back(string(locus->name)); } // raw_plink_data = new int[plink_ids.size()*n_snps]; // snp_t * snp_buffer = new snp_t[n_snp_rows]; // for(size_t snp = 0 ; snp < n_snps; snp++){ // pio_next_row(plink_file,snp_buffer); // for(size_t row =0 ;row < n_snp_rows; row++){ // int index = snp_index_map[row]; // if(index != -1) raw_plink_data[snp*plink_ids.size() +index] = snp_buffer[row]; // } // } //delete [] snp_index_map; // delete [] snp_buffer; // pio_close(plink_file); // delete plink_file; }else{ file->rewind(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } file->start_setup(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } for(size_t field = 0; field < field_count; field++){ if(strstr(fields[field], "snp_")){ string snp_name = string(fields[field]); snp_name = snp_name.substr(4, snp_name.length() - 4); snp_names.push_back(snp_name); file->setup(fields[field], &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } } } n_snps = snp_names.size(); size_t n_snp_rows = phenotype_ids.size(); int * temp_plink_data = new int[n_snps*phenotype_ids.size()]; size_t row_index = 0; vector<string> missing_plink_ids; while (0 != (file_data = file->get (&errmsg))){ size_t missing_count = 0; for(size_t snp_index = 0; snp_index < n_snps; snp_index++){ string str_data = file_data[snp_index]; if(str_data.length() != 0){ int snp_value = stoi(string(file_data[snp_index])); temp_plink_data[snp_index*phenotype_ids.size() + row_index] = snp_value; if(snp_value == 3) missing_count++; }else{ temp_plink_data[snp_index*phenotype_ids.size() + row_index] = 3; missing_count++; } } if(missing_count == n_snps){ missing_plink_ids.push_back(phenotype_ids[row_index]); } row_index++; } int * plink_index_map = new int[phenotype_ids.size()]; int map_index = 0; for(size_t row = 0; row < phenotype_ids.size(); row++){ string id = phenotype_ids[row]; vector<string>::iterator find_iter = find(missing_trait_ids.begin(), missing_trait_ids.end(), id); if(find_iter == missing_trait_ids.end()){ find_iter = find(missing_plink_ids.begin(), missing_plink_ids.end(), id); if(find_iter == missing_plink_ids.end()){ plink_index_map[row] = map_index++; plink_ids.push_back(id); }else{ plink_index_map[row] = -1; } }else{ plink_index_map[row] = -1; } } raw_plink_data = new int[n_snps*plink_ids.size()]; for(size_t row = 0 ;row < phenotype_ids.size(); row++){ int index = plink_index_map[row]; if(index != -1){ for(size_t snp = 0; snp < n_snps ; snp++){ raw_plink_data[index + snp*plink_ids.size()] = temp_plink_data[row + snp*phenotype_ids.size()]; } } } delete [] temp_plink_data; } vector<string> ids; vector<int> ibdids; SolarFile * pedindex_file = SolarFile::open("gwas", "pedindex.out", &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } pedindex_file->start_setup(&errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } pedindex_file->setup("id", &errmsg); if(errmsg){ RESULT_LIT(errmsg); return TCL_ERROR; } vector<string> shared_id_set = plink_ids; // char ** file_data; int ibdid = 1; vector<string> ids_out; while (0 != (file_data = pedindex_file->get (&errmsg))){ string id = string(file_data[0]); vector<string>::iterator find_iter = find(shared_id_set.begin(), shared_id_set.end(), id); if(find_iter != shared_id_set.end()){ ids.push_back(id); // shared_id_set.erase(find_iter); ibdids.push_back(ibdid); } ibdid++; } trait_vector.resize(ids.size()); size_t id_index = 0; size_t row = 0; for(size_t row_index = 0; row_index < phenotype_ids.size(); row_index++){ const double trait_value = trait_data[row_index]; if(trait_value == trait_value){ string trait_id = phenotype_ids[row_index]; vector<string>::iterator find_iter = find(ids.begin(), ids.end(), trait_id); if(find_iter != ids.end()){ trait_vector(distance(ids.begin(), find_iter)) = trait_value; } } } if(!plink_file){ int * index_map = new int[plink_ids.size()]; for(size_t i = 0; i < plink_ids.size(); i++){ string plink_id = plink_ids[i]; vector<string>::iterator find_iter = find(ids.begin(), ids.end(), plink_id); if(find_iter != ids.end()){ index_map[i] = distance(ids.begin(), find_iter); }else{ index_map[i] = -1; } } snp_values = new int[ids.size()*n_snps]; for(size_t row = 0; row < plink_ids.size(); row++){ int index = index_map[row]; if(index != -1){ for(size_t col = 0; col < n_snps; col++){ snp_values[col*ids.size() + index] = raw_plink_data[col*plink_ids.size() + row]; } } } delete [] raw_plink_data; }else{ plink_index_map = new int[ids.size()]; pio_sample_t * sample; vector<string> plink_id_list; for(unsigned i = 0; i < plink_file->bed_file.header.num_samples; i++){ sample = fam_get_sample(&plink_file->fam_file, i); plink_id_list.push_back(string(sample->iid)); } for(unsigned row = 0; row < ids.size(); row++){ plink_index_map[row] = distance(plink_id_list.begin(), find(plink_id_list.begin(), plink_id_list.end(), ids[row])); } } phi2.resize(ids.size(), ids.size()); Matrix* pm2; pm2 = Matrix::find("phi2"); if (!pm2) { Solar_Eval(interp, "matrix load phi2.gz phi2"); pm2 = Matrix::find("phi2"); if(!pm2){ RESULT_LIT("phi2 matrix could not be loaded"); return TCL_ERROR; } } for(int col_idx = 0; col_idx < ids.size(); col_idx++){ for(int row_idx = col_idx; row_idx < ids.size(); row_idx++) { const double phi2_value = pm2->get(ibdids[row_idx], ibdids[col_idx]); phi2(row_idx, col_idx) = phi2_value; phi2(col_idx, row_idx) = phi2_value; } } return TCL_OK; } static int * get_permutation_indices(int * permutation_indices, int n_rows){ iota (permutation_indices, permutation_indices + n_rows, 0); random_shuffle(permutation_indices, permutation_indices + n_rows); // return permutation_indices; } typedef struct gwas_data{ double beta; double pvalue; double SE; double chi; double SD; double h2r; double loglik; gwas_data & operator = (const gwas_data & var) { beta = var.beta; pvalue = var.pvalue; SE = var.SE; chi = var.chi; SD= var.SD; h2r = var.h2r; loglik = var.loglik; } }gwas_data; static inline double calculate_constraint(const double x){ return 1.0/(1.0 + exp(-x)); } static inline double calculate_dconstraint(const double x){ const double e_x = exp(-x); return e_x*pow(e_x + 1, -2); } static inline double calculate_ddconstraint(const double x){ const double e_x = exp(x); return -(e_x-1.0)*e_x*pow(e_x+1,-3); } static inline double calculate_dloglik(Eigen::VectorXd lambda_minus_one,Eigen::VectorXd residual_squared, Eigen::VectorXd sigma,const double variance){ const double part_one = variance*lambda_minus_one.dot(sigma); const double part_two = variance*lambda_minus_one.dot(residual_squared.cwiseProduct(sigma.cwiseAbs2())); return -0.5*(part_one-part_two); } static inline double calculate_ddloglik(Eigen::VectorXd lambda_minus_one,Eigen::VectorXd residual_squared, Eigen::VectorXd sigma, const double variance){ Eigen::VectorXd lambda_minus_one_squared = lambda_minus_one.cwiseAbs2(); Eigen::VectorXd sigma_squared = sigma.cwiseAbs2(); const double part_one = variance*variance*lambda_minus_one_squared.dot(sigma_squared); const double part_two = 2.0*variance*variance*lambda_minus_one_squared.dot(residual_squared.cwiseProduct(sigma.cwiseProduct(sigma_squared))); return -0.5*(-part_one + part_two); } static inline double calculate_ddloglik_with_constraint(const double t,const double dloglik, const double ddloglik){ return pow(calculate_dconstraint(t), 2)*ddloglik + calculate_ddconstraint(t)*dloglik; } static inline double calculate_dloglik_with_constraint(const double t, const double dloglik){ return calculate_dconstraint(t)*dloglik; } static inline Eigen::VectorXd calculate_sigma(const double t, const double variance, Eigen::MatrixXd aux){ Eigen::VectorXd theta(2); const double h2 = calculate_constraint(t); theta(0) = 1.0 - h2; theta(1) = h2; theta = theta*variance; return aux*theta; } static inline double calculate_quick_loglik(Eigen::VectorXd Sigma, const unsigned N){ return -0.5*(-log(Sigma.array()).sum() + N); } static inline double calculate_quick_loglik_2(Eigen::VectorXd residual_squared, Eigen::VectorXd sigma){ return -0.5*(-log(sigma.array()).sum() + residual_squared.dot(sigma)); } static void gwas_maximize_newton_raphson_method_with_covariates(gwas_data * result, Eigen::VectorXd Y, Eigen::MatrixXd X, Eigen::MatrixXd U, gwas_data null_result, const int precision, string & status_string){ double t = 0; double h2 = 0.5; Eigen::VectorXd theta(2); theta(0) = 0.5; theta(1) = 0.5; Eigen::VectorXd omega = (U*theta).cwiseInverse(); Eigen::VectorXd beta(X.cols()); Eigen::MatrixXd XTOX = X.transpose()*omega.asDiagonal()*X; if(XTOX.determinant() == 0){ result->beta = 0.0; result->chi = 0.0; result->pvalue = 1.0; result->h2r = null_result.h2r; result->loglik = null_result.loglik; result->SD = null_result.SD; result->SE = 0.0; status_string = "Failure"; return; } beta = XTOX.inverse()*X.transpose()*omega.asDiagonal()*Y; Eigen::VectorXd residual = Y - X*beta; Eigen::VectorXd residual_squared = residual.cwiseAbs2(); double variance = residual_squared.dot(omega)/Y.rows(); Eigen::VectorXd sigma = omega*pow(variance, -1); double loglik = calculate_quick_loglik(sigma, Y.rows()); Eigen::VectorXd lambda_minus_one = (U.col(1).array() - 1.0).matrix(); double dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); double ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); double score = calculate_dloglik_with_constraint( t,dloglik); double hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); double delta = -score/hessian; double new_h2 = 0; //cout << "iteration: 0\n"; //cout << "delta: " << delta << endl; if (delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } const double end = pow(10, -precision); int iter = 0; while( delta == delta && fabs(new_h2 - h2) >= end && ++iter < 50){ h2 = new_h2; theta(0) = 1.0 - h2; theta(1) = h2; omega = (U*theta).cwiseInverse(); XTOX = X.transpose()*omega.asDiagonal()*X; if(XTOX.determinant() == 0){ result->beta = 0.0; result->chi = 0.0; result->pvalue = 1.0; result->h2r = null_result.h2r; result->loglik = null_result.loglik; result->SD = null_result.SD; result->SE = 0.0; status_string = "Failure"; return; } beta = XTOX.inverse()*X.transpose()*omega.asDiagonal()*Y; residual = Y - X*beta; residual_squared = residual.cwiseAbs2(); variance = residual_squared.dot(omega)/Y.rows(); sigma = omega*pow(variance, -1); dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); score = calculate_dloglik_with_constraint( t,dloglik); hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); delta = -score/hessian; //cout << "iteration: " << iter++ << endl; //cout << "delta: " << delta << endl; if(delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } //iter++; } loglik = calculate_quick_loglik(sigma, Y.rows()); if((h2 >= .9 || h2 <= 0.1) && h2 == h2){ double test_h2r; if(h2 >= 0.9) test_h2r = 1.0; else test_h2r = 0.0; Eigen::VectorXd test_theta(2); test_theta(0) = 1 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_sigma_inverse = test_sigma.cwiseInverse(); Eigen::MatrixXd test_omega = test_sigma_inverse.asDiagonal(); Eigen::MatrixXd test_XTOX = X.transpose()*test_omega*X; if(test_XTOX.determinant() != 0){ Eigen::VectorXd test_beta = test_XTOX.inverse()*X.transpose()*test_omega*Y; Eigen::VectorXd test_residual = Y - X*test_beta; double test_variance = test_residual.cwiseAbs2().dot(test_sigma_inverse)/Y.rows(); double test_loglik = calculate_quick_loglik(test_sigma_inverse/test_variance, Y.rows()); if(test_loglik > loglik){ beta = test_beta; theta = test_theta; h2 = test_h2r; variance = test_variance; loglik = test_loglik; sigma = test_sigma_inverse/variance; } } } double chi = 2.0*(loglik - null_result.loglik); if(chi >= 0.0 && chi == chi && delta == delta){ // Eigen::MatrixXd hessian = calculate_REML_hessian(residual, SNP, Sigma, eigenvalues, variance); // Eigen::VectorXd standard_errors = hessian.inverse().diagonal().cwiseSqrt(); // double beta_se = beta_covariance(1,1); Eigen::MatrixXd SE_matrix = (X.transpose()*sigma.asDiagonal()*X).inverse(); result->SE = sqrt(SE_matrix(beta.rows()-1,beta.rows() -1)); result->beta = beta(beta.rows()-1); result->chi = chi; result->SD = sqrt(variance); // result->SE = 0.0;//beta_se;//standard_errors(0); result->pvalue = chicdf(result->chi , 1); result->h2r = h2; result->loglik = loglik; status_string = "Success"; }else{ result->beta = 0.0; result->chi = 0.0; result->pvalue = 1.0; result->h2r = null_result.h2r; result->loglik = null_result.loglik; result->SD = null_result.SD; result->SE = 0.0; if(iter == 50){ status_string = "Iteration Limit Reached"; }else{ status_string = "Failure"; } } } static int * permutated_indices; static void gwas_maximize_newton_raphson_method(gwas_data * result, Eigen::VectorXd Y, Eigen::MatrixXd X, Eigen::MatrixXd U, gwas_data null_result, const int precision, string & status_string, const unsigned n_permutations = 0){ Eigen::VectorXd raw_A = X.col(0).cwiseAbs2(); Eigen::VectorXd raw_B = X.col(1).cwiseProduct(X.col(0)); Eigen::VectorXd raw_C = X.col(1).cwiseAbs2(); Eigen::VectorXd raw_D = Y.cwiseProduct(X.col(0)); Eigen::VectorXd raw_E = Y.cwiseProduct(X.col(1)); double t = 0; double h2 = 0.5; Eigen::VectorXd theta(2); theta(0) = 0.5; theta(1) = 0.5; double A,B,C,D,E; Eigen::VectorXd omega = (U*theta).cwiseInverse(); A = raw_A.dot(omega); B = raw_B.dot(omega); C = raw_C.dot(omega); D = raw_D.dot(omega); E = raw_E.dot(omega); Eigen::VectorXd beta(2); double beta_denom = A*C - B*B; beta(0) = C*D - B*E; beta(1) = A*E - B*D; beta /= beta_denom; Eigen::VectorXd residual = Y - X*beta; Eigen::VectorXd residual_squared = residual.cwiseAbs2(); double variance = residual_squared.dot(omega)/Y.rows(); Eigen::VectorXd sigma = omega*pow(variance, -1); Eigen::VectorXd final_sigma = sigma; double loglik = calculate_quick_loglik(sigma, Y.rows()); Eigen::VectorXd lambda_minus_one = (U.col(1).array() - 1.0).matrix(); double dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); double ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); double score = calculate_dloglik_with_constraint( t,dloglik); double hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); double delta = -score/hessian; double new_h2 = 0; //cout << "iteration: 0\n"; //cout << "delta: " << delta << endl; if (delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } const double end = pow(10, -precision); int iter = 0; while( delta == delta && fabs(new_h2 - h2) >= end && ++iter < 50){ h2 = new_h2; final_sigma = sigma; theta(0) = 1.0 - h2; theta(1) = h2; omega = (U*theta).cwiseInverse(); A = raw_A.dot(omega); B = raw_B.dot(omega); C = raw_C.dot(omega); D = raw_D.dot(omega); E = raw_E.dot(omega); beta_denom = A*C - B*B; beta(0) = C*D - B*E; beta(1) = A*E - B*D; beta /= beta_denom; residual = Y - X*beta; residual_squared = residual.cwiseAbs2(); variance = residual_squared.dot(omega)/Y.rows(); sigma = omega*pow(variance, -1); dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); score = calculate_dloglik_with_constraint( t,dloglik); hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); delta = -score/hessian; //cout << "iteration: " << iter++ << endl; //cout << "delta: " << delta << endl; if(delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } //iter++; } loglik = calculate_quick_loglik(sigma, Y.rows()); if((h2 >= .9 || h2 <= 0.1) && h2 == h2){ double test_h2r; if(h2 >= 0.9) test_h2r = 1.0; else test_h2r = 0.0; Eigen::VectorXd test_theta(2); test_theta(0) = 1 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_omega = (U*test_theta).cwiseInverse(); double test_A = raw_A.dot(test_omega); double test_B = raw_B.dot(test_omega); double test_C = raw_C.dot(test_omega); double test_D = raw_D.dot(test_omega); double test_E = raw_E.dot(test_omega); Eigen::VectorXd test_beta(2); double test_beta_denom = test_A*test_C - test_B*test_B; test_beta(0) = test_C*test_D - test_B*test_E; test_beta(1) = test_A*test_E - test_B*test_D; test_beta /= test_beta_denom; Eigen::VectorXd test_residual = Y - X*test_beta; Eigen::VectorXd test_residual_squared =test_residual.cwiseAbs2(); double test_variance = test_residual_squared.dot(test_omega)/Y.rows(); Eigen::VectorXd test_sigma = test_omega/test_variance; double test_loglik = calculate_quick_loglik(test_sigma, Y.rows()); if(test_loglik > loglik){ h2 = test_h2r; loglik = test_loglik; variance = test_variance; beta = test_beta; A = test_A; beta_denom = test_beta_denom; final_sigma = test_sigma; } } double chi = 2.0*(loglik - null_result.loglik); // Eigen::MatrixXd beta_covariance_matrix = X.transpose()*omega.asDiagonal()*X; // double denom = beta_covariance_matrix(0,0)*beta_covariance_matrix(1, 1) - beta_covariance_matrix(1,0)*beta_covariance_matrix(0,1); // gwas_data result; //cout << "chi : " << chi << " delta: " << delta << " h2: " << h2 << endl; if(chi >= 0.0 && chi == chi && delta == delta){ // Eigen::MatrixXd hessian = calculate_REML_hessian(residual, SNP, Sigma, eigenvalues, variance); // Eigen::VectorXd standard_errors = hessian.inverse().diagonal().cwiseSqrt(); // double beta_se = beta_covariance(1,1); result->SE = sqrt(variance*A/beta_denom); result->beta = beta(1); result->chi = chi; result->SD = sqrt(variance); // result->SE = 0.0;//beta_se;//standard_errors(0); result->pvalue = chicdf(result->chi , 1); result->h2r = h2; result->loglik = loglik; status_string = "Success"; if(n_permutations != 0){ //vector<double> permutated_sigma(final_sigma.rows()); //for(int i = 0 ; i < omega.rows(); i++){ // permutated_sigma[i] = final_sigma(i); //} // Eigen::VectorXd mean_column = X.col(0); // Eigen::VectorXd snp_column = X.col(1); // Eigen::VectorXd demeaned_Y = Y - mean_column*(mean_column.transpose()*mean_column).inverse()*mean_column.transpose()*Y; // const double compare_value = pow(demeaned_Y.dot(snp_column.cwiseProduct(final_sigma)), 2)/snp_column.cwiseAbs2().dot(final_sigma); const double compare_value = pow(result->beta/result->SE, 2); unsigned pass_count = 1; //Eigen::VectorXd sigma_Y = final_sigma.cwiseProduct(demeaned_Y); Eigen::VectorXd sigma_Y = final_sigma.cwiseProduct(Y); for(int i = 0; i < n_permutations ; i++){ //random_shuffle(permutated_sigma.begin(), permutated_sigma.end()); Eigen::VectorXd current_sigma(final_sigma.rows()); Eigen::VectorXd current_sigma_Y(final_sigma.rows()); for(int row = 0; row < current_sigma.rows(); row++){ current_sigma(row) = final_sigma(permutated_indices[i*current_sigma.rows() + row]); current_sigma_Y(row) = sigma_Y(permutated_indices[i*current_sigma.rows() + row]); } A = raw_A.dot(current_sigma); B = raw_B.dot(current_sigma); C = raw_C.dot(current_sigma); D = current_sigma_Y.dot(X.col(0)); E = current_sigma_Y.dot(X.col(1)); beta_denom = A*C - B*B; const double test_value = pow((A*E - B*D)/beta_denom, 2)/(A/beta_denom); //const double test_value = pow(current_sigma_Y.dot(snp_column), 2)/snp_column.cwiseAbs2().dot(current_sigma); if(test_value >= compare_value) ++pass_count; } result->pvalue = (double)pass_count/(1.0+n_permutations); } }else{ result->beta = 0.0; result->chi = 0.0; result->pvalue = 1.0; result->h2r = null_result.h2r; result->loglik = null_result.loglik; result->SD = null_result.SD; result->SE = 0.0; if(iter == 50){ status_string = "Iteration Limit Reached"; }else{ status_string = "Failure"; } } } double calculate_GWAS_loglik(Eigen::VectorXd SY2, Eigen::VectorXd lambda, Eigen::VectorXd Sigma){ // double var_sum = 0.0; // double log_sum = 0.0; // Eigen::VectorXd theta(2); // theta(0) = 1.0-h2r; // theta(1) = h2r; // Eigen::VectorXd Sigma = (lambda*h2r).array() + e2; // const double variance_sum = SY2.cwiseQuotient(variance); return -0.5*(log(Sigma.array()).sum() + SY2.rows()); // for(int i = 0 ; i < SY.rows(); i++) } gwas_data gwas_maximize_newton_raphson_method_with_covariates_null_model(Eigen::VectorXd Y, Eigen::MatrixXd covariate_matrix, Eigen::MatrixXd U, const int precision){ gwas_data result; double t = 0; double h2 = 0.5; Eigen::VectorXd theta(2); theta(0) = 0.5; theta(1) = 0.5; Eigen::VectorXd omega = (U*theta).cwiseInverse(); Eigen::VectorXd beta(covariate_matrix.cols()); Eigen::MatrixXd XTOX = covariate_matrix.transpose()*omega.asDiagonal()*covariate_matrix; if(XTOX.determinant() == 0){ result.beta = 0.0; result.chi = 0.0; result.pvalue = 1.0; result.h2r = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; return result; } beta = XTOX.inverse()*covariate_matrix.transpose()*omega.asDiagonal()*Y; Eigen::VectorXd residual = Y - covariate_matrix*beta; Eigen::VectorXd residual_squared = residual.cwiseAbs2(); double variance = residual_squared.dot(omega)/Y.rows(); Eigen::VectorXd sigma = omega*pow(variance, -1); double loglik = calculate_quick_loglik(sigma, Y.rows()); Eigen::VectorXd lambda_minus_one = (U.col(1).array() - 1.0).matrix(); double dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); double ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); double score = calculate_dloglik_with_constraint( t,dloglik); double hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); double delta = -score/hessian; double new_h2;// = calculate_constraint(t); //cout << "iteration: 0\n"; //cout << "delta: " << delta << endl; if (delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } const double end = pow(10, -precision); int iter = 1; while( delta == delta && fabs(new_h2 - h2) >= end){ h2 = new_h2; theta(0) = 1.0 - h2; theta(1) = h2; omega = (U*theta).cwiseInverse(); XTOX = covariate_matrix.transpose()*omega.asDiagonal()*covariate_matrix; if(XTOX.determinant() == 0){ result.beta = 0.0; result.chi = 0.0; result.pvalue = 1.0; result.h2r = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; return result; } beta = XTOX.inverse()*covariate_matrix.transpose()*omega.asDiagonal()*Y; residual = Y - covariate_matrix*beta; residual_squared = residual.cwiseAbs2(); variance = residual_squared.dot(omega)/Y.rows(); sigma = omega*pow(variance, -1); dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); score = calculate_dloglik_with_constraint( t,dloglik); hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); delta = -score/hessian; //cout << "iteration: " << iter++ << endl; //cout << "delta: " << delta << endl; if(delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } } loglik = calculate_quick_loglik(sigma, Y.rows()); if((h2 >= .9 || h2 <= 0.1) && h2 == h2){ double test_h2r; if(h2 >= 0.9) test_h2r = 1.0; else test_h2r = 0.0; Eigen::VectorXd test_theta(2); test_theta(0) = 1 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_sigma_inverse = test_sigma.cwiseInverse(); Eigen::MatrixXd test_omega = test_sigma_inverse.asDiagonal(); Eigen::MatrixXd test_XTOX = covariate_matrix.transpose()*test_omega*covariate_matrix; if(test_XTOX.determinant() != 0){ Eigen::VectorXd test_beta = test_XTOX.inverse()*covariate_matrix.transpose()*test_omega*Y; Eigen::VectorXd test_residual = Y - covariate_matrix*test_beta; double test_variance = test_residual.cwiseAbs2().dot(test_sigma_inverse)/Y.rows(); double test_loglik = calculate_quick_loglik(test_sigma_inverse/test_variance, Y.rows()); if(test_loglik > loglik){ beta = test_beta; theta = test_theta; h2 = test_h2r; variance = test_variance; loglik = test_loglik; sigma = test_sigma_inverse/variance; } } } if(delta == delta){ result.beta = 0.0; result.pvalue = 1.0; result.SE = 0.0; result.loglik = loglik; result.chi = 0.0; result.h2r = h2; result.SD = sqrt(variance); }else{ result.beta = 0.0; result.chi = 0.0; result.pvalue = 1.0; result.h2r = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; } return result; } gwas_data gwas_maximize_newton_raphson_method_null_model(Eigen::VectorXd Y, Eigen::VectorXd mean_column, Eigen::MatrixXd U, const int precision){ //cout << "null calculation\n"; gwas_data result; Eigen::VectorXd raw_A = Y.cwiseProduct(mean_column); Eigen::VectorXd raw_B = mean_column.cwiseAbs2(); double t = 0; double h2 = 0.5; Eigen::VectorXd theta(2); theta(0) = 0.5; theta(1) = 0.5; double A,B; Eigen::VectorXd omega = (U*theta).cwiseInverse(); A = raw_A.dot(omega); B = raw_B.dot(omega); Eigen::VectorXd beta(1); beta(0) = A/B; Eigen::VectorXd residual = Y - mean_column*beta; Eigen::VectorXd residual_squared = residual.cwiseAbs2(); double variance = residual_squared.dot(omega)/Y.rows(); Eigen::VectorXd sigma = omega*pow(variance, -1); double loglik = calculate_quick_loglik(sigma, Y.rows()); Eigen::VectorXd lambda_minus_one = (U.col(1).array() - 1.0).matrix(); double dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); double ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); double score = calculate_dloglik_with_constraint( t,dloglik); double hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); double delta = -score/hessian; double new_h2;// = calculate_constraint(t); //cout << "iteration: 0\n"; //cout << "delta: " << delta << endl; if (delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } const double end = pow(10, -precision); int iter = 1; while( delta == delta && fabs(new_h2 - h2) >= end){ h2 = new_h2; theta(0) = 1.0 - h2; theta(1) = h2; omega = (U*theta).cwiseInverse(); A = raw_A.dot(omega); B = raw_B.dot(omega); //Eigen::VectorXd beta(2); beta(0) = A/B; residual = Y - mean_column*beta; residual_squared = residual.cwiseAbs2(); variance = residual_squared.dot(omega)/Y.rows(); sigma = omega*pow(variance, -1); dloglik = calculate_dloglik(lambda_minus_one, residual_squared, sigma, variance); ddloglik = calculate_ddloglik(lambda_minus_one, residual_squared, sigma, variance); score = calculate_dloglik_with_constraint( t,dloglik); hessian = calculate_ddloglik_with_constraint(t, dloglik, ddloglik); delta = -score/hessian; //cout << "iteration: " << iter++ << endl; //cout << "delta: " << delta << endl; if(delta == delta){ t += delta; new_h2 = calculate_constraint(t); //cout << "new h2r: " << new_h2 << endl; } } /*if(delta == delta){ h2 = new_h2; theta(0) = 1.0 - h2; theta(1) = h2; omega = (U*theta).cwiseInverse(); A = raw_A.dot(omega); B = raw_B.dot(omega); beta(0) = A/B; residual = Y - mean_column*beta; residual_squared = residual.cwiseAbs2(); variance = residual_squared.dot(omega)/Y.rows(); sigma = omega/variance; }*/ loglik = calculate_quick_loglik(sigma, Y.rows()); if((h2 >= .9 || h2 <= 0.1) && h2 == h2){ double test_h2r; if(h2 >= 0.9) test_h2r = 1.0; else test_h2r = 0.0; Eigen::VectorXd test_theta(2); test_theta(0) = 1 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_omega = (U*test_theta).cwiseInverse(); double test_A = raw_A.dot(test_omega); double test_B = raw_B.dot(test_omega); Eigen::VectorXd test_beta(1); test_beta(0) = test_A/test_B; Eigen::VectorXd test_residual = Y - mean_column*test_beta; Eigen::VectorXd test_residual_squared =test_residual.cwiseAbs2(); double test_variance = test_residual_squared.dot(test_omega)/Y.rows(); Eigen::VectorXd test_sigma = test_omega/test_variance; double test_loglik = calculate_quick_loglik(test_sigma, Y.rows()); if(test_loglik > loglik){ h2 = test_h2r; loglik = test_loglik; variance = test_variance; } } if(delta == delta){ result.beta = 0.0; result.pvalue = 1.0; result.SE = 0.0; result.loglik = loglik; result.chi = 0.0; result.h2r = h2; result.SD = sqrt(variance); }else{ result.beta = 0.0; result.chi = 0.0; result.pvalue = 1.0; result.h2r = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; } return result; } /* double calculate_GWAS_loglik(Eigen::VectorXd SY2, Eigen::VectorXd lambda, Eigen::VectorXd Sigma){ // double var_sum = 0.0; // double log_sum = 0.0; // Eigen::VectorXd theta(2); // theta(0) = 1.0-h2r; // theta(1) = h2r; // Eigen::VectorXd Sigma = (lambda*h2r).array() + e2; // const double variance_sum = SY2.cwiseQuotient(variance); return -0.5*(log(Sigma.array()).sum() + SY2.rows()); // for(int i = 0 ; i < SY.rows(); i++) }*/ gwas_data compute_null_model_MLE(Eigen::VectorXd Y, Eigen::VectorXd mean_column, Eigen::MatrixXd U, const unsigned precision){ gwas_data result; double SD = 0.0; double loglik = 0.0; Eigen::VectorXd theta(2); theta(0) = 1.0; theta(1) = 0.0; Eigen::VectorXd Sigma = U*theta; Eigen::VectorXd Omega = Sigma.cwiseInverse(); Eigen::VectorXd Y_mean_column = Y.cwiseProduct(mean_column); Eigen::VectorXd mean_column_squared = mean_column.cwiseAbs2(); double mean = Omega.dot(Y_mean_column)/Omega.dot(mean_column_squared); Eigen::VectorXd residual = Y - mean_column*mean; Eigen::VectorXd residual2 = residual.cwiseAbs2(); double variance = residual2.dot(Omega)/residual2.rows(); theta = theta*variance; Sigma = Sigma*variance; Eigen::VectorXd eigenvalues = U.col(1); double max_loglik = calculate_GWAS_loglik(residual2, eigenvalues, Sigma); double h2r = 0.0; for(double decimal = 0.1; decimal <= 1.0; decimal += 0.1){ Eigen::VectorXd test_theta(2); test_theta(0) = 1.0 - decimal; test_theta(1) = decimal; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_omega = test_sigma.cwiseInverse(); double test_mean = test_omega.dot(Y_mean_column)/test_omega.dot(mean_column_squared); Eigen::VectorXd test_residual = Y - mean_column*mean; Eigen::VectorXd test_residual2 = test_residual.cwiseAbs2(); double test_variance = test_residual2.dot(test_omega)/test_residual2.rows(); test_sigma = test_sigma*test_variance; test_theta = test_theta*test_variance; double test_loglik = calculate_GWAS_loglik(test_residual2, eigenvalues, test_sigma); if(test_loglik > max_loglik && test_loglik == test_loglik){ max_loglik = test_loglik; theta = test_theta; Sigma = test_sigma; variance = test_variance; residual = test_residual; h2r = decimal; mean = test_mean; } } for(int decimal_place = 2; decimal_place <= precision; decimal_place++){ double scale = pow(10, -decimal_place); Eigen::VectorXd next_theta = theta; Eigen::VectorXd next_sigma = Sigma; Eigen::VectorXd next_residual = residual; double next_mean = mean; double next_variance = variance; double next_h2r= h2r; double next_loglik = max_loglik; for(int i = -6; i <= 6; i++){ double value = i*scale; double test_h2r = h2r + value; if(test_h2r > 1.0 || test_h2r < 0.0 || test_h2r == h2r){ continue; } Eigen::VectorXd test_theta(2); test_theta(0) = 1.0 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_omega = test_sigma.cwiseInverse(); double test_mean = test_omega.dot(Y_mean_column)/test_omega.dot(mean_column_squared); Eigen::VectorXd test_residual = Y - mean_column*test_mean; Eigen::VectorXd test_residual2 = test_residual.cwiseAbs2(); double test_variance = test_residual2.dot(test_omega)/test_residual2.rows(); test_sigma = test_sigma*test_variance; test_theta = test_theta*test_variance; double test_loglik = calculate_GWAS_loglik(test_residual2, eigenvalues, test_sigma); if(test_loglik > next_loglik && test_loglik == test_loglik){ next_loglik = test_loglik; next_theta = test_theta; next_sigma = test_sigma; next_variance = test_variance; next_residual = test_residual; next_mean = test_mean; next_h2r = test_h2r; } } max_loglik = next_loglik; theta = next_theta; Sigma = next_sigma; variance = next_variance; residual = next_residual; mean = next_mean; h2r = next_h2r; } // cout << "null h2r " << h2r << " null loglik " << max_loglik << endl; SD = 0.0; if(max_loglik == max_loglik){ loglik = max_loglik; SD = sqrt(variance); result.beta = 0.0; result.pvalue = 1.0; result.SE = 0.0; result.loglik = loglik; result.chi = 0.0; result.h2r = h2r; result.SD = sqrt(variance); }else{ result.beta = 0.0; result.pvalue = 0.0; result.chi = 0.0; result.h2r = 0.0; result.SD = 0.0; result.SE = 0.0; result.loglik = 0.0; } return result; } //double calculate_GWAS_loglik(Eigen::VectorXd SY2, Eigen::VectorXd lambda, Eigen::VectorXd Sigma); static void MLE_GWAS(gwas_data * result, Eigen::VectorXd Y, Eigen::MatrixXd X, Eigen::MatrixXd U, gwas_data null_result, const unsigned precision){ Eigen::VectorXd raw_A = X.col(0).cwiseAbs2(); Eigen::VectorXd raw_B = X.col(1).cwiseProduct(X.col(0)); Eigen::VectorXd raw_C = X.col(1).cwiseAbs2(); Eigen::VectorXd raw_D = Y.cwiseProduct(X.col(0)); Eigen::VectorXd raw_E = Y.cwiseProduct(X.col(1)); Eigen::VectorXd theta(2); theta(0) = 1.0; theta(1) = 0.0; Eigen::VectorXd Sigma = U*theta; Eigen::VectorXd Omega = Sigma.cwiseInverse(); double A = raw_A.dot(Omega); double B = raw_B.dot(Omega); double C = raw_C.dot(Omega); double D = raw_D.dot(Omega); double E = raw_E.dot(Omega); Eigen::VectorXd beta(2); double beta_denom = A*C - B*B; beta(0) = C*D - B*E; beta(1) = A*E - B*D; beta /= beta_denom; Eigen::VectorXd residual = Y - X*beta; Eigen::VectorXd residual2 = residual.cwiseAbs2(); double variance = residual2.dot(Omega)/residual2.rows(); theta = theta*variance; Sigma = Sigma*variance; Eigen::VectorXd eigenvalues = U.col(1); double max_loglik = calculate_GWAS_loglik(residual2, eigenvalues, Sigma); double h2r = 0.0; for(double decimal = 0.1; decimal <= 1.0; decimal += 0.1){ Eigen::VectorXd test_theta(2); test_theta(0) = 1.0 - decimal; test_theta(1) = decimal; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_omega = test_sigma.cwiseInverse(); double test_A = raw_A.dot(test_omega); double test_B = raw_B.dot(test_omega); double test_C = raw_C.dot(test_omega); double test_D = raw_D.dot(test_omega); double test_E = raw_E.dot(test_omega); double test_beta_denom = test_A*test_C - test_B*test_B; Eigen::VectorXd test_beta(2); test_beta(0) = (test_C*test_D - test_B*test_E)/test_beta_denom; test_beta(1) = (test_A*test_E - test_B*test_D)/test_beta_denom; Eigen::VectorXd test_residual = Y - X*test_beta; Eigen::VectorXd test_residual2 = test_residual.cwiseAbs2(); double test_variance = test_residual2.dot(test_omega)/test_residual2.rows(); test_sigma = test_sigma*test_variance; test_theta = test_theta*test_variance; double test_loglik = calculate_GWAS_loglik(test_residual2, eigenvalues, test_sigma); if(test_loglik > max_loglik && test_loglik == test_loglik){ max_loglik = test_loglik; theta = test_theta; Sigma = test_sigma; variance = test_variance; residual = test_residual; h2r = decimal; beta = test_beta; } } for(int decimal_place = 2; decimal_place <= precision; decimal_place++){ double scale = pow(10, -decimal_place); Eigen::VectorXd next_theta = theta; Eigen::VectorXd next_sigma = Sigma; Eigen::VectorXd next_residual = residual; Eigen::VectorXd next_beta = beta; double next_variance = variance; double next_h2r= h2r; double next_loglik = max_loglik; for(int i = -5; i <= 6; i++){ double value = i*scale; double test_h2r = h2r + value; if(test_h2r > 1.0 || test_h2r < 0.0 || test_h2r == h2r){ continue; } Eigen::VectorXd test_theta(2); test_theta(0) = 1.0 - test_h2r; test_theta(1) = test_h2r; Eigen::VectorXd test_sigma = U*test_theta; Eigen::VectorXd test_omega = test_sigma.cwiseInverse(); double test_A = raw_A.dot(test_omega); double test_B = raw_B.dot(test_omega); double test_C = raw_C.dot(test_omega); double test_D = raw_D.dot(test_omega); double test_E = raw_E.dot(test_omega); double test_beta_denom = test_A*test_C - test_B*test_B; Eigen::VectorXd test_beta(2); test_beta(0) = (test_C*test_D - test_B*test_E)/test_beta_denom; test_beta(1) = (test_A*test_E - test_B*test_D)/test_beta_denom; Eigen::VectorXd test_residual = Y - X*test_beta; Eigen::VectorXd test_residual2 = test_residual.cwiseAbs2(); double test_variance = test_residual2.dot(test_omega)/test_residual2.rows(); test_sigma = test_sigma*test_variance; test_theta = test_theta*test_variance; double test_loglik = calculate_GWAS_loglik(test_residual2, eigenvalues, test_sigma); if(test_loglik > next_loglik && test_loglik == test_loglik){ next_loglik = test_loglik; next_theta = test_theta; next_sigma = test_sigma; next_variance = test_variance; next_residual = test_residual; next_h2r = test_h2r; next_beta = test_beta; } } max_loglik = next_loglik; theta = next_theta; Sigma = next_sigma; variance = next_variance; residual = next_residual; h2r = next_h2r; beta = next_beta; } double chi = 2.0*(max_loglik - null_result.loglik); Eigen::MatrixXd beta_covariance_matrix = X.transpose()*Sigma.cwiseInverse().asDiagonal()*X; double denom = beta_covariance_matrix(0,0)*beta_covariance_matrix(1, 1) - beta_covariance_matrix(1,0)*beta_covariance_matrix(0,1); // gwas_data result; if(chi >= 0.0 && chi == chi && denom > 0.0 && denom == denom){ // Eigen::MatrixXd hessian = calculate_REML_hessian(residual, SNP, Sigma, eigenvalues, variance); // Eigen::VectorXd standard_errors = hessian.inverse().diagonal().cwiseSqrt(); // double beta_se = beta_covariance(1,1); result->SE = sqrt(beta_covariance_matrix(0, 0)/denom); result->beta = beta(1); result->chi = chi; result->SD = sqrt(variance); // result->SE = 0.0;//beta_se;//standard_errors(0); result->pvalue = chicdf(result->chi , 1); result->h2r = h2r; result->loglik = max_loglik; }else{ result->beta = 0.0; result->chi = 0.0; result->pvalue = 1.0; result->h2r = null_result.h2r; result->loglik = null_result.loglik; result->SD = null_result.SD; result->SE = 0.0; } // return result; } static void calculate_pvalue(vector<double>::iterator & pvalue_iterator, Eigen::MatrixXd syP_Sigma_P, Eigen::MatrixXd sigmaP, Eigen::MatrixXd snps_matrix){ Eigen::ArrayXXd Ts_numerator = (snps_matrix*syP_Sigma_P).array(); Eigen::ArrayXXd Ts_denominator = ((snps_matrix.array()*snps_matrix.array()).matrix()*sigmaP).array(); Eigen::ArrayXXd Ts = Ts_numerator*Ts_numerator/Ts_denominator; //double compare_value; /*double value; for(int row = 0 ; row < n_snps;row++){ pvalue = 0.0; compare_value = Ts(0, 0); pvalue = (Ts >= compare_value).count()/(double)sigmaP.cols(); */ //#pragma omp parallel for for(int row = 0; row < Ts.rows(); row++){ *pvalue_iterator++ = (Ts.row(row) >= Ts(row, 0)).count()/double(Ts.cols()); } } static void print_gwas_help(Tcl_Interp * interp){ Solar_Eval(interp, "help gwas"); } static void calculate_eigen_data_null(Eigen::VectorXd & Y, Eigen::MatrixXd & eigenvectors_transposed, Eigen::MatrixXd & U, Eigen::MatrixXd phi2){ const int n_subjects = Y.rows(); Eigen::SelfAdjointEigenSolver<Eigen::MatrixXd> es(phi2); Eigen::MatrixXd temp_eigenvectors = es.eigenvectors(); Eigen::VectorXd temp_eigenvalues = es.eigenvalues(); const int n_subjects_reml = n_subjects - (temp_eigenvalues.array() == 0.0).count(); gwas_data result; eigenvectors_transposed = temp_eigenvectors.transpose(); U.resize(n_subjects, 2); U.col(0) = Eigen::ArrayXd::Ones(n_subjects).matrix(); U.col(1) = temp_eigenvalues; Y = eigenvectors_transposed * Y;//(Y.array() - Y.mean()).matrix(); } static vector<gwas_data> GWAS_MLE_fix_missing_run_with_covariates(gwas_data null_result, Eigen::VectorXd default_Y, Eigen::MatrixXd default_covariate_matrix,\ Eigen::MatrixXd snp_matrix,Eigen::MatrixXd default_U, \ const int n_snps, const unsigned precision, vector<string> & status_vector){ // const int n_subjects = Y.rows(); vector<gwas_data> results(n_snps); #pragma omp parallel for schedule(dynamic) for(int iteration = 0; iteration < n_snps; iteration++){ //cout << "snp: " << iteration << endl; Eigen::MatrixXd local_covariate_matrix = default_covariate_matrix; local_covariate_matrix.col(local_covariate_matrix.cols() - 1) = snp_matrix.col(iteration); /* Eigen::MatrixXd local_X(n_subjects , 2); local_X.col(0) = default_mean; int local_n_subjects = n_subjects; double SNP_mean = 0.0; for(int row = 0 ; row < n_subjects; row++){ local_X(row, 1) = SNP_data[iteration*n_subjects + row]; if(local_X(row, 1) != 3.0){ SNP_mean += local_X(row, 1); }else{ local_n_subjects--; } } SNP_mean /= local_n_subjects; for(int row = 0; row < n_subjects; row++){ if(local_X(row, 1) != 3.0){ local_X(row, 1) -= SNP_mean; }else{ local_X(row, 1) = 0.0; } }*/ //cout << "multiplying evectors times snp\n"; // local_X.col(1) = default_eigenvectors_transposed*local_X.col(1); gwas_data result; //cout << "starting newton raphson\n"; gwas_maximize_newton_raphson_method_with_covariates(&result, default_Y, local_covariate_matrix, default_U, null_result, precision, status_vector[iteration]); //MLE_GWAS(&result,default_Y, local_X, default_U, null_result, precision); // if(result.chi == 0.0) result.SD = default_SD; results[iteration] = result; } return results; } static vector<gwas_data> GWAS_MLE_fix_missing_run(gwas_data null_result, Eigen::VectorXd default_Y, Eigen::VectorXd default_mean,\ Eigen::MatrixXd snp_matrix,Eigen::MatrixXd default_U, \ const int n_snps, const unsigned precision, vector<string> & status_vector, const unsigned n_permutations = 0){ // const int n_subjects = Y.rows(); vector<gwas_data> results(n_snps); #pragma omp parallel for schedule(dynamic) for(int iteration = 0; iteration < n_snps; iteration++){ //cout << "snp: " << iteration << endl; Eigen::MatrixXd local_X(default_Y.rows(), 2); local_X.col(0) = default_mean; local_X.col(1) = snp_matrix.col(iteration); /* Eigen::MatrixXd local_X(n_subjects , 2); local_X.col(0) = default_mean; int local_n_subjects = n_subjects; double SNP_mean = 0.0; for(int row = 0 ; row < n_subjects; row++){ local_X(row, 1) = SNP_data[iteration*n_subjects + row]; if(local_X(row, 1) != 3.0){ SNP_mean += local_X(row, 1); }else{ local_n_subjects--; } } SNP_mean /= local_n_subjects; for(int row = 0; row < n_subjects; row++){ if(local_X(row, 1) != 3.0){ local_X(row, 1) -= SNP_mean; }else{ local_X(row, 1) = 0.0; } }*/ //cout << "multiplying evectors times snp\n"; // local_X.col(1) = default_eigenvectors_transposed*local_X.col(1); gwas_data result; //cout << "starting newton raphson\n"; gwas_maximize_newton_raphson_method(&result, default_Y, local_X, default_U, null_result, precision, status_vector[iteration], n_permutations); //MLE_GWAS(&result,default_Y, local_X, default_U, null_result, precision); // if(result.chi == 0.0) result.SD = default_SD; results[iteration] = result; } return results; } static vector<gwas_data> GWAS_MLE_run(gwas_data default_null_result,Eigen::VectorXd Y, Eigen::VectorXd default_Y, Eigen::VectorXd default_mean,\ Eigen::MatrixXd default_U, Eigen::MatrixXd default_eigenvectors_transposed, Eigen::MatrixXd default_phi2,\ int * SNP_data, const int n_snps, const int n_subjects, const unsigned precision, vector<string> & status_vector){ //const int n_subjects = Y.rows(); vector<gwas_data> results(n_snps); #pragma omp parallel for schedule(dynamic) for(int iteration = 0; iteration < n_snps; iteration++){ Eigen::VectorXd local_Y; Eigen::MatrixXd local_U; Eigen::MatrixXd local_X; Eigen::MatrixXd local_eigenvectors_transposed; gwas_data local_null_result = default_null_result; double local_SD; Eigen::MatrixXd local_phi2; Eigen::VectorXd local_SNP(n_subjects); int local_n_subjects = n_subjects; for(int row = 0 ; row < n_subjects; row++){ local_SNP(row) = SNP_data[iteration*n_subjects + row]; if(local_SNP(row) == 3.0) local_n_subjects--; } if(local_n_subjects == 0){ gwas_data result; result.beta = 0.0; result.SD = 0.0; result.SE = 0.0; result.chi = 0.0; result.pvalue = 0.0; results[iteration] = result; }else{ if(local_n_subjects == n_subjects){ local_U = default_U; local_eigenvectors_transposed = default_eigenvectors_transposed; local_Y = default_Y; local_SNP = local_eigenvectors_transposed*local_SNP; Eigen::MatrixXd temp_X(n_subjects, 2); temp_X.col(0) = default_mean; temp_X.col(1) = local_SNP; local_X = temp_X; local_SD = default_null_result.SD; local_null_result = default_null_result; }else{ Eigen::VectorXd temp_local_Y(local_n_subjects); Eigen::MatrixXd local_phi2(local_n_subjects,local_n_subjects); local_X = Eigen::ArrayXXd::Ones(local_n_subjects, 2).matrix(); int local_row = 0; for(int row = 0; row < n_subjects; row++){ if(local_SNP(row) != 3.0){ temp_local_Y(local_row) = Y(row); local_X(local_row, 1) = local_SNP(row); int local_col = local_row; for(int col = row; col < n_subjects; col++){ if( local_SNP(col) != 3.0){ local_phi2(local_row, local_col) = default_phi2(row,col); local_phi2(local_col++, local_row) = default_phi2(col, row); } } local_row++; } } local_Y = temp_local_Y; calculate_eigen_data_null(local_Y, local_eigenvectors_transposed, local_U, local_phi2); local_X = local_eigenvectors_transposed*local_X; Eigen::VectorXd local_mean = local_X.col(0); local_null_result = gwas_maximize_newton_raphson_method_null_model(local_Y, local_mean, local_U, precision); } gwas_data result; if(local_null_result.loglik == local_null_result.loglik){ gwas_maximize_newton_raphson_method(&result, local_Y, local_X, local_U, local_null_result, precision, status_vector[iteration]); }else{ result.chi = 0.0; result.beta = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; result.h2r = 0.0; result.pvalue = 0.0; } results[iteration] = result; } } return results; } Eigen::VectorXd calculate_theta(Eigen::VectorXd Y, Eigen::MatrixXd aux){ Eigen::VectorXd theta(2); theta(0) = 0.0; theta(1) = 0.0; Eigen::VectorXd F = Y.cwiseAbs2(); const double F_mean = F.mean(); const double score = aux.col(1).dot(((F/F_mean).array() - 1.0).matrix())/F_mean; if(score <= 0.0) return theta; theta = aux.colPivHouseholderQr().solve(F); if(theta(0) <= 0.0 && theta(1) > 0.0){ theta(0) = 0.0; Eigen::VectorXd single_value = aux.col(1).colPivHouseholderQr().solve(F); if(single_value(0) > 0.0){ theta(1) = single_value(0); }else{ theta(1) = 0.0; } }else if (theta(0) > 0.0 && theta(1) <= 0.0){ theta(1) = 0.0; Eigen::VectorXd single_value = aux.col(0).colPivHouseholderQr().solve(F); if(single_value(0) > 0.0){ theta(0) = single_value(0); }else{ theta(0) = 0.0; } } if(theta(0) < 0.0) theta(0) = 0.0; if(theta(1) < 0.0) theta(1) = 0.0; if(theta(0) == 0.0 && theta(1) == 0.0) return theta; Eigen::VectorXd Sigma = aux*theta; Eigen::MatrixXd Omega = Sigma.cwiseAbs2().cwiseInverse().asDiagonal(); theta = (Omega*aux).colPivHouseholderQr().solve(Omega*F); if(theta(0) <= 0.0 && theta(1) > 0.0){ theta(0) = 0.0; Eigen::VectorXd single_value = (Omega*aux.col(1)).colPivHouseholderQr().solve(Omega*F); if(single_value(0) > 0.0){ theta(1) = single_value(0); }else{ theta(1) = 0.0; } }else if (theta(0) > 0.0 && theta(1) <= 0.0){ theta(1) = 0.0; Eigen::VectorXd single_value = (Omega*aux.col(0)).colPivHouseholderQr().solve(Omega*F); if(single_value(0) > 0.0){ theta(0) = single_value(0); }else{ theta(0) = 0.0; } }else if (theta(0) <= 0.0 && theta(1) <= 0.0){ theta(0) = 0.0; theta(1) = 0.0; } return theta; } static void calculate_pvalues_permutation_method(vector<double>::iterator & pvalue_iterator,Eigen::MatrixXd Sigma_Y_permutated, Eigen::MatrixXd Sigma_permutated, Eigen::MatrixXd SNP_data){ Eigen::ArrayXXd Ts_numerator = (SNP_data*Sigma_Y_permutated).cwiseAbs2().array(); Eigen::ArrayXXd Ts_denominator = (SNP_data.cwiseAbs2()*Sigma_permutated).array(); Eigen::ArrayXXd Ts = Ts_numerator/Ts_denominator; for(int row = 0; row < Ts.rows(); row++){ *pvalue_iterator++ = (Ts.row(row) >= Ts(row, 0)).count()/double(Ts.cols()); } } static void compute_pvalue_batch(vector<double>::iterator & pvalue_iterator, Eigen::MatrixXd Sigma_Y_permutated, Eigen::MatrixXd Sigma_permutated, Eigen::MatrixXd eigenvectors_transposed,\ int * SNP_data, const int batch_size,const int n_subjects, const int n_permutations){ Eigen::MatrixXd SNP_matrix(n_subjects, batch_size); for(int col = 0 ; col < batch_size; col++){ double SNP_mean = 0.0; int subject_count = 0; for(int subject = 0; subject < n_subjects; subject++){ int value = SNP_data[col*n_subjects + subject]; if(value != 3){ SNP_mean+= value; subject_count++; } SNP_matrix(subject, col) = value; } SNP_mean /= subject_count; for(int subject = 0; subject < n_subjects; subject++){ if(SNP_matrix(subject,col) != 3.0){ SNP_matrix(subject,col) -= SNP_mean; }else{ SNP_matrix(subject, col) = 0.0; } } } SNP_matrix = eigenvectors_transposed*SNP_matrix; SNP_matrix.transposeInPlace(); calculate_pvalues_permutation_method(pvalue_iterator, Sigma_Y_permutated, Sigma_permutated, SNP_matrix); } static void compute_permutation_data(Eigen::VectorXd Sigma_Y, Eigen::VectorXd Sigma, Eigen::MatrixXd & Sigma_Y_permutated, \ Eigen::MatrixXd & Sigma_permutated, const int n_subjects, const int n_permutations){ vector<int> indices(n_subjects); iota(indices.begin(), indices.end(), 0); Sigma_Y_permutated.col(0) = Sigma_Y; Sigma_permutated.col(0) = Sigma; for(int col = 1 ; col < n_permutations + 1; col++){ random_shuffle(indices.begin(), indices.end()); for(int row = 0; row < n_subjects; row++){ Sigma_Y_permutated(row, col) = Sigma_Y(indices[row]); Sigma_permutated(row, col) = Sigma(indices[row]); } } } static vector<double> compute_pvalues_permutation(Eigen::VectorXd Y, Eigen::VectorXd Sigma, Eigen::MatrixXd eigenvectors_transposed, int * snp_data, \ const int n_snps, const int n_subjects, const int n_permutations){ Eigen::VectorXd Sigma_Y = Y.cwiseProduct(Sigma); Eigen::MatrixXd Sigma_Y_permutated(n_subjects, n_permutations + 1); Eigen::MatrixXd Sigma_permutated(n_subjects, n_permutations + 1); compute_permutation_data(Sigma_Y, Sigma, Sigma_Y_permutated, \ Sigma_permutated, n_subjects, n_permutations); vector<double> pvalues(n_snps); if(n_snps <= PERMUTATION_BATCH_SIZE){ vector<double>::iterator pvalue_iterator = pvalues.begin(); compute_pvalue_batch(pvalue_iterator, Sigma_Y_permutated, Sigma_permutated, eigenvectors_transposed, \ snp_data, n_snps, n_subjects, n_permutations); }else{ const int batch_size = PERMUTATION_BATCH_SIZE; const int n_batches = ceil(double(n_snps)/batch_size); int remainder_snps = n_snps % batch_size; if(remainder_snps == 0) remainder_snps = batch_size; #pragma omp parallel for for(int batch = 0; batch < n_batches; batch++){ int thread_batch_size = batch_size; if(batch == n_batches - 1) thread_batch_size = remainder_snps; vector<double>::iterator pvalue_iterator = pvalues.begin() + batch_size*batch; compute_pvalue_batch(pvalue_iterator, Sigma_Y_permutated, Sigma_permutated, eigenvectors_transposed, \ snp_data + n_subjects*batch*batch_size, thread_batch_size, n_subjects, n_permutations); } } return pvalues; } vector<string> read_trait_list(const char * list_filename){ ifstream input_stream(list_filename); vector<string> output; if(!input_stream.is_open()) return output; string trait; while(input_stream >> trait){ output.push_back(trait); } return output; } static const char * load_covariate_terms(const char * phenotype_filename, Eigen::MatrixXd & covariate_term_matrix, vector<string> covariate_terms, vector<string> & ids){ const char * errmsg = 0; SolarFile * file_reader = SolarFile::open("Read GWAS Covariate Terms", phenotype_filename, &errmsg); if(errmsg) return errmsg; file_reader->start_setup(&errmsg); if(errmsg) return errmsg; file_reader->setup("id", &errmsg); if(errmsg) return errmsg; for(int i = 0; i < covariate_terms.size(); i++){ file_reader->setup(covariate_terms[i].c_str(), &errmsg); if(errmsg) return errmsg; } vector< vector<double> > file_values; vector<string> temp_ids; char ** file_data; while (0 != (file_data = file_reader->get (&errmsg))){ string id = file_data[0]; bool skip_row = false; vector<double> row_values(covariate_terms.size()); for(int i = 1; i < covariate_terms.size() + 1; i++){ if(StringCmp(file_data[i], 0, case_ins)){ if(!StringCmp(file_data[i], "m", case_ins)){ row_values[i - 1] = 0; }else if (!StringCmp(file_data[i], "f", case_ins)){ row_values[i - 1] = 1; }else{ row_values[i - 1] = atof (file_data[i]); } }else{ skip_row = true; break; } } if(!skip_row){ temp_ids.push_back(id); file_values.push_back(row_values); } } delete file_reader; covariate_term_matrix.resize(temp_ids.size(), covariate_terms.size()); for(int row = 0; row < covariate_term_matrix.rows(); row++){ vector<double> row_values = file_values[row]; for(int col = 0; col < covariate_term_matrix.cols(); col++){ covariate_term_matrix(row, col) = row_values[col]; } } for(int i = 0; i < covariate_terms.size();i++){ if(!StringCmp(covariate_terms[i].c_str(), "sex", case_ins)){ if((covariate_term_matrix.col(i).array() == 2.0).count() != 0){ for(int row = 0 ; row < covariate_term_matrix.rows(); row++){ if(covariate_term_matrix(row,i) == 2) covariate_term_matrix(row,i) = 1; else covariate_term_matrix(row,i) = 0; } } break; } } ids = temp_ids; return 0; } static Eigen::MatrixXd create_covariate_matrix(vector<string> ids, vector<string> covariate_ids, vector<string> covariate_terms, Eigen::MatrixXd raw_covariate_term_matrix, const int n_covariates){ Eigen::MatrixXd ordered_covariate_term_matrix(ids.size(), covariate_terms.size()); for(int i = 0; i < ids.size(); i++){ vector<string>::iterator find_iter = find(covariate_ids.begin(), covariate_ids.end(), ids[i]); if(find_iter != covariate_ids.end()){ const int row_index = distance(covariate_ids.begin(), find_iter); for(int col = 0 ; col < covariate_terms.size(); col++){ ordered_covariate_term_matrix(i, col) = raw_covariate_term_matrix(row_index, col); } }else{ Eigen::MatrixXd null_matrix; return null_matrix; } } for(int i = 0; i < covariate_terms.size(); i++){ if(StringCmp(covariate_terms[i].c_str(), "sex", case_ins)){ ordered_covariate_term_matrix.col(i) = ordered_covariate_term_matrix.col(i).array() - ordered_covariate_term_matrix.col(i).mean(); } } Eigen::MatrixXd covariate_matrix = Eigen::MatrixXd::Ones(ids.size(), n_covariates); Covariate * cov; for(int col = 0; (cov = Covariate::index(col)); col++){ CovariateTerm * cov_term; for(cov_term = cov->terms(); cov_term; cov_term = cov_term->next){ int index = 0; for(vector<string>::iterator cov_iter = covariate_terms.begin(); cov_iter != covariate_terms.end(); cov_iter++){ if(!StringCmp(cov_term->name, cov_iter->c_str(), case_ins)){ break; } index++; } if(cov_term->exponent == 1){ covariate_matrix.col(col) = covariate_matrix.col(col).array()*ordered_covariate_term_matrix.col(index).array(); }else{ covariate_matrix.col(col) = covariate_matrix.col(col).array()*pow(ordered_covariate_term_matrix.col(index).array(), cov_term->exponent); } } } return covariate_matrix; } typedef struct gwas_screen_data{ double beta_se; double beta; double chi; gwas_screen_data & operator = (const gwas_screen_data & var) { beta = var.beta; beta_se = var.beta_se; chi = var.chi; } }gwas_screen_data; static vector<gwas_screen_data> calculate_gwas_screen(Eigen::VectorXd Y, Eigen::MatrixXd SNP_matrix, Eigen::VectorXd Sigma, const unsigned n_snps){ vector<gwas_screen_data> results(n_snps); #pragma omp parallel for schedule(dynamic) for(int iteration = 0; iteration < n_snps; iteration++){ double denom = Sigma.dot(SNP_matrix.col(iteration).cwiseAbs2()); double numerator = SNP_matrix.col(iteration).dot(Y.cwiseProduct(Sigma)); results[iteration].beta_se = pow(denom, -0.5); results[iteration].beta = numerator/denom; results[iteration].chi = numerator*numerator/denom; } return results; } static const char * run_gwas_screen_list(const char * phenotype_filename, const char * list_filename, const char * evd_data_filename, const char * plink_filename, const bool verbose, unsigned batch_size = GWAS_BATCH_SIZE){ vector<string> trait_list; if(list_filename) { trait_list = read_trait_list(list_filename); }else{ string trait_name = string(Trait::Name(0)); trait_list.push_back(trait_name); } if(trait_list.size() == 0){ return "No traits read from list file"; } pio_file_t * plink_file = new pio_file_t; if (pio_open(plink_file, plink_filename) != PIO_OK){ return "Error opening plink file"; } const unsigned num_plink_samples = pio_num_samples(plink_file); const unsigned n_snps = pio_num_loci(plink_file); //unsigned batch_size = GWAS_BATCH_SIZE; if(batch_size >= n_snps){ batch_size = n_snps; } unsigned iterations = ceil(n_snps/batch_size); unsigned final_batch_size = n_snps % batch_size; if(final_batch_size == 0) final_batch_size = batch_size; if(n_snps >= GWAS_BATCH_SIZE){ batch_size = GWAS_BATCH_SIZE; iterations = ceil(n_snps/GWAS_BATCH_SIZE); final_batch_size = n_snps % batch_size; if(final_batch_size == 0 ) final_batch_size = batch_size; } pio_sample_t * sample; vector<string> plink_ids; for(unsigned i = 0; i < num_plink_samples; i++){ sample = pio_get_sample(plink_file, i); plink_ids.push_back(string(sample->iid)); } vector<string> snp_names; for(unsigned snp = 0; snp < n_snps; snp++){ pio_locus_t * locus = pio_get_locus(plink_file, snp); snp_names.push_back(string(locus->name)); } //snp_t * snp_buffer = new snp_t[num_plink_samples]; Solar_Trait_Reader * trait_reader; if(evd_data_filename){ try{ trait_reader = new Solar_Trait_Reader(phenotype_filename,evd_data_filename, trait_list); }catch(Solar_Trait_Reader_Exception & e){ const char * error_message = e.what(); return error_message; }catch(...){ return "Unknown error occurred reading phenotype or pedigree data"; } }else{ try{ trait_reader = new Solar_Trait_Reader(phenotype_filename, trait_list, plink_ids); }catch(Solar_Trait_Reader_Exception & e){ return e.what(); }catch(...){ return "Unknown error occurred reading phenotype or pedigree data"; } } for(unsigned set = 0; set < trait_reader->get_n_sets(); set++){ Eigen_Data * eigen_data = trait_reader->get_eigen_data_set(set); vector<string> ids = eigen_data->get_ids(); unsigned plink_index_map[ids.size()]; for(unsigned index = 0; index < ids.size(); index++){ string id = ids[index]; plink_index_map[index] = distance(plink_ids.begin(), find(plink_ids.begin(), plink_ids.end(), id)); } Eigen::VectorXd eigenvalues = Eigen::Map<Eigen::VectorXd>(eigen_data->get_eigenvalues(), ids.size()); Eigen::MatrixXd eigenvectors_transposed = Eigen::Map<Eigen::MatrixXd>(eigen_data->get_eigenvectors_transposed(), ids.size(), ids.size()); //eigenvectors_transposed = Eigen::MatrixXd::Identity(eigenvalues.rows(), eigenvalues.rows()); //eigenvalues = Eigen::VectorXd::Ones(eigenvectors_transposed.rows()); int * snp_data; for(unsigned trait = 0; trait < eigen_data->get_n_phenotypes(); trait++){ string trait_name = eigen_data->get_trait_name(trait); string output_filename = trait_name + "-screen-gwas.out"; ofstream output_stream(output_filename.c_str()); output_stream << "SNP,p-value,beta,beta_se\n"; Eigen::VectorXd trait_vector = Eigen::Map<Eigen::VectorXd>(eigen_data->get_phenotype_column(trait), ids.size()); pio_reset_row(plink_file); unsigned current_batch_size = batch_size; Eigen::VectorXd default_Y;// = trait_vector; Eigen::MatrixXd default_U; default_Y = eigenvectors_transposed*(trait_vector.array() - trait_vector.mean()).matrix(); default_U = Eigen::MatrixXd::Ones(eigenvalues.rows(),2 ); default_U.col(1) = eigenvalues; Eigen::VectorXd theta = calculate_theta(default_Y, default_U); Eigen::VectorXd Sigma = (default_U*theta).cwiseInverse(); //}else{ // default_Y = trait_vector; //} //gwas_data default_null_result = compute_null_model_MLE(default_Y, default_mean, default_U, precision); unsigned n_snps_computed = 0; vector<gwas_screen_data> results; int max_output_width = 0; for(unsigned iteration = 0; iteration < iterations; iteration++){ if(iteration == iterations - 1) current_batch_size = final_batch_size; Eigen::MatrixXd snp_matrix(ids.size(), current_batch_size); unsigned snp_index = 0; #pragma omp parallel for for(unsigned snp = 0; snp < current_batch_size; snp++){ snp_t snp_buffer[num_plink_samples]; unsigned local_snp_index; #pragma omp critical { pio_next_row(plink_file, &snp_buffer[0]); local_snp_index = snp_index; snp_index++; } double mean = 0.0; unsigned current_n_subjects = ids.size(); for(unsigned id = 0; id < ids.size(); id++){ const double value = snp_buffer[plink_index_map[id]]; if(value != 3){ mean += value; }else{ current_n_subjects--; } snp_matrix(id, local_snp_index) = value; //snp_data[ids.size()*snp + id] = snp_buffer[plink_index_map[id]]; } mean /= current_n_subjects; for(unsigned id = 0; id < ids.size() ;id++){ if(snp_matrix(id,local_snp_index) != 3) snp_matrix(id,local_snp_index) -= mean; else snp_matrix(id, local_snp_index) = 0; } } snp_matrix = eigenvectors_transposed*snp_matrix; results = calculate_gwas_screen(default_Y, snp_matrix, Sigma, current_batch_size); for(unsigned snp = 0; snp < current_batch_size; snp++){ double pvalue = 1.0; if(results[snp].chi > 0.0){ pvalue = chicdf(results[snp].chi, 1); output_stream << snp_names[iteration*batch_size + snp] << "," << pvalue << "," << \ results[snp].beta << "," << results[snp].beta_se << "\n"; }else{ output_stream << snp_names[iteration*batch_size + snp] << "," << 1.0 << "," << \ 0.0 << "," << 0.0 << "\n"; } } if(verbose){ n_snps_computed += current_batch_size; std::string output_str = "Trait: " + trait_name + " SNPs Computed: " + to_string(n_snps_computed) + " Percent Complete " + to_string(floor(100.0*n_snps_computed/n_snps)) + "%\r"; if(max_output_width < output_str.length()) max_output_width = output_str.length(); //std::cout << "Trait: " << trait_name << " SNPs Computed: " << n_snps_computed << " SNPs Left: " << n_snps - n_snps_computed << " Percent Complete " << 100*n_snps_computed/n_snps << "% \r"; std::cout << std::setw(max_output_width) << output_str << std::flush; //std::cout.flush(); } } if(verbose){ std::cout.flush(); std::cout << "\n"; std::cout << "Trait: " << trait_name << " is finished GWAS Screen computation\n"; } output_stream.close(); } } } static const char * run_gwas_list(const char * phenotype_filename, const char * list_filename, const char * evd_data_filename, const char * plink_filename, const bool fix_missing, const unsigned precision, const bool verbose, const bool use_covariates, unsigned n_permutations = 0, unsigned batch_size = GWAS_BATCH_SIZE){ vector<string> trait_list;// = read_trait_list(list_filename); if(list_filename) { trait_list = read_trait_list(list_filename); }else{ string trait_name = string(Trait::Name(0)); trait_list.push_back(trait_name); } int n_covariates = 0; vector<string> covariate_terms; Eigen::MatrixXd raw_covariate_term_matrix; vector<string> covariate_term_ids; if(use_covariates){ Covariate * c; for (int i = 0;( c = Covariate::index(i)); i++) { CovariateTerm * cov_term; for(cov_term = c->terms(); cov_term; cov_term = cov_term->next){ bool found = false; for(vector<string>::iterator cov_iter = covariate_terms.begin(); cov_iter != covariate_terms.end(); cov_iter++){ if(!StringCmp(cov_term->name, cov_iter->c_str(), case_ins)){ found = true; break; } } if(!found){ covariate_terms.push_back(string(cov_term->name)); } } n_covariates++; } const char * error_message = 0; error_message = load_covariate_terms(phenotype_filename, raw_covariate_term_matrix, covariate_terms, covariate_term_ids); if(error_message) return error_message; } if(trait_list.size() == 0){ return "No traits read from list file"; } pio_file_t * plink_file = new pio_file_t; if (pio_open(plink_file, plink_filename) != PIO_OK){ return "Error opening plink file"; } const unsigned num_plink_samples = pio_num_samples(plink_file); const unsigned n_snps = pio_num_loci(plink_file); //unsigned batch_size = GWAS_BATCH_SIZE; if(batch_size >= n_snps){ batch_size = n_snps; } unsigned iterations = ceil(n_snps/batch_size); unsigned final_batch_size = n_snps % batch_size; if(final_batch_size == 0) final_batch_size = batch_size; if(n_snps >= GWAS_BATCH_SIZE){ batch_size = GWAS_BATCH_SIZE; iterations = ceil(n_snps/GWAS_BATCH_SIZE); final_batch_size = n_snps % batch_size; if(final_batch_size == 0 ) final_batch_size = batch_size; } pio_sample_t * sample; vector<string> plink_ids; for(unsigned i = 0; i < num_plink_samples; i++){ sample = pio_get_sample(plink_file, i); plink_ids.push_back(string(sample->iid)); } //std::cout << "plink id count: " << plink_ids.size() << std::endl; vector<string> snp_names; for(unsigned snp = 0; snp < n_snps; snp++){ pio_locus_t * locus = pio_get_locus(plink_file, snp); snp_names.push_back(string(locus->name)); } //snp_t * snp_buffer = new snp_t[num_plink_samples]; Solar_Trait_Reader * trait_reader; if(evd_data_filename){ try{ trait_reader = new Solar_Trait_Reader(phenotype_filename,evd_data_filename, trait_list); }catch(Solar_Trait_Reader_Exception & e){ const char * error_message = e.what(); return error_message; }catch(...){ return "Unknown error occurred reading phenotype or pedigree data"; } }else{ vector<string> id_include_list; if(use_covariates){ for(int i = 0; i < plink_ids.size(); i++){ vector<string>::iterator find_iter = find(covariate_term_ids.begin(), covariate_term_ids.end(), plink_ids[i]); if(find_iter != covariate_term_ids.end()){ id_include_list.push_back(plink_ids[i]); } } }else{ id_include_list = plink_ids; } try{ trait_reader = new Solar_Trait_Reader(phenotype_filename, trait_list, id_include_list); }catch(Solar_Trait_Reader_Exception & e){ return e.what(); }catch(...){ return "Unknown error occurred reading phenotype or pedigree data"; } } if(trait_reader->get_n_sets() == 0){ return "No viable data could be read"; } // int * iteration_count = new int[batch_size]; for(unsigned set = 0; set < trait_reader->get_n_sets(); set++){ Eigen_Data * eigen_data = trait_reader->get_eigen_data_set(set); vector<string> ids = eigen_data->get_ids(); unsigned plink_index_map[ids.size()]; for(unsigned index = 0; index < ids.size(); index++){ string id = ids[index]; plink_index_map[index] = distance(plink_ids.begin(), find(plink_ids.begin(), plink_ids.end(), id)); } Eigen::VectorXd eigenvalues = Eigen::Map<Eigen::VectorXd>(eigen_data->get_eigenvalues(), ids.size()); Eigen::MatrixXd eigenvectors_transposed = Eigen::Map<Eigen::MatrixXd>(eigen_data->get_eigenvectors_transposed(), ids.size(), ids.size()); //eigenvectors_transposed = Eigen::MatrixXd::Identity(eigenvalues.rows(), eigenvalues.rows()); //eigenvalues = Eigen::VectorXd::Ones(eigenvectors_transposed.rows()); Eigen::MatrixXd phi2;// = eigenvectors_transposed.transpose()*eigenvalues.asDiagonal()*eigenvectors_transposed; if(!fix_missing){ phi2 = eigenvectors_transposed.transpose()*eigenvalues.asDiagonal()*eigenvectors_transposed; } int * snp_data; if(!fix_missing) snp_data = new int[batch_size*ids.size()]; Eigen::MatrixXd covariate_matrix; Eigen::MatrixXd default_covariate_matrix; if(use_covariates){ covariate_matrix = create_covariate_matrix(ids, covariate_term_ids, covariate_terms, raw_covariate_term_matrix, n_covariates); if(covariate_matrix.rows() == 0){ return "Failure loading covariates"; } Eigen::MatrixXd temp_covariate_matrix = Eigen::MatrixXd::Ones(covariate_matrix.rows(), covariate_matrix.cols() +1); default_covariate_matrix.resize(covariate_matrix.rows(), covariate_matrix.cols() + 2); for(int col = 0; col < covariate_matrix.cols(); col++){ temp_covariate_matrix.col(col) = covariate_matrix.col(col); } covariate_matrix = eigenvectors_transposed*temp_covariate_matrix; for(int col = 0; col < covariate_matrix.cols(); col++){ default_covariate_matrix.col(col) = covariate_matrix.col(col); } } if(n_permutations){ permutated_indices = new int[n_permutations*ids.size()]; vector<int> indices(ids.size()); for(int i = 0; i < indices.size() ; i++){ indices[i] = i; } for(int p = 0; p < n_permutations; p++){ random_shuffle(indices.begin(), indices.end()); for(int row = 0; row < ids.size(); row++){ permutated_indices[p*ids.size() + row] = indices[row]; } } } for(unsigned trait = 0; trait < eigen_data->get_n_phenotypes(); trait++){ string trait_name = eigen_data->get_trait_name(trait); string output_filename = trait_name + "-gwas.out"; ofstream output_stream(output_filename.c_str()); output_stream << "SNP,h2r,loglik,SD,beta_snp,beta_snp_se,chi2,p-value,Status\n"; Eigen::VectorXd trait_vector = Eigen::Map<Eigen::VectorXd>(eigen_data->get_phenotype_column(trait), ids.size()); vector<gwas_data> results; pio_reset_row(plink_file); unsigned current_batch_size = batch_size; Eigen::VectorXd default_Y;// = trait_vector; Eigen::VectorXd mean = Eigen::ArrayXd::Ones(trait_vector.rows()).matrix(); Eigen::MatrixXd default_U; // Eigen::MatrixXd default_eigenvectors_transposed; Eigen::VectorXd default_mean; Eigen::MatrixXd default_phi2;// = phi2; //Eigen::MatrixXd identity = Eigen::MatrixXd::Identity(ids.size(),ids.size()); //Eigen::MatrixXd hat = identity - mean*(mean.transpose()*mean).inverse()*mean.transpose(); //Eigen::MatrixXd Xphi2X = phi2; //Eigen::SelfAdjointEigenSolver<Eigen::MatrixXd> es(phi2); //cout << Xphi2X.rows() << endl; //Eigen::MatrixXd all_eigenvectors = es.eigenvectors(); //cout << all_eigenvectors.cols() << endl; //Eigen::VectorXd all_eigenvalues = es.eigenvalues(); //Eigen::VectorXd reml_eigenvalues(all_eigenvalues.rows()); //Eigen::MatrixXd reml_eigenvectors(all_eigenvalues.rows(), all_eigenvalues.rows()); //cout << all_eigenvalues(all_eigenvalues.rows() - 1) << endl; //for(unsigned row = 0 ; row < all_eigenvalues.rows(); row++){ // reml_eigenvalues(row) = all_eigenvalues(row ); // reml_eigenvectors.col(row) = all_eigenvectors.col(row); //} //default_eigenvectors_transposed = eigenvectors_transposed;//es.eigenvectors().transpose(); //default_U = Eigen::MatrixXd::Ones(eigenvectors_transposed.rows(),2 ); //default_U.col(1) = eigenvalues;//es.eigenvalues(); //default_Y = default_eigenvectors_transposed*(default_Y.array() - default_Y.mean()).matrix(); //calculate_eigen_data_null(default_Y, default_eigenvectors_transposed, default_U, default_phi2); //Eigen::VectorXd default_mean; = eigenvectors_transposed*mean; //if(fix_missing){ if(!use_covariates){ default_Y = eigenvectors_transposed*trait_vector; default_U = Eigen::MatrixXd::Ones(eigenvectors_transposed.rows(),2 ); default_U.col(1) = eigenvalues; default_mean = eigenvectors_transposed*mean; }else { default_Y = eigenvectors_transposed*trait_vector; default_U = Eigen::MatrixXd::Ones(eigenvalues.rows(),2 ); default_U.col(1) = eigenvalues; } //}else{ // default_Y = trait_vector; //} gwas_data default_null_result; if(!use_covariates) default_null_result = gwas_maximize_newton_raphson_method_null_model(default_Y,default_mean, default_U, precision); if(use_covariates) default_null_result = gwas_maximize_newton_raphson_method_with_covariates_null_model(default_Y,covariate_matrix, default_U, precision); //gwas_data default_null_result = compute_null_model_MLE(default_Y, default_mean, default_U, precision); unsigned n_snps_computed = 0; //std::cout << "n_subjects : " << ids.size() << std::endl; int max_output_width = 0; for(unsigned iteration = 0; iteration < iterations; iteration++){ if(iteration == iterations - 1) current_batch_size = final_batch_size; vector<string> status_vector(current_batch_size); if(fix_missing){ Eigen::MatrixXd snp_matrix(ids.size(), current_batch_size); unsigned snp_index = 0; #pragma omp parallel for for(unsigned snp = 0; snp < current_batch_size; snp++){ snp_t snp_buffer[num_plink_samples]; unsigned local_snp_index; #pragma omp critical { pio_next_row(plink_file, &snp_buffer[0]); local_snp_index = snp_index; snp_index++; } double mean = 0.0; unsigned current_n_subjects = ids.size(); for(unsigned id = 0; id < ids.size(); id++){ const double value = snp_buffer[plink_index_map[id]]; if(value != 3){ mean += value; }else{ current_n_subjects--; } snp_matrix(id, local_snp_index) = value; //snp_data[ids.size()*snp + id] = snp_buffer[plink_index_map[id]]; } mean /= current_n_subjects; for(unsigned id = 0; id < ids.size() ;id++){ if(snp_matrix(id,local_snp_index) != 3) snp_matrix(id,local_snp_index) -= mean; else snp_matrix(id, local_snp_index) = 0; } } snp_matrix = eigenvectors_transposed*snp_matrix; if(!use_covariates){ results = GWAS_MLE_fix_missing_run(default_null_result, default_Y, default_mean,\ snp_matrix, default_U, \ current_batch_size, precision, status_vector, n_permutations); }else{ results = GWAS_MLE_fix_missing_run_with_covariates(default_null_result, default_Y, default_covariate_matrix,\ snp_matrix, default_U, \ current_batch_size, precision, status_vector); } }else{ snp_t * snp_buffer = new snp_t[num_plink_samples]; for(unsigned snp = 0; snp < current_batch_size; snp++){ pio_next_row(plink_file, snp_buffer); for(unsigned id = 0; id < ids.size(); id++){ snp_data[ids.size()*snp + id] = snp_buffer[plink_index_map[id]]; } } delete [] snp_buffer; results = GWAS_MLE_run(default_null_result,trait_vector, default_Y, default_mean,\ default_U, eigenvectors_transposed, phi2,\ snp_data, current_batch_size, ids.size(), precision,status_vector); } for(unsigned snp = 0; snp < current_batch_size; snp++){ string status_string; output_stream << snp_names[iteration*batch_size + snp] << "," << results[snp].h2r << "," << \ results[snp].loglik << "," << results[snp].SD << "," << results[snp].beta \ << "," << results[snp].SE << "," << results[snp].chi << "," << results[snp].pvalue << "," << status_vector[snp] << "\n"; } if(verbose){ n_snps_computed += current_batch_size; std::string output_str = "Trait: " + trait_name + " SNPs Computed: " + to_string(n_snps_computed) + " Percent Complete " + to_string(floor(100.0*n_snps_computed/n_snps)) + "%\r"; if(max_output_width < output_str.length()) max_output_width = output_str.length(); //std::cout << "Trait: " << trait_name << " SNPs Computed: " << n_snps_computed << " SNPs Left: " << n_snps - n_snps_computed << " Percent Complete " << 100*n_snps_computed/n_snps << "% \r"; std::cout << setw(max_output_width) << output_str << std::flush; } } if(verbose){ std::cout.flush(); std::cout << "\n"; std::cout << "Trait: " << trait_name << " is finished GWAS computation\n"; } output_stream.close(); } if(n_permutations) delete [] permutated_indices; if(!fix_missing) delete [] snp_data; } //delete [] iteration_count; delete trait_reader; return 0; } static Eigen::VectorXd create_snp_vector(vector<string> ids, vector<string> snp_ids, vector<double> snp_values){ Eigen::VectorXd snp_vector(ids.size()); for(unsigned i = 0; i < ids.size(); i++){ string current_id = ids[i]; for(unsigned j = 0; j < snp_ids.size(); j++){ if(current_id == snp_ids[j]){ snp_vector[i] = snp_values[j]; break; } } } return snp_vector; } static vector<gwas_data> calculate_single_snp_gwas(Eigen::MatrixXd trait_matrix,Eigen::VectorXd mean_column,Eigen::VectorXd snp_vector, Eigen::MatrixXd aux, const unsigned precision){ vector<gwas_data> results(trait_matrix.cols()); Eigen::MatrixXd X(trait_matrix.rows(), 2); X.col(0) = mean_column; X.col(1) = snp_vector; #pragma omp parallel for for(unsigned index = 0; index < trait_matrix.cols(); index++){ Eigen::VectorXd Y = trait_matrix.col(index); gwas_data null_data = compute_null_model_MLE(Y, mean_column, aux, precision); gwas_data result; if(null_data.loglik == null_data.loglik){ MLE_GWAS(&result, Y, X, aux, null_data, precision); }else{ result.chi = 0.0; result.beta = 0.0; result.loglik = 0.0; result.SD = 0.0; result.SE = 0.0; result.h2r = 0.0; result.pvalue = 0.0; } results[index] = result; } return results; } static const char * run_single_snp_gwas(const char * phenotype_filename, const char * snp_name, const char * list_filename, const unsigned precision){ vector<string> trait_list;// = read_trait_list(list_filename); trait_list = read_trait_list(list_filename); if(trait_list.size() == 0){ return "No traits read from list file"; } const char * errmsg = 0; SolarFile * file = SolarFile::open("gwas", phenotype_filename, &errmsg); if(errmsg){ return errmsg; } file->start_setup(&errmsg); if(errmsg){ return errmsg; } file->setup("id", &errmsg); if(errmsg){ return errmsg; } file->setup(snp_name, &errmsg); if(errmsg){ return errmsg; } char ** file_data; vector<string> phenotype_ids; vector<double> snp_values; while (0 != (file_data = file->get (&errmsg))){ string snp_value_str = file_data[1]; if(snp_value_str.length() != 0){ if(snp_value_str[0] != '3'){ snp_values.push_back(stod(snp_value_str)); phenotype_ids.push_back(string(file_data[0])); } } } Solar_Trait_Reader * trait_reader = new Solar_Trait_Reader(phenotype_filename, trait_list, phenotype_ids); string output_filename = string(snp_name) + "-gwas.out"; ofstream output_stream(output_filename.c_str()); output_stream << "trait,h2r,loglik,SD,beta_snp,beta_snp_se,chi2,p-value\n"; unsigned total_index = 0; for(unsigned set = 0; set < trait_reader->get_n_sets(); set++){ Eigen_Data * data_set = trait_reader->get_eigen_data_set(set); vector<string> current_ids = data_set->get_ids(); Eigen::MatrixXd eigenvectors_transposed = Eigen::Map<Eigen::MatrixXd>(data_set->get_eigenvectors_transposed(), current_ids.size(), current_ids.size()); Eigen::VectorXd eigenvalues = Eigen::Map<Eigen::VectorXd>(data_set->get_eigenvalues(), current_ids.size()); Eigen::VectorXd snp_vector = create_snp_vector(current_ids, phenotype_ids, snp_values); snp_vector = eigenvectors_transposed*(snp_vector.array() - snp_vector.mean()).matrix(); Eigen::MatrixXd trait_matrix = Eigen::Map<Eigen::MatrixXd>(data_set->get_phenotype_buffer(), data_set->get_n_subjects(), data_set->get_n_phenotypes()); trait_matrix = eigenvectors_transposed*trait_matrix; Eigen::VectorXd mean_column = eigenvectors_transposed*Eigen::ArrayXd::Ones(trait_matrix.rows()).matrix(); Eigen::MatrixXd aux = Eigen::ArrayXXd::Ones(trait_matrix.rows(), 2); aux.col(1) = eigenvalues; vector<gwas_data> results = calculate_single_snp_gwas(trait_matrix, mean_column, snp_vector, aux, precision); for(unsigned trait_index = 0; trait_index < trait_matrix.cols(); trait_index++){ gwas_data current_result = results[trait_index]; output_stream << trait_list[total_index + trait_index] << "," << current_result.h2r << "," << current_result.loglik << ","\ << current_result.SD << "," << current_result.beta << "," << current_result.SE << "," << current_result.chi << "," << \ current_result.pvalue << "\n"; } total_index += trait_matrix.cols(); } output_stream.close(); delete trait_reader; return 0; } extern "C" int gwaCmd(ClientData clientData, Tcl_Interp *interp, int argc,const char *argv[]){ // int n_permutations = 0; const char * plink_filename = 0; bool correct_missing = false; bool verbose = false; bool use_covariates= false; bool use_screen_option = false; const char * list_filename = 0; const char * single_snp_name = 0; const char * evd_data_filename = 0; unsigned precision = 8; unsigned batch_size = 0; unsigned n_permutations = 0; for(unsigned arg = 1; arg < argc; arg++){ if(!StringCmp(argv[arg], "-help", case_ins) || !StringCmp(argv[arg], "--help", case_ins) || !StringCmp(argv[arg], "help", case_ins)){ print_gwas_help(interp); return TCL_OK; }else if((!StringCmp(argv[arg], "-plink", case_ins) || !StringCmp(argv[arg], "--plink", case_ins)) && arg + 1 < argc){ plink_filename = argv[++arg]; }else if((!StringCmp(argv[arg], "-batch_size", case_ins) || !StringCmp(argv[arg], "--batch_size", case_ins)) && arg + 1 < argc){ batch_size = atoi(argv[++arg]); }else if((!StringCmp(argv[arg], "-np", case_ins) || !StringCmp(argv[arg], "--np", case_ins)) && arg + 1 < argc){ n_permutations = atoi(argv[++arg]); }else if (!StringCmp(argv[arg], "-fix", case_ins) || !StringCmp(argv[arg], "--fix", case_ins) || !StringCmp(argv[arg], "-f", case_ins)){ correct_missing = true; }else if (!StringCmp(argv[arg], "-use_covs", case_ins) || !StringCmp(argv[arg], "--use_covs", case_ins)){ use_covariates = true; }else if (!StringCmp(argv[arg], "-verbose", case_ins) || !StringCmp(argv[arg], "--verbose", case_ins) || !StringCmp(argv[arg], "-v", case_ins)){ verbose = true; }else if (!StringCmp(argv[arg], "-screen", case_ins) || !StringCmp(argv[arg], "--screen", case_ins) || !StringCmp(argv[arg], "-s", case_ins)){ use_screen_option = true; }else if((!StringCmp(argv[arg], "-precision", case_ins) || !StringCmp(argv[arg], "--precision", case_ins)) && arg + 1 < argc){ precision = atoi(argv[++arg]); }else if((!StringCmp(argv[arg], "-evd_data", case_ins) || !StringCmp(argv[arg], "--evd_data", case_ins)) && arg + 1 < argc){ evd_data_filename = argv[++arg]; }else if((!StringCmp(argv[arg], "-list", case_ins) || !StringCmp(argv[arg], "--list", case_ins)) && arg + 1 < argc){ list_filename = argv[++arg]; }else if((!StringCmp(argv[arg], "-single-snp", case_ins) || !StringCmp(argv[arg], "--single-snp", case_ins)) && arg + 1 < argc){ single_snp_name = argv[++arg]; }else{ RESULT_LIT("Invalid argument entered"); return TCL_ERROR; } } ///string phen_file = Phenotypes::filenames(); // research_function(phen_file.c_str(), plink_filename, batch_size, precision); // return TCL_OK; // research_function(phen_file.c_str(), plink_filename, batch_size, precision); // return TCL_OK; if(use_covariates && (!correct_missing || (!correct_missing && evd_data_filename) || single_snp_name || use_screen_option)){ RESULT_LIT("Covariates can only be used with fix missing option and cannot be used with screen option or single snp computation"); return TCL_ERROR; } if(evd_data_filename && !correct_missing){ RESULT_LIT("Fix missing option -f must be used with -evd_data option"); return TCL_ERROR; } if((precision < 1 || precision > 9)){ RESULT_LIT("Precision must be between 1 and 9"); return TCL_ERROR; } Eigen::VectorXd trait_vector; int success; string phenotype_filename = Phenotypes::filenames(); if(phenotype_filename.length() == 0){ RESULT_LIT("No phenotype file is currently loaded"); return TCL_ERROR; } if(!plink_filename && !single_snp_name){ RESULT_LIT("No plink file was specified"); return TCL_ERROR; } if(!list_filename && Trait::Number_Of() == 0){ RESULT_LIT("No trait selected with trait command or specified with list file"); return TCL_ERROR; } if(!evd_data_filename){ try{ load_phi2_matrix(interp); }catch(...){ RESULT_LIT("phi2 matrix could not be loaded. Check to see if pedigree has been properly loaded."); return TCL_ERROR; } } const char * error = 0; if(single_snp_name){ if(!list_filename){ RESULT_LIT("Single SNP gwas requires a trait list specified by --list <list file name>"); return TCL_ERROR; } error = run_single_snp_gwas(phenotype_filename.c_str(), single_snp_name, list_filename, precision); }else if(!use_screen_option){ if(batch_size == 0){ error = run_gwas_list(phenotype_filename.c_str(), list_filename,evd_data_filename,\ plink_filename, correct_missing, precision, verbose, use_covariates, n_permutations); }else{ error = run_gwas_list(phenotype_filename.c_str(), list_filename,evd_data_filename,\ plink_filename, correct_missing, precision,verbose, use_covariates, n_permutations ,batch_size); } }else{ if(batch_size == 0){ error = run_gwas_screen_list(phenotype_filename.c_str(), list_filename, evd_data_filename, plink_filename, verbose); }else{ error = run_gwas_screen_list(phenotype_filename.c_str(), list_filename, evd_data_filename, plink_filename, verbose, batch_size); } } if(error){ //cout << error << endl; RESULT_BUF(error); return TCL_ERROR; } return TCL_OK; }
013b577cf17318327d705cbc9c84325ce3b43700
cd726912664cea9c458ac8b609dd98bf33e3b9a0
/snippets/cpp/VS_Snippets_Remoting/MessageBinding_sample/CPP/messagebinding_sample.cpp
5210e7417e5653ce0d3ada8b569326b6cac22662
[ "MIT", "CC-BY-4.0" ]
permissive
dotnet/dotnet-api-docs
b41fc7fa07aa4d54205df81284bae4f491286ec2
70e7abc4bcd692cb4fb6b4cbcb34bb517261dbaf
refs/heads/main
2023-09-04T07:16:44.908599
2023-09-01T21:46:11
2023-09-01T21:46:11
111,510,915
630
1,856
NOASSERTION
2023-09-14T21:45:33
2017-11-21T06:52:13
C#
UTF-8
C++
false
false
3,222
cpp
messagebinding_sample.cpp
// System::Web::Services::Description.MessageBinding::MessageBinding(); // System::Web::Services::Description.MessageBinding::Extensions; // System::Web::Services::Description.MessageBinding::Name; /* The following program demonstrates the abstract class 'MessageBinding', it's constructor MessageBinding() and properties 'Extensions' and 'Name'. 'MessageBinding' is an abstract class from which 'InputBinding' , 'OutputBinding' are derived. The program contains a utility function which could be used to create either an InputBinding or OutputBinding. This generic nature is achieved by returning an instance of 'MessageBinding'. */ // <Snippet1> #using <System.dll> #using <System.Xml.dll> #using <System.Web.Services.dll> using namespace System; using namespace System::Web::Services::Description; MessageBinding^ CreateInputOutputBinding( String^ myBindName, bool isInputBinding ) { // <Snippet2> // Value isInputBinding = true ---> return type = InputBinding. // Value isInputBinding = false --> return type = OutputBinding. // <Snippet3> // <Snippet4> MessageBinding^ myMessageBinding = nullptr; switch ( isInputBinding ) { case true: myMessageBinding = gcnew InputBinding; Console::WriteLine( "Added an InputBinding" ); break; case false: myMessageBinding = gcnew OutputBinding; Console::WriteLine( "Added an OutputBinding" ); break; } // </Snippet2> myMessageBinding->Name = myBindName; SoapBodyBinding^ mySoapBodyBinding = gcnew SoapBodyBinding; mySoapBodyBinding->Use = SoapBindingUse::Literal; myMessageBinding->Extensions->Add( mySoapBodyBinding ); Console::WriteLine( "Added extensibility element of type : {0}", mySoapBodyBinding->GetType() ); // </Snippet3> // </Snippet4> return myMessageBinding; } // Used to create OperationBinding instances within Binding. OperationBinding^ CreateOperationBinding( String^ myOperation, String^ targetNamespace ) { // Create OperationBinding for Operation. OperationBinding^ myOperationBinding = gcnew OperationBinding; myOperationBinding->Name = myOperation; // Create InputBinding for operation. InputBinding^ myInputBinding = dynamic_cast<InputBinding^>(CreateInputOutputBinding( nullptr, true )); // Create OutputBinding for operation. OutputBinding^ myOutputBinding = dynamic_cast<OutputBinding^>(CreateInputOutputBinding( nullptr, false )); // Add InputBinding and OutputBinding to OperationBinding. myOperationBinding->Input = myInputBinding; myOperationBinding->Output = myOutputBinding; // Create an extensibility element for SoapOperationBinding. SoapOperationBinding^ mySoapOperationBinding = gcnew SoapOperationBinding; mySoapOperationBinding->Style = SoapBindingStyle::Document; mySoapOperationBinding->SoapAction = String::Concat( targetNamespace, myOperation ); // Add the extensibility element SoapOperationBinding to OperationBinding. myOperationBinding->Extensions->Add( mySoapOperationBinding ); return myOperationBinding; } int main() { /* OperationBinding* addOperationBinding = */ CreateOperationBinding( "Add", "http://tempuri.org/" ); } // </Snippet1>
7ecbe712fe41521c45f4f7eb318ef06deb7cbb50
b6289bea68145582d3f0ac20c6a76f8e2cf02011
/tools/proto_mod/proto_src/ListingData.pb.h
186259cca9f5b2e1c2c168cdd9a315f098274a22
[]
no_license
mfs409/memcached-fetch-and-phi
703512e1a460fbda2aa214954eb6ca133aeba1bb
2d5c33e1e95c43dead54347901b3ce1c4cd28da4
refs/heads/master
2021-01-12T02:30:10.246798
2017-01-04T20:03:25
2017-01-04T20:03:25
78,041,758
0
0
null
null
null
null
UTF-8
C++
false
true
36,395
h
ListingData.pb.h
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: ListingData.proto #ifndef PROTOBUF_ListingData_2eproto__INCLUDED #define PROTOBUF_ListingData_2eproto__INCLUDED #include <string> #include <google/protobuf/stubs/common.h> #if GOOGLE_PROTOBUF_VERSION < 2004000 #error This file was generated by a newer version of protoc which is #error incompatible with your Protocol Buffer headers. Please update #error your headers. #endif #if 2004001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION #error This file was generated by an older version of protoc which is #error incompatible with your Protocol Buffer headers. Please #error regenerate this file with a newer version of protoc. #endif #include <google/protobuf/generated_message_util.h> #include <google/protobuf/repeated_field.h> #include <google/protobuf/extension_set.h> #include <google/protobuf/generated_message_reflection.h> #include "AiringType.pb.h" #include "Rating.pb.h" // @@protoc_insertion_point(includes) namespace scheduler { // Internal implementation detail -- do not call these. void protobuf_AddDesc_ListingData_2eproto(); void protobuf_AssignDesc_ListingData_2eproto(); void protobuf_ShutdownFile_ListingData_2eproto(); class ListingData; // =================================================================== class ListingData : public ::google::protobuf::Message { public: ListingData(); virtual ~ListingData(); ListingData(const ListingData& from); inline ListingData& operator=(const ListingData& from) { CopyFrom(from); return *this; } inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _unknown_fields_; } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return &_unknown_fields_; } static const ::google::protobuf::Descriptor* descriptor(); static const ListingData& default_instance(); void Swap(ListingData* other); // implements Message ---------------------------------------------- ListingData* New() const; void CopyFrom(const ::google::protobuf::Message& from); void MergeFrom(const ::google::protobuf::Message& from); void CopyFrom(const ListingData& from); void MergeFrom(const ListingData& from); void Clear(); bool IsInitialized() const; int ByteSize() const; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input); void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const; ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const; int GetCachedSize() const { return _cached_size_; } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const; public: ::google::protobuf::Metadata GetMetadata() const; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional .scheduler.AiringType airingType = 1; inline bool has_airingtype() const; inline void clear_airingtype(); static const int kAiringTypeFieldNumber = 1; inline scheduler::AiringType airingtype() const; inline void set_airingtype(scheduler::AiringType value); // optional string audioType = 2; inline bool has_audiotype() const; inline void clear_audiotype(); static const int kAudioTypeFieldNumber = 2; inline const ::std::string& audiotype() const; inline void set_audiotype(const ::std::string& value); inline void set_audiotype(const char* value); inline void set_audiotype(const char* value, size_t size); inline ::std::string* mutable_audiotype(); inline ::std::string* release_audiotype(); // optional string captionType = 3; inline bool has_captiontype() const; inline void clear_captiontype(); static const int kCaptionTypeFieldNumber = 3; inline const ::std::string& captiontype() const; inline void set_captiontype(const ::std::string& value); inline void set_captiontype(const char* value); inline void set_captiontype(const char* value, size_t size); inline ::std::string* mutable_captiontype(); inline ::std::string* release_captiontype(); // optional .scheduler.Rating schedulerContentRating = 4; inline bool has_schedulercontentrating() const; inline void clear_schedulercontentrating(); static const int kSchedulerContentRatingFieldNumber = 4; inline const ::scheduler::Rating& schedulercontentrating() const; inline ::scheduler::Rating* mutable_schedulercontentrating(); inline ::scheduler::Rating* release_schedulercontentrating(); // required bool isAdult = 5; inline bool has_isadult() const; inline void clear_isadult(); static const int kIsAdultFieldNumber = 5; inline bool isadult() const; inline void set_isadult(bool value); // optional string hdLevel = 6; inline bool has_hdlevel() const; inline void clear_hdlevel(); static const int kHdLevelFieldNumber = 6; inline const ::std::string& hdlevel() const; inline void set_hdlevel(const ::std::string& value); inline void set_hdlevel(const char* value); inline void set_hdlevel(const char* value, size_t size); inline ::std::string* mutable_hdlevel(); inline ::std::string* release_hdlevel(); // optional string seriesGuid = 7; inline bool has_seriesguid() const; inline void clear_seriesguid(); static const int kSeriesGuidFieldNumber = 7; inline const ::std::string& seriesguid() const; inline void set_seriesguid(const ::std::string& value); inline void set_seriesguid(const char* value); inline void set_seriesguid(const char* value, size_t size); inline ::std::string* mutable_seriesguid(); inline ::std::string* release_seriesguid(); // optional string showingType = 8; inline bool has_showingtype() const; inline void clear_showingtype(); static const int kShowingTypeFieldNumber = 8; inline const ::std::string& showingtype() const; inline void set_showingtype(const ::std::string& value); inline void set_showingtype(const char* value); inline void set_showingtype(const char* value, size_t size); inline ::std::string* mutable_showingtype(); inline ::std::string* release_showingtype(); // required bool isSAP = 9; inline bool has_issap() const; inline void clear_issap(); static const int kIsSAPFieldNumber = 9; inline bool issap() const; inline void set_issap(bool value); // required bool isSubTitled = 10; inline bool has_issubtitled() const; inline void clear_issubtitled(); static const int kIsSubTitledFieldNumber = 10; inline bool issubtitled() const; inline void set_issubtitled(bool value); // required bool isThreeD = 11; inline bool has_isthreed() const; inline void clear_isthreed(); static const int kIsThreeDFieldNumber = 11; inline bool isthreed() const; inline void set_isthreed(bool value); // optional string programGuid = 12; inline bool has_programguid() const; inline void clear_programguid(); static const int kProgramGuidFieldNumber = 12; inline const ::std::string& programguid() const; inline void set_programguid(const ::std::string& value); inline void set_programguid(const char* value); inline void set_programguid(const char* value, size_t size); inline ::std::string* mutable_programguid(); inline ::std::string* release_programguid(); // required int64 programStart = 13; inline bool has_programstart() const; inline void clear_programstart(); static const int kProgramStartFieldNumber = 13; inline ::google::protobuf::int64 programstart() const; inline void set_programstart(::google::protobuf::int64 value); // required int64 programEnd = 14; inline bool has_programend() const; inline void clear_programend(); static const int kProgramEndFieldNumber = 14; inline ::google::protobuf::int64 programend() const; inline void set_programend(::google::protobuf::int64 value); // optional string listingGuid = 15; inline bool has_listingguid() const; inline void clear_listingguid(); static const int kListingGuidFieldNumber = 15; inline const ::std::string& listingguid() const; inline void set_listingguid(const ::std::string& value); inline void set_listingguid(const char* value); inline void set_listingguid(const char* value, size_t size); inline ::std::string* mutable_listingguid(); inline ::std::string* release_listingguid(); // optional int32 seasonNumber = 16; inline bool has_seasonnumber() const; inline void clear_seasonnumber(); static const int kSeasonNumberFieldNumber = 16; inline ::google::protobuf::int32 seasonnumber() const; inline void set_seasonnumber(::google::protobuf::int32 value); // optional int32 episodeNumber = 17; inline bool has_episodenumber() const; inline void clear_episodenumber(); static const int kEpisodeNumberFieldNumber = 17; inline ::google::protobuf::int32 episodenumber() const; inline void set_episodenumber(::google::protobuf::int32 value); // optional string episodeTitle = 18; inline bool has_episodetitle() const; inline void clear_episodetitle(); static const int kEpisodeTitleFieldNumber = 18; inline const ::std::string& episodetitle() const; inline void set_episodetitle(const ::std::string& value); inline void set_episodetitle(const char* value); inline void set_episodetitle(const char* value, size_t size); inline ::std::string* mutable_episodetitle(); inline ::std::string* release_episodetitle(); // optional string strProgramType = 19; inline bool has_strprogramtype() const; inline void clear_strprogramtype(); static const int kStrProgramTypeFieldNumber = 19; inline const ::std::string& strprogramtype() const; inline void set_strprogramtype(const ::std::string& value); inline void set_strprogramtype(const char* value); inline void set_strprogramtype(const char* value, size_t size); inline ::std::string* mutable_strprogramtype(); inline ::std::string* release_strprogramtype(); // @@protoc_insertion_point(class_scope:scheduler.ListingData) private: inline void set_has_airingtype(); inline void clear_has_airingtype(); inline void set_has_audiotype(); inline void clear_has_audiotype(); inline void set_has_captiontype(); inline void clear_has_captiontype(); inline void set_has_schedulercontentrating(); inline void clear_has_schedulercontentrating(); inline void set_has_isadult(); inline void clear_has_isadult(); inline void set_has_hdlevel(); inline void clear_has_hdlevel(); inline void set_has_seriesguid(); inline void clear_has_seriesguid(); inline void set_has_showingtype(); inline void clear_has_showingtype(); inline void set_has_issap(); inline void clear_has_issap(); inline void set_has_issubtitled(); inline void clear_has_issubtitled(); inline void set_has_isthreed(); inline void clear_has_isthreed(); inline void set_has_programguid(); inline void clear_has_programguid(); inline void set_has_programstart(); inline void clear_has_programstart(); inline void set_has_programend(); inline void clear_has_programend(); inline void set_has_listingguid(); inline void clear_has_listingguid(); inline void set_has_seasonnumber(); inline void clear_has_seasonnumber(); inline void set_has_episodenumber(); inline void clear_has_episodenumber(); inline void set_has_episodetitle(); inline void clear_has_episodetitle(); inline void set_has_strprogramtype(); inline void clear_has_strprogramtype(); ::google::protobuf::UnknownFieldSet _unknown_fields_; ::std::string* audiotype_; ::std::string* captiontype_; ::scheduler::Rating* schedulercontentrating_; ::std::string* hdlevel_; ::std::string* seriesguid_; int airingtype_; bool isadult_; bool issap_; bool issubtitled_; bool isthreed_; ::std::string* showingtype_; ::std::string* programguid_; ::google::protobuf::int64 programstart_; ::google::protobuf::int64 programend_; ::std::string* listingguid_; ::google::protobuf::int32 seasonnumber_; ::google::protobuf::int32 episodenumber_; ::std::string* episodetitle_; ::std::string* strprogramtype_; mutable int _cached_size_; ::google::protobuf::uint32 _has_bits_[(19 + 31) / 32]; friend void protobuf_AddDesc_ListingData_2eproto(); friend void protobuf_AssignDesc_ListingData_2eproto(); friend void protobuf_ShutdownFile_ListingData_2eproto(); void InitAsDefaultInstance(); static ListingData* default_instance_; }; // =================================================================== // =================================================================== // ListingData // optional .scheduler.AiringType airingType = 1; inline bool ListingData::has_airingtype() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void ListingData::set_has_airingtype() { _has_bits_[0] |= 0x00000001u; } inline void ListingData::clear_has_airingtype() { _has_bits_[0] &= ~0x00000001u; } inline void ListingData::clear_airingtype() { airingtype_ = 0; clear_has_airingtype(); } inline scheduler::AiringType ListingData::airingtype() const { return static_cast< scheduler::AiringType >(airingtype_); } inline void ListingData::set_airingtype(scheduler::AiringType value) { GOOGLE_DCHECK(scheduler::AiringType_IsValid(value)); set_has_airingtype(); airingtype_ = value; } // optional string audioType = 2; inline bool ListingData::has_audiotype() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void ListingData::set_has_audiotype() { _has_bits_[0] |= 0x00000002u; } inline void ListingData::clear_has_audiotype() { _has_bits_[0] &= ~0x00000002u; } inline void ListingData::clear_audiotype() { if (audiotype_ != &::google::protobuf::internal::kEmptyString) { audiotype_->clear(); } clear_has_audiotype(); } inline const ::std::string& ListingData::audiotype() const { return *audiotype_; } inline void ListingData::set_audiotype(const ::std::string& value) { set_has_audiotype(); if (audiotype_ == &::google::protobuf::internal::kEmptyString) { audiotype_ = new ::std::string; } audiotype_->assign(value); } inline void ListingData::set_audiotype(const char* value) { set_has_audiotype(); if (audiotype_ == &::google::protobuf::internal::kEmptyString) { audiotype_ = new ::std::string; } audiotype_->assign(value); } inline void ListingData::set_audiotype(const char* value, size_t size) { set_has_audiotype(); if (audiotype_ == &::google::protobuf::internal::kEmptyString) { audiotype_ = new ::std::string; } audiotype_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_audiotype() { set_has_audiotype(); if (audiotype_ == &::google::protobuf::internal::kEmptyString) { audiotype_ = new ::std::string; } return audiotype_; } inline ::std::string* ListingData::release_audiotype() { clear_has_audiotype(); if (audiotype_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = audiotype_; audiotype_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional string captionType = 3; inline bool ListingData::has_captiontype() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void ListingData::set_has_captiontype() { _has_bits_[0] |= 0x00000004u; } inline void ListingData::clear_has_captiontype() { _has_bits_[0] &= ~0x00000004u; } inline void ListingData::clear_captiontype() { if (captiontype_ != &::google::protobuf::internal::kEmptyString) { captiontype_->clear(); } clear_has_captiontype(); } inline const ::std::string& ListingData::captiontype() const { return *captiontype_; } inline void ListingData::set_captiontype(const ::std::string& value) { set_has_captiontype(); if (captiontype_ == &::google::protobuf::internal::kEmptyString) { captiontype_ = new ::std::string; } captiontype_->assign(value); } inline void ListingData::set_captiontype(const char* value) { set_has_captiontype(); if (captiontype_ == &::google::protobuf::internal::kEmptyString) { captiontype_ = new ::std::string; } captiontype_->assign(value); } inline void ListingData::set_captiontype(const char* value, size_t size) { set_has_captiontype(); if (captiontype_ == &::google::protobuf::internal::kEmptyString) { captiontype_ = new ::std::string; } captiontype_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_captiontype() { set_has_captiontype(); if (captiontype_ == &::google::protobuf::internal::kEmptyString) { captiontype_ = new ::std::string; } return captiontype_; } inline ::std::string* ListingData::release_captiontype() { clear_has_captiontype(); if (captiontype_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = captiontype_; captiontype_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional .scheduler.Rating schedulerContentRating = 4; inline bool ListingData::has_schedulercontentrating() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void ListingData::set_has_schedulercontentrating() { _has_bits_[0] |= 0x00000008u; } inline void ListingData::clear_has_schedulercontentrating() { _has_bits_[0] &= ~0x00000008u; } inline void ListingData::clear_schedulercontentrating() { if (schedulercontentrating_ != NULL) schedulercontentrating_->::scheduler::Rating::Clear(); clear_has_schedulercontentrating(); } inline const ::scheduler::Rating& ListingData::schedulercontentrating() const { return schedulercontentrating_ != NULL ? *schedulercontentrating_ : *default_instance_->schedulercontentrating_; } inline ::scheduler::Rating* ListingData::mutable_schedulercontentrating() { set_has_schedulercontentrating(); if (schedulercontentrating_ == NULL) schedulercontentrating_ = new ::scheduler::Rating; return schedulercontentrating_; } inline ::scheduler::Rating* ListingData::release_schedulercontentrating() { clear_has_schedulercontentrating(); ::scheduler::Rating* temp = schedulercontentrating_; schedulercontentrating_ = NULL; return temp; } // required bool isAdult = 5; inline bool ListingData::has_isadult() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void ListingData::set_has_isadult() { _has_bits_[0] |= 0x00000010u; } inline void ListingData::clear_has_isadult() { _has_bits_[0] &= ~0x00000010u; } inline void ListingData::clear_isadult() { isadult_ = false; clear_has_isadult(); } inline bool ListingData::isadult() const { return isadult_; } inline void ListingData::set_isadult(bool value) { set_has_isadult(); isadult_ = value; } // optional string hdLevel = 6; inline bool ListingData::has_hdlevel() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void ListingData::set_has_hdlevel() { _has_bits_[0] |= 0x00000020u; } inline void ListingData::clear_has_hdlevel() { _has_bits_[0] &= ~0x00000020u; } inline void ListingData::clear_hdlevel() { if (hdlevel_ != &::google::protobuf::internal::kEmptyString) { hdlevel_->clear(); } clear_has_hdlevel(); } inline const ::std::string& ListingData::hdlevel() const { return *hdlevel_; } inline void ListingData::set_hdlevel(const ::std::string& value) { set_has_hdlevel(); if (hdlevel_ == &::google::protobuf::internal::kEmptyString) { hdlevel_ = new ::std::string; } hdlevel_->assign(value); } inline void ListingData::set_hdlevel(const char* value) { set_has_hdlevel(); if (hdlevel_ == &::google::protobuf::internal::kEmptyString) { hdlevel_ = new ::std::string; } hdlevel_->assign(value); } inline void ListingData::set_hdlevel(const char* value, size_t size) { set_has_hdlevel(); if (hdlevel_ == &::google::protobuf::internal::kEmptyString) { hdlevel_ = new ::std::string; } hdlevel_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_hdlevel() { set_has_hdlevel(); if (hdlevel_ == &::google::protobuf::internal::kEmptyString) { hdlevel_ = new ::std::string; } return hdlevel_; } inline ::std::string* ListingData::release_hdlevel() { clear_has_hdlevel(); if (hdlevel_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = hdlevel_; hdlevel_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional string seriesGuid = 7; inline bool ListingData::has_seriesguid() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void ListingData::set_has_seriesguid() { _has_bits_[0] |= 0x00000040u; } inline void ListingData::clear_has_seriesguid() { _has_bits_[0] &= ~0x00000040u; } inline void ListingData::clear_seriesguid() { if (seriesguid_ != &::google::protobuf::internal::kEmptyString) { seriesguid_->clear(); } clear_has_seriesguid(); } inline const ::std::string& ListingData::seriesguid() const { return *seriesguid_; } inline void ListingData::set_seriesguid(const ::std::string& value) { set_has_seriesguid(); if (seriesguid_ == &::google::protobuf::internal::kEmptyString) { seriesguid_ = new ::std::string; } seriesguid_->assign(value); } inline void ListingData::set_seriesguid(const char* value) { set_has_seriesguid(); if (seriesguid_ == &::google::protobuf::internal::kEmptyString) { seriesguid_ = new ::std::string; } seriesguid_->assign(value); } inline void ListingData::set_seriesguid(const char* value, size_t size) { set_has_seriesguid(); if (seriesguid_ == &::google::protobuf::internal::kEmptyString) { seriesguid_ = new ::std::string; } seriesguid_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_seriesguid() { set_has_seriesguid(); if (seriesguid_ == &::google::protobuf::internal::kEmptyString) { seriesguid_ = new ::std::string; } return seriesguid_; } inline ::std::string* ListingData::release_seriesguid() { clear_has_seriesguid(); if (seriesguid_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = seriesguid_; seriesguid_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional string showingType = 8; inline bool ListingData::has_showingtype() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void ListingData::set_has_showingtype() { _has_bits_[0] |= 0x00000080u; } inline void ListingData::clear_has_showingtype() { _has_bits_[0] &= ~0x00000080u; } inline void ListingData::clear_showingtype() { if (showingtype_ != &::google::protobuf::internal::kEmptyString) { showingtype_->clear(); } clear_has_showingtype(); } inline const ::std::string& ListingData::showingtype() const { return *showingtype_; } inline void ListingData::set_showingtype(const ::std::string& value) { set_has_showingtype(); if (showingtype_ == &::google::protobuf::internal::kEmptyString) { showingtype_ = new ::std::string; } showingtype_->assign(value); } inline void ListingData::set_showingtype(const char* value) { set_has_showingtype(); if (showingtype_ == &::google::protobuf::internal::kEmptyString) { showingtype_ = new ::std::string; } showingtype_->assign(value); } inline void ListingData::set_showingtype(const char* value, size_t size) { set_has_showingtype(); if (showingtype_ == &::google::protobuf::internal::kEmptyString) { showingtype_ = new ::std::string; } showingtype_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_showingtype() { set_has_showingtype(); if (showingtype_ == &::google::protobuf::internal::kEmptyString) { showingtype_ = new ::std::string; } return showingtype_; } inline ::std::string* ListingData::release_showingtype() { clear_has_showingtype(); if (showingtype_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = showingtype_; showingtype_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // required bool isSAP = 9; inline bool ListingData::has_issap() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void ListingData::set_has_issap() { _has_bits_[0] |= 0x00000100u; } inline void ListingData::clear_has_issap() { _has_bits_[0] &= ~0x00000100u; } inline void ListingData::clear_issap() { issap_ = false; clear_has_issap(); } inline bool ListingData::issap() const { return issap_; } inline void ListingData::set_issap(bool value) { set_has_issap(); issap_ = value; } // required bool isSubTitled = 10; inline bool ListingData::has_issubtitled() const { return (_has_bits_[0] & 0x00000200u) != 0; } inline void ListingData::set_has_issubtitled() { _has_bits_[0] |= 0x00000200u; } inline void ListingData::clear_has_issubtitled() { _has_bits_[0] &= ~0x00000200u; } inline void ListingData::clear_issubtitled() { issubtitled_ = false; clear_has_issubtitled(); } inline bool ListingData::issubtitled() const { return issubtitled_; } inline void ListingData::set_issubtitled(bool value) { set_has_issubtitled(); issubtitled_ = value; } // required bool isThreeD = 11; inline bool ListingData::has_isthreed() const { return (_has_bits_[0] & 0x00000400u) != 0; } inline void ListingData::set_has_isthreed() { _has_bits_[0] |= 0x00000400u; } inline void ListingData::clear_has_isthreed() { _has_bits_[0] &= ~0x00000400u; } inline void ListingData::clear_isthreed() { isthreed_ = false; clear_has_isthreed(); } inline bool ListingData::isthreed() const { return isthreed_; } inline void ListingData::set_isthreed(bool value) { set_has_isthreed(); isthreed_ = value; } // optional string programGuid = 12; inline bool ListingData::has_programguid() const { return (_has_bits_[0] & 0x00000800u) != 0; } inline void ListingData::set_has_programguid() { _has_bits_[0] |= 0x00000800u; } inline void ListingData::clear_has_programguid() { _has_bits_[0] &= ~0x00000800u; } inline void ListingData::clear_programguid() { if (programguid_ != &::google::protobuf::internal::kEmptyString) { programguid_->clear(); } clear_has_programguid(); } inline const ::std::string& ListingData::programguid() const { return *programguid_; } inline void ListingData::set_programguid(const ::std::string& value) { set_has_programguid(); if (programguid_ == &::google::protobuf::internal::kEmptyString) { programguid_ = new ::std::string; } programguid_->assign(value); } inline void ListingData::set_programguid(const char* value) { set_has_programguid(); if (programguid_ == &::google::protobuf::internal::kEmptyString) { programguid_ = new ::std::string; } programguid_->assign(value); } inline void ListingData::set_programguid(const char* value, size_t size) { set_has_programguid(); if (programguid_ == &::google::protobuf::internal::kEmptyString) { programguid_ = new ::std::string; } programguid_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_programguid() { set_has_programguid(); if (programguid_ == &::google::protobuf::internal::kEmptyString) { programguid_ = new ::std::string; } return programguid_; } inline ::std::string* ListingData::release_programguid() { clear_has_programguid(); if (programguid_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = programguid_; programguid_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // required int64 programStart = 13; inline bool ListingData::has_programstart() const { return (_has_bits_[0] & 0x00001000u) != 0; } inline void ListingData::set_has_programstart() { _has_bits_[0] |= 0x00001000u; } inline void ListingData::clear_has_programstart() { _has_bits_[0] &= ~0x00001000u; } inline void ListingData::clear_programstart() { programstart_ = GOOGLE_LONGLONG(0); clear_has_programstart(); } inline ::google::protobuf::int64 ListingData::programstart() const { return programstart_; } inline void ListingData::set_programstart(::google::protobuf::int64 value) { set_has_programstart(); programstart_ = value; } // required int64 programEnd = 14; inline bool ListingData::has_programend() const { return (_has_bits_[0] & 0x00002000u) != 0; } inline void ListingData::set_has_programend() { _has_bits_[0] |= 0x00002000u; } inline void ListingData::clear_has_programend() { _has_bits_[0] &= ~0x00002000u; } inline void ListingData::clear_programend() { programend_ = GOOGLE_LONGLONG(0); clear_has_programend(); } inline ::google::protobuf::int64 ListingData::programend() const { return programend_; } inline void ListingData::set_programend(::google::protobuf::int64 value) { set_has_programend(); programend_ = value; } // optional string listingGuid = 15; inline bool ListingData::has_listingguid() const { return (_has_bits_[0] & 0x00004000u) != 0; } inline void ListingData::set_has_listingguid() { _has_bits_[0] |= 0x00004000u; } inline void ListingData::clear_has_listingguid() { _has_bits_[0] &= ~0x00004000u; } inline void ListingData::clear_listingguid() { if (listingguid_ != &::google::protobuf::internal::kEmptyString) { listingguid_->clear(); } clear_has_listingguid(); } inline const ::std::string& ListingData::listingguid() const { return *listingguid_; } inline void ListingData::set_listingguid(const ::std::string& value) { set_has_listingguid(); if (listingguid_ == &::google::protobuf::internal::kEmptyString) { listingguid_ = new ::std::string; } listingguid_->assign(value); } inline void ListingData::set_listingguid(const char* value) { set_has_listingguid(); if (listingguid_ == &::google::protobuf::internal::kEmptyString) { listingguid_ = new ::std::string; } listingguid_->assign(value); } inline void ListingData::set_listingguid(const char* value, size_t size) { set_has_listingguid(); if (listingguid_ == &::google::protobuf::internal::kEmptyString) { listingguid_ = new ::std::string; } listingguid_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_listingguid() { set_has_listingguid(); if (listingguid_ == &::google::protobuf::internal::kEmptyString) { listingguid_ = new ::std::string; } return listingguid_; } inline ::std::string* ListingData::release_listingguid() { clear_has_listingguid(); if (listingguid_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = listingguid_; listingguid_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional int32 seasonNumber = 16; inline bool ListingData::has_seasonnumber() const { return (_has_bits_[0] & 0x00008000u) != 0; } inline void ListingData::set_has_seasonnumber() { _has_bits_[0] |= 0x00008000u; } inline void ListingData::clear_has_seasonnumber() { _has_bits_[0] &= ~0x00008000u; } inline void ListingData::clear_seasonnumber() { seasonnumber_ = 0; clear_has_seasonnumber(); } inline ::google::protobuf::int32 ListingData::seasonnumber() const { return seasonnumber_; } inline void ListingData::set_seasonnumber(::google::protobuf::int32 value) { set_has_seasonnumber(); seasonnumber_ = value; } // optional int32 episodeNumber = 17; inline bool ListingData::has_episodenumber() const { return (_has_bits_[0] & 0x00010000u) != 0; } inline void ListingData::set_has_episodenumber() { _has_bits_[0] |= 0x00010000u; } inline void ListingData::clear_has_episodenumber() { _has_bits_[0] &= ~0x00010000u; } inline void ListingData::clear_episodenumber() { episodenumber_ = 0; clear_has_episodenumber(); } inline ::google::protobuf::int32 ListingData::episodenumber() const { return episodenumber_; } inline void ListingData::set_episodenumber(::google::protobuf::int32 value) { set_has_episodenumber(); episodenumber_ = value; } // optional string episodeTitle = 18; inline bool ListingData::has_episodetitle() const { return (_has_bits_[0] & 0x00020000u) != 0; } inline void ListingData::set_has_episodetitle() { _has_bits_[0] |= 0x00020000u; } inline void ListingData::clear_has_episodetitle() { _has_bits_[0] &= ~0x00020000u; } inline void ListingData::clear_episodetitle() { if (episodetitle_ != &::google::protobuf::internal::kEmptyString) { episodetitle_->clear(); } clear_has_episodetitle(); } inline const ::std::string& ListingData::episodetitle() const { return *episodetitle_; } inline void ListingData::set_episodetitle(const ::std::string& value) { set_has_episodetitle(); if (episodetitle_ == &::google::protobuf::internal::kEmptyString) { episodetitle_ = new ::std::string; } episodetitle_->assign(value); } inline void ListingData::set_episodetitle(const char* value) { set_has_episodetitle(); if (episodetitle_ == &::google::protobuf::internal::kEmptyString) { episodetitle_ = new ::std::string; } episodetitle_->assign(value); } inline void ListingData::set_episodetitle(const char* value, size_t size) { set_has_episodetitle(); if (episodetitle_ == &::google::protobuf::internal::kEmptyString) { episodetitle_ = new ::std::string; } episodetitle_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_episodetitle() { set_has_episodetitle(); if (episodetitle_ == &::google::protobuf::internal::kEmptyString) { episodetitle_ = new ::std::string; } return episodetitle_; } inline ::std::string* ListingData::release_episodetitle() { clear_has_episodetitle(); if (episodetitle_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = episodetitle_; episodetitle_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // optional string strProgramType = 19; inline bool ListingData::has_strprogramtype() const { return (_has_bits_[0] & 0x00040000u) != 0; } inline void ListingData::set_has_strprogramtype() { _has_bits_[0] |= 0x00040000u; } inline void ListingData::clear_has_strprogramtype() { _has_bits_[0] &= ~0x00040000u; } inline void ListingData::clear_strprogramtype() { if (strprogramtype_ != &::google::protobuf::internal::kEmptyString) { strprogramtype_->clear(); } clear_has_strprogramtype(); } inline const ::std::string& ListingData::strprogramtype() const { return *strprogramtype_; } inline void ListingData::set_strprogramtype(const ::std::string& value) { set_has_strprogramtype(); if (strprogramtype_ == &::google::protobuf::internal::kEmptyString) { strprogramtype_ = new ::std::string; } strprogramtype_->assign(value); } inline void ListingData::set_strprogramtype(const char* value) { set_has_strprogramtype(); if (strprogramtype_ == &::google::protobuf::internal::kEmptyString) { strprogramtype_ = new ::std::string; } strprogramtype_->assign(value); } inline void ListingData::set_strprogramtype(const char* value, size_t size) { set_has_strprogramtype(); if (strprogramtype_ == &::google::protobuf::internal::kEmptyString) { strprogramtype_ = new ::std::string; } strprogramtype_->assign(reinterpret_cast<const char*>(value), size); } inline ::std::string* ListingData::mutable_strprogramtype() { set_has_strprogramtype(); if (strprogramtype_ == &::google::protobuf::internal::kEmptyString) { strprogramtype_ = new ::std::string; } return strprogramtype_; } inline ::std::string* ListingData::release_strprogramtype() { clear_has_strprogramtype(); if (strprogramtype_ == &::google::protobuf::internal::kEmptyString) { return NULL; } else { ::std::string* temp = strprogramtype_; strprogramtype_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); return temp; } } // @@protoc_insertion_point(namespace_scope) } // namespace scheduler #ifndef SWIG namespace google { namespace protobuf { } // namespace google } // namespace protobuf #endif // SWIG // @@protoc_insertion_point(global_scope) #endif // PROTOBUF_ListingData_2eproto__INCLUDED
d655465fe34bca40cc05a2a603e4be06ccd8e328
c694da160d4365eb2d5aad404334c6ed1d41a75c
/src/include/usr/hdat/hdat.H
0f750936cdd0b9e3b914fa308d7beda241ce2308
[ "Apache-2.0" ]
permissive
3mdeb/talos-hostboot
b00e00fa4613731c01338a73dcf39dededae971f
8d49baa2180fc3cff78c393b19e39816dfa8606f
refs/heads/master
2022-12-18T01:04:50.303567
2018-04-25T02:13:30
2018-05-20T06:31:19
299,345,985
1
0
NOASSERTION
2020-09-28T15:40:46
2020-09-28T15:06:58
C++
UTF-8
C++
false
false
10,165
h
hdat.H
/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/include/usr/hdat/hdat.H $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ /* Contributors Listed Below - COPYRIGHT 2015,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ /* implied. See the License for the specific language governing */ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ /** * @file hdat.H * * @brief This file contains constants and typedefs needed by both the hdat * component as well as other components. They are placed here to avoid * header file circular dependencies. * * MAINTENANCE NOTE: Do not put any functions or methods in this file. * Various components include the header file to get typedefs but do * not want to get bound to the HDAT shared library. */ #ifndef HDAT_H #define HDAT_H /*----------------------------------------------------------------------------*/ /* Includes */ /*----------------------------------------------------------------------------*/ #include <stdint.h> namespace HDAT { /*----------------------------------------------------------------------------*/ /* Type definitions */ /*----------------------------------------------------------------------------*/ /** @brief Type definition for a 64 bit host memory address. */ struct hdatMsAddr_t { uint32_t hi; uint32_t lo; }__attribute__ ((packed)); /** @brief Type definition for the common hypervisor Data Interface Format * (HDIF) header. */ struct hdatHDIF_t { uint16_t hdatStructId; // 0x0000 Structure format ID char hdatStructName[6]; // 0x0002 Structure eye catcher uint16_t hdatInstance; // 0x0008 Instance number uint16_t hdatVersion; // 0x000A Structure version uint32_t hdatSize; // 0x000C Total structure size in bytes uint32_t hdatHdrSize; // 0x0010 Header size in bytes uint32_t hdatDataPtrOffset; // 0x0014 Offset to hdatHDIFDataHdr_t uint16_t hdatDataPtrCnt; // 0x0018 Count of hdatHDIFDataHdr_t structures uint16_t hdatChildStrCnt; // 0x001A Count of hdatDIFChildPtr_t structures uint32_t hdatChildStrOffset;// 0x001C Offset to child structures array }__attribute__ ((packed)); /** @brief Type definition for the "pointer" header to the internal data.*/ struct hdatHDIFDataHdr_t { uint32_t hdatOffset; // 0x0000 Offset from top of structure uint32_t hdatSize; // 0x0004 Data structure size in bytes }__attribute__ ((packed)); /** @brief Type definition for the data array header. * Used when internal data is an array.*/ struct hdatHDIFDataArray_t { uint32_t hdatOffset; // 0x0000 Offset to array from this structure uint32_t hdatArrayCnt; // 0x0004 Number of array entries uint32_t hdatAllocSize; // 0x0008 Size of allocated space for array entry uint32_t hdatActSize; // 0x000C Actual size of an array entry // (<= hdatAllocSize) } __attribute__ ((packed)); /** @brief Type definition for a versioned data array header. Used when internal * data is an array and the array data must be versioned */ struct hdatHDIFVersionedDataArray_t { uint32_t hdatOffset; // 0x0000 Offset to array from this structure uint32_t hdatArrayCnt; // 0x0004 Number of array entries uint32_t hdatAllocSize; // 0x0008 Size of allocated space for array entry uint32_t hdatActSize; // 0x000C Actual size of an array entry uint32_t hdatVersion; // 0x0010 Version of the array instance format } __attribute__ ((packed)); /** @brief Type definition for the 5-tuples that the SPIRA uses to address other * data structures. */ struct hdat5Tuple_t { hdatMsAddr_t hdatAbsAddr; // 0x0000 Absolute address to a structure uint16_t hdatAllocCnt; // 0x0008 Allocated count uint16_t hdatActualCnt; // 0x000A Actual count uint32_t hdatAllocSize; // 0x000C Allocated size in bytes uint32_t hdatActualSize; // 0x0010 Actual size in bytes uint32_t hdatTceOffset; // 0x0014 Offset to add to TCE for use at //runtime uint8_t hdatReserved1[8]; // 0x0018 Reserved for future use } __attribute__ ((packed)); /** @brief Type definition for the "pointer" header to a child data structure**/ struct hdatHDIFChildHdr_t { uint32_t hdatOffset; // 0x0000 Offset from top of structure uint32_t hdatSize; // 0x0004 Child data structure size in bytes uint32_t hdatCnt; // 0x0008 Count of child data structures } __attribute__ ((packed)); /** @brief FRU Identification */ struct hdatFruId_t { uint16_t hdatSlcaIdx; // 0x0000 SLCA index of this FRU uint16_t hdatResourceId; // 0x0002 VPD resource id of this FRU } __attribute__ ((packed)); /*----------------------------------------------------------------------------*/ /* Constants */ /*----------------------------------------------------------------------------*/ extern const int32_t HDAT_SUCCESS; extern const int32_t HDAT_FAILURE; /** @brief No children for a data structure*/ extern const uint32_t HDAT_NO_CHILD; /** @brief Structure id for an HDIF structure*/ extern const uint16_t HDAT_HDIF_STRUCT_ID; /** @brief FFDC Version to classify data in error log */ extern const uint8_t HDAT_VERSION1; /** @brief FFDC Sub Version to classify data in error log */ extern const uint8_t HDAT_PCIA_FFDC_SUBSEC; extern const uint8_t HDAT_NACA_FFDC_SUBSEC1; extern const uint8_t HDAT_NACA_FFDC_SUBSEC2; extern const uint32_t HDAT_REAL_ADDRESS_MASK; extern const uint64_t HDAT_REAL_ADDRESS_MASK64; /** @brief Align value for HDAT instances */ extern const uint8_t HDAT_HDIF_ALIGN; // (this goes up to 8 threads on P8) #define HDAT_MAX_THREADS_SUPPORTED 8 #define HDAT_MAX_EIGHT_THREADS_SUPPORTED 8 #define HDAT_MAX_FOUR_THREADS_SUPPORTED 4 #define HDAT_MAX_TWO_THREADS_SUPPORTED 2 /* @enum hdatProcStatus * Status of a processor FRU. */ enum hdatProcStatus { HDAT_PROC_USABLE = 0x00000000, // Usable, no failures HDAT_PROC_FAILURES = 0x40000000, // Usable, failures encountered HDAT_PROC_NOT_INSTALLED = 0x80000000, // Not installed HDAT_PROC_NOT_USABLE = 0xC0000000, // Unusable HDAT_PROC_STAT_BITS = 0xC0000000, // constant to and off all bits // but 2 status bits HDAT_RESERVE_FOR_CCM = 0x10000000, // reserved for future use HDAT_PROC_IPL_MASTER = 0x08000000 // Master Proc from IPL perspective }; /* @enum hdatThreadIndicator * Indicator of primary or secondary thread */ enum hdatThreadIndicator { HDAT_PRIM_THREAD = 0x00000000, // Primary thread HDAT_SEC_THREAD = 0x20000000, // Secondary thread HDAT_THREAD_IND_BIT = 0x20000000 // For mask operations }; /* @enum hdatThreadCnt * Number of threads per processor */ enum hdatThreadCnt { HDAT_ONE_THREAD = 0x00000000, // One thread per processor HDAT_TWO_THREAD = 0x00010000, // Two threads per processor HDAT_FOUR_THREAD = 0x00030000, // Four threads per processor HDAT_EIGHT_THREAD = 0x00070000 // Eight threads per processor }; struct hdatSpira_t { hdatHDIF_t hdatHDIF; hdatHDIFDataHdr_t hdatDataHdr; uint8_t hdatReserved1[8]; hdatHDIFDataArray_t hdatArrayInfo; hdat5Tuple_t hdatDataArea[24]; }__attribute__ ((packed)); /** @enum List of possible Range Types for Reserved Hostboot Memory (RHB) */ enum hdatMsVpdRhbAddrRangeType : uint8_t { RHB_TYPE_PRIMARY = 0, RHB_TYPE_HBRT = 1, RHB_TYPE_VERIFIED_LIDS = 2, RHB_TYPE_SECUREBOOT = 3, RHB_TYPE_HOMER_OCC = 4, RHB_TYPE_VERIFIED_PNOR = 5, RHB_TYPE_INVALID = 0xFF }; /** @enum Permission Types for Reserved Hostboot Memory (RHB) */ enum hdatRhbPermType : uint8_t { RHB_NONE = 0x00, RHB_WRITE_ONLY = 0x80, RHB_READ_ONLY = 0x40, RHB_READ_WRITE = RHB_READ_ONLY | RHB_WRITE_ONLY, }; /** NV Keyword header struct */ typedef struct{ uint32_t magic; // = "NV00" uint8_t version; // Version of the structure = 0x01 start uint8_t config; // Configuration specifier : redbud=0x01,sequoia=0x02 uint8_t reserved[249]; // keyword is 255 bytes long }__attribute__ ((packed)) hdatNVKwdStruct_t; /* vpd constants * Defining vpd constants */ #define FRU_SV 0x1C } //namespace HDAT #endif // HDAT_H
182fe60b3620350ee7c4e275794a42c9a423287d
cf353a75e98242cf439bc8d29be0945649dd414e
/src/Allocator.hpp
183025a07891e9a10533353cf9e922ffcdc1d54e
[ "BSD-2-Clause" ]
permissive
karheinz/sesame
934d638b4ef144e6eccbf226f81941fc370a5b0d
2cf644625c407bfb86aa242760a43e995eea6d8b
refs/heads/master
2021-01-13T20:01:00.370226
2019-11-01T09:41:29
2019-11-01T13:46:19
30,211,324
1
0
null
null
null
null
UTF-8
C++
false
false
3,108
hpp
Allocator.hpp
// Copyright (c) 2015, Karsten Heinze <karsten.heinze@sidenotes.de> // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, this // list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef ALLOCATOR_HPP #define ALLOCATOR_HPP #include <cstdint> #include <cstring> //#include <iostream> #include <memory> template <typename T> struct Allocator { template <class U> struct rebind { typedef Allocator<U> other; }; typedef std::size_t size_type; typedef T value_type; typedef value_type* pointer; typedef const value_type* const_pointer; typedef std::ptrdiff_t difference_type; typedef value_type& reference; typedef const value_type& const_reference; Allocator() = default; template <class U> Allocator( const Allocator<U>& ) { } virtual ~Allocator() = default; pointer address( reference r ) const { return std::addressof( r ); } const_pointer address( const_reference r ) const { return std::addressof( r ); } pointer allocate( std::size_t n ) { //std::cout << "allocate " << std::dec << n * sizeof( value_type ) << // " bytes" << std::endl; return reinterpret_cast<pointer>( new uint8_t[ n * sizeof( value_type ) ] ); } void deallocate( pointer p, std::size_t n ) { //std::cout << "deallocate " << std::dec << n * sizeof( value_type ) << // " bytes" << std::endl; std::size_t bytes( n * sizeof( value_type ) ); volatile uint8_t* _p( reinterpret_cast<uint8_t*>( p ) ); while ( bytes-- ) { *( _p++ ) = 0; } delete[] reinterpret_cast<uint8_t*>( p ); } }; template <typename T, typename U> bool operator == (const Allocator<T>&, const Allocator<U>&) { return true; } template <typename T, typename U> bool operator != (const Allocator<T>& a, const Allocator<U>& b) { return ! (a == b); } #endif
bb6dc7579bce5d53666762d2da39e6b1155cbfce
c0c44b30d6a9fd5896fd3dce703c98764c0c447f
/cpp/Targets/FMath/include/fmath.h
3372eab802b38c1dfd1232810e35a4c6cf9bbe90
[ "BSD-3-Clause" ]
permissive
wayfinder/Wayfinder-CppCore-v2
59d703b3a9fdf4a67f9b75fbbf4474933aeda7bf
f1d41905bf7523351bc0a1a6b08d04b06c533bd4
refs/heads/master
2020-05-19T15:54:41.035880
2010-06-29T11:56:03
2010-06-29T11:56:03
744,294
1
0
null
null
null
null
UTF-8
C++
false
false
154
h
fmath.h
#ifndef _FMATH_H_ #define _FMATH_H_ #include "fcommon.h" #include "fvec.h" #include "fmatrix.h" namespace fmath { } #endif // _FMATH_H_
72c82a452e34db3cc2f70f77f0fbbb22f379bfb9
33b567f6828bbb06c22a6fdf903448bbe3b78a4f
/opencascade/StdLPersistent_HString.hxx
aae213e4b58ccce239e310945389311cffc7e12a
[ "Apache-2.0" ]
permissive
CadQuery/OCP
fbee9663df7ae2c948af66a650808079575112b5
b5cb181491c9900a40de86368006c73f169c0340
refs/heads/master
2023-07-10T18:35:44.225848
2023-06-12T18:09:07
2023-06-12T18:09:07
228,692,262
64
28
Apache-2.0
2023-09-11T12:40:09
2019-12-17T20:02:11
C++
UTF-8
C++
false
false
2,265
hxx
StdLPersistent_HString.hxx
// Copyright (c) 2015 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _StdLPersistent_HString_HeaderFile #define _StdLPersistent_HString_HeaderFile #include <StdObjMgt_Persistent.hxx> #include <Standard_TypeDef.hxx> #include <TCollection_HAsciiString.hxx> #include <TCollection_HExtendedString.hxx> class StdLPersistent_HString { template <class StringClass, typename CharType> class instance : public StdObjMgt_Persistent { public: //! Read persistent data from a file. Standard_EXPORT virtual void Read (StdObjMgt_ReadData& theReadData); //! Write persistent data to a file. Standard_EXPORT virtual void Write (StdObjMgt_WriteData& theWriteData) const; virtual void PChildren(StdObjMgt_Persistent::SequenceOfPersistent&) const { } //! Get/create a label defined by referenced string. Standard_EXPORT virtual TDF_Label Label (const Handle(TDF_Data)& theDF) const; //! Get the value. const Handle(StringClass)& Value() const { return myValue; } protected: Handle(StringClass) myValue; }; public: class Ascii : public instance<TCollection_HAsciiString, Standard_Character> { public: //! Get referenced ASCII string. Standard_EXPORT virtual Handle(TCollection_HAsciiString) AsciiString() const; inline Standard_CString PName() const { return "PCollection_HAsciiString"; } }; class Extended : public instance<TCollection_HExtendedString, Standard_ExtCharacter> { public: //! Get referenced extended string. Standard_EXPORT virtual Handle(TCollection_HExtendedString) ExtString() const; inline Standard_CString PName() const { return "PCollection_HExtendedString"; } }; }; #endif
024c43b456fc803f791b08a7c980eefa01f03519
1d18bbc37229f905e105a65e295f627f8417823b
/BaconBox/Components/StandardRenderer/TextRenderer.h
a12892f0f96daa53efb8aa48566507bd28304d31
[]
no_license
anhero/BaconBox
57b82a889fe12f5524267a9bb5035973d054706d
afa4b97d86be876f8375f3898667aabb3610c52c
refs/heads/develop
2021-01-17T09:35:05.986399
2017-04-07T04:36:43
2017-04-07T04:36:43
22,391,368
1
0
null
2015-03-12T19:21:30
2014-07-29T18:49:08
C++
UTF-8
C++
false
false
1,338
h
TextRenderer.h
#ifndef BB_TEXTRENDERER_H #define BB_TEXTRENDERER_H #include "BaconBox/Core/Component.h" #include "BaconBox/Vector2.h" #include "BaconBox/Core/Entity.h" #include "BaconBox/MovieClipEntity/MovieClipEntity.h" #include "BaconBox/Display/Text/TextAlignment.h" #include "BaconBox/Components/TextComponent.h" #include "BaconBox/Helper/String32.h" namespace BaconBox { class TextureFont; struct CharSprite; class TextRenderer : public Component { public: BB_ID_HEADER; TextRenderer(TextureFont *font); virtual ~TextRenderer(); void update(); void initializeConnections(); void setText(const std::string &text); void setColor(const Color &newColor); virtual void receiveMessage(int senderID, int destID, int message, void *data); protected: void setEntity(Entity *newEntity); private: Color color; std::list<std::list<std::list<CharSprite> > > charSpritesLines; void resetPosition(); void resetText(); void internalResetPosition(); void internalResetText(); TextureFont *font; TextAlignment::type alignment; TextComponent *textComponent; bool isWordJump(Char32 charCode); void lineJump(Vector2 &newLineJump, Vector2 &advance, std::list<CharSprite> &charSpritesForAlignmentAdjust); bool needPositionReset; bool needTextReset; String32 text32; float scaleRatio; }; } #endif
36fa5cc5053432873301b517ae7e5e1ae1549510
17e7f2f8b786ee8361b9b755740e816411751b76
/NexusNative/nengine/special_effect/nsub_uv.h
8552d802478ecb926efc064e4a6d135611183751
[]
no_license
windless1015/My3DEngine2008
880945bd9d9f5e9a2ed30fe869ee53ec5b4fe2da
6fffdd1b158ba9c63ffd564788fddd5706e08ac0
refs/heads/master
2022-11-13T17:41:46.620000
2020-07-02T13:31:19
2020-07-02T13:31:19
null
0
0
null
null
null
null
GB18030
C++
false
false
1,195
h
nsub_uv.h
#ifndef _NEXUS_SUB_UV_H_ #define _NEXUS_SUB_UV_H_ namespace nexus { /** * 作为一个UV的包装,外部统一使用0~1的UV范围,sub uv根据自己设置的“子图像”的个数来进行uv转换 */ struct nsub_uv { int num_images_h; // 整个texture中横向有几个图片 int num_images_v; // 整个texture中纵向有几个图片 int image_index; // 当前正在使用哪个图片 nsub_uv(void):num_images_h(1), num_images_v(1), image_index(0) { } nsub_uv(int h_count,int v_count,int index):num_images_h(h_count), num_images_v(v_count), image_index(index) { } vector2 get_sub_uv(float u, float v) const { return vector2( get_sub_u(u), get_sub_v(v) ); } float get_sub_u(float u) const { float su = u/num_images_h; int y = image_index/num_images_h; int x = image_index-y*num_images_h; float offset_u = x*(1.0f/num_images_h); return su+offset_u; } float get_sub_v(float v) const { float sv = v/num_images_v; int y = image_index/num_images_h; float offset_v = y*(1.0f/num_images_v); return sv+offset_v; } }; }//namespace nexus #endif //_NEXUS_SUB_UV_H_
e33f8395ca07a5fcb459e67f11e8c236bef5967d
4cff56cfb609a712003fbd09e8fc6cde520a9147
/sln/Biu/src/Biu.Transmission/Stdafx.h
91ed621a4a829dde162c543d7f5e5e134d1c1e6a
[]
no_license
teerta/Biu
19fb29c8ab14ae2fdabad784e87d85f0c3fbd074
7fc55d7aed902ea208412552b2c965f819d53961
refs/heads/master
2020-12-03T03:45:35.479530
2017-06-29T18:38:53
2017-06-29T18:38:53
95,769,553
1
0
null
null
null
null
GB18030
C++
false
false
1,832
h
Stdafx.h
// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 #pragma once #ifndef VC_EXTRALEAN #define VC_EXTRALEAN #endif #define _WINSOCK_DEPRECATED_NO_WARNINGS #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // Windows #include <windows.h> #include <tchar.h> //#include <WinSock2.h> //#include <WS2tcpip.h> #include <WinDNS.h> #pragma comment (lib, "kernel32") #pragma comment (lib, "user32") #pragma comment (lib, "gdi32") #pragma comment (lib, "winspool") #pragma comment (lib, "comdlg32") #pragma comment (lib, "ws2_32") // CLR #include <vcclr.h> #include <msclr\lock.h> using namespace msclr; // STL #include <list> #include <map> #include <algorithm> #include <regex> #include <tuple> using namespace std; // ATL #include <atlbase.h> #include <atlcom.h> #include <atlstr.h> #include <atlfile.h> #include <atlcoll.h> #include <atlcomtime.h> using namespace ATL; // Biu #include "bmarco.h" #include "bashley.h" #include "bmshack.h" #include "bnio.h" #ifdef _DEBUG #pragma comment(lib, "biud") #else #pragma comment(lib, "biu") #endif using namespace Biu; // Linker #ifdef _UNICODE #if defined _M_IX86 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") #elif defined _M_X64 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"") #else #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") #endif #endif
3fbb51ede87206ab6296343a444d04f48c1530ca
e30874b3aa20804833dd11788176f839fcd08690
/cpp/tests/lists/reverse_tests.cpp
a899d387c3ede4a275e57444a392e76c80ff3ebf
[ "Apache-2.0" ]
permissive
rapidsai/cudf
eaba8948cddde8161c3b02b1b972dab3df8d95b3
c51633627ee7087542ad4c315c0e139dea58e408
refs/heads/branch-23.10
2023-09-04T07:18:27.194295
2023-09-03T06:20:33
2023-09-03T06:20:33
90,506,918
5,386
751
Apache-2.0
2023-09-14T00:27:03
2017-05-07T03:43:37
C++
UTF-8
C++
false
false
20,308
cpp
reverse_tests.cpp
/* * Copyright (c) 2022-2023, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <cudf_test/base_fixture.hpp> #include <cudf_test/column_utilities.hpp> #include <cudf_test/column_wrapper.hpp> #include <cudf_test/iterator_utilities.hpp> #include <cudf_test/type_lists.hpp> #include <cudf/column/column.hpp> #include <cudf/column/column_factories.hpp> #include <cudf/copying.hpp> #include <cudf/lists/reverse.hpp> #include <cudf/null_mask.hpp> using namespace cudf::test::iterators; auto constexpr null{0}; // null at current level auto constexpr XXX{0}; // null pushed down from parent level using ints_lists = cudf::test::lists_column_wrapper<int32_t>; using ints_col = cudf::test::fixed_width_column_wrapper<int32_t>; using strings_col = cudf::test::strings_column_wrapper; using structs_col = cudf::test::structs_column_wrapper; struct ListsReverseTest : public cudf::test::BaseFixture {}; template <typename T> struct ListsReverseTypedTest : public cudf::test::BaseFixture {}; using TestTypes = cudf::test::Concat<cudf::test::IntegralTypesNotBool, cudf::test::FloatingPointTypes>; TYPED_TEST_SUITE(ListsReverseTypedTest, TestTypes); TEST_F(ListsReverseTest, EmptyInput) { // Empty column. { auto const input = ints_lists{}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } // Empty lists. { auto const input = ints_lists{ints_lists{}, ints_lists{}, ints_lists{}}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } // Empty nested lists. { auto const input = ints_lists{ints_lists{ints_lists{}}, ints_lists{}, ints_lists{}}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } } TYPED_TEST(ListsReverseTypedTest, SimpleInputNoNulls) { using lists_col = cudf::test::lists_column_wrapper<TypeParam>; auto const input_original = lists_col{{}, {1, 2, 3}, {}, {4, 5}, {6, 7, 8}, {9}}; { auto const expected = lists_col{{}, {3, 2, 1}, {}, {5, 4}, {8, 7, 6}, {9}}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input_original)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{{3, 2, 1}, {}, {5, 4}}; auto const input = cudf::slice(input_original, {1, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{lists_col{}}; auto const input = cudf::slice(input_original, {2, 3})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{{}, {5, 4}}; auto const input = cudf::slice(input_original, {2, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } } TYPED_TEST(ListsReverseTypedTest, SimpleInputWithNulls) { using lists_col = cudf::test::lists_column_wrapper<TypeParam>; auto const input_original = lists_col{{lists_col{}, lists_col{1, 2, 3}, lists_col{} /*null*/, lists_col{{4, 5, null}, null_at(2)}, lists_col{6, 7, 8}, lists_col{9}}, null_at(2)}; { auto const expected = lists_col{{lists_col{}, lists_col{3, 2, 1}, lists_col{} /*null*/, lists_col{{null, 5, 4}, null_at(0)}, lists_col{8, 7, 6}, lists_col{9}}, null_at(2)}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input_original)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{ {lists_col{3, 2, 1}, lists_col{} /*null*/, lists_col{{null, 5, 4}, null_at(0)}}, null_at(1)}; auto const input = cudf::slice(input_original, {1, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{{lists_col{} /*null*/}, null_at(0)}; auto const input = cudf::slice(input_original, {2, 3})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const expected = lists_col{{lists_col{} /*null*/, lists_col{{null, 5, 4}, null_at(0)}}, null_at(0)}; auto const input = cudf::slice(input_original, {2, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected, *results); } { auto const input = cudf::slice(input_original, {4, 6})[0]; auto const expected = lists_col{{8, 7, 6}, {9}}; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); // The result doesn't have nulls, but it is nullable. CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(expected, *results); } } TYPED_TEST(ListsReverseTypedTest, InputListsOfListsNoNulls) { using lists_col = cudf::test::lists_column_wrapper<TypeParam>; auto const input_original = [] { auto child = lists_col{{1, 2, 3}, {4, 5, 6}, {7}, {4, 5}, {}, {4, 5, 6}, {}, {6, 7, 8}, {}, {9}}.release(); auto offsets = ints_col{0, 0, 3, 3, 6, 9, 10, 10, 10}.release(); return cudf::make_lists_column(8, std::move(offsets), std::move(child), 0, {}); }(); { auto const expected = [] { auto child = lists_col{{7}, {4, 5, 6}, {1, 2, 3}, {4, 5, 6}, {}, {4, 5}, {}, {6, 7, 8}, {}, {9}} .release(); auto offsets = ints_col{0, 0, 3, 3, 6, 9, 10, 10, 10}.release(); return cudf::make_lists_column(8, std::move(offsets), std::move(child), 0, {}); }(); auto const results = cudf::lists::reverse(cudf::lists_column_view(*input_original)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } { auto const expected = [] { auto child = lists_col{{7}, {4, 5, 6}, {1, 2, 3}, {4, 5, 6}, {}, {4, 5}}.release(); auto offsets = ints_col{0, 3, 3, 6}.release(); return cudf::make_lists_column(3, std::move(offsets), std::move(child), 0, {}); }(); auto const input = cudf::slice(*input_original, {1, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } { auto const input = cudf::slice(*input_original, {2, 3})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } { auto const expected = [] { auto child = lists_col{{4, 5, 6}, {}, {4, 5}}.release(); auto offsets = ints_col{0, 0, 3}.release(); return cudf::make_lists_column(2, std::move(offsets), std::move(child), 0, {}); }(); auto const input = cudf::slice(*input_original, {2, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } } TYPED_TEST(ListsReverseTypedTest, InputListsOfListsWithNulls) { using lists_col = cudf::test::lists_column_wrapper<TypeParam>; auto const input_original = [] { auto child = lists_col{{{1, 2, 3}, {4, 5, 6}, {7}, {4, 5}, {} /*null*/, {4, 5, 6}, {}, {6, 7, 8}, {} /*null*/, {9}}, nulls_at({4, 8})} .release(); auto offsets = ints_col{0, 0, 3, 3, 6, 9, 10, 10, 10}.release(); auto null_mask = cudf::create_null_mask(8, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 2, 3, false); return cudf::make_lists_column( 8, std::move(offsets), std::move(child), 1, std::move(null_mask)); }(); { auto const expected = [] { auto child = lists_col{{{7}, {4, 5, 6}, {1, 2, 3}, {4, 5, 6}, {} /*null*/, {4, 5}, {} /*null*/, {6, 7, 8}, {}, {9}}, nulls_at({4, 6})} .release(); auto offsets = ints_col{0, 0, 3, 3, 6, 9, 10, 10, 10}.release(); auto null_mask = cudf::create_null_mask(8, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 2, 3, false); return cudf::make_lists_column( 8, std::move(offsets), std::move(child), 1, std::move(null_mask)); }(); auto const results = cudf::lists::reverse(cudf::lists_column_view(*input_original)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } { auto const expected = [] { auto child = lists_col{{7}, {4, 5, 6}, {1, 2, 3}}.release(); auto offsets = ints_col{0, 3}.release(); return cudf::make_lists_column(1, std::move(offsets), std::move(child), 0, {}); }(); auto const input = cudf::slice(*input_original, {0, 1})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } { auto const expected = [] { auto child = lists_col{{{7}, {4, 5, 6}, {1, 2, 3}, {4, 5, 6}, {} /*null*/, {4, 5}}, null_at(4)} .release(); auto offsets = ints_col{0, 3, 3, 6}.release(); auto null_mask = cudf::create_null_mask(3, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 1, 2, false); return cudf::make_lists_column( 3, std::move(offsets), std::move(child), 1, std::move(null_mask)); }(); auto const input = cudf::slice(*input_original, {1, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } { auto const expected = [] { auto child = lists_col{{{4, 5, 6}, {} /*null*/, {4, 5}}, null_at(1)}.release(); auto offsets = ints_col{0, 0, 3}.release(); auto null_mask = cudf::create_null_mask(2, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 0, 1, false); return cudf::make_lists_column( 2, std::move(offsets), std::move(child), 1, std::move(null_mask)); }(); auto const input = cudf::slice(*input_original, {2, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); // The result doesn't have nulls, but it is nullable. CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*expected, *results); } } TYPED_TEST(ListsReverseTypedTest, InputListsOfStructsWithNulls) { using data_col = cudf::test::fixed_width_column_wrapper<TypeParam>; auto const input_original = [] { auto child = [] { auto grandchild1 = data_col{{ 1, XXX, null, XXX, XXX, 2, 3, 4, // list1 5, 6, 7, 8, 9, 10, null, 11, // list2 null, null, 12, 13, 14, 15, 16, 17 // list3 }, nulls_at({2, 14, 16, 17})}; auto grandchild2 = strings_col{{ // begin list1 "Banana", "YYY", /*NULL*/ "Apple", "XXX", /*NULL*/ "YYY", /*NULL*/ "Banana", "Cherry", "Kiwi", // end list1 // begin list2 "Bear", "Duck", "Cat", "Dog", "Panda", "Bear", "" /*NULL*/, "Panda", // end list2 // begin list3 "ÁÁÁ", "ÉÉÉÉÉ", "ÍÍÍÍÍ", "ÁBC", "" /*NULL*/, "ÁÁÁ", "ÁBC", "XYZ" // end list3 }, nulls_at({14, 20})}; return structs_col{{grandchild1, grandchild2}, nulls_at({1, 3, 4})}.release(); }(); auto offsets = ints_col{0, 0, 8, 16, 16, 16, 24}.release(); auto null_mask = cudf::create_null_mask(6, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 0, 1, false); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 4, 5, false); return cudf::make_lists_column( 6, std::move(offsets), std::move(child), 2, std::move(null_mask)); }(); { auto const expected = [] { auto child = [] { auto grandchild1 = data_col{{ 4, 3, 2, null, null, null, null, 1, // list1 11, null, 10, 9, 8, 7, 6, 5, // list2 17, 16, 15, 14, 13, 12, null, null, // list3 }, nulls_at({3, 4, 5, 6, 9, 22, 23})}; auto grandchild2 = strings_col{{ // begin list1 "Kiwi", "Cherry", "Banana", "", /*NULL*/ "", /*NULL*/ "Apple", "", /*NULL*/ "Banana", // end list1 // begin list2 "Panda", "" /*NULL*/, "Bear", "Panda", "Dog", "Cat", "Duck", "Bear", // end list2 // begin list3 "XYZ", "ÁBC", "ÁÁÁ", "" /*NULL*/, "ÁBC", "ÍÍÍÍÍ", "ÉÉÉÉÉ", "ÁÁÁ" // end list3 }, nulls_at({3, 4, 6, 9, 19})}; return structs_col{{grandchild1, grandchild2}, nulls_at({3, 4, 6})}.release(); }(); auto offsets = ints_col{0, 0, 8, 16, 16, 16, 24}.release(); auto null_mask = cudf::create_null_mask(6, cudf::mask_state::ALL_VALID); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 0, 1, false); cudf::set_null_mask(static_cast<cudf::bitmask_type*>(null_mask.data()), 4, 5, false); return cudf::make_lists_column( 6, std::move(offsets), std::move(child), 2, std::move(null_mask)); }(); auto const results = cudf::lists::reverse(cudf::lists_column_view(*input_original)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(*expected, *results); } { auto const expected = [] { auto child = [] { auto grandchild1 = data_col{{ 4, 3, 2, null, null, null, null, 1, // end list1 11, null, 10, 9, 8, 7, 6, 5 // end list2 }, nulls_at({3, 4, 5, 6, 9})}; auto grandchild2 = strings_col{{ // begin list1 "Kiwi", "Cherry", "Banana", "", /*NULL*/ "", /*NULL*/ "Apple", "", /*NULL*/ "Banana", // end list1 // begin list2 "Panda", "" /*NULL*/, "Bear", "Panda", "Dog", "Cat", "Duck", "Bear" // end list2 }, nulls_at({3, 4, 6, 9})}; return structs_col{{grandchild1, grandchild2}, nulls_at({3, 4, 6})}.release(); }(); auto offsets = ints_col{0, 8, 16, 16}.release(); return cudf::make_lists_column(3, std::move(offsets), std::move(child), 0, {}); }(); auto const input = cudf::slice(*input_original, {1, 4})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); // The result doesn't have nulls, but it is nullable. CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*expected, *results); } { auto const input = cudf::slice(*input_original, {4, 5})[0]; auto const results = cudf::lists::reverse(cudf::lists_column_view(input)); CUDF_TEST_EXPECT_COLUMNS_EQUAL(input, *results); } }
59f5f4a43564c0e37ba5f3c0a9e88f8a9f01cc90
7ce50237b28a940883d257df2e1888dbea580f79
/modulo_two_color_led2/modulo_two_color_led2.ino
4782e7d19caf858ca68cac08cb4e8f3c83be14c6
[]
no_license
jmgdelgado/Arduino
43006540e9c18141143634cad0072adbd367b4b7
fd078b02c108904a6167041d663121f4153ab856
refs/heads/master
2021-04-28T19:42:09.831857
2018-10-20T10:48:29
2018-10-20T10:48:29
121,901,840
0
0
null
null
null
null
UTF-8
C++
false
false
1,090
ino
modulo_two_color_led2.ino
// MODULO TWO COLOR LED RGB - KY-011 y KY-029 // los dos modulos funcionan igual, uno es mas pequeio que otro // Modulo actuador que consiste en un led con 2 entradas para color R,G // // La pata R: S rojo, hay que conectar una resistencia de 220 ohmios // La pata V: la del medio verde, hay que conectar una resistencia de 220 ohmios // // VCC 5 voltios (en este caso los pines de color) int Led_Red = 10; int Led_Green = 11; int val; void setup () { // Output pin initialization for the LEDs pinMode (Led_Red, OUTPUT); pinMode (Led_Green, OUTPUT); } void loop () { // In this for loop, the two LEDs will get different PWM-Values. // Via mixing the brightness of the different LEDs, you will get different colors. for (val = 255; val> 0; val--) { analogWrite (Led_Green, val); analogWrite (Led_Red, 255-val); delay (15); } // You will go backwards through the color range in this second loop. for (val = 0; val <255; val++) { analogWrite (Led_Green, val); analogWrite (Led_Red, 255-val); delay (15); } }
9a9756dcab46c84eb26fed3dac101343a16211f7
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/ds/security/base/keymgr/chgpsw.cpp
cd8e5fc2d24ed1b5ced2642f81c7aea5d190fef3
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
14,558
cpp
chgpsw.cpp
/*++ Copyright (c) 2000 Microsoft Corporation Module Name: CHGPSW.CPP Abstract: Handler for the CHANGE button on the properties dialog, used to change the user's domain password. Author: 990917 johnhaw Created. georgema 000310 updated georgema 000501 used to be EXE, changed to CPL Comments: Environment: WinXP Revision History: --*/ // test/dev switch variables #include "switches.h" ////////////////////////////////////////////////////////////////////////////// // // Include files // #include <stdlib.h> #include <nt.h> #include <ntrtl.h> #include <nturtl.h> #include <windows.h> #include <winbase.h> #include <lmaccess.h> #include <lmerr.h> #include <scuisupp.h> #include <wincrui.h> #include <comctrlp.h> #include <tchar.h> #include <shfusion.h> #include "switches.h" #include "Dlg.h" #include "Res.h" #include "KRDlg.h" #include "keymgr.h" #include "testaudit.h" #include "pswutil.h" ////////////////////////////////////////////////////////////////////////////// // // C_ChangePasswordDlg // // Constructor. // // parameters: // hwndParent parent window for the dialog (may be NULL) // hInstance instance handle of the parent window (may be NULL) // lIDD dialog template id // pfnDlgProc pointer to the function that will process messages for // the dialog. if it is NULL, the default dialog proc // will be used. // // returns: // Nothing. // ////////////////////////////////////////////////////////////////////////////// C_ChangePasswordDlg::C_ChangePasswordDlg( HWND hwndParent, HINSTANCE hInstance, LONG lIDD, DLGPROC pfnDlgProc // = NULL ) : C_Dlg(hwndParent, hInstance, lIDD, pfnDlgProc) { m_hInst = hInstance; } // C_ChangePasswordDlg::C_ChangePasswordDlg ////////////////////////////////////////////////////////////////////////////// // // OnInitDialog // // Dialog control and data initialization. // // parameters: // hwndDlg window handle of the dialog box // hwndFocus window handle of the control that will receive focus // // returns: // TRUE if the system should set the default keyboard focus // FALSE if the keyboard focus is set by this app // ////////////////////////////////////////////////////////////////////////////// BOOL C_ChangePasswordDlg::OnInitDialog( HWND hwndDlg, HWND hwndFocus ) { // To economize on memory, szMsg buffer is sized considerably longer than the MAX_STRING_SIZE // that would be expected for its normal use for short messages. In one instance, it is being // used to hold a username (line 139). It is, therefore considerably longer than otherwise needed. // This size mismatch is benignly not reflected in code which uses counted string functions to // copy/cat into this buffer. This is the result of the buffer length having been changed after // the surrounding code was originally written. TCHAR szMsg[CRED_MAX_USERNAME_LENGTH + 1]; TCHAR szTitle[MAX_STRING_SIZE + 1]; CREDENTIAL *pOldCred = NULL; BOOL bResult; TCHAR *pC; C_Dlg::OnInitDialog(hwndDlg, hwndFocus); SetFocus (GetDlgItem ( hwndDlg, IDC_OLD_PASSWORD)); m_hDlg = hwndDlg; // read the currently selected credential, read the cred to get the username, // extract the domain, and set the text to show the affected domain. bResult = CredRead(g_szTargetName,CRED_TYPE_DOMAIN_PASSWORD,0,&pOldCred); if (bResult != TRUE) { LoadString ( m_hInst, IDS_PSWFAILED, szMsg, MAX_STRING_SIZE ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); EndDialog(IDOK); return TRUE; } // Get the domain and user names from the username string in the credential // handle domain\user, domain.etc.etc\user, user@domain.etc.etc _tcsncpy(m_szFullUsername,pOldCred->UserName,UNLEN + UNLEN + 1 + 1 ); m_szFullUsername[UNLEN + UNLEN + 1] = 0; _tcsncpy(szMsg,pOldCred->UserName,CRED_MAX_USERNAME_LENGTH); // scratch buff szMsg[CRED_MAX_USERNAME_LENGTH] = 0; pC = _tcschr(szMsg,((TCHAR)'\\')); if (NULL != pC) { // name is format domain\something *pC = 0; _tcsncpy(m_szDomain,szMsg,UNLEN); m_szDomain[UNLEN - 1] = 0; _tcsncpy(m_szUsername, (pC + 1), UNLEN); m_szUsername[UNLEN - 1] = 0; } else { // see if name@something pC = _tcschr(szMsg,((TCHAR)'@')); if (NULL == pC) { LoadString ( m_hInst, IDS_DOMAINFAILED, szMsg, CRED_MAX_USERNAME_LENGTH); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); if (pOldCred) CredFree(pOldCred); return TRUE; // don't call EndDialog() } *pC = 0; _tcsncpy(m_szDomain,(pC + 1),UNLEN); m_szDomain[UNLEN - 1] = 0; _tcsncpy(m_szUsername, szMsg,UNLEN); m_szUsername[UNLEN - 1] = 0; } if (pOldCred) CredFree(pOldCred); if (0 != LoadString(g_hInstance,IDS_CPLABEL,szTitle,MAX_STRING_SIZE)) { INT iLen = MAX_STRING_SIZE - _tcslen(szTitle); if (iLen > 0) { // this will change your password for the domain <appendedname> // GMBUG: this may localize inconsistently. Should use positional // parameters. _tcsncat(szTitle,m_szDomain,iLen); szTitle[MAX_STRING_SIZE - 1] = 0; } SetDlgItemText(m_hwnd,IDC_CPLABEL,szTitle); } return TRUE; } // C_ChangePasswordDlg::OnInitDialog ////////////////////////////////////////////////////////////////////////////// // // OnCommand // // Route WM_COMMAND message to appropriate handlers. // // parameters: // wNotifyCode code describing action that has occured // wSenderId id of the control sending the message, if the message // is from a dialog // hwndSender window handle of the window sending the message if the // message is not from a dialog // // returns: // TRUE if the message was processed completely // FALSE if Windows is to process the message // ////////////////////////////////////////////////////////////////////////////// BOOL C_ChangePasswordDlg::OnCommand( WORD wNotifyCode, WORD wSenderId, HWND hwndSender ) { // Was the message handled? // BOOL fHandled = FALSE; switch (wSenderId) { case IDOK: if (BN_CLICKED == wNotifyCode) { OnOK( ); fHandled = TRUE; } break; case IDCANCEL: if (BN_CLICKED == wNotifyCode) { EndDialog(IDCANCEL); fHandled = TRUE; } break; } // switch return fHandled; } // C_ChangePasswordDlg::OnCommand //////////////////////////////////////////////////////////////////////////// // // OnOK // // Validate user name, synthesize computer name, and destroy dialog. // // parameters: // None. // // returns: // Nothing. // ////////////////////////////////////////////////////////////////////////////// void C_ChangePasswordDlg::OnOK( ) { TCHAR szMsg[CRED_MAX_USERNAME_LENGTH]; TCHAR szTitle[MAX_STRING_SIZE]; ULONG Error = 0; BOOL bResult; ASSERT(::IsWindow(m_hwnd)); // get old and new passwords from the dialog box GetDlgItemText ( m_hDlg, IDC_OLD_PASSWORD, m_szOldPassword, PWLEN ); GetDlgItemText ( m_hDlg, IDC_NEW_PASSWORD, m_szNewPassword, PWLEN ); GetDlgItemText ( m_hDlg, IDC_CONFIRM_PASSWORD, m_szConfirmPassword, PWLEN ); if ( wcslen ( m_szOldPassword ) == 0 && wcslen ( m_szNewPassword ) ==0 && wcslen (m_szConfirmPassword) == 0 ) { // must have something filled in return; } else if ( wcscmp ( m_szNewPassword, m_szConfirmPassword) != 0 ) { LoadString ( m_hInst, IDS_NEWPASSWORDNOTCONFIRMED, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); return; // don't call EndDialog() } else { HCURSOR hCursor, hOldCursor; hOldCursor = NULL; hCursor = ::LoadCursor ( m_hInst, IDC_WAIT ); if ( hCursor ) { hOldCursor = ::SetCursor ( hCursor ); } // let's try changing it // The targetname is not used. Only the domain name the username, and // old/new passwords are used #ifdef LOUDLY OutputDebugString(L"Changing password on the domain :"); OutputDebugString(m_szDomain); OutputDebugString(L" for "); OutputDebugString(m_szUsername); OutputDebugString(L" to "); OutputDebugString(m_szNewPassword); OutputDebugString(L"\n"); #endif // gm: pass full username and crack it in NetUserChangePasswordEy, so that routine can // decide whether we are facing a Kerberos domain Error = NetUserChangePasswordEy ( NULL, m_szFullUsername, m_szOldPassword, m_szNewPassword ); if ( hOldCursor ) ::SetCursor ( hOldCursor ); } if ( Error == NERR_Success ) { #ifdef LOUDLY OutputDebugString(L"Remote password set succeeded\n"); #endif // Store the new credential in the keyring. It will overlay // a previous version if present // Note that the user must have knowledge of and actually type in // the old password as well as the new password. If the user // elects to update only the local cache, the old password // information is not actually used. // CredWriteDomainCredentials() is used // m_szDomain holds the domain name // m_szUsername holds the username // m_szNewPassword holds the password CREDENTIAL stCredential; UINT cbPassword; memcpy((void *)&stCredential,(void *)g_pExistingCred,sizeof(CREDENTIAL)); // password length does not include zero term cbPassword = _tcslen(m_szNewPassword) * sizeof(TCHAR); // Form the domain\username composite username stCredential.Type = CRED_TYPE_DOMAIN_PASSWORD; stCredential.TargetName = g_szTargetName; stCredential.CredentialBlob = (unsigned char *)m_szNewPassword; stCredential.CredentialBlobSize = cbPassword; stCredential.UserName = m_szFullUsername; stCredential.Persist = g_dwPersist; bResult = CredWrite(&stCredential,0); if (bResult) { LoadString ( m_hInst, IDS_DOMAINCHANGE, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else { LoadString ( m_hInst, IDS_LOCALFAILED, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } // BUGBUG - what to do if the local update operation fails? // This is not a very big failure, as the first prompt would // ripple through all domain\username matching creds on the // keyring and update them later. You're pretty much stuck // here, since the domain probably will not let you reset the // psw to the old value. } else { // Attempt to be specific about failure to change the psw on the // remote system #ifdef LOUDLY OutputDebugString(L"Remote password set failed\n"); #endif if (Error == ERROR_INVALID_PASSWORD) { LoadString ( m_hInst, IDS_CP_INVPSW, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else if (Error == NERR_UserNotFound) { LoadString ( m_hInst, IDS_CP_NOUSER, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else if (Error == NERR_PasswordTooShort) { LoadString ( m_hInst, IDS_CP_BADPSW, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else if (Error == NERR_InvalidComputer) { LoadString ( m_hInst, IDS_CP_NOSVR, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else if (Error == NERR_NotPrimary) { LoadString ( m_hInst, IDS_CP_NOTALLOWED, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } else { // Reaching here signifies a failure to set the remote domain // password for more general reasons LoadString ( m_hInst, IDS_DOMAINFAILED, szMsg, CRED_MAX_USERNAME_LENGTH ); LoadString ( m_hInst, IDS_APP_NAME, szTitle, MAX_STRING_SIZE ); MessageBox ( m_hDlg, szMsg, szTitle, MB_OK ); } } // clean any psw buffers, release the old cred, and go. SecureZeroMemory(m_szOldPassword,sizeof(m_szOldPassword)); SecureZeroMemory(m_szNewPassword,sizeof(m_szNewPassword)); SecureZeroMemory(m_szConfirmPassword,sizeof(m_szConfirmPassword)); EndDialog(IDOK); } // C_ChangePasswordDlg::OnOK // ///// End of file: krDlg.cpp ///////////////////////////////////////////////
8940b9485856d709448625b17f725562a96365e9
2ae0b8d95d439ccfd55ea7933ad4a2994ad0f6c5
/src/common/snippets/include/snippets/lowered/pass/assign_registers.hpp
4425b4e59d8f77bdf97846223699879cc16a2053
[ "Apache-2.0" ]
permissive
openvinotoolkit/openvino
38ea745a247887a4e14580dbc9fc68005e2149f9
e4bed7a31c9f00d8afbfcabee3f64f55496ae56a
refs/heads/master
2023-08-18T03:47:44.572979
2023-08-17T21:24:59
2023-08-17T21:24:59
153,097,643
3,953
1,492
Apache-2.0
2023-09-14T21:42:24
2018-10-15T10:54:40
C++
UTF-8
C++
false
false
950
hpp
assign_registers.hpp
// Copyright (C) 2023 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include "pass.hpp" #include "snippets/generator.hpp" namespace ov { namespace snippets { namespace lowered { namespace pass { /** * @interface AssignRegisters * @brief Assigns in/out abstract registers indexes to every operation. * Note that changing of the IR is likely to invalidate register assignment. * @ingroup snippets */ class AssignRegisters : public Pass { public: OPENVINO_RTTI("AssignRegisters", "Pass") explicit AssignRegisters(const std::function<Generator::opRegType(const std::shared_ptr<Node>& op)>& mapper) : m_reg_type_mapper(mapper) {} bool run(LinearIR& linear_ir) override; private: std::function<Generator::opRegType(const std::shared_ptr<Node>& op)> m_reg_type_mapper; static constexpr size_t reg_count = 16lu; }; } // namespace pass } // namespace lowered } // namespace snippets } // namespace ov
99e57d0ca53e196a05bc120447b622c6049302dc
e22a5e9010dd2d18d38e8fc8711b662dde5c2efa
/Practice/Split_a_Circular_Linked_List_into_two_halves.cpp
fc5e8e127d671a656aa5d00f71703bf64606c453
[]
no_license
tridibsamanta/GeeksforGeeks_Solutions
a7a22bd5cd731b69f6e838950db287fc2333d8f0
05ca7177bfb44840c2525053b9631e37c2de8e8d
refs/heads/master
2021-11-19T21:06:18.081142
2021-10-08T08:04:29
2021-10-08T08:04:29
250,858,418
5
4
null
null
null
null
UTF-8
C++
false
false
2,698
cpp
Split_a_Circular_Linked_List_into_two_halves.cpp
/** * Title : Split a Circular Linked List into two halves * Author : Tridib Samanta * Link : https://practice.geeksforgeeks.org/problems/split-a-circular-linked-list-into-two-halves/1 **/ // { Driver Code Starts /* Program to split a circular linked list into two halves */ #include<stdio.h> #include<stdlib.h> /* structure for a Node */ struct Node { int data; struct Node *next; Node(int x){ data = x; next = NULL; } }; void splitList(struct Node *head, struct Node **head1_ref, struct Node **head2_ref); struct Node* newNode(int key) { struct Node *temp = new Node(key); return temp; } /* Function to split a list (starting with head) into two lists. head1_ref and head2_ref are references to head Nodes of the two resultant linked lists */ void printList(struct Node *head) { struct Node *temp = head; if(head != NULL) { do { printf("%d ", temp->data); temp = temp->next; } while(temp != head); printf("\n"); } } /* Driver program to test above functions */ int main() { int t,n,i,x; scanf("%d",&t); while(t--) { struct Node *temp,*head = NULL; struct Node *head1 = NULL; struct Node *head2 = NULL; scanf("%d",&n); scanf("%d",&x); head=new Node(x); temp=head; for(i=0;i<n-1;i++){ scanf("%d",&x); temp->next=new Node(x); temp=temp->next; } temp->next=head; splitList(head, &head1, &head2); // printf("\nFirst Circular Linked List"); printList(head1); // printf("\nSecond Circular Linked List"); printList(head2); } return 0; } // } Driver Code Ends /* The structure of linked list is the following struct Node { int data; struct Node *next; Node(int x){ data = x; next = NULL; } }; */ // function which splits the circular linked list. head is pointer // to head Node of given lined list. head1_ref1 and *head_ref2 // are pointers to head pointers of resultant two halves. void splitList(Node *head, Node **head1_ref, Node **head2_ref) { if (head == NULL) { *head2_ref = NULL; return; } Node* slowPtr = head, *fastPtr = head; while (fastPtr->next != head && fastPtr->next->next != head) { slowPtr = slowPtr->next; fastPtr = fastPtr->next->next; } if (fastPtr->next->next == head) fastPtr = fastPtr->next; *head1_ref = head; if (head->next != head) *head2_ref = slowPtr->next; fastPtr->next = slowPtr->next; slowPtr->next = head; }
b01998501a9afadfc70f16388184039a52a12ae1
6b8bab7cb8e841f3f0881f9b09ce4f19b136f25e
/DeviceCommandHandler/readregistercommandhandler.h
12f9fec0b8031793238e2d1a3428be8ef6b1143d
[]
no_license
tudodetalhado/OpenGEV
6a49b8b5a168d16330df8145cc3df871a7fcfa8c
8876e6bb5e99d324ab5b6bb754ddaf607c9f921a
refs/heads/master
2021-06-01T01:30:58.795856
2016-02-07T17:16:14
2016-02-07T17:16:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,066
h
readregistercommandhandler.h
#ifndef READREGISTERMESSAGEHANDLER_H #define READREGISTERMESSAGEHANDLER_H #include "Device/deviceregisters.h" #include "CommonBootstrapRegister/bootstrapregister.h" #include "CommonCommand/abstractcommandhandler.h" #include "Device/gvdevice.h" #include "CommonPacket/conversionutils.h" #include "DeviceCommandHandler/deviceackcode.h" #include "opengev_global.h" /** * @brief The ReadRegisterMessageHandler class implements read register handler * required (R-157cd) */ class ReadRegisterCommandHandler : public AbstractCommandHandler { public: ReadRegisterCommandHandler(GVComponent* target, const QByteArray &receivedDatagram, QHostAddress senderAddress, quint16 senderPort); int execute(); protected: quint16 getAckBodyLength(); /** * @brief getAckDatagramWithoutHeader * @return datagram (R-164c) */ void appendAckBody(QByteArray &datagram); private: int numberOfRegisters; }; #endif // READREGISTERMESSAGEHANDLER_H
5ad61cc4b723c5b6fb161d4a11811597e5f8fe57
67add2db2e8a3a6b415a990419f6110859167bdf
/elevator/elevator.h
4e7cc1dc469a994f32eb1e0789c3787f2d857df3
[]
no_license
rofirger/small-elevator-simulation
9198a22d8a91551d9130c90632124ba695210244
5fb2a4aa39805d8e6e74bda0cf23f3c8207002b3
refs/heads/main
2023-07-17T22:27:14.854127
2021-08-25T10:53:22
2021-08-25T10:53:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,840
h
elevator.h
 // elevator.h: PROJECT_NAME 应用程序的主头文件 // // Warning: 全局数据类GlobalElevator未加锁! #pragma once #ifndef __AFXWIN_H__ #error "在包含此文件之前包含 'pch.h' 以生成 PCH" #endif #include "resource.h" // 主符号 #include "g_a.h" #include "timer.h" #include "CPassagerFlow.h" #include "CelevatorInfo.h" #include "CeleMoreInfo.h" // CelevatorApp: // 有关此类的实现,请参阅 elevator.cpp // using namespace std; class CelevatorApp : public CWinApp { public: CelevatorApp(); // 重写 public: virtual BOOL InitInstance(); // 实现 DECLARE_MESSAGE_MAP() }; typedef struct PeriodPassengerFlow { Person person; int floorIndex; // 层数 unsigned int num; // 人数 }PeriodPassengerFlow; typedef struct PeriodPerson { vector<PeriodPassengerFlow>upFlow; //上行客流 vector<PeriodPassengerFlow>downFlow; //下行客流 vector<Person> mid; // 层间客流 unsigned int downFlowPersonNum; unsigned int upFlowPersonNum; }PeriodPerson; class Passengers { protected: PeriodPerson periodPerson; int num; // 一个周期客流总数 public: // 上行、下行、层间客流匹配 Passengers(Assignment** assignment, int numOfPeriod, int floors); Passengers() {}; PeriodPerson& GetPeriodPerson() { return periodPerson; } int GetPassengersNum() { return num; } }; class GlobalElevator { protected: Elevators elevator; ElevatorParam* pElevatorParam; BuildingParam buildingParam; PassengerFLow passagerFlow; PassengerFLow periodPassengerFlow; Passengers passengers; Timer timer; Timer* pElevatorTimer; Timer consumeTimer; Timer infoTimer; Timer moreInfoTimer; CelevatorInfo* eleInfoDlg; CeleMoreInfo* eleMoreInfoDlg; int DATA_INTERVAL; int numOfPeriod; public: GlobalElevator() { eleInfoDlg = NULL; eleMoreInfoDlg = NULL; pElevatorParam = NULL; } int SetDataInterval(int param) { DATA_INTERVAL = param; return DATA_INTERVAL; } int GetDataInterval() { return DATA_INTERVAL; } PassengerFLow& InitPeriodPassengerFlow() { for (int i = 0; i < 6; ++i) { PassengerFlowVolume* temp1 = (PassengerFlowVolume*)P_GET_PASSENGER_FLOW_ELEM(&periodPassengerFlow, i); PassengerFlowVolume* temp2 = (PassengerFlowVolume*)P_GET_PASSENGER_FLOW_ELEM(&passagerFlow, i); temp1->passengerFlow = new int[FLOW_VOLUME_NUM]; temp1->nowTimeIndex = FLOW_VOLUME_NUM - 1; for (int j = 0; j < FLOW_VOLUME_NUM; ++j) { temp1->passengerFlow[j] = temp2->passengerFlow[0]; // 以第一个元素 } } return periodPassengerFlow; } // 更新6个周期客流,用于预测 PassengerFLow& UpdatePeriodPassengerFlow(int periodIndexParam) { for (int i = 0; i < 6; ++i) { PassengerFlowVolume* temp1 = (PassengerFlowVolume*)P_GET_PASSENGER_FLOW_ELEM(&periodPassengerFlow, i); PassengerFlowVolume* temp2 = (PassengerFlowVolume*)P_GET_PASSENGER_FLOW_ELEM(&passagerFlow, i); temp1->nowTimeIndex = FLOW_VOLUME_NUM; int period_ = periodIndexParam; for (int j = FLOW_VOLUME_NUM - 1; j >= 0; --j) { temp1->passengerFlow[j] = temp2->passengerFlow[(~(period_ >> 31) & period_)]; period_--; } } return periodPassengerFlow; } PassengerFLow& SetPeriodPassengerFlow(PassengerFLow& param) { periodPassengerFlow = param; return periodPassengerFlow; } PassengerFLow& GetPeriodPassengerFlow() { return periodPassengerFlow; } void InitElevators() { elevator.elevators = new ElevatorRealTimeParam[buildingParam.numOfElevator]; for (int i = 0; i < buildingParam.numOfElevator; ++i) { elevator.numElevators = buildingParam.numOfElevator; elevator.elevators[i].elevatorParam = pElevatorParam[i]; elevator.elevators[i].elevatorStatus.dir = STATIC; elevator.elevators[i].elevatorStatus.numOfFloors = 0; if (i < buildingParam.numOfElevator / 3) { elevator.elevators[i].elevatorStatus.presentFloor = buildingParam.floors - 1; } else if (i >= buildingParam.numOfElevator / 3 && i < buildingParam.numOfElevator * 2 / 3) { elevator.elevators[i].elevatorStatus.presentFloor = buildingParam.floors / 2; } else { elevator.elevators[i].elevatorStatus.presentFloor = 0; } } } void SetBuildingParam(BuildingParam& param) { buildingParam = param; } void SetElevatorParam(ElevatorParam* param) { pElevatorParam = param; elevator.numElevators = buildingParam.numOfElevator; elevator.elevators = new ElevatorRealTimeParam[buildingParam.numOfElevator]; for (int i = 0; i < buildingParam.numOfElevator; ++i) { elevator.elevators[i].elevatorParam = *param; } } Elevators& GetElevators() { return elevator; } ElevatorParam* GetElevatorParam() { return pElevatorParam; } BuildingParam& GetBuildingParam() { return buildingParam; } void SetPassagerFlow(PassengerFLow& flow) { passagerFlow = flow; } PassengerFLow& GetPassagerFlow() { return passagerFlow; } Passengers& GetPassengers() { return passengers; } Passengers& SetPassengers(Passengers& param) { passengers = param; return passengers; } int SetNumOfPeriod(int param) { numOfPeriod = param; return numOfPeriod; } int GetNumOfPeriod() { return numOfPeriod; } Timer& GetTimer() { return timer; } Timer& GetInfoTimer() { return infoTimer; } Timer& GetMoreInfoTimer() { return moreInfoTimer; } void InitEleTimer() { pElevatorTimer = new Timer[buildingParam.numOfElevator]; } Timer& GetElevatorTimer(int index) { return pElevatorTimer[index]; } Timer& GetConsumeTimer() { return consumeTimer; } CelevatorInfo* GetCeleInfoDlg() { return eleInfoDlg; } CelevatorInfo* SetCeleInfoDlg(CelevatorInfo* param) { eleInfoDlg = param; return eleInfoDlg; } CeleMoreInfo* GetCeleMoreInfoDlg() { return eleMoreInfoDlg; } CeleMoreInfo* SetCeleMoreInfoDlg(CeleMoreInfo* param) { eleMoreInfoDlg = param; return eleMoreInfoDlg; } void Reset() { for (int i = 0; i < buildingParam.numOfElevator; ++i) { pElevatorTimer[i].Expire(); } timer.Expire(); consumeTimer.Expire(); //std::this_thread::sleep_for(std::chrono::seconds(2)); for (int i = 0; i < buildingParam.numOfElevator; ++i) { elevator.elevators[i].elevatorStatus.distFloors.clear(); elevator.elevators[i].elevatorStatus.person.clear(); } delete[]elevator.elevators; elevator.elevators = NULL; delete eleInfoDlg; eleInfoDlg = NULL; } ~GlobalElevator() { delete[] pElevatorTimer; delete pElevatorParam; delete[] elevator.elevators; delete eleInfoDlg; } };//全局变量 // 客流生成类 extern CelevatorApp theApp;
74ac9bb8727319f6e6868606551bfb02a001b662
b483a68d9fbe4d4a431d7c9e4e7a8ae19f29be98
/suii/ros2_ws/build/suii_msgs/rosidl_typesupport_fastrtps_cpp/suii_msgs/msg/detail/dds_fastrtps/suii_task__type_support.cpp
ce5a67d522c09a4f4e9a23e5330b74fd036ef404
[]
no_license
fontysrobotics/Robocup_at_work_AR_Minor_2021
5afa6eb2e60ae9ea5efe3da2233766c07f650e31
bb2e19c8501f806162195c9ee93e9eaa0d15960a
refs/heads/main
2023-06-06T19:44:53.757457
2021-07-04T19:56:25
2021-07-04T19:56:25
375,961,342
0
1
null
null
null
null
UTF-8
C++
false
false
7,891
cpp
suii_task__type_support.cpp
// generated from rosidl_typesupport_fastrtps_cpp/resource/idl__type_support.cpp.em // with input from suii_msgs:msg/SuiiTask.idl // generated code does not contain a copyright notice #include "suii_msgs/msg/detail/suii_task__rosidl_typesupport_fastrtps_cpp.hpp" #include "suii_msgs/msg/detail/suii_task__struct.hpp" #include <limits> #include <stdexcept> #include <string> #include "rosidl_typesupport_cpp/message_type_support.hpp" #include "rosidl_typesupport_fastrtps_cpp/identifier.hpp" #include "rosidl_typesupport_fastrtps_cpp/message_type_support.h" #include "rosidl_typesupport_fastrtps_cpp/message_type_support_decl.hpp" #include "rosidl_typesupport_fastrtps_cpp/wstring_conversion.hpp" #include "fastcdr/Cdr.h" // forward declaration of message dependencies and their conversion functions namespace suii_msgs { namespace msg { namespace typesupport_fastrtps_cpp { bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_suii_msgs cdr_serialize( const suii_msgs::msg::SuiiTask & ros_message, eprosima::fastcdr::Cdr & cdr) { // Member: action cdr << ros_message.action; // Member: source cdr << ros_message.source; // Member: destination cdr << ros_message.destination; // Member: object cdr << ros_message.object; // Member: container cdr << ros_message.container; // Member: status cdr << ros_message.status; // Member: error_code cdr << ros_message.error_code; // Member: orientation cdr << ros_message.orientation; return true; } bool ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_suii_msgs cdr_deserialize( eprosima::fastcdr::Cdr & cdr, suii_msgs::msg::SuiiTask & ros_message) { // Member: action cdr >> ros_message.action; // Member: source cdr >> ros_message.source; // Member: destination cdr >> ros_message.destination; // Member: object cdr >> ros_message.object; // Member: container cdr >> ros_message.container; // Member: status cdr >> ros_message.status; // Member: error_code cdr >> ros_message.error_code; // Member: orientation cdr >> ros_message.orientation; return true; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_suii_msgs get_serialized_size( const suii_msgs::msg::SuiiTask & ros_message, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; // Member: action { size_t item_size = sizeof(ros_message.action); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: source { size_t item_size = sizeof(ros_message.source); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: destination { size_t item_size = sizeof(ros_message.destination); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: object { size_t item_size = sizeof(ros_message.object); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: container { size_t item_size = sizeof(ros_message.container); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: status { size_t item_size = sizeof(ros_message.status); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: error_code { size_t item_size = sizeof(ros_message.error_code); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } // Member: orientation { size_t item_size = sizeof(ros_message.orientation); current_alignment += item_size + eprosima::fastcdr::Cdr::alignment(current_alignment, item_size); } return current_alignment - initial_alignment; } size_t ROSIDL_TYPESUPPORT_FASTRTPS_CPP_PUBLIC_suii_msgs max_serialized_size_SuiiTask( bool & full_bounded, size_t current_alignment) { size_t initial_alignment = current_alignment; const size_t padding = 4; const size_t wchar_size = 4; (void)padding; (void)wchar_size; (void)full_bounded; // Member: action { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: source { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: destination { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: object { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: container { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: status { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: error_code { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } // Member: orientation { size_t array_size = 1; current_alignment += array_size * sizeof(uint16_t) + eprosima::fastcdr::Cdr::alignment(current_alignment, sizeof(uint16_t)); } return current_alignment - initial_alignment; } static bool _SuiiTask__cdr_serialize( const void * untyped_ros_message, eprosima::fastcdr::Cdr & cdr) { auto typed_message = static_cast<const suii_msgs::msg::SuiiTask *>( untyped_ros_message); return cdr_serialize(*typed_message, cdr); } static bool _SuiiTask__cdr_deserialize( eprosima::fastcdr::Cdr & cdr, void * untyped_ros_message) { auto typed_message = static_cast<suii_msgs::msg::SuiiTask *>( untyped_ros_message); return cdr_deserialize(cdr, *typed_message); } static uint32_t _SuiiTask__get_serialized_size( const void * untyped_ros_message) { auto typed_message = static_cast<const suii_msgs::msg::SuiiTask *>( untyped_ros_message); return static_cast<uint32_t>(get_serialized_size(*typed_message, 0)); } static size_t _SuiiTask__max_serialized_size(bool & full_bounded) { return max_serialized_size_SuiiTask(full_bounded, 0); } static message_type_support_callbacks_t _SuiiTask__callbacks = { "suii_msgs::msg", "SuiiTask", _SuiiTask__cdr_serialize, _SuiiTask__cdr_deserialize, _SuiiTask__get_serialized_size, _SuiiTask__max_serialized_size }; static rosidl_message_type_support_t _SuiiTask__handle = { rosidl_typesupport_fastrtps_cpp::typesupport_identifier, &_SuiiTask__callbacks, get_message_typesupport_handle_function, }; } // namespace typesupport_fastrtps_cpp } // namespace msg } // namespace suii_msgs namespace rosidl_typesupport_fastrtps_cpp { template<> ROSIDL_TYPESUPPORT_FASTRTPS_CPP_EXPORT_suii_msgs const rosidl_message_type_support_t * get_message_type_support_handle<suii_msgs::msg::SuiiTask>() { return &suii_msgs::msg::typesupport_fastrtps_cpp::_SuiiTask__handle; } } // namespace rosidl_typesupport_fastrtps_cpp #ifdef __cplusplus extern "C" { #endif const rosidl_message_type_support_t * ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME(rosidl_typesupport_fastrtps_cpp, suii_msgs, msg, SuiiTask)() { return &suii_msgs::msg::typesupport_fastrtps_cpp::_SuiiTask__handle; } #ifdef __cplusplus } #endif
e9dc497477db3032da27a2205fee49332d9a859c
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/sdktools/factory/xtest/xhard_disk/xhard_disk.cpp
21727c1001198e147055ceda2e6ec3795cdf919d
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
57
cpp
xhard_disk.cpp
#define XHD_TAG #define XHD_MAIN #include "xdisk.cpp"
2acbacf2cd06057062709c3c876e79c99a200d8b
a5f3b0001cdb692aeffc444a16f79a0c4422b9d0
/main/ucb/source/ucp/odma/odma_lib.cxx
38e9b084fe6d25722d802c464c8dbba11e072d89
[ "Apache-2.0", "CPL-1.0", "bzip2-1.0.6", "LicenseRef-scancode-other-permissive", "Zlib", "LZMA-exception", "LGPL-2.0-or-later", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-philippe-de-muyter", "OFL-1.1", "LGPL-2.1-only", "MPL-1.1", "X11", "LGPL-2.1-or-later", "GPL-2.0-only", "OpenSSL", "LicenseRef-scancode-cpl-0.5", "GPL-1.0-or-later", "NPL-1.1", "MIT", "MPL-2.0", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-unknown-license-reference", "MPL-1.0", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "BSL-1.0", "LicenseRef-scancode-docbook", "LicenseRef-scancode-mit-old-style", "Python-2.0", "BSD-3-Clause", "IJG", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-or-later", "LGPL-2.0-only", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown", "BSD-2-Clause", "Autoconf-exception-generic", "PSF-2.0", "NTP", "LicenseRef-scancode-python-cwi", "Afmparse", "W3C", "W3C-19980720", "curl", "LicenseRef-scancode-x11-xconsortium-veillard", "Bitstream-Vera", "HPND-sell-variant", "ICU" ]
permissive
apache/openoffice
b9518e36d784898c6c2ea3ebd44458a5e47825bb
681286523c50f34f13f05f7b87ce0c70e28295de
refs/heads/trunk
2023-08-30T15:25:48.357535
2023-08-28T19:50:26
2023-08-28T19:50:26
14,357,669
907
379
Apache-2.0
2023-08-16T20:49:37
2013-11-13T08:00:13
C++
UTF-8
C++
false
false
7,658
cxx
odma_lib.cxx
/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_ucb.hxx" //#ifndef _OSL_PROCESS_H_ //#include <osl/process.h> //#endif #include <osl/module.h> #include <rtl/ustring.hxx> #include "odma_lib.hxx" namespace odma { TODMRegisterApp pODMRegisterApp; TODMUnRegisterApp pODMUnRegisterApp; TODMSelectDoc pODMSelectDoc; TODMOpenDoc pODMOpenDoc; TODMSaveDoc pODMSaveDoc; TODMCloseDoc pODMCloseDoc; TODMNewDoc pODMNewDoc; TODMSaveAs pODMSaveAs; TODMActivate pODMActivate; TODMGetDocInfo pODMGetDocInfo; TODMSetDocInfo pODMSetDocInfo; TODMGetDMSInfo pODMGetDMSInfo; TODMGetDMSCount pODMGetDMSCount; TODMGetDMSList pODMGetDMSList; TODMGetDMS pODMGetDMS; TODMSetDMS pODMSetDMS; TODMQueryExecute pODMQueryExecute; TODMQueryGetResults pODMQueryGetResults; TODMQueryClose pODMQueryClose; TODMCloseDocEx pODMCloseDocEx; TODMSaveAsEx pODMSaveAsEx; TODMSaveDocEx pODMSaveDocEx; TODMSelectDocEx pODMSelectDocEx; TODMQueryCapability pODMQueryCapability; TODMSetDocEvent pODMSetDocEvent; TODMGetAlternateContent pODMGetAlternateContent; TODMSetAlternateContent pODMSetAlternateContent; TODMGetDocRelation pODMGetDocRelation; TODMSetDocRelation pODMSetDocRelation; sal_Bool LoadFunctions(oslModule _pODMA); sal_Bool LoadLibrary() { static sal_Bool bLoaded = sal_False; static oslModule pODMA = NULL; if (bLoaded) return sal_True; ::rtl::OUString sPath; #ifdef WNT sPath = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMA32.DLL")); #endif #ifdef UNX sPath = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("libodma.so")); #endif pODMA = osl_loadModule( sPath.pData,SAL_LOADMODULE_NOW ); if( !pODMA) return sal_False; return bLoaded = LoadFunctions(pODMA); } // ------------------------------------------------------------------------- sal_Bool LoadFunctions(oslModule pODMA) { if ( ( pODMRegisterApp = (TODMRegisterApp)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMRegisterApp")).pData)) == NULL ) return sal_False; if ( ( pODMUnRegisterApp = (TODMUnRegisterApp)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMUnRegisterApp")).pData)) == NULL ) return sal_False; if ( ( pODMSelectDoc = (TODMSelectDoc)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSelectDoc")).pData)) == NULL ) return sal_False; if ( ( pODMOpenDoc = (TODMOpenDoc)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMOpenDoc")).pData)) == NULL ) return sal_False; if ( ( pODMSaveDoc = (TODMSaveDoc)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSaveDoc")).pData)) == NULL ) return sal_False; if ( ( pODMCloseDoc = (TODMCloseDoc)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMCloseDoc")).pData)) == NULL ) return sal_False; if ( ( pODMNewDoc = (TODMNewDoc)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMNewDoc")).pData)) == NULL ) return sal_False; if ( ( pODMSaveAs = (TODMSaveAs)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSaveAs")).pData)) == NULL ) return sal_False; if ( ( pODMActivate = (TODMActivate)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMActivate")).pData)) == NULL ) return sal_False; if ( ( pODMGetDocInfo = (TODMGetDocInfo)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDocInfo")).pData)) == NULL ) return sal_False; if ( ( pODMSetDocInfo = (TODMSetDocInfo)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSetDocInfo")).pData)) == NULL ) return sal_False; if ( ( pODMGetDMSInfo = (TODMGetDMSInfo)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDMSInfo")).pData)) == NULL ) return sal_False; if ( ( pODMGetDMSCount = (TODMGetDMSCount)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDMSCount")).pData)) == NULL ) return sal_False; if ( ( pODMGetDMSList = (TODMGetDMSList)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDMSList")).pData)) == NULL ) return sal_False; if ( ( pODMGetDMS = (TODMGetDMS)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDMS")).pData)) == NULL ) return sal_False; if ( ( pODMSetDMS = (TODMSetDMS)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSetDMS")).pData)) == NULL ) return sal_False; if ( ( pODMQueryExecute = (TODMQueryExecute)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMQueryExecute")).pData)) == NULL ) return sal_False; if ( ( pODMQueryGetResults = (TODMQueryGetResults)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMQueryGetResults")).pData)) == NULL ) return sal_False; if ( ( pODMQueryClose = (TODMQueryClose)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMQueryClose")).pData)) == NULL ) return sal_False; if ( ( pODMCloseDocEx = (TODMCloseDocEx)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMCloseDocEx")).pData)) == NULL ) return sal_False; if ( ( pODMSaveAsEx = (TODMSaveAsEx)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSaveAsEx")).pData)) == NULL ) return sal_False; if ( ( pODMSaveDocEx = (TODMSaveDocEx)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSaveDocEx")).pData)) == NULL ) return sal_False; if ( ( pODMSelectDocEx = (TODMSelectDocEx)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSelectDocEx")).pData)) == NULL ) return sal_False; if ( ( pODMQueryCapability = (TODMQueryCapability)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMQueryCapability")).pData)) == NULL ) return sal_False; if ( ( pODMSetDocEvent = (TODMSetDocEvent)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSetDocEvent")).pData)) == NULL ) return sal_False; if ( ( pODMGetAlternateContent = (TODMGetAlternateContent)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetAlternateContent")).pData)) == NULL ) return sal_False; if ( ( pODMSetAlternateContent = (TODMSetAlternateContent)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSetAlternateContent")).pData)) == NULL ) return sal_False; if ( ( pODMGetDocRelation = (TODMGetDocRelation)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMGetDocRelation")).pData)) == NULL ) return sal_False; if ( ( pODMSetDocRelation = (TODMSetDocRelation)osl_getSymbol(pODMA,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ODMSetDocRelation")).pData)) == NULL ) return sal_False; return sal_True; } }
daea80559744ed6a4ad52b3141bde930aeff0284
f4cd046adb904ead1c60e004f46bc44ea5d29eb7
/MMOARPG/Core/Component/FightComponent.h
6555a254258db204dc3be166ef4ce023c0c1c42e
[]
no_license
uspk99/MMOARPGSTUDY
773d7a34e8927c3ebb866d43b636c97c4cbad805
65720b019995e2d8050db00d865737bd859fb710
refs/heads/main
2023-08-19T14:54:52.668814
2021-10-03T10:55:14
2021-10-03T10:55:14
404,187,164
0
0
null
null
null
null
GB18030
C++
false
false
1,699
h
FightComponent.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Core/MotionComponent.h" #include "../../MMOARPGGameType.h" #include "../Game/Abilities/MMOARPGAbilitySystemComponent.h" #include "SImpleComboType.h" #include "FightComponent.generated.h" class UMMOARPGGameplayAbility; enum EGameplayAbilityType { GAMEPLAYABILITY_SKILLATTACK, GAMEPLAYABILITY_COMBOATTACK, }; /** * */ UCLASS() class MMOARPG_API UFightComponent : public UMotionComponent { GENERATED_BODY() UPROPERTY() TWeakObjectPtr<UMMOARPGAbilitySystemComponent> AbilitySystemComponent; UPROPERTY() FSimpleComboCheck ComboAttack; public: UFightComponent(); UFUNCTION(NetMulticast, Reliable) void Press(); UFUNCTION(NetMulticast, Reliable) void Released(); UFUNCTION(NetMulticast, Reliable) void Reset(); UFUNCTION(NetMulticast, Reliable) void DodgeSkill(); UFUNCTION(NetMulticast, Reliable) void SprintSkill(); UFUNCTION(BlueprintCallable) void NormalAttack(const FName& InKey); FSimpleComboCheck* GetSimpleComboInfo() { return &ComboAttack; } protected: // Called when the game starts virtual void BeginPlay() override; public: void AddMMOARPGGameplayAbility(const FName& InKey,EGameplayAbilityType InType = EGameplayAbilityType::GAMEPLAYABILITY_SKILLATTACK); //技能添加接口 FGameplayAbilitySpecHandle AddAbility(TSubclassOf<UGameplayAbility> InNewAbility); //技能获取接口 UMMOARPGGameplayAbility* GetGamePlayAbility(const FName &InKey); protected: void RegisterComboAttack(FSimpleComboCheck& InComboAttack, const FName& Key); protected: //Map高效查询 TMap<FName, FGameplayAbilitySpecHandle> Skills; };
a295e5fed83f3d2b74a1aea6a05bdd5fa97b86f2
c20b459468fa359a6f4c545db72a211d38298909
/source/leetcode/Done/148_Sort_List.cpp
5e3d094da56b85f3a1fc64617a707dab14ae9a28
[]
no_license
mycppfeed/Leetmap
e0340c6ecb85901c9555900a871e159a16940028
f1f31085de60adce9dabe5eb2e5c4d66a5ba1572
refs/heads/master
2021-11-04T00:13:19.882064
2019-04-26T21:18:30
2019-04-26T21:18:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,508
cpp
148_Sort_List.cpp
/* * Problem Description Sort a linked list in O(n log n) time using constant space complexity. * Solution 1. Have all the nodes stored in Priority queue (min) and pop it in ascending order DONT forget to make next = NULL for the last node 2. Merge Sort 4 3 2 1 0 divide the list in half (4 3) (2 1 0) / \ / \ 4 3 2 1 0 / \ 1 0 and the conquer using merge The normal divide algorith does this 1: mid = 1 1->2 mid = 1 1->2->3 mid = 2 To sort a list like 2->1 using mid will divide the list into NULL and 2->1, but to merge we need individual atoms so we have to have a special case for list length 2 which will divide it into individual atoms Algorithm: if(list length = 0 or 1) return list if(list length 2) { list1 = list ; list2 = head->next list1->next = null } else { //Use the mod also to find the mid // also make sure to do node->next = NULL for the node prior to mid // obtain to lists list1 and list 2 } h1 = recusive(list1) h2 = recusive(list2) return mergeList(h1, h2); * Tags Lists */ #include"header.h" /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* sortList1(ListNode* head) { if(!head) return head; auto cmp = [&](ListNode *a, ListNode *b) { return a->val > b->val; }; priority_queue<ListNode* , vector<ListNode*>, decltype(cmp)> Q(cmp); while(head) { Q.push(head); head = head->next; } head = NULL; ListNode* runner = NULL; while(!Q.empty()) { if(!head) { head = Q.top(); Q.pop(); runner = head; } else { runner->next = Q.top(); Q.pop(); runner = runner->next; } //cout << runner->val << " " << "\n"; } runner->next = NULL; return head; } ListNode *mergeList(ListNode*l1, ListNode *l2) { if(!l1) return l2; if(!l2) return l1; if(l1->val <= l2->val) { l1->next = mergeList(l1->next, l2); return l1; } else { l2->next = mergeList(l1, l2->next); return l2; } } ListNode* sortList(ListNode* head) { if(!head) return NULL; if(!head->next) return head; ListNode *prev = NULL; ListNode *runner1 = head; ListNode *runner2 = head->next->next; if(!head->next->next) { //For length 2 prev = head; runner1 = head->next; } else { // for length > 2 while(runner2) { prev = runner1; runner1 = runner1->next; runner2 = runner2->next; if(!runner2) break; runner2 = runner2->next; } } prev->next = NULL; ListNode *h1 = sortList(head); ListNode *h2 = sortList(runner1); return mergeList(h1, h2); } }; int main() { Solution S; ListNode*head = new ListNode(2); head->next = new ListNode(1); cout << S.sortList(head); return 0; }
e6a66d0b5848ca8e80fb4c6c2809fa294415dbb1
95fa859c34e0b3e563181713b7a07914649e1afe
/GreedyAlgorithm/TopNumber.cpp
b9e19775c34d995f4b50c66a3d097cad2adfb8c1
[]
no_license
Bpara001/CppPractice
0af385986b1882b5151a266cc8e22046c7e02e59
751b4abe2e2c64be5a887492b19616c81bb7ecc0
refs/heads/master
2023-03-25T16:52:18.061789
2021-03-21T23:03:17
2021-03-21T23:03:17
274,262,484
0
0
null
null
null
null
UTF-8
C++
false
false
982
cpp
TopNumber.cpp
#include <iostream> #include <string.h> #include "vector" #include "map" #include "queue" using namespace std; vector<int> SubArraySum(vector<int> v) { vector<int> results; map<int, int> hash; for (int i = 0; i < v.size(); ++i) { if (v[i] > 10) { hash[((v[i] / 10) % 10)]++; hash[(v[i] % 10)]++; } else { hash[(v[i] % 10)]++; } } priority_queue<pair<int, int>> pq; for (auto i : hash) { cout << i.first << ": " << i.second << endl; pq.push(make_pair(i.second, i.first)); } int condition = pq.top().first; for (int i = 0; i < pq.size(); i++) { if (pq.top().first == condition) { results.push_back(pq.top().second); pq.pop(); } else { break; } } reverse(results.begin(), results.end()); return results; } int main() { vector<int> v = { 11,22,30,3,7 }; vector<int> results; results = SubArraySum(v); cout << "Final Vector: " << endl; for (int i = 0; i < results.size(); i++) { cout << results[i] << endl; } return 0; }
6ab641fe8a511091acde6d773611ee7f9e153da1
cf7ece91747d2985e2e1fc716b7c4e7d290b1e9f
/Generics 2.0 Sem3/Generic Dynamic Queue/queue.h
0b431336d12d21f34606d55a9583f44fc369a371
[]
no_license
Devu06/All-Project
deb1cc3b86acabf76dc612f4779d2f6d3489eb9a
89c140f54fedf639a1f275b5e9febb72a104fd9d
refs/heads/master
2023-05-31T08:51:08.344458
2021-07-13T18:24:25
2021-07-13T18:24:25
286,021,589
0
0
null
null
null
null
UTF-8
C++
false
false
1,266
h
queue.h
#include <bits/stdc++.h> using namespace std ; template <class T> class gqueue { protected : T* data; int front; int size; int cap ; public : gqueue() { data = new T[5] ; size = 0 ; cap = 5 ; front = 0 ; } gqueue(int capacity) { data = new T[capacity] ; cap = capacity ; size = 0 ; front = 0 ; } void enqueue(T item){ if (isFull()) { T* na = new T[2*cap]; for (int i = 0; i < Size(); i++) { int idx = (i + front) % cap; na[i] = data[idx]; } data = na; front = 0; cap=cap*2 ; } int idx = (front + size) % cap; data[idx] = item; size++; } T dequeue(){ if (isEmpty()) { throw "Queue is Empty."; } T temp = data[front]; data[front] = 0; front = (front + 1) % cap; size--; return temp; } T getFront(){ if (isEmpty()) { throw "Queue is Empty."; } T temp = data[front]; return temp; } int Size() { return size; } bool isEmpty() { return Size() == 0; } bool isFull() { return Size() == cap; } void display() { cout<<endl<<"---------------------"<<endl; for (int i = 0; i < Size(); i++) { int idx = (i + front) % cap; cout<<data[idx]<<" "; } cout<<"."; cout<<endl<<"---------------------"<<endl; } };
64edab03dd59b4cdb6a3c5b73fa627f98eaea1fb
55f752b780c2f2257038531dd55b36fd552fb86a
/include/integrators/IntegratorGeneratorFactory.h
86784e69699291ba577f225a84948ed7f231b32e
[]
no_license
sz-1011101/ray-storm
79c5ebbb15969a5d711fd00c141fbbc37af348ea
ebe0b34522b83839ba991608ea5419cda45be80f
refs/heads/master
2020-05-21T23:54:59.808738
2017-02-07T21:13:54
2017-02-07T21:13:54
65,579,722
0
0
null
null
null
null
UTF-8
C++
false
false
652
h
IntegratorGeneratorFactory.h
#ifndef INTEGRATOR_GENERATOR_FACTORY_H_ #define INTEGRATOR_GENERATOR_FACTORY_H_ #include "integrators/AbstractIntegratorGenerator.h" namespace ray_storm { namespace integrators { class IntegratorGeneratorFactory { private: IntegratorGeneratorFactory() {}; public: static AbstractIntegratorGeneratorPtr createPathTracerGenerator(); static AbstractIntegratorGeneratorPtr createDirectLightingPathTracerGenerator(bool mis); static AbstractIntegratorGeneratorPtr createLightPathTracerGenerator(); static AbstractIntegratorGeneratorPtr createBidirectionalPathTracerGenerator(); }; } } #endif
c8f0cc4ad33fe081e9c4aac580a02f8fdab05ec2
dc25b23f8132469fd95cee14189672cebc06aa56
/vendor/mediatek/proprietary/hardware/mtkcam/legacy/platform/mt6795/v1/adapter/Scenario/Shot/HDRShot/Hdr.h
e5cef92acdd1db3823a9b4029c75259cad0d60e4
[]
no_license
nofearnohappy/alps_mm
b407d3ab2ea9fa0a36d09333a2af480b42cfe65c
9907611f8c2298fe4a45767df91276ec3118dd27
refs/heads/master
2020-04-23T08:46:58.421689
2019-03-28T21:19:33
2019-03-28T21:19:33
171,048,255
1
5
null
2020-03-08T03:49:37
2019-02-16T20:25:00
Java
UTF-8
C++
false
false
18,595
h
Hdr.h
/******************************************************************************************** * LEGAL DISCLAIMER * * (Header of MediaTek Software/Firmware Release or Documentation) * * BY OPENING OR USING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE") RECEIVED * FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON AN "AS-IS" BASIS * ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR * A PARTICULAR PURPOSE OR NONINFRINGEMENT. NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY * WHATSOEVER WITH RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, * INCORPORATED IN, OR SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK * ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S SPECIFICATION * OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM. * * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE LIABILITY WITH * RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE, AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE LICENSE * FEES OR SERVICE CHARGE PAID BY BUYER TO MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. * * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE WITH THE LAWS * OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF LAWS PRINCIPLES. ************************************************************************************************/ #ifndef _HDR_H_ #define _HDR_H_ #include <vector> #include <pthread.h> #include <semaphore.h> #include <mtkcam/common.h> #include <mtkcam/camshot/_params.h> #include <mtkcam/camshot/_callbacks.h> #include <mtkcam/drv/imem_drv.h> #include <IShot.h> #include <ImpShot.h> #include <mtkcam/featureio/hdr_hal_base.h> #include <mtkcam/featureio/aaa_hal_common.h> #include <mtkcam/UITypes.h> #include <mtkcam/exif/IDbgInfoContainer.h> #include <mtkcam/camshot/CapBufMgr.h> namespace std { class string; }; /************************************************************************** * D E F I N E S / M A C R O S * **************************************************************************/ /************************************************************************** * E N U M / S T R U C T / T Y P E D E F D E C L A R A T I O N * **************************************************************************/ typedef enum { HDR_STATE_INIT = 0x0000, HDR_STATE_NORMALIZATION = 0x0001, HDR_STATE_FEATURE_EXTRACITON = 0x0002, HDR_STATE_ALIGNMENT = 0x0003, HDR_STATE_BLEND = 0x0004, HDR_STATE_UNINIT = 0x0800, } HdrState_e; /************************************************************************** * E X T E R N A L R E F E R E N C E S * **************************************************************************/ /************************************************************************** * P U B L I C F U N C T I O N D E C L A R A T I O N * **************************************************************************/ /************************************************************************** * C L A S S D E C L A R A T I O N * **************************************************************************/ class CamExif; namespace NS3A { class CaptureParam_T; }; using namespace NSCamShot; namespace NSCamShot { class CapBufMgr; } namespace android { namespace NSShot { class HdrShot : public ImpShot { //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //kidd: remove this block public: //// Interfaces. virtual MBOOL init(); virtual MBOOL uninit(); public: //// Instantiation. virtual ~HdrShot(); HdrShot(char const*const pszShotName , uint32_t const u4ShotMode , int32_t const i4OpenId ); public: //// Operations. // This function is invoked when this object is firstly created. // All resources can be allocated here. virtual bool onCreate(); // This function is invoked when this object is ready to destryoed in the // destructor. All resources must be released before this returns. virtual void onDestroy(); virtual MBOOL setCapBufMgr(MVOID* pCapBufMgr); virtual bool sendCommand(uint32_t const cmd , MUINTPTR const arg1 , uint32_t const arg2 , uint32_t const arg3 = 0 ); virtual bool setShotParam(void const* pParam, size_t const size); //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // Implementations. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ protected: virtual MBOOL init_imageParams(); virtual MBOOL init_decideCaptureMode(); virtual MBOOL init_compoment(); protected: //// Operations. virtual bool onCmd_reset(); virtual bool onCmd_capture(); static MVOID* onCmd_captureTask(MVOID *arg); virtual bool mainflow(); virtual void onCmd_cancel(); protected: //// callbacks static MBOOL fgCamShotNotifyCb(MVOID* user, NSCamShot::CamShotNotifyInfo const msg); static MBOOL fgCamShotDataCb(MVOID* user, NSCamShot::CamShotDataInfo const msg); protected: virtual MBOOL handleYuvData(MUINT8* const puBuf, MUINT32 const u4Size); virtual MBOOL handlePostViewData(MUINT8* const puBuf, MUINT32 const u4Size); virtual MBOOL handleJpegData(MUINT8* const puJpegBuf, MUINT32 const u4JpegSize, MUINT8* const puThumbBuf, MUINT32 const u4ThumbSize, MUINT32 const u4Index, MBOOL bFinal); //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // Utilities. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ protected: //// Buffers. virtual MBOOL allocBuffer(IImageBuffer** ppBuf, MUINT32 w, MUINT32 h, MUINT32 fmt); virtual void deallocBuffer(IImageBuffer* pBuf); virtual IImageBuffer* makeBufferAlias(IImageBuffer *pBaseBuf, MINT32 w, MINT32 h, MINT32 imgFormat); virtual MBOOL removeBufferAlias(IImageBuffer *pBase, IImageBuffer *pAlias); virtual MBOOL uninitMemoryMap(void); static MVOID* allocateMemoryTask(MVOID* arg); static MVOID* allocateCapBufMemoryTask(MVOID* arg); static MVOID* allocateCaptureMemoryTask_First(MVOID* arg); static MVOID* allocateCaptureMemoryTask_Others(MVOID* arg); static MVOID* allocateProcessMemoryTask(MVOID* arg); virtual MBOOL requestSourceImgBuf(void); virtual MBOOL releaseSourceRawImgBuf(void); virtual MBOOL releaseSourceImgBuf(void); virtual MBOOL requestSmallImgBuf(void); virtual MBOOL releaseSmallImgBuf(void); virtual MBOOL requestSEImgBuf(void); virtual MBOOL releaseSEImgBuf(void); virtual MBOOL requestHdrWorkingBuf(void); virtual MBOOL releaseHdrWorkingBuf(void); virtual MBOOL requestOriWeightMapBuf(void); virtual MBOOL releaseOriWeightMapBuf(void); virtual MBOOL requestBlurredWeightMapBuf(void); virtual MBOOL releaseBlurredWeightMapBuf(void); virtual MBOOL requestDownSizedWeightMapBuf(void); virtual MBOOL releaseDownSizedWeightMapBuf(void); virtual MBOOL requestPostviewImgBuf(void); virtual MBOOL releasePostviewImgBuf(void); virtual MBOOL requestNormalJpegBuf(void); virtual MBOOL releaseNormalJpegBuf(void); virtual MBOOL requestNormalThumbnailJpegBuf(void); virtual MBOOL releaseNormalThumbnailJpegBuf(void); virtual MBOOL requestHdrJpegBuf(void); virtual MBOOL releaseHdrJpegBuf(void); virtual MBOOL requestHdrThumbnailJpegBuf(void); virtual MBOOL releaseHdrThumbnailJpegBuf(void); virtual MBOOL requestBlendingBuf(void); virtual MBOOL releaseBlendingBuf(void); virtual MBOOL updateYUVBufferAddress(void); protected: //// CDP. virtual MBOOL update3AExif(CamExif *pCamExif); virtual MBOOL updateThumbnailExif(CamExif *pCamExif, MUINT8* const puThumbBuf, MUINT32 const u4ThumbSize, MUINT8* puExifBuf, MUINT32 &u4FinalExifSize); virtual MBOOL CDPResize(IImageBuffer* pInputBuf, IImageBuffer* pOutputBuf, MUINT32 transform=0); virtual MBOOL CDPResize_simple(IImageBuffer* pInputBuf, IImageBuffer* pOutputBuf, MUINT32 transform=0); static MBOOL GetStride(MUINT32 srcWidth, EImageFormat srcFormat, MUINT32 *pStride); static MUINT32 getAlignedSize(MUINT32 const u4Size); protected: //// Save. static unsigned int dumpToFile(char const *fname, unsigned char *pbuf, unsigned int size); public: static MBOOL getCaptureInfo(MUINT32 sensorId, std::vector<NS3A::CaptureParam_T> & vCap3AParam, MUINT32 &hdrFrameNum); protected: //// Misc. virtual MBOOL getCaptureParams(NS3A::CaptureParam_T *pCap3AParam); virtual MBOOL getCaptureExposureSettings(HDRExpSettingOutputParam_T &strHDROutputSetting); //flow virtual MBOOL configureForSingleRun(void); virtual MBOOL EVBracketCapture(void); virtual MBOOL ImageRegistratoin(void); virtual MBOOL WeightingMapGeneration(void); virtual MBOOL Blending(void); virtual MBOOL createSourceAndSmallImg(void); virtual MBOOL createSEImg(void); virtual MBOOL encodeRawToYuv(IImageBuffer *rawBuffer , IImageBuffer *yuvBuffer , IImageBuffer *smallyuvBuffer , NS3A::EIspProfile_T profile , void *privateData ); virtual MBOOL encodeJpeg(IImageBuffer *pSrcImgBufInfo , NSCamShot::JpegParam const & rJpgParm , MUINT32 const u4Transform , IImageBuffer *pJpgImgBufInfo ); virtual MVOID* encodeNormalJpeg(MVOID *arg); virtual MVOID* encodeNormalThumbnailJpeg(MVOID *arg); virtual MVOID* saveNormalJpeg(MVOID *arg); static MVOID* createHdrJpegImgTask(MVOID* arg); virtual MVOID* encodeHdrJpeg(MVOID *arg); virtual MVOID* encodeHdrThumbnailJpeg(MVOID *arg); virtual MVOID* saveHdrJpeg(MVOID *arg); virtual MBOOL convertImage(IImageBuffer *pSrcImgBuf , IImageBuffer *pDesImgBuf , MUINT32 const u4Transform = 0 , MBOOL bIsCrop = MFALSE , MRect cropRect = {MPoint(0,0),MSize(0,0)} ); virtual MRect calCrop(MRect const &rSrc , MRect const &rDst , uint32_t ratio ); virtual MBOOL do_Normalization(unsigned int method); // 1: rank image, 0: normalization virtual MBOOL do_SE(void); virtual MBOOL do_FeatureExtraction(void); virtual MBOOL do_Alignment(void); virtual MBOOL do_OriWeightMapGet(void); virtual MBOOL do_SetBmapBuffer(void); virtual MBOOL do_DownScaleWeightMap(void); virtual MBOOL do_UpScaleWeightMap(void); virtual MBOOL do_Fusion(void); virtual MBOOL do_HdrCroppedResultGet(void); virtual MBOOL do_HdrNR(void); virtual MBOOL do_CroppedPostviewResize(void); virtual MBOOL do_HdrSettingClear(void); protected: //// Thread. inline MBOOL wait(pthread_mutex_t *mutex, const char *note); inline MBOOL announce(pthread_mutex_t *mutex, const char *note); inline static MUINT32 getUs(); static MBOOL SetThreadProp(int policy, int priority); static MBOOL GetThreadProp(int *policy, int *priority); static MBOOL PrintThreadProp(const char *name); protected: //// Sensor virtual MBOOL querySensorInfo(NSCam::SensorStaticInfo &mSensorInfo); protected: //// Attributes. inline MUINT32 OutputFrameNumGet() const { return mu4OutputFrameNum ;} //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ protected: //// Multi-Frame enum { eMaxOutputFrameNum = 3 }; private: //// Resolutions. MUINT32 mRaw_Width; MUINT32 mRaw_Height; MUINT32 mu4W_yuv; // YUV Width // Obtained in updateInfo()\queryIspYuvResolution(). MUINT32 mu4H_yuv; // YUV Height // Obtained in updateInfo()\queryIspYuvResolution(). MUINT32 mu4W_small; // Small Image Width // Obtained in requestOtherBufs()\QuerySmallImgResolution(). MUINT32 mu4H_small; // Small Image Height // Obtained in requestOtherBufs()\QuerySmallImgResolution(). MUINT32 mu4W_se; // SW EIS Image Width // Obtained in requestOtherBufs()\QuerySEImgResolution(). MUINT32 mu4H_se; // SW EIS Image Height // Obtained in requestOtherBufs()\QuerySEImgResolution(). MUINT32 mu4W_dsmap; // Down-sized Weighting Map Width // Obtained in requestDownSizedWeightMapBuf(). This should be after obtaining OriWeight[0]->weight_table_width. MUINT32 mu4H_dsmap; // Down-sized Weighting Map Height // Obtained in requestDownSizedWeightMapBuf(). This should be after obtaining OriWeight[0]->weight_table_height. MUINT32 mPostviewWidth; MUINT32 mPostviewHeight; EImageFormat mPostviewFormat; // MUINT32 mRotPicWidth; // full jpeg width MUINT32 mRotPicHeight; // full jpeg height MUINT32 mRotThuWidth; // thumbnail jpeg width MUINT32 mRotThuHeight; // thumbnail jpeg height private: //// Thread MBOOL mErrorFlag; // pthread_t mMainThread; // pthread_t mMemoryAllocateThread; pthread_mutex_t mTrigger_alloc_working; pthread_mutex_t mTrigger_alloc_bmap1; pthread_mutex_t mMemoryReady_Capbuf; pthread_mutex_t mMemoryReady_pass2_first; pthread_mutex_t mMemoryReady_pass2_others; pthread_mutex_t mMemoryReady_jpeg_full; pthread_mutex_t mMemoryReady_jpeg_thumbnail; pthread_mutex_t mMemoryReady_working; pthread_mutex_t mMemoryReady_se; pthread_mutex_t mMemoryReady_bmap0; pthread_mutex_t mMemoryReady_bmap1; pthread_mutex_t mMemoryReady_bmap2; pthread_mutex_t mMemoryReady_blending; pthread_mutex_t mMemoryReady_postview; private: //// Pipes. HdrHalBase *mpHdrHal; CamExif *mpCamExif[eMaxOutputFrameNum]; private: //// Buffers. IMemDrv *mpIMemDrv; IImageBufferAllocator* mpIImageBufAllocator; CapBufMgr* mpCapBufMgr; //copy from fb typedef struct { IImageBuffer* pImgBuf; IMEM_BUF_INFO memBuf; } ImageBufferMap; std::vector<ImageBufferMap> mvImgBufMap; IImageBufferHeap *mpHeap; MUINT32 mTotalBufferSize; MUINT32 mTotalKernelBufferSize; MUINT32 mTotalUserBufferSize; //buffers IImageBuffer *mpSourceRawImgBuf[eMaxOutputFrameNum]; IImageBuffer *mpSourceImgBuf[eMaxOutputFrameNum]; IImageBuffer *mpSmallImgBuf[eMaxOutputFrameNum]; //reused as mWeightingBuf, mpBlurredWeightMapBuf IImageBuffer *mpSEImgBuf[eMaxOutputFrameNum]; IImageBuffer *mWeightingBuf[eMaxOutputFrameNum]; //reuse buffer of mpSmallImgBuf rather than allocate one cpy IImageBuffer *mpBlurredWeightMapBuf[eMaxOutputFrameNum]; //reuse buffer of mpSmallImgBuf rather than allocate one cpy IImageBuffer *mpDownSizedWeightMapBuf[eMaxOutputFrameNum]; IImageBuffer *mBlendingBuf; IImageBuffer *mpPostviewImgBuf; // IImageBuffer *mpHdrWorkingBuf; IImageBuffer *mpMavWorkingBuf; // IImageBuffer *mNormalJpegBuf; IImageBuffer *mNormalThumbnailJpegBuf; IImageBuffer *mHdrJpegBuf; IImageBuffer *mHdrThumbnailJpegBuf; HDR_PIPE_SET_BMAP_INFO mHdrSetBmapInfo; HDR_PIPE_WEIGHT_TBL_INFO** OriWeight; HDR_PIPE_WEIGHT_TBL_INFO** BlurredWeight; private: //// Parameters. static MUINT32 mu4RunningNumber; // A serial number for file saving. For debug. MUINT32 mu4OutputFrameNum; // Output frame number (2 or 3). // Do not use mu4OutputFrameNum in code directly, use OutputFrameNumGet() instead. MUINT32 mu4FinalGainDiff[2]; MUINT32 mu4TargetTone; HDR_PIPE_HDR_RESULT_STRUCT mrHdrCroppedResult; volatile MUINT32 mfgIsForceBreak; // A flag to indicate whether a cancel capture signal is sent. HdrState_e mHdrState; MBOOL mShutterCBDone; MBOOL mRawCBDone; MBOOL mJpegCBDone; MBOOL mfgIsSkipthumb; // A flag to indicate if skip thumbnail. int mCapturePolicy; int mCapturePriority; MUINT32 mCaptueIndex; MUINT32 mSensorType; MUINT32 mNrtype; static MUINT32 mHDRShotMode; private: //// for development. MUINT32 mTestMode; MUINT32 mDebugMode; IDbgInfoContainer * mDebugInfo; private: //// PerfService MBOOL mPerfService; private: //// private data MVOID *mPrivateData; MUINT32 mPrivateDataSize; }; }; // namespace NSShot }; // namespace android #endif // _HDR_H_
bcaf8215112d173653933a8ec12108fb301eefc9
eba604f3116c7a7db46a1872459092ae84a0f75f
/Common/Base Math Library/Include/Vector4d.h
13b11a1100d355f9664987ab4300d4a4d25c5f57
[]
no_license
thearchitect/neocortex
6ff949611ada5dae725b64e03642e1b02a97579f
0e0b44926356db6499f6bb1c2c74823cfb779731
refs/heads/master
2022-08-25T09:38:24.936314
2020-05-22T16:08:56
2020-05-22T16:08:56
50,591,541
1
0
null
null
null
null
UTF-8
C++
false
false
10,371
h
Vector4d.h
/* Base Math Library Copyright (C) 2009 Denis Bogolepov ( bogdencmc@inbox.ru ) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses. */ #pragma once #ifndef _VECTOR4D_ #define _VECTOR4D_ #include "Util.h" #include "Vector2D.h" #include "Vector3D.h" #include <iostream> using namespace std; namespace BMath { class Vector2D; class Vector3D; class Vector4D { public: //----------------------------------- Public Fields ----------------------------------- float X; float Y; float Z; float W; //---------------------------------- Public Constants --------------------------------- static const Vector4D Zero; static const Vector4D Unit; static const Vector4D AxisX; static const Vector4D AxisY; static const Vector4D AxisZ; static const Vector4D AxisW; //------------------------------------ Constructors ----------------------------------- Vector4D ( float = 0, float = 0, float = 0, float = 0 ); Vector4D ( const float [SIZE4D] ); Vector4D ( const Vector2D&, float = 0, float = 0 ); Vector4D ( const Vector3D&, float = 0 ); Vector4D ( const Vector4D& ); //-------------------------------- Arithmetic Operators ------------------------------- friend Vector4D operator - ( const Vector4D& ); friend Vector4D operator + ( const Vector4D&, const Vector4D& ); friend Vector4D operator - ( const Vector4D&, const Vector4D& ); friend Vector4D operator + ( const Vector4D&, float ); friend Vector4D operator - ( const Vector4D&, float ); friend Vector4D operator + ( float, const Vector4D& ); friend Vector4D operator - ( float, const Vector4D& ); friend Vector4D operator * ( const Vector4D&, const Vector4D& ); friend Vector4D operator / ( const Vector4D&, const Vector4D& ); friend Vector4D operator * ( const Vector4D&, float ); friend Vector4D operator / ( const Vector4D&, float ); friend Vector4D operator * ( float, const Vector4D& ); friend Vector4D operator / ( float, const Vector4D& ); friend Vector4D operator += ( const Vector4D&, const Vector4D& ); friend Vector4D operator -= ( const Vector4D&, const Vector4D& ); friend Vector4D operator += ( const Vector4D&, float ); friend Vector4D operator -= ( const Vector4D&, float ); friend Vector4D operator *= ( const Vector4D&, const Vector4D& ); friend Vector4D operator /= ( const Vector4D&, const Vector4D& ); friend Vector4D operator *= ( const Vector4D&, float ); friend Vector4D operator /= ( const Vector4D&, float ); //---------------------------------- Logic Operators ---------------------------------- friend bool operator < ( const Vector4D&, const Vector4D& ); friend bool operator > ( const Vector4D&, const Vector4D& ); friend bool operator < ( const Vector4D&, float ); friend bool operator > ( const Vector4D&, float ); friend bool operator < ( float, const Vector4D& ); friend bool operator > ( float, const Vector4D& ); friend bool operator <= ( const Vector4D&, const Vector4D& ); friend bool operator >= ( const Vector4D&, const Vector4D& ); friend bool operator <= ( const Vector4D&, float ); friend bool operator >= ( const Vector4D&, float ); friend bool operator <= ( float, const Vector4D& ); friend bool operator >= ( float, const Vector4D& ); friend bool operator == ( const Vector4D&, const Vector4D& ); friend bool operator != ( const Vector4D&, const Vector4D& ); friend bool operator == ( const Vector4D&, float ); friend bool operator != ( const Vector4D&, float ); friend bool operator == ( float, const Vector4D& ); friend bool operator != ( float, const Vector4D& ); //----------------------------- Input and Output Operators ---------------------------- friend istream& operator >> ( istream&, Vector4D& ); friend ostream& operator << ( ostream&, const Vector4D& ); //-------------------------------- Auxiliary Operators -------------------------------- operator float * ( ) { return &X; } operator const float * ( ) const { return &X; } float& operator [] ( int index ) { return *( index + &X ); } //--------------------------------- Common Functions ---------------------------------- friend Vector4D Abs ( const Vector4D& ); friend Vector4D Sign ( const Vector4D& ); friend Vector4D Floor ( const Vector4D& ); friend Vector4D Ceil ( const Vector4D& ); friend Vector4D Fract ( const Vector4D& ); friend Vector4D Mod ( const Vector4D&, const Vector4D& ); friend Vector4D Mod ( const Vector4D&, float ); friend Vector4D Mod ( float, const Vector4D& ); friend Vector4D Min ( const Vector4D&, const Vector4D& ); friend Vector4D Min ( const Vector4D&, float ); friend Vector4D Min ( float, const Vector4D& ); friend Vector4D Max ( const Vector4D&, const Vector4D& ); friend Vector4D Max ( const Vector4D&, float ); friend Vector4D Max ( float, const Vector4D& ); friend Vector4D Clamp ( const Vector4D&, const Vector4D&, const Vector4D& ); friend Vector4D Clamp ( const Vector4D&, float, float ); friend Vector4D Mix ( const Vector4D&, const Vector4D&, const Vector4D& ); friend Vector4D Mix ( const Vector4D&, const Vector4D&, float ); friend Vector4D Step ( const Vector4D&, const Vector4D& ); friend Vector4D Step ( const Vector4D&, float ); friend Vector4D Smooth ( const Vector4D&, const Vector4D&, const Vector4D& ); friend Vector4D Smooth ( const Vector4D&, float, float ); //-------------------------------- Geometric Functions -------------------------------- friend float Length ( const Vector4D& ); friend float Square ( const Vector4D& ); friend float Distance ( const Vector4D&, const Vector4D& ); friend float Dot ( const Vector4D&, const Vector4D& ); friend Vector4D Normalize ( const Vector4D& ); friend Vector4D Reflect ( const Vector4D&, const Vector4D& ); friend Vector4D Refract ( const Vector4D&, const Vector4D&, float ); //-------------------------- Angle and Trigonometry Functions ------------------------- friend Vector4D Radians ( const Vector4D& ); friend Vector4D Degrees ( const Vector4D& ); friend Vector4D Sin ( const Vector4D& ); friend Vector4D Cos ( const Vector4D& ); friend Vector4D Tan ( const Vector4D& ); friend Vector4D Asin ( const Vector4D& ); friend Vector4D Acos ( const Vector4D& ); friend Vector4D Atan ( const Vector4D& ); //------------------------------- Exponential Functions ------------------------------- friend Vector4D Pow ( const Vector4D&, const Vector4D& ); friend Vector4D Pow ( const Vector4D&, float ); friend Vector4D Exp ( const Vector4D& ); friend Vector4D Log ( const Vector4D& ); friend Vector4D Sqrt ( const Vector4D& ); }; } #endif
e69eed77a179d23af296360b4ed0402b86b6dae7
113e5f27f1494938228205815364bb4c43738ed6
/include/head_pose_estimator.h
3f30b4ffd8068e07c65bf5787ac73047af614f0e
[]
no_license
irenecortes/gaze_tracking
8fcb6d027bc839c3eab7a537871d36e8f70f67d1
ca620a63e6040e6595d27401b6a7c91066a3890e
refs/heads/master
2021-05-10T09:47:17.801432
2018-01-25T16:20:18
2018-01-25T16:20:18
118,936,418
0
0
null
null
null
null
UTF-8
C++
false
false
9,987
h
head_pose_estimator.h
#include <iostream> #include <fstream> #include <vector> #include <chrono> #include <string> #include <stdlib.h> #include <stdio.h> #include <sstream> #include <cmath> #include <mutex> #include <thread> #define PCL_NO_PRECOMPILE #include <pcl/point_types.h> #include <pcl/point_cloud.h> #include <pcl/io/pcd_io.h> #include <pcl/visualization/cloud_viewer.h> #include <pcl/ModelCoefficients.h> #include <pcl_conversions/pcl_conversions.h> #include <dlib/image_processing/frontal_face_detector.h> #include <dlib/image_processing/render_face_detections.h> #include <dlib/image_processing.h> #include <dlib/gui_widgets.h> #include <dlib/image_io.h> #include <dlib/opencv.h> #include <ros/ros.h> #include <ros/spinner.h> #include <image_transport/image_transport.h> #include <image_transport/subscriber_filter.h> #include <sensor_msgs/CameraInfo.h> #include <sensor_msgs/Image.h> #include <sensor_msgs/PointCloud2.h> #include <geometry_msgs/PoseStamped.h> #include </home/ivvi2018/catkin_ws/devel/include/tfm_msgs/Vector_Points.h> #include <std_msgs/String.h> #include <sensor_msgs/image_encodings.h> #include <cv_bridge/cv_bridge.h> #include <tf/transform_datatypes.h> #include <message_filters/subscriber.h> #include <message_filters/synchronizer.h> #include <message_filters/sync_policies/exact_time.h> #include <message_filters/sync_policies/approximate_time.h> #include <camera_params.h> using namespace cv; using namespace std; //using namespace dlib; #define PI 3.141592 #define pimedios 1.570796 #define dospi 6.28318530718 #define degree2radian 0.01745329252 #define radian2degree 57.2958279 #define MIN_DEPTH 0.0 #define MAX_DEPTH 3000 #define MORPH_ELEM MORPH_ELLIPSE // Elipse kernel #define MORPH_SIZE 3 // Kernel size /// Imagen #define IMAGE_W 960 #define IMAGE_H 540 #define SHOW 1 #define ORIGINAL_RIGHT_EAR 0 #define ORIGINAL_MENTON 8 #define ORIGINAL_LEFT_EAR 16 #define ORIGINAL_RIGHT_BROW_1 17 #define ORIGINAL_RIGHT_BROW_2 18 #define ORIGINAL_RIGHT_BROW_3 19 #define ORIGINAL_RIGHT_BROW_4 20 #define ORIGINAL_RIGHT_BROW_5 21 #define ORIGINAL_LEFT_BROW_1 22 #define ORIGINAL_LEFT_BROW_2 23 #define ORIGINAL_LEFT_BROW_3 24 #define ORIGINAL_LEFT_BROW_4 25 #define ORIGINAL_LEFT_BROW_5 26 #define ORIGINAL_CTRE_EYES 27 #define ORIGINAL_NOSE 30 #define ORIGINAL_RIGHT_NOSE 31 #define ORIGINAL_CTR_NOSE 33 #define ORIGINAL_LEFT_NOSE 35 #define ORIGINAL_RIGHT_EYER 36 #define ORIGINAL_RIGHT_EYE_TOP_R 37 #define ORIGINAL_RIGHT_EYE_TOP_L 38 #define ORIGINAL_RIGHT_EYEL 39 #define ORIGINAL_RIGHT_EYE_BOTTOM_L 40 #define ORIGINAL_RIGHT_EYE_BOTTOM_R 41 #define ORIGINAL_LEFT_EYER 42 #define ORIGINAL_LEFT_EYE_TOP_R 43 #define ORIGINAL_LEFT_EYE_TOP_L 44 #define ORIGINAL_LEFT_EYEL 45 #define ORIGINAL_LEFT_EYE_BOTTOM_L 46 #define ORIGINAL_LEFT_EYE_BOTTOM_R 47 #define ORIGINAL_RIGHT_LIP_1 48 #define ORIGINAL_RIGHT_LIP_2 49 #define ORIGINAL_RIGHT_LIP_3 50 #define ORIGINAL_STOMMION 51 #define ORIGINAL_LEFT_LIP_1 52 #define ORIGINAL_LEFT_LIP_2 53 #define ORIGINAL_LEFT_LIP_3 54 #define ORIGINAL_BOTTOM_LIP_1 55 #define ORIGINAL_BOTTOM_LIP_2 56 #define ORIGINAL_BOTTOM_LIP_3 57 #define ORIGINAL_BOTTOM_LIP_4 58 #define ORIGINAL_BOTTOM_LIP_5 59 #define ORIGINAL_INNER_LIP_1 60 #define ORIGINAL_INNER_LIP_2 61 #define ORIGINAL_INNER_LIP_3 62 #define ORIGINAL_INNER_LIP_4 63 #define ORIGINAL_INNER_LIP_5 64 #define ORIGINAL_INNER_LIP_6 65 #define RIGHT_EAR 0 #define MENTON 1 #define LEFT_EAR 2 #define RIGHT_BROW_1 3 #define RIGHT_BROW_2 4 #define RIGHT_BROW_3 5 #define RIGHT_BROW_4 6 #define RIGHT_BROW_5 7 #define LEFT_BROW_1 8 #define LEFT_BROW_2 9 #define LEFT_BROW_3 10 #define LEFT_BROW_4 11 #define LEFT_BROW_5 12 #define CTRE_EYES 13 #define NOSE 14 #define RIGHT_NOSE 15 #define CTR_NOSE 16 #define LEFT_NOSE 17 #define RIGHT_EYER 18 #define RIGHT_EYE_TOP_R 19 #define RIGHT_EYE_TOP_L 20 #define RIGHT_EYEL 21 #define RIGHT_EYE_BOTTOM_L 22 #define RIGHT_EYE_BOTTOM_R 23 #define LEFT_EYER 24 #define LEFT_EYE_TOP_R 25 #define LEFT_EYE_TOP_L 26 #define LEFT_EYEL 27 #define LEFT_EYE_BOTTOM_L 28 #define LEFT_EYE_BOTTOM_R 29 #define RIGHT_LIP_1 30 #define RIGHT_LIP_2 31 #define RIGHT_LIP_3 32 #define STOMMION 33 #define LEFT_LIP_1 34 #define LEFT_LIP_2 35 #define LEFT_LIP_3 36 #define BOTTOM_LIP_1 37 #define BOTTOM_LIP_2 38 #define BOTTOM_LIP_3 39 #define BOTTOM_LIP_4 40 #define BOTTOM_LIP_5 41 #define INNER_LIP_1 42 #define INNER_LIP_2 43 #define INNER_LIP_3 44 #define INNER_LIP_4 45 #define INNER_LIP_5 46 #define INNER_LIP_6 47 #define RIGHT_PUPIL 48 #define LEFT_PUPIL 49 struct dir_ojo{ cv::Point3f cornea; cv::Point3f pupila; cv::Point3f punto_visto; }; struct ojo{ int presencia; int x; int y; float x_w; float y_w; float z_w; int r; dlib::point limsup_i; dlib::point liminf_i; dlib::point limsup_d; dlib::point liminf_d; dlib::point corner_izdo; dlib::point corner_dcho; cv::Point3f limsup_i_w; cv::Point3f liminf_i_w; cv::Point3f limsup_d_w; cv::Point3f liminf_d_w; cv::Point3f corner_izdo_w; cv::Point3f corner_dcho_w; float angx; float angy; vector<dir_ojo> puntos_vista; }; struct Face{ int presencia; //ok float x0; float y0; float z0; int offset_face_x; int offset_face_y; int face_w; int face_h; int offset_nose_x; int offset_nose_y; int nose_w; int nose_h; int offset_leye_x; int offset_leye_y; int leye_w; int leye_h; int offset_reye_x; int offset_reye_y; int reye_w; int reye_h; float roll; float yaw; float pitch; float t[3]; struct ojo ojo_izdo; struct ojo ojo_dcho; }; void DibujarRostro(cv::Mat &image, vector<Point2f> cara, Scalar color); void DibujarEjes(cv::Mat &cam, cv::Mat & tran); void proyectarRostro(Mat & image, vector<Point3f> & puntos_cara, vector<Point3f> & vector_p_ideales, Mat & tran); void ObtienePuntos(std::vector<cv::Point3f> &Points3D, std::vector<cv::Point2i> &Points2D, std::vector<dlib::full_object_detection> & shapes, Face & driver, Mat & depth); void Inicializar3D(std::vector<cv::Point3f> &Points3D); void Inicializar3D_Real(std::vector<cv::Point3f> & Points3D); void Inicializar2D_Real(std::vector<cv::Point2i> & Points2D); void Inicializar3D_Ideal(std::vector<cv::Point3f> & Points3D); void ObtieneTransfVec(Mat & transf, Mat & rotation, Mat & rvec, Mat & tvec); void ObtieneTransfMat(Mat & transf, Mat & rotation, Mat & rvec, Mat & tvec); void filter(Mat & rvec, Mat & tvec, vector<Mat> & rvecs, vector<Mat> & tvecs, Mat & rvec_f, Mat & tvec_f); #define CTE 2.0 const static cv::Point3f P3D_SELLION (0.0, 0.0, 0.0); const static cv::Point3f P3D_RIGHT_EYER (-30*CTE, 9*CTE, 20*CTE); const static cv::Point3f P3D_RIGHT_EYEL (-10*CTE, 9*CTE, 18*CTE); const static cv::Point3f P3D_LEFT_EYER ( 10*CTE, 9*CTE, 18*CTE); const static cv::Point3f P3D_LEFT_EYEL ( 30*CTE, 9*CTE, 20*CTE); const static cv::Point3f P3D_NOSE ( 0*CTE, 30*CTE,-10*CTE); const static cv::Point3f P3D_NOSEBR (-10*CTE, 37*CTE, 7*CTE); const static cv::Point3f P3D_NOSEBC ( 0.0, 37*CTE, 0.0); const static cv::Point3f P3D_NOSEBL ( 10*CTE, 37*CTE, 7*CTE); const static cv::Point3f P3D_STOMMION ( 0.0, 46*CTE, 0.0); const static cv::Point3f P3D_LIPR (-15*CTE, 50*CTE, 10*CTE); const static cv::Point3f P3D_LIPL ( 15*CTE, 50*CTE, 10*CTE); const static cv::Point3f P3D_MENTON ( 0.0, 75*CTE, 0.0); #define N_RIGHT_EYER 0 #define N_RIGHT_EYEL 1 #define N_LEFT_EYER 2 #define N_LEFT_EYEL 3 #define N_NOSE 4 #define N_NOSEBR 5 #define N_NOSEBC 6 #define N_NOSEBL 7 #define N_STOMMION 8 #define N_LIPR 9 #define N_LIPL 10 #define N_MENTON 11 /// PCL // Define "PointCloud" to be a pcl::PointCloud of pcl::PointXYZRGB points typedef pcl::PointXYZRGB PointT; typedef pcl::PointCloud<PointT> PointCloud; typedef pcl::PointCloud<PointT>::Ptr PointCloudPtr; typedef pcl::PointCloud<PointT>::ConstPtr PointCloudConstPtr; // UTILIDADES // /* * Devuelve la distancia entre dos puntos a y b en 2D */ float distanceP2P(Point a, Point b) { float d = sqrt(fabs(pow(a.x - b.x, 2) + pow(a.y - b.y, 2))); return d; } /* * Devuelve el angulo entre dos puntos a y b en 2D */ float angleP2P(Point a, Point b){ float angle = atan2(a.y - b.y, a.x - b.x); if (angle < 0.0) { angle += dospi; } return (angle)/dospi*360; } /* * Devuelve la distancia entre dos puntos a y b en 3D */ float distanceP3P(Point3f a, Point3f b) { float d = sqrt(fabs(pow(a.x - b.x, 2) + pow(a.y - b.y, 2)+ pow(a.z - b.z, 2))); return d; } /* * Devuelve el angulo de entrada entre [-pi, pi] */ float norm_angulo(float angulo){ float norm; if (angulo < PI){ norm = angulo; if (angulo < -PI){ norm = dospi + angulo; } } else { norm = -( dospi - angulo); } return norm; } //void filtro_mediana(Mat rvec, Mat tvec, std::vector<cv::Point3f> & mediana){ // vector<float> tvec_x, tvec_y, tvec_z; // vector<float> rvec_raw, p_vistos_y, p_vistos_z; // vector<float> corneas_x, corneas_y, corneas_z; // // // std::sort(pupilas_x.begin(), pupilas_x.end()); // std::sort(pupilas_y.begin(), pupilas_y.end()); // std::sort(pupilas_z.begin(), pupilas_z.end()); // // std::sort(corneas_x.begin(), corneas_x.end()); // std::sort(corneas_y.begin(), corneas_y.end()); // std::sort(corneas_z.begin(), corneas_z.end()); // // std::sort(p_vistos_x.begin(), p_vistos_x.end()); // std::sort(p_vistos_y.begin(), p_vistos_y.end()); // std::sort(p_vistos_z.begin(), p_vistos_z.end()); // // Point3f med (pupilas_x[pupilas_x.size() / 2], pupilas_y[pupilas_y.size() / 2], pupilas_z[pupilas_z.size() / 2]); // mediana.push_back(med); // med = Point3f(corneas_x[corneas_x.size() / 2], corneas_y[corneas_y.size() / 2], corneas_z[corneas_z.size() / 2]); // mediana.push_back(med); // med = Point3f(p_vistos_x[p_vistos_x.size() / 2], p_vistos_y[p_vistos_y.size() / 2], p_vistos_z[p_vistos_z.size() / 2]); // mediana.push_back(med); //}
a226919372f0dcf2dd8d73833a7aba519752dcca
03eab75deb71cb25ba18cfb22c20850bb1bb0305
/LAHACK/Teleport.h
c76ec61c7865857ef5ea18da2917890c4a3fd20f
[]
no_license
lahack/LAHacks
e35a03cac9f8905827adcf259bac4b39fd49950b
6289d5dabe1ede2adf8504f3fa1345d01c683ac9
refs/heads/master
2022-01-08T00:48:39.010365
2019-04-01T06:14:04
2019-04-01T06:14:04
178,540,517
0
0
null
null
null
null
UTF-8
C++
false
false
207
h
Teleport.h
#include "Actor.h" class Game; class Teleport : public Actor { public: Teleport(Game* game, int level, int width, int height); void setup(); int level; int width; int height; bool created = false; };
7215f6ceab269b32e24c1a6f2088072c4be33637
87c5fad99b7bbede7196f978ad0abc5655e9b177
/slcan.ino
b515cd368879943bcda72c8c40e487aab60941f0
[]
no_license
nakkaya/slcanuino
c1e85849dbfd1bd00ba98248c7611a5ad36d8f5d
e16f97eba11dd89a1e23a76ebe0a3357b10c262a
refs/heads/master
2020-04-03T19:35:11.552238
2018-10-31T10:29:50
2018-10-31T10:29:50
155,528,064
1
0
null
2018-10-31T09:04:42
2018-10-31T09:04:42
null
UTF-8
C++
false
false
5,694
ino
slcan.ino
#include "Canbus/mcp2515_defs.h" #include "Canbus/mcp2515.h" #include "Canbus/defaults.h" #include "Canbus/global.h" #include "Canbus/Canbus.h" #include "Canbus/Canbus.cpp" #include "Canbus/mcp2515.c" #define LED_OPEN 7 #define LED_ERR 8 #define CMD_LEN (sizeof("T12345678811223344556677881234\r")+1) int g_can_speed = CANSPEED_500; // default: 500k int g_ts_en = 0; // the setup function runs once when you press reset or power the board void setup() { pinMode(LED_OPEN, OUTPUT); pinMode(LED_ERR, OUTPUT); Serial.begin(1000000); // select from 115200,500000,1000000 if (Canbus.init(g_can_speed)) { digitalWrite(LED_ERR, LOW); } else { digitalWrite(LED_ERR, HIGH); } } // transfer messages from CAN bus to host void xfer_can2tty() { tCAN msg; char buf[CMD_LEN]; int i; static uint16_t ts = 0; char *p; while (Canbus.message_rx(&msg)) { p = buf; if (msg.header.ide) { if (msg.header.rtr) { sprintf(p, "R%04X%04X%01d", msg.id, msg.ide, msg.header.length); } else { sprintf(p, "T%04X%04X%01d", msg.id, msg.ide, msg.header.length); } p += 10; } else { if (msg.header.rtr) { sprintf(p, "r%03X%01X", msg.id, msg.header.length); } else { sprintf(p, "t%03X%01X", msg.id, msg.header.length); } p += 5; } for (i = 0; i < msg.header.length; i++) { sprintf(p + (i * 2), "%02X", msg.data[i]); } p += i * 2; // insert timestamp if needed if (g_ts_en) { sprintf(p, "%04X", ts++); // up to 60,000ms p += 4; } *(p++) = '\r'; *(p++) = '\0'; Serial.print(buf); } } void slcan_ack() { Serial.write('\r'); // ACK } void slcan_nack() { Serial.write('\a'); // NACK } void send_canmsg(char *buf) { tCAN msg; int len = strlen(buf) - 1; int val, vale; int is_eff = buf[0] & 0x20 ? 0 : 1; int is_rtr = buf[0] & 0x02 ? 1 : 0; if (!is_eff && len >= 4) { // SFF sscanf(&buf[1], "%03x", &val); msg.id = val; msg.header.rtr = is_rtr; msg.header.ide = 0; sscanf(&buf[4], "%01x", &val); msg.header.length = val; if (len - 4 - 1 == msg.header.length * 2) { for (int i = 0; i < msg.header.length; i++) { sscanf(&buf[5 + (i * 2)], "%02x", &val); msg.data[i] = val; } } Canbus.message_tx(&msg); } else if (is_eff && len >= 9) { // EFF sscanf(&buf[1], "%04x%04x", &val, &vale); msg.id = val & 0x1fff; msg.ide = vale; msg.header.rtr = is_rtr; msg.header.ide = 1; sscanf(&buf[9], "%01x", &val); msg.header.length = val; if (len - 9 - 1 == msg.header.length * 2) { for (int i = 0; i < msg.header.length; i++) { sscanf(&buf[10 + (i * 2)], "%02x", &val); msg.data[i] = val; } } Canbus.message_tx(&msg); } } void pars_slcancmd(char *buf) { switch (buf[0]) { // common commands case 'O': // open channel digitalWrite(LED_OPEN, HIGH); if (Canbus.init(g_can_speed)) { digitalWrite(LED_ERR, LOW); } else { digitalWrite(LED_ERR, HIGH); } slcan_ack(); break; case 'C': // close channel digitalWrite(LED_OPEN, LOW); digitalWrite(LED_ERR, LOW); slcan_ack(); break; case 't': // SFF case 'T': // EFF case 'r': // RTR/SFF case 'R': // RTR/EFF send_canmsg(buf); slcan_ack(); break; case 'Z': // turn timestamp on/off if (buf[1] == '0') { g_ts_en = 0; } else if (buf[1] == '1') { g_ts_en = 1; } else { slcan_nack(); } slcan_ack(); break; case 'M': // acceptance mask slcan_ack(); break; case 'm': // acceptance value slcan_ack(); break; // non-standard commands case 'S': // setup CAN bit-rates switch (buf[1]) { case '0': // 10k case '1': // 20k case '2': // 50k slcan_nack(); break; case '3': // 100k g_can_speed = CANSPEED_100; slcan_ack(); break; case '4': // 125k g_can_speed = CANSPEED_125; slcan_ack(); break; case '5': // 250k g_can_speed = CANSPEED_250; slcan_ack(); break; case '6': // 500k g_can_speed = CANSPEED_500; slcan_ack(); break; case '7': // 800k slcan_nack(); break; case '8': // 1000k g_can_speed = CANSPEED_1000; slcan_ack(); break; default: slcan_nack(); break; } break; case 's': // directly set bitrate register of mcp2515 slcan_nack(); break; case 'F': // status flag Serial.print("F12"); slcan_ack(); break; case 'V': // hw/sw version Serial.print("V1234"); slcan_ack(); break; case 'N': // serial number Serial.print("N1234"); slcan_ack(); break; default: // unknown command slcan_nack(); break; } } // transfer messages from host to CAN bus void xfer_tty2can() { int length; static char cmdbuf[CMD_LEN]; static int cmdidx = 0; if ((length = Serial.available()) > 0) { for (int i = 0; i < length; i++) { char val = Serial.read(); cmdbuf[cmdidx++] = val; if (cmdidx == CMD_LEN) { // command is too long slcan_nack(); cmdidx = 0; } else if (val == '\r') { // end of command cmdbuf[cmdidx] = '\0'; pars_slcancmd(cmdbuf); cmdidx = 0; } } } } // the loop function runs over and over again forever void loop() { xfer_can2tty(); xfer_tty2can(); }
6a56deba4373f2f0e19c6eae58e9afae9b46040c
cc8ba0ab3dbc3fb63b6279418b51eae4c76e1b63
/arm_o/dadduser.h
781e262c731eacc955f9922e17adea07dd4adcb8
[]
no_license
levdikandrey/DataCollector
2c08e34277787fee53d407b8b401f14e58a974da
7a79029c7936c26c2d2a4d1396a0d996de9ee2ea
refs/heads/master
2021-06-26T12:37:02.206691
2021-06-10T11:03:54
2021-06-10T11:03:54
229,206,596
2
0
null
null
null
null
UTF-8
C++
false
false
599
h
dadduser.h
#ifndef DADDUSER_H #define DADDUSER_H #include <QDialog> namespace Ui { class DAddUser; } class DAddUser : public QDialog { Q_OBJECT public: explicit DAddUser(QWidget *parent = nullptr); ~DAddUser(); const QString lastName() const; const QString firstName() const; const QString middleName() const; const QString range() const; int idGroup(); void addGroup(std::map<int,QString> groups); void clear(); public slots: void slotApply(); void slotCancel(); private: Ui::DAddUser *ui; std::map<int,QString> m_groups; }; #endif // DADDUSER_H
8dd18862c996ec1e368aef54733dc2a167599b06
64fbf0357a45a74083e9da5a32c9e129846df3a2
/starve_free_rw_problem.cpp
27e40dbbdf25068c21ac1433a9b3ffd7a9da0237
[]
no_license
namanjain-iitr/Starve_Free_Reader_Writers-CSN-232
f2ed3f43f7944cb25f9ae528224156594b413a54
e3510b3f6983585be3afb10b7e9865a542cb9bc1
refs/heads/main
2023-05-01T22:22:11.935664
2021-05-20T16:18:53
2021-05-20T16:18:53
365,302,676
0
0
null
null
null
null
UTF-8
C++
false
false
4,617
cpp
starve_free_rw_problem.cpp
#include <iostream> using namespace std; // A queue node. struct Node { // Pointer to next node and process_id for current process Node* next; pid_t value; }; class Queue { // Front pointer for pop operation // Rear pointer for adding a new node Node* Front, *Rear; public: // Method to push a node at end of queue void push(pid_t val) { // Create a node and initialize pid value Node* new_process = new Node(); new_process->value = val; // Update front if queue is empty if(Rear != NULL) Rear->next = new_process; else Front = new_process; // Update Rear to point to added node Rear = new_process; } // Method to pop a Node from front of queue pid_t pop() { // check if queue if empty if(Front == NULL) { // Queue is Empty : Underflow Error return -1; } else { // Get Front node pid_t process_id = Front->value; // Update Front node Front = Front->next; // Update Rear if queue is empty now if(Front == NULL) Rear = NULL; // Return the value of procss id return process_id; } } }; // C++-Style Struct Implementation of Semaphore class Semaphore { int value = 1; // Queue to Store Processes waiting to be executed Queue processes = Queue(); public: // wait method to block other process while // a code executes inside critical section void wait(pid_t process_id) { value--; if(value < 0) { processes.push(process_id); // Block other processes using non-busy waiting // until signal() is called after execution of // Critical Section by executing process. wait(process_id); } } void signal() { value++; if(value <= 0) { pid_t pid = processes.pop(); // Wakeup the next process for execution from queue wakeup(pid); } } }; // cpp style Global Variable declaration and initialization //Declare Semaphores struct Semaphore rw_queue; struct Semaphore resource; struct Semaphore r_mutex; // Initialize readers count int reader_count = 0; // Initial critical data section to be shared int data = 1; void *writer(pid_t process_id){ /*-------------- ENTRY section ------------------*/ // Wait in queue till other requests are serviced rw_queue.wait(process_id); // Wait its turn to modify resource semaphore resource.wait(process_id); // Release the rw_queue semaphore lock for other process rw_queue.signal(); /*------------- CRITICAL section ----------------*/ // Perform any modification of shared data variable here data = data*2; /*-------------- EXIT section -------------------*/ // Release the resource semaphore lock for next process resource.signal(); } void *reader(pid_t process_id){ /*-------------- ENTRY section ------------------*/ // Wait in queue till other requests are serviced rw_queue.wait(process_id); // Only one process should update readers count at a time r_mutex.wait(process_id); // Incrememt readers count reader_count++; // If current reader is the first reader wait till // other writers release the resource semaphore if(reader_count == 1) resource.wait(process_id); // Allow other process in queue to be serviced rw_queue.signal(); // Readers count is updated r_mutex.signal(); /*------------- CRITICAL section ----------------*/ // Perform any read operation of data variable from database printf("%d",data); /*-------------- EXIT section -------------------*/ // Only one process should update readers count at a time r_mutex.wait(process_id); // Decrement read count semaphore after reading is done reader_count--; // Release resource semaphore for writer if // no other reader is remaining or left. if(reader_count == 0) resource.signal(); // Allow other readers to modify readcount semaphore r_mutex.signal(); }
55c226024c4d504b009498793f1d4eb5fa1c9c9b
411f463efe186c9d6aa212edeed74e6c0ee7be4d
/src/StageBuilderLakes.cpp
da894a1cc6002231a4fa283b75f6a9a20b986885
[]
no_license
glindsey/game-project-potential
8b9f2710e5e1fdf17cef354bcb041ef5f7571457
a7e806a53813e0d2f2eab9cd3eb119275b638743
refs/heads/master
2021-01-01T15:55:10.422272
2014-04-27T19:12:06
2014-04-27T19:12:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,131
cpp
StageBuilderLakes.cpp
// *** ADDED BY HEADER FIXUP *** #include <iostream> // *** END *** /* * StageBuilderLakes.cpp * * Created on: Dec 10, 2012 * Author: Gregory Lindsey */ #include "../include/StageBuilderLakes.h" #include "Application.h" #include "ColumnData.h" #include "MathUtils.h" #include "Settings.h" #include "Stage.h" #include "StageBlock.h" #include "StageChunk.h" #include "Substance.h" struct StageBuilderLakes::Impl { Impl(Stage& stage, int seed, StageCoord sea_level) : stage_(stage), seed_(seed), sea_level_(sea_level) { Reset(); } void Reset() { begin_ = true; } bool begin_; /// Column we're currently at. StageCoord2 column_; /// Reference to the stage. Stage& stage_; /// Seed used for the RNG. int seed_; /// Sea level for the state. StageCoord sea_level_; }; StageBuilderLakes::StageBuilderLakes(Stage& stage, int seed, StageCoord sea_level) : impl(new Impl(stage, seed, sea_level)) { } StageBuilderLakes::~StageBuilderLakes() { } bool StageBuilderLakes::Build() { static StageCoord3 stage_size = impl->stage_.size(); if (impl->begin_) { std::cout << "Adding lakes..." << std::endl; impl->column_ = StageCoord2(0, 0); impl->begin_ = false; } if (impl->column_.y < stage_size.y) { for (impl->column_.x = 0; impl->column_.x < stage_size.x; ++(impl->column_.x)) { StageCoord min_terrain_height = impl->stage_.min_terrain_height(); for (StageCoord z = min_terrain_height + impl->sea_level_; z >= 0; --z) { StageCoord3 coord(impl->column_.x, impl->column_.y, z); StageBlock& block = impl->stage_.get_block(coord.x, coord.y, coord.z); if (block.is_traversable()) { block.set_substance(BlockLayer::Fluid, "freshwater"); } else { break; } } // Height, outdoor level need recalculating after this. impl->stage_.set_column_dirty(impl->column_.x, impl->column_.y); } ++(impl->column_.y); } else { return true; } return false; } void StageBuilderLakes::Reset() { impl->Reset(); }
2be3438c6e6a17da3c33f2c8422ac2ddbc8ea19a
f6724b46574298a3b89ac558954eadc49c9f96f1
/RotateArray.cpp
99178058d4526b0f2dd250966bc26f8f84204a79
[]
no_license
zrss/LeetCode
5b0a6ce72d44859cc12a45edef8c5a371c149bc9
54ff11599b5c141072f94e77ce55731b76467f0d
refs/heads/master
2020-04-06T00:57:25.675167
2016-10-22T03:26:26
2016-10-22T03:26:26
24,978,800
0
0
null
null
null
null
UTF-8
C++
false
false
702
cpp
RotateArray.cpp
#include <cstdio> class Solution { public: void rotate(int nums[], int n, int k) { k %= n; // there is a trap if (k == 0) { // there is a trap when k == 0 return; } int gap = n - k; inverse(nums, 0, gap); inverse(nums, gap, n); inverse(nums, 0, n); } void inverse(int nums[], int s, int e) { --e; while (s < e) { int tmp = nums[s]; nums[s] = nums[e]; nums[e] = tmp; ++s; --e; } } }; int main(int argc, char const *argv[]) { Solution solution; int nums[] = {1,2,3,4,5,6,7,8,9,10}; solution.rotate(nums, 10, 3); for (int i = 0; i < 2; ++i) { printf("%d ", nums[i]); } return 0; }
4ace37af82f61e7bdb99bad4187025baef847f8e
f68e5d09710fb2ee15e3a232a003d6caaa98116d
/src/context.h
c91f9aa6579521b76b86b5339d8bf60df43fbd71
[]
no_license
learnerjiahao/mhhs
19a2f64fda7fdc2e78d66d760f8153a3acb69adf
d3280a89d5d670e1c22ed30d957ce4e57e19edba
refs/heads/master
2020-04-15T20:42:39.166556
2019-01-10T07:14:58
2019-01-10T07:14:58
165,005,333
1
1
null
null
null
null
UTF-8
C++
false
false
1,104
h
context.h
// // Created by wujiahao on 18-5-7. // #ifndef MHHSS_CONTEXT_H #define MHHSS_CONTEXT_H #include "readInputs/config.h" #include "message/routed_data_imsgs_pool.h" class Context { public: RoutedDataIMsgsPool *IsendMsgsPool; RoutedDataIMsgsPool *IrecvMsgsPool; #ifdef USE_PTHREAD pthread_t msgRecvMonitorThread; #endif static Context *getInstance(); ~Context(); void parsingConfig(std::string configFilePath); void initMsgsPools(utils::_type_nodeid initIsendPoolCap, utils::_type_nodeid initIrecvPoolCap); std::string getDispatchFilePath(utils::_type_proid proid); utils::_type_time_step getSimulationSteps(); private: Config *config; Context(); static Context *context; class CGarbo //它的唯一工作就是在析构函数中删除CSingleton的实例 { public: ~CGarbo() { if(Context::context) delete Context::context; } }; static CGarbo Garbo; //定义一个静态成员变量,程序结束时,系统会自动调用它的析构函数 }; #endif //MHHSS_CONTEXT_H
5acac3288e2441b2245e45331b1717c232d08ece
1e09459300ba48a674385a89cb16a0b84449149f
/Obesity_2.cpp
3fa87118be444085b6c8a37ade8c4cdf0275514e
[]
no_license
SofiaPsal/Obesity_changes
4877ff6d649a200ce7a279b808deb65ce6966cb9
1abe1e8ce1d766fe383e2760e4bd1a8a3bdd138b
refs/heads/master
2022-10-11T18:08:22.097051
2020-06-04T20:03:15
2020-06-04T20:03:15
269,446,547
0
0
null
null
null
null
UTF-8
C++
false
false
13,074
cpp
Obesity_2.cpp
#include <vector> #include <iostream> #include <graphics.h> #include <stdio.h> #include <fstream> #include <string> #include <cstdlib> #include <ctime> using namespace std; const int size=80; class point{ public: vector<vector<int> >grid; vector<vector<int> >generate; vector<vector<int> >risks; vector<int> store; vector<vector<int> >cells; vector<vector<int> >n_risks; vector<vector<float> >ho1; vector<vector<float> >ho2; vector<vector<int> >limit; int state; int count=0; int counter=0; int result=size/10; bool metraw=false; int s=-4; int t=0; int diafora=1; int times=0; int total=0; int total1, total2; bool flag=false; int c1,c2,c3,c4; int ts=10; int tl=4; //Sunarthsh gia to xrwmatismo twn keliwn tou plegmatos analoga me thn katastash void drawLine(int x, int y){ int l=7; int step=40; if(state==0) setcolor(5); else if(state==1) setcolor(15); else if(state==2) setcolor(14); else if(state==3) setcolor(2); else setcolor(0); for(int i=0; i<5; i++) line(x*l+step,y*l+i,x*l+step+5,y*l+i); } //Sugkrish keliou (i,j) me stoixeia tou vector store, o opoios apo8hkeuei ta kelia sta opoia exoun ginei parembaseis bool compare(int a, int b){ bool n=false; for(int i=0; i<store.size(); i+=2){ if(a==store[i] && b==store[i+1]){ generate[a][b]=3; n=true; return n; } } } //Sunarthsh gia thn efarmogh twn kanonwn metavashs katastasewn void newstate(int osum,int hsum, int i, int j){ bool s=compare(i,j); float vou=-3; float vl=-1; float vhl=2; float ah,ao; float ar; int k,l; //Orismos parametrwn epirrohs ah=1.05; ao=1; ar=0.5; int stoixeio=grid[i][j]; //Pros8hkh twn parakatw sxoliwn gia thn efarmogh tou 1ou eidous paremvasewn //if(osum>5 && s==false){ // store.push_back(i); // store.push_back(j); // risks[i][j]-=3; //} int risk=risks[i][j]; //Ypologismos toumetrhth HO(t) gia ka8e atomo pou anhkei sto plegma //Pros8hkh twn parakatw sxoliwn gia thn wfarmogh tou 2ou eidous paremvasewn //if(osum>5 && stoixeio<=1){ // ao=ah=0.5; // ho2[i][j]= -ar*risk - ah*hsum + ao*osum + ho1[i][j]; //}else{ ho2[i][j]= -ar*risk + ah*hsum - ao*osum + ho1[i][j]; //} int ho=ho2[i][j]; limit[i][j]-=1; //An to atomo einai paxusarko mporei na metavei sthn katastash oriaka paxusarkos if(stoixeio==0){ if(limit[i][j]<=0){ if(ho<vou){ generate[i][j]=0; ho1[i][j]=ho-vou; }else{ generate[i][j]=1; ho1[i][j]=0; limit[i][j]=tl; } }else{ generate[i][j]=0; ho1[i][j]=ho-vou; } //An to atomo einai oriaka paxusarko mporei na metabei sthn katastash paxusarkos, oriaka ugihs kai ugihs }else if(stoixeio==1){ if(limit[i][j]<=0){ if(ho<vou){ generate[i][j]=0; ho1[i][j]=ho-vou; limit[i][j]=ts; }else if(ho<vl){ generate[i][j]=1; ho1[i][j]=0; }else if(ho<vhl){ generate[i][j]=2; ho1[i][j]=0; limit[i][j]=tl; }else if(ho>=vhl){ generate[i][j]=3; ho1[i][j]=ho-vhl; limit[i][j]=ts; } }else{ generate[i][j]=1; } //An to atomo einai oriaka ugies mporei na metavei sthn katastash paxusarkos, oriaka paxusarkos kai ugihs }else if(stoixeio==2){ if(limit[i][j]<=0){ if(ho<vou){ generate[i][j]=0; ho1[i][j]=ho-vou; limit[i][j]=ts; }else if(ho<vl){ generate[i][j]=1; ho1[i][j]=0; limit[i][j]=tl; }else if(ho<vhl){ generate[i][j]=2; ho1[i][j]=0; }else if(ho>=vhl){ generate[i][j]=3; ho1[i][j]=ho-vhl; limit[i][j]=ts; } }else{ generate[i][j]=2; } //An to atomo einai ugies mporei na metavei sthn katastash oriaka ugihs }else if(stoixeio==3){ if(limit[i][j]<=0){ if(ho<vhl){ generate[i][j]=2; ho1[i][j]=0; limit[i][j]=tl; }else if(ho>=vhl){ generate[i][j]=3; ho1[i][j]=ho-vhl; } }else{ generate[i][j]=3; ho1[i][j]=ho-vhl; } //An to keli einai keno paramenei keno }else if(stoixeio==4){ generate[i][j]=4; } } //Sunarthsh pou elegxei an to plegma vrisketai se katastash isorropias int stable(){ flag=true; for(int i=0; i<grid.size(); i++){ for(int j=0; j<grid.size(); j++){ if(grid[i][j]!=generate[i][j]){ flag=false; i=grid.size(); j=grid.size(); } } } return(flag); } //Sunarthsh gia thn ektupwsh tou plegmatos kai tou plh8usmou ka8e kathgorias void printGrid(){ int total1, total2, total3, total4, total5; total1=total2=total3=total4=total5=0; for(int i=0; i<cells.size(); i++){ for(int j=0; j<cells.size(); j++){ cout<<cells[i][j]<<" "; } cout<<endl; } for(int i=0; i<cells.size(); i++){ for(int j=0; j<cells.size(); j++){ if(cells[i][j]==0) total1++; if(cells[i][j]==1) total2++; if(cells[i][j]==2) total3++; if(cells[i][j]==3) total4++; if(cells[i][j]==4) total5++; } } cout<<"Arithmos paxusarkwn="<<total1<<endl; cout<<"Arithmos oriaka paxusarkwn="<<total2<<endl; cout<<"Arithmos oriaka ugiwn="<<total3<<endl; cout<<"Arithmos ugiwn="<<total4<<endl; cout<<"Arithmos kenwn keliwn="<<total5<<endl; for(int i=0; i<cells.size(); i++){ for(int j=0; j<cells.size(); j++){ state=cells[i][j]; drawLine(j,i); } cout<<endl; } } //Sunarthsh paragwghs thw epomenhs katastashs tou plegmatos void Generate(){ count++; bool same=false; int exit_code = 10; same=stable(); //H epomenh katastash tou plegmatos ginetai h trexousa for(int i=0; i<grid.size(); i++){ for(int j=0; j<grid.size(); j++){ grid[i][j]=generate[i][j]; } } join(); cout<<"Plegma epomenhs genias: \n"; printGrid(); } //Sunarthsh upologismou twn geitonwn ka8e keliou tou plegmatos double neighbors(){ int ob,heal,sum,c,k,l; int size=grid.size(); bool normal=false; c1=c2=c3=c4=0; for(int i=0; i<size; i++){ for(int j=0; j<size; j++){ ob=0; heal=0; sum=0; if(i!=0){ sum++; if(grid[i-1][j]<=1){ ob++; }else{ if(grid[i-1][j]!=4) heal++; } }else{ if(grid[size-1][j]<=1){ ob++; }else{ if(grid[i+1][j]!=4) heal++; } } if(j!=0){ sum++; if(grid[i][j-1]<=1){ ob++; }else{ if(grid[i][j-1]!=4) heal++; } }else{ if(grid[i][size-1]<=1){ ob++; }else{ if(grid[i][size-1]!=4) heal++; } } if(i!=size-1){ sum++; if(grid[i+1][j]<=1){ ob++; }else{ if(grid[i+1][j]!=4) heal++; } }else{ if(grid[0][j]<=1){ ob++; }else{ if(grid[0][j]!=4) heal++; } } if(j!=size-1){ sum++; if((grid[i][j+1]==0 || grid[i][j+1]==1)){ ob++; }else{ if(grid[i][j+1]!=4) heal++; } }else{ if(grid[i][0]<=1){ ob++; }else{ if(grid[i][0]!=4) heal++; } } if(i!=0 && j!=0){ sum++; if(grid[i-1][j-1]<=1){ ob++; }else{ if(grid[i-1][j-1]!=4) heal++; } }else if(j!=0){ if(grid[size-1][j-1]<=1){ ob++; }else{ if(grid[size-1][j-1]!=4) heal++; } }else if(i!=0){ if(grid[i-1][size-1]<=1){ ob++; }else{ if(grid[i-1][size-1]!=4) heal++; } }else{ if(grid[size-1][size-1]<=1){ ob++; }else{ if(grid[size-1][size-1]!=4) heal++; } } if(i!=size-1 && j!=0){ sum++; if(grid[i+1][j-1]<=1){ ob++; }else{ if(grid[i+1][j-1]!=4) heal++; } }else if(j!=0){ if(grid[0][j-1]<=1){ ob++; }else{ if(grid[0][j-1]!=4) heal++; } }else if(i!=size-1){ if(grid[i+1][size-1]<=1){ ob++; }else{ if(grid[i+1][size-1]!=4) heal++; } }else{ if(grid[1][size-1]<=1){ ob++; }else{ if(grid[1][size-1]!=4) heal++; } } if(i!=size-1 && j!=size-1){ sum++; if(grid[i+1][j+1]<=1){ ob++; }else{ if(grid[i+1][j+1]!=4) heal++; } }else if(j!=size-1){ if(grid[0][j+1]<=1){ ob++; }else{ if(grid[0][j+1]!=4) heal++; } }else if(i!=size-1){ if(grid[i+1][0]<=1){ ob++; }else{ if(grid[i+1][0]!=4) heal++; } }else{ if(grid[1][1]<=1){ ob++; }else{ if(grid[1][1]!=4) heal++; } } if(i!=0 && j!=size-1){ sum++; if(grid[i-1][j+1]<=1){ ob++; }else{ if(grid[i-1][j+1]!=4) heal++; } }else if(j!=size-1){ if(grid[size-1][j+1]<=1){ ob++; }else{ if(grid[size-1][j+1]!=4) heal++; } }else if(i!=0){ if(grid[i-1][0]<=1){ ob++; }else{ if(grid[i-1][0]!=4) heal++; } }else{ if(grid[size-1][1]<=1){ ob++; }else{ if(grid[size-1][1]!=4) heal++; } } newstate(ob,heal,i,j); } } Generate(); } //Sunarthsh eureshs meshs timhs twn paragontwn kindunou mias geitonias me 4 kelia int findAverage(int a, int b){ int avg=0; for(int x=a; x<a+2; x++){ for(int y=b; y<b+2; y++){ avg+=risks[x][y]; } } return avg/4; } //Sunarthsh gia thn euresh ths epikratousas katastashs meta3u twn geitonikwn keliwn int findMajority(int a, int b){ int c0,c1,c2,c3,c4,c,max,max2; int number=4; c0=0; c1=0; c2=0; c3=0; c4=0; c=0; max=0; max2=0; for(int x=a; x<(a+2); x++){ for(int y=b; y<(b+2); y++){ if(grid[x][y]==0){ c0++; }else if(grid[x][y]==1){ c1++; }else if(grid[x][y]==2){ c2++; }else if(grid[x][y]==3){ c3++; }else { c4++; } } } if(c0>max) max=c0; if(c1>max) max=c1; if(c2>max) max=c2; if(c3>max) max=c3; if(c4>max) max=c4; if((max>2) || ((c4==1) && (max==2))){ if(max==c0) return 0; else if(max==c1) return 1; else if(max==c2) return 2; else if(max==c3) return 3; else return 4; }else{ if(c4>0){ for(int x=0; x<c4; x++){ number--; } } max=(1*c1+2*c2+3*c3)/number; if(((c1+2*c2+3*c3) % number)/number >=0.5) c=1; else c=0; return(max+c); } } //Sunarthsh dhmiourgias neou plegmatos sto opoio perioxes 4 keliwn sugxwneuontai se 1 keli int join(){ int k,l; int t1, t2, t3, t4, t5; t1=t2=t3=t4=t5=0; t++; k=0; for(int i=0; i<grid.size()-1; i+=2){ l=0; for(int j=0; j<grid.size()-1; j+=2){ cells[k][l]=findMajority(i, j); n_risks[k][l]=findAverage(i, j); if(l>=grid.size()-2) l=grid.size(); l++; } k++; if(k>=grid.size()-2){ k=grid.size(); } } if(t==1){ cout<<"Plegma me 4 geitones/keli: \n"; printGrid(); } } //Sunarthsh gia thn pragmatopoihsh arxikopoihsewn void initiallization(){ for(int i=0; i<size; i++){ vector<int>temp; vector<int>n; vector<int>r; for(int j=0; j<size; j++){ temp.push_back(rand()%5); n.push_back(0); r.push_back(rand()%8); } //Arxikopoihsh ths trexousas katastashs ka8e atomou pou anhkei sto plegma grid.push_back(temp); //Arxikopoihsh epomenhs katastashs ka8e atomou pou anhkei sto plegma generate.push_back(n); //Arxikopoihsh twn timwn paragontwn kindunou ka8e atomou pou anhkei sto plegma risks.push_back(r); limit.push_back(n); } for(int i=0; i<size/2; i++){ vector<int>p1; vector<int>p2; for(int j=0; j<size/2; j++){ p1.push_back(1); p2.push_back(4); } //Arxikopoihsh twn keliwn tou plegmatos (4 atoma / keli) cells.push_back(p1); //Arxikopoihsh twn paragontwn kindunou twn keliwn tou plegmatos (4 atoma / keli) n_risks.push_back(p2); } for(int i=0; i<size; i++){ vector<float>c1; vector<float>c2; for(int j=0; j<size; j++){ c1.push_back(0); } //Arxikopoihsh ba8mou antistashs ka8e atomou sth metabolh katastashs ho1.push_back(c1); //Arxikopoihsh metrhth HO(t) gia ka8e atomo pou perilambanetai sto plegma ho2.push_back(c1); } //Arxikopoihsh apaitoumenou xronou paramonhs analoga me thn trexousa katastash for(int i=0; i<size; i++){ for(int j=0; j<size; j++){ if(grid[i][j]==0 || grid[i][j]==3){ limit[i][j]=ts; }else if(grid[i][j]<=2){ limit[i][j]=tl; } } } } }; int main(){ int gd = DETECT, gm; int count=0; initgraph(&gd, &gm, ""); point a; a.initiallization(); delay(50); a.join(); //Ektelesh metavasewn gia 45 bhmata for(int k=0; k<45; k++){ a.neighbors(); } getch(); closegraph(); return 0; }
c4a1cad3dad818628d1c00f3e4269f9c0559ab09
422fc7efca60150311348cf0217053fde9932275
/dependencies/FragmentFramework/include/systemUserInterface/uiTextInput.hpp
82df9757b6f80209b40e08c5bbaa28a5557a7e3c
[ "MIT" ]
permissive
matusnovak/SM2OBJ
99e57a1f7102016ace27987de28818a8402ce30b
7e2f4b4f7bcc6ffec4e8951fe8e8d5becebcbef0
refs/heads/master
2020-05-20T03:06:54.489441
2015-10-25T22:11:43
2015-10-25T22:11:43
37,215,403
1
1
null
null
null
null
UTF-8
C++
false
false
1,094
hpp
uiTextInput.hpp
/* * This file is part of FragmentFramework framework. * Copyright (C) 2013-2015 by Matus Novak matusnov@gmail.com * Licensed under the MIT License */ #ifndef FFW_SYS_UI_TEXT_INPUT #define FFW_SYS_UI_TEXT_INPUT #include "uiWidget.hpp" /*! * @ingroup User-Interface */ namespace ffw{ /*! * @memberof ffw * @ingroup User-Interface * @inherit uiWidget */ class FFW_API uiTextInput: public uiWidget{ public: /*! * @memberof uiTextInput * @ingroup User-Interface */ uiTextInput(void* Handle, int ID, int PosX, int PosY, int Width, int Height, const std::wstring& Label); ~uiTextInput(); /*! * @memberof uiTextInput * @ingroup User-Interface */ void setValue(const std::wstring& Value); /*! * @memberof uiTextInput * @ingroup User-Interface */ void setLimit(size_t Limit); /*! * @memberof uiTextInput * @ingroup User-Interface * @const */ std::wstring getValue() const; /*! * @memberof uiTextInput * @ingroup User-Interface * @const */ int getTextLength() const; static const size_t hash; }; }; #endif
e73764a8ba9c566aab8c09d00816460d7ed8dad8
21dfcc44840cb94058bcd014946f2a38fbf30c54
/examples/dreamtorus/glx/main.cpp
4573a2de85870a8e086c5c259705a45f90f967fc
[ "SGI-B-2.0", "MIT", "Libpng", "BSD-3-Clause", "LicenseRef-scancode-glut", "Zlib", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "Unlicense" ]
permissive
nigels-com/regal
819a74deeeac00860bcb6f21c3e59ccad1b78448
3f1a06d5c098339d30221c9e999640e4c5437a0b
refs/heads/master
2020-12-14T16:19:29.701418
2015-10-18T08:57:48
2015-10-18T08:58:56
9,986,650
2
3
null
2014-07-12T07:28:49
2013-05-10T17:35:20
C++
UTF-8
C++
false
false
3,983
cpp
main.cpp
/* This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to <http://unlicense.org/> */ #include <GL/Regal.h> #include "render.h" #include <unistd.h> #include <cstdlib> #include <cstring> #include <cstdio> int main (int argc, char ** argv) { Display *dpy = XOpenDisplay(0); PFNGLXCREATECONTEXTATTRIBSARBPROC glXCreateContextAttribsARB = NULL; const char *extensions = glXQueryExtensionsString(dpy, DefaultScreen(dpy)); printf("%s\n",extensions); static int visual_attribs[] = { GLX_RENDER_TYPE, GLX_RGBA_BIT, GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT, GLX_DOUBLEBUFFER, true, GLX_RED_SIZE, 1, GLX_GREEN_SIZE, 1, GLX_BLUE_SIZE, 1, None }; printf("Getting framebuffer config.\n"); int fbcount; GLXFBConfig *fbc = glXChooseFBConfig(dpy, DefaultScreen(dpy), visual_attribs, &fbcount); if (!fbc) { printf("Failed to retrieve a framebuffer config.\n"); return 1; } printf("Getting XVisualInfo\n"); XVisualInfo *vi = glXGetVisualFromFBConfig(dpy, fbc[0]); XSetWindowAttributes swa; printf("Creating colormap\n"); swa.colormap = XCreateColormap(dpy, RootWindow(dpy, vi->screen), vi->visual, AllocNone); swa.border_pixel = 0; swa.event_mask = StructureNotifyMask; printf("Creating window\n"); int width = 500; int height = 500; Window win = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, width, height, 0, vi->depth, InputOutput, vi->visual, CWBorderPixel|CWColormap|CWEventMask, &swa); if (!win) { printf("Failed to create window\n"); return 1; } printf("Mapping window\n"); XMapWindow(dpy, win); // Create an oldstyle context first, to get the correct function pointer for glXCreateContextAttribsARB GLXContext ctx_old = glXCreateContext(dpy, vi, 0, GL_TRUE); glXCreateContextAttribsARB = (PFNGLXCREATECONTEXTATTRIBSARBPROC) glXGetProcAddress((const GLubyte*)"glXCreateContextAttribsARB"); printf("glxCreateContextAttribsARB %p\n",glXCreateContextAttribsARB); glXMakeCurrent(dpy, 0, 0); glXDestroyContext(dpy, ctx_old); if (glXCreateContextAttribsARB == NULL) { printf("glXCreateContextAttribsARB entry point not found. Aborting.\n"); return false; } static int context_attribs[] = { GLX_CONTEXT_MAJOR_VERSION_ARB, 3, GLX_CONTEXT_MINOR_VERSION_ARB, 0, None }; printf("Creating context\n"); GLXContext ctx = glXCreateContextAttribsARB(dpy, fbc[0], NULL, true, context_attribs); if (!ctx) { printf("Failed to create GL3 context.\n"); return 1; } printf("Making context current.\n"); glXMakeCurrent(dpy, win, ctx); dreamTorusReshape( width, height ); for(int i = 0; i < 1000000; i++ ) { dreamTorusDisplay( true ); glXSwapBuffers( dpy, win ); usleep( 16000 ); } ctx = glXGetCurrentContext(); glXMakeCurrent(dpy, 0, 0); glXDestroyContext(dpy, ctx); }
db664fad2ce738e7961982ff950e9bd6251fb98d
9e62a1aa56f8a7faf06029477bd16ae64b93e382
/Buils/TEST/WTF_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Generics35.cpp
b4ce2f33120a7ae48ae14d66bc9add201e375e8f
[]
no_license
arkatir/WTF
d606d30a976bae112ef4b82e54633a7bf201cb14
fd8b7fe497a930e7d32ccb8b8c9de694d251b00f
refs/heads/main
2022-12-27T12:22:28.055012
2020-10-08T15:40:05
2020-10-08T15:40:05
301,653,822
0
1
null
null
null
null
UTF-8
C++
false
false
1,707,304
cpp
Generics35.cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Collections.IComparer struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.String struct String_t; // System.Type struct Type_t; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Collections.Generic.Comparer`1<System.Boolean> struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84; // System.Collections.Generic.Comparer`1<System.Single> struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD; // System.Collections.Generic.Comparer`1<UnityEngine.Vector2Int> struct Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380; // System.Collections.Generic.Comparer`1<UnityEngine.Vector4> struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD; // System.Collections.Generic.Comparer`1<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData> struct Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22; // System.Collections.Generic.Comparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Int32> struct Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94; // System.Collections.Generic.Dictionary`2<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75; // System.Collections.Generic.Dictionary`2<System.UInt64,System.Object> struct Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8; // System.Collections.Generic.Dictionary`2<UnityEngine.Vector4,System.Int32Enum> struct Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E; // System.Collections.Generic.Dictionary`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C; // System.Collections.Generic.Dictionary`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object> struct Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C; // System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E; // System.Collections.Generic.Dictionary`2<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823; // System.Collections.Generic.Dictionary`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20; // System.Collections.Generic.EqualityComparer`1<System.Single> struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2Int> struct EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4> struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData> struct EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40; // System.Collections.Generic.EqualityComparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1; // System.Collections.Generic.IEnumerator`1<System.Boolean> struct IEnumerator_1_tD64DA1873BBF65E545905171348E0241A3B706C0; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB; // System.Collections.Generic.IEnumerator`1<System.Int32Enum> struct IEnumerator_1_tD8D5B0A7736D9FAFB606AC36B0CAD1353B84C3BD; // System.Collections.Generic.IEnumerator`1<System.Resources.ResourceLocator> struct IEnumerator_1_tF9579AAEDBCFB25ABA9316EA739986095F864E7B; // System.Collections.Generic.IEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef> struct IEnumerator_1_tF22A3103EDBA04355B09EC505C558BAACFCBDB63; // System.Collections.Generic.IEnumerator`1<System.ValueTuple`2<System.Object,System.Int32>> struct IEnumerator_1_tE05449316D4A38B1F9287F9AB2C8177EB5FC2CDD; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t2DC97C7D486BF9E077C2BC2E517E434F393AA76E; // System.Collections.Generic.IEqualityComparer`1<System.Int32Enum> struct IEqualityComparer_1_t7AA149E6B89D540CAA0C0E63998D86FFAF7B9FAC; // System.Collections.Generic.IEqualityComparer`1<System.Int64> struct IEqualityComparer_1_tBD7EB381E8B25356EF3AED6C41B65AECA6B91A19; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId> struct IEqualityComparer_1_tE182280A946C71578128167C8D6DF7B5A653A750; // System.Collections.Generic.IEqualityComparer`1<System.UInt64> struct IEqualityComparer_1_tAFCE72ADC2EDFFA5D34E7918994DD34A8583449F; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Vector4> struct IEqualityComparer_1_tBD4AA1B288B6F88AD508CDB0D769BEE7F6F5DE4C; // System.Collections.Generic.IEqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef> struct IEqualityComparer_1_tE6F70F614B23A77B47F997321679A386DE38547C; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord> struct IEqualityComparer_1_tA69FAEE2FF62FD94D03621391FBBAA1F820E8B92; // System.Collections.Generic.IEqualityComparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct IEqualityComparer_1_tCBD2100919513E386AF6D497D7E2849123F5A560; // System.Collections.Generic.IEqualityComparer`1<System.ValueTuple`3<System.Object,System.Object,System.Int32>> struct IEqualityComparer_1_tAE7386513E67688A767C9855C02B3CA5E304334D; // System.Collections.Generic.IEqualityComparer`1<System.UInt32> struct IEqualityComparer_1_t75C3361D3BE51E9742B0BBFA0F3998120E7CB6CE; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Int32> struct KeyCollection_t7F7A68813740102E744E884B5010225C1199A98C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object> struct KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int64,System.Object> struct KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean> struct KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct KeyCollection_t229D6B7D982A95EC9A171FC30D3DEF67158DB67E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Object> struct KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt64,System.Object> struct KeyCollection_t42CCC45AD9AFD4B1EC32305A1FB75096D1D60E4F; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Vector4,System.Int32Enum> struct KeyCollection_tB097E5D2381AD58C3F6FC36262BD11662FCB6143; // System.Collections.Generic.Dictionary`2/KeyCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41; // System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object> struct KeyCollection_t7A3E9764F18C1DE44C90DF9D411158787E20A943; // System.Collections.Generic.Dictionary`2/KeyCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038; // System.Collections.Generic.Dictionary`2/KeyCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct KeyCollection_t5BFC658CF99F208C70B47D76580F08000A4DE0AD; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct KeyCollection_t996BBD57C6669512EEE08A0745964B1460BBE6B3; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Int32> struct KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Int32> struct ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object> struct ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int64,System.Object> struct ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Int32> struct ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Object> struct ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt64,System.Object> struct ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Vector4,System.Int32Enum> struct ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD; // System.Collections.Generic.Dictionary`2/ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B; // System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object> struct ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF; // System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C; // System.Collections.Generic.Dictionary`2/ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Int32>[] struct EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.ValueTuple`2<System.Object,System.Int32>>[] struct EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; // System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>[] struct EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3; // System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>[] struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C; // System.Collections.Generic.Dictionary`2/Entry<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>[] struct EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>[] struct EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>[] struct EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3; // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Vector4,System.Int32Enum>[] struct EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445; // System.Int32Enum[] struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Resources.ResourceLocator[] struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.ValueTuple`2<System.Object,System.Int32>[] struct ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B; IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4; IL2CPP_EXTERN_C String_t* _stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70; IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5; IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8; IL2CPP_EXTERN_C String_t* _stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8; IL2CPP_EXTERN_C String_t* _stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m06150DBA33B44E4614641E48D83830FAE0ED0623_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1507D6368EB4FD584D842B25F3A57D1D472F392F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5D72D827B600E6F821692279686EB2FAE565AEA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EDA09C466AC9912A90E65CCFFE2E12A7D99D2F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m6516D9B3E6511E95D07372033B20FD1C1A1B01F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m794B6688B95BE4D32EDE5B1BA39E5541C419FF6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m82BB88792868D7BCA61CDDA0BA67146A05ABB392_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m8A721EADC21A16A3E8FED8C6CC66F8F93D9597E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m963232CA7779143D88A27E922A85E04B47C093F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA3565E47C631CC1C2AD1E20C02D898C88C8A6630_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBC09D0AB05365727692428459A6B955AA5998D3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBFEC68E2D916C07488D12E1D46194DB71ED8A0B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mD3C482CA0B8F8443AB6DC80CA2629F3E19844F1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mE1B68D7EF921AD23D29D38347578C0CC7A453EC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEB0DE2E5644CA24323C26A5702384EB60AF43F46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mFC1427B9B734FFCBBBEE6B9D459AA7676A54269B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0B1E1DFDC47DEE71158101DD88E6FE1D5317E6B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1F0FB9B3238C0D075BDE47841A425B62CA27B214_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2F1690C9356C4E596C1FE8912B0F08D8F6E832D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m43A1E8E9B6E448F5109E63D2F9452D073E099F20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5147E7E8DBDEA9A83A71421C6C9B848DFF03F282_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m518D2432C00A46A713CE314CE9A6962FA93BF1D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7958C3DD111888A05CAE6AD5FB08398B34DD8AD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA6309D0C81CD486A8497A32DB55A492E6AE43070_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA7A68EA12ADCDA48C1FB67B6ABCF6CD7E3979E8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB0A04A12F3B87CC1107F1ECA601F420A4E927C55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB9E4C9410C5BBB1583CFD203CF2FF642F325E6DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mBB962CF0135A721028C9F909F804C33CA67DAEA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mCF6134C4714809D458698BCA671D4325BA54A18A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mE30C8222666B4BEE98A06908C509C9217BC0EE7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mED0C2989B9AF15BFB22F60CD042FFB932B5B9D58_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFE6D21BB795E05F9573020825203CA93AF4E8D45_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m41FF5CBB96F5AFFFA081A0C54D46B0A60512FA20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m55771C73EFA9C35425887D7D2A3E6AED6235D10C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m5AF75E6801BB1019B7D7A2205CE14414E77A8CFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m634617A4485B074C21CAFE4B998040E22F2A89D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m736B9BF42A71B9C43409F4290A6CB2F300F84F86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7460FE265FDD1B034B1F2B80165B46E7CF2965BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7A0F11CAFAA0F0AEFCDD965BE0B6430C090E40FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8786D82858A3E9EF25FBBD4053475D602579A853_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8ED2FCE61DFF18D6BAF9B4677391089D56BB21CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA01EEDE4D327F745DFE2CB5D14BF79E7C485E8F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA097DC99699A10DE87F6C02906DC72274C4C7A21_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC6DA0F787937FCB5534597B4FDAE7C1DE4A717F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD61CCFDE7F79C894E7ED9E25C204B9060806A822_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDA08F769F65339E3BF301BED933C1C1FA5D3551B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDDBFCE312F2C4CD8CD0F6FC09C5C6240A265D076_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mFCA70F772252855236B9E0934AA054291F68C7AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m137B43D2AD4DE76087897823B0F9D17A83C08009_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m1697546E6AD9F1DE825429271515C7070AFB6EE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m390C87E15C95AD8D542CC3B45E597757DAB146FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m3AF221DF37E81292F527B81EC82D307C22A07A73_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m3BD3C59E66406529429990E10209F9312C675DF8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m688F752127866E631C65B729D5E529510763917C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m6A3DA76F8FD0C751B34A297E5A0DC9C3036FDF9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m96CE0F22612E44E727762663A3D5CC8E0778FF12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mA1E39B02C97948D1666D3B25DE47950BD82E7184_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mAF1C70E689EC3530A6B82DC6E3E16CEDEEA2A60E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mB4A5D7A0F971136F6BD14876F2ACCEDEA1BB123D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mB5B16EFFE8E91D04EBA70E5F13D23834BD9202B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mC0EDC977C96519A91ABC6132171044C199E9B373_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mC8EEA954A8BAFCF2EA9DD8B7122C8872E74FC3C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mF03D64F567C6D69B0360E99FC446AF1FDC0ECD6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mF09694AA5808B8E14E45FC173A4A2E5B1C1FF415_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_RuntimeMethod_var; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m06150DBA33B44E4614641E48D83830FAE0ED0623_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1507D6368EB4FD584D842B25F3A57D1D472F392F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5D72D827B600E6F821692279686EB2FAE565AEA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EDA09C466AC9912A90E65CCFFE2E12A7D99D2F2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m6516D9B3E6511E95D07372033B20FD1C1A1B01F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m794B6688B95BE4D32EDE5B1BA39E5541C419FF6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m82BB88792868D7BCA61CDDA0BA67146A05ABB392_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m8A721EADC21A16A3E8FED8C6CC66F8F93D9597E9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m963232CA7779143D88A27E922A85E04B47C093F7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA3565E47C631CC1C2AD1E20C02D898C88C8A6630_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBC09D0AB05365727692428459A6B955AA5998D3F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBFEC68E2D916C07488D12E1D46194DB71ED8A0B0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mD3C482CA0B8F8443AB6DC80CA2629F3E19844F1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mE1B68D7EF921AD23D29D38347578C0CC7A453EC8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEB0DE2E5644CA24323C26A5702384EB60AF43F46_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mFC1427B9B734FFCBBBEE6B9D459AA7676A54269B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0B1E1DFDC47DEE71158101DD88E6FE1D5317E6B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1F0FB9B3238C0D075BDE47841A425B62CA27B214_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2F1690C9356C4E596C1FE8912B0F08D8F6E832D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m43A1E8E9B6E448F5109E63D2F9452D073E099F20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5147E7E8DBDEA9A83A71421C6C9B848DFF03F282_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m518D2432C00A46A713CE314CE9A6962FA93BF1D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7958C3DD111888A05CAE6AD5FB08398B34DD8AD0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA6309D0C81CD486A8497A32DB55A492E6AE43070_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA7A68EA12ADCDA48C1FB67B6ABCF6CD7E3979E8F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB0A04A12F3B87CC1107F1ECA601F420A4E927C55_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB9E4C9410C5BBB1583CFD203CF2FF642F325E6DC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mBB962CF0135A721028C9F909F804C33CA67DAEA3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mCF6134C4714809D458698BCA671D4325BA54A18A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mE30C8222666B4BEE98A06908C509C9217BC0EE7B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mED0C2989B9AF15BFB22F60CD042FFB932B5B9D58_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFE6D21BB795E05F9573020825203CA93AF4E8D45_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m41FF5CBB96F5AFFFA081A0C54D46B0A60512FA20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m55771C73EFA9C35425887D7D2A3E6AED6235D10C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m5AF75E6801BB1019B7D7A2205CE14414E77A8CFC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m634617A4485B074C21CAFE4B998040E22F2A89D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m736B9BF42A71B9C43409F4290A6CB2F300F84F86_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7460FE265FDD1B034B1F2B80165B46E7CF2965BC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7A0F11CAFAA0F0AEFCDD965BE0B6430C090E40FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8786D82858A3E9EF25FBBD4053475D602579A853_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8ED2FCE61DFF18D6BAF9B4677391089D56BB21CC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA01EEDE4D327F745DFE2CB5D14BF79E7C485E8F0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA097DC99699A10DE87F6C02906DC72274C4C7A21_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC6DA0F787937FCB5534597B4FDAE7C1DE4A717F4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD61CCFDE7F79C894E7ED9E25C204B9060806A822_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDA08F769F65339E3BF301BED933C1C1FA5D3551B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDDBFCE312F2C4CD8CD0F6FC09C5C6240A265D076_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mFCA70F772252855236B9E0934AA054291F68C7AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m137B43D2AD4DE76087897823B0F9D17A83C08009_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m1697546E6AD9F1DE825429271515C7070AFB6EE4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m390C87E15C95AD8D542CC3B45E597757DAB146FF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m3AF221DF37E81292F527B81EC82D307C22A07A73_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m3BD3C59E66406529429990E10209F9312C675DF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m688F752127866E631C65B729D5E529510763917C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m6A3DA76F8FD0C751B34A297E5A0DC9C3036FDF9A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m96CE0F22612E44E727762663A3D5CC8E0778FF12_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mA1E39B02C97948D1666D3B25DE47950BD82E7184_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mAF1C70E689EC3530A6B82DC6E3E16CEDEEA2A60E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mB4A5D7A0F971136F6BD14876F2ACCEDEA1BB123D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mB5B16EFFE8E91D04EBA70E5F13D23834BD9202B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mC0EDC977C96519A91ABC6132171044C199E9B373_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mC8EEA954A8BAFCF2EA9DD8B7122C8872E74FC3C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mF03D64F567C6D69B0360E99FC446AF1FDC0ECD6A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mF09694AA5808B8E14E45FC173A4A2E5B1C1FF415_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_MetadataUsageId; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com; struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke; struct XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969; struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; struct EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE; struct EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09; struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; struct EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631; struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; struct EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3; struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C; struct EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698; struct EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67; struct EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3; struct EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445; struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object struct Il2CppArrayBounds; // System.Array // System.Collections.Generic.Comparer`1<System.Boolean> struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 : public RuntimeObject { public: public: }; struct Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 : public RuntimeObject { public: public: }; struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 : public RuntimeObject { public: public: }; struct Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Single> struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD : public RuntimeObject { public: public: }; struct Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 : public RuntimeObject { public: public: }; struct Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData> struct Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 : public RuntimeObject { public: public: }; struct Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<UnityEngine.Vector2Int> struct Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 : public RuntimeObject { public: public: }; struct Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<UnityEngine.Vector4> struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD : public RuntimeObject { public: public: }; struct Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B, ___dictionary_0)); } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32> struct ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C, ___dictionary_0)); } inline Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object> struct ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object> struct ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean> struct ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC, ___dictionary_0)); } inline Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32> struct ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object> struct ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object> struct ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759, ___dictionary_0)); } inline Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C, ___dictionary_0)); } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F, ___dictionary_0)); } inline Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF, ___dictionary_0)); } inline Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C, ___dictionary_0)); } inline Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum> struct ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD, ___dictionary_0)); } inline Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___entries_1)); } inline EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___keys_7)); } inline KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t90D2E361BA1F4822CDF5DDC1E86B7490F6A98B41 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ___values_8)); } inline ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * get_values_8() const { return ___values_8; } inline ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Int32> struct Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t7F7A68813740102E744E884B5010225C1199A98C * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___entries_1)); } inline EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___keys_7)); } inline KeyCollection_t7F7A68813740102E744E884B5010225C1199A98C * get_keys_7() const { return ___keys_7; } inline KeyCollection_t7F7A68813740102E744E884B5010225C1199A98C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t7F7A68813740102E744E884B5010225C1199A98C * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ___values_8)); } inline ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * get_values_8() const { return ___values_8; } inline ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___entries_1)); } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___keys_7)); } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___values_8)); } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * get_values_8() const { return ___values_8; } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___entries_1)); } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___keys_7)); } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___values_8)); } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * get_values_8() const { return ___values_8; } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___entries_1)); } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___keys_7)); } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___values_8)); } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * get_values_8() const { return ___values_8; } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___entries_1)); } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___keys_7)); } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___values_8)); } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * get_values_8() const { return ___values_8; } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___entries_1)); } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___keys_7)); } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___values_8)); } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * get_values_8() const { return ___values_8; } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___entries_1)); } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___keys_7)); } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___values_8)); } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * get_values_8() const { return ___values_8; } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t996BBD57C6669512EEE08A0745964B1460BBE6B3 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___entries_1)); } inline EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___keys_7)); } inline KeyCollection_t996BBD57C6669512EEE08A0745964B1460BBE6B3 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t996BBD57C6669512EEE08A0745964B1460BBE6B3 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t996BBD57C6669512EEE08A0745964B1460BBE6B3 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ___values_8)); } inline ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * get_values_8() const { return ___values_8; } inline ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___entries_1)); } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___keys_7)); } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___values_8)); } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * get_values_8() const { return ___values_8; } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___entries_1)); } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___keys_7)); } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___values_8)); } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * get_values_8() const { return ___values_8; } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt64,System.Object> struct Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t42CCC45AD9AFD4B1EC32305A1FB75096D1D60E4F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___entries_1)); } inline EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___keys_7)); } inline KeyCollection_t42CCC45AD9AFD4B1EC32305A1FB75096D1D60E4F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t42CCC45AD9AFD4B1EC32305A1FB75096D1D60E4F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t42CCC45AD9AFD4B1EC32305A1FB75096D1D60E4F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ___values_8)); } inline ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * get_values_8() const { return ___values_8; } inline ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___entries_1)); } inline EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___keys_7)); } inline KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0CC1A052C3632F2BD166B3F1576E8B784018E038 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ___values_8)); } inline ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * get_values_8() const { return ___values_8; } inline ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t5BFC658CF99F208C70B47D76580F08000A4DE0AD * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___entries_1)); } inline EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___keys_7)); } inline KeyCollection_t5BFC658CF99F208C70B47D76580F08000A4DE0AD * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5BFC658CF99F208C70B47D76580F08000A4DE0AD ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5BFC658CF99F208C70B47D76580F08000A4DE0AD * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ___values_8)); } inline ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * get_values_8() const { return ___values_8; } inline ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t7A3E9764F18C1DE44C90DF9D411158787E20A943 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___entries_1)); } inline EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___keys_7)); } inline KeyCollection_t7A3E9764F18C1DE44C90DF9D411158787E20A943 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t7A3E9764F18C1DE44C90DF9D411158787E20A943 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t7A3E9764F18C1DE44C90DF9D411158787E20A943 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ___values_8)); } inline ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * get_values_8() const { return ___values_8; } inline ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t229D6B7D982A95EC9A171FC30D3DEF67158DB67E * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___entries_1)); } inline EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___keys_7)); } inline KeyCollection_t229D6B7D982A95EC9A171FC30D3DEF67158DB67E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t229D6B7D982A95EC9A171FC30D3DEF67158DB67E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t229D6B7D982A95EC9A171FC30D3DEF67158DB67E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ___values_8)); } inline ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * get_values_8() const { return ___values_8; } inline ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<UnityEngine.Vector4,System.Int32Enum> struct Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB097E5D2381AD58C3F6FC36262BD11662FCB6143 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___entries_1)); } inline EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___keys_7)); } inline KeyCollection_tB097E5D2381AD58C3F6FC36262BD11662FCB6143 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB097E5D2381AD58C3F6FC36262BD11662FCB6143 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB097E5D2381AD58C3F6FC36262BD11662FCB6143 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ___values_8)); } inline ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * get_values_8() const { return ___values_8; } inline ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Single> struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F : public RuntimeObject { public: public: }; struct EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.ValueTuple`2<System.Object,System.Int32>> struct EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData> struct EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2Int> struct EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B : public RuntimeObject { public: public: }; struct EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4> struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E : public RuntimeObject { public: public: }; struct EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___page_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___page_0)); } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_page_0() const { return ___page_0; } inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_page_0() { return &___page_0; } inline void set_page_0(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value) { ___page_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___page_0), (void*)value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke { XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke* ___page_0; int32_t ___idx_1; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com { XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com* ___page_0; int32_t ___idx_1; }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object> struct Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key int64_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___key_2)); } inline int64_t get_key_2() const { return ___key_2; } inline int64_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int64_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean> struct Entry_tE032650534234E8BCC41BF224A68F799EB231216 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32> struct Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object> struct Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32> struct Entry_t208639F3F4F37C945E22645BD356EDD28167B721 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object> struct Entry_t03A87BF6367938D67497088665C733ED14E14AC9 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object> struct Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key uint64_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___key_2)); } inline uint64_t get_key_2() const { return ___key_2; } inline uint64_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint64_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32Enum,System.Int32> struct Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558, ___dictionary_0)); } inline Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32Enum,System.Object> struct Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int64,System.Object> struct Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean> struct Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32> struct Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object> struct Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.UInt32,System.Int32> struct Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.UInt32,System.Object> struct Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.UInt64,System.Object> struct Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934, ___dictionary_0)); } inline Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___dictionary_0)); } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3, ___dictionary_0)); } inline Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1, ___dictionary_0)); } inline Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.ValueTuple`2<System.Boolean,System.Object> struct ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE { public: // T1 System.ValueTuple`2::Item1 bool ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE, ___Item1_0)); } inline bool get_Item1_0() const { return ___Item1_0; } inline bool* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(bool value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`2<System.Int32,System.Boolean> struct ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 bool ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Int32,System.Int32> struct ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 int32_t ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E, ___Item2_1)); } inline int32_t get_Item2_1() const { return ___Item2_1; } inline int32_t* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(int32_t value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Int32,System.Object> struct ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`2<System.Int32,System.Single> struct ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 float ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA, ___Item2_1)); } inline float get_Item2_1() const { return ___Item2_1; } inline float* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(float value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.Boolean> struct ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 bool ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.Int32> struct ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 int32_t ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00, ___Item2_1)); } inline int32_t get_Item2_1() const { return ___Item2_1; } inline int32_t* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(int32_t value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.Object> struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`3<System.Object,System.Object,System.Int32> struct ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 { public: // T1 System.ValueTuple`3::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`3::Item2 RuntimeObject * ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8, ___Item3_2)); } inline int32_t get_Item3_2() const { return ___Item3_2; } inline int32_t* get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(int32_t value) { ___Item3_2 = value; } }; // System.ValueTuple`3<System.Object,System.Object,System.Object> struct ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D { public: // T1 System.ValueTuple`3::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`3::Item2 RuntimeObject * ___Item2_1; // T3 System.ValueTuple`3::Item3 RuntimeObject * ___Item3_2; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item3_2)); } inline RuntimeObject * get_Item3_2() const { return ___Item3_2; } inline RuntimeObject ** get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(RuntimeObject * value) { ___Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item3_2), (void*)value); } }; // System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object> struct ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC { public: // T1 System.ValueTuple`4::Item1 bool ___Item1_0; // T2 System.ValueTuple`4::Item2 bool ___Item2_1; // T3 System.ValueTuple`4::Item3 RuntimeObject * ___Item3_2; // T4 System.ValueTuple`4::Item4 RuntimeObject * ___Item4_3; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item1_0)); } inline bool get_Item1_0() const { return ___Item1_0; } inline bool* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(bool value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item3_2)); } inline RuntimeObject * get_Item3_2() const { return ___Item3_2; } inline RuntimeObject ** get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(RuntimeObject * value) { ___Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item3_2), (void*)value); } inline static int32_t get_offset_of_Item4_3() { return static_cast<int32_t>(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item4_3)); } inline RuntimeObject * get_Item4_3() const { return ___Item4_3; } inline RuntimeObject ** get_address_of_Item4_3() { return &___Item4_3; } inline void set_Item4_3(RuntimeObject * value) { ___Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item4_3), (void*)value); } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord struct TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 { public: // System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileX int32_t ___tileX_0; // System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileZ int32_t ___tileZ_1; public: inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileX_0)); } inline int32_t get_tileX_0() const { return ___tileX_0; } inline int32_t* get_address_of_tileX_0() { return &___tileX_0; } inline void set_tileX_0(int32_t value) { ___tileX_0 = value; } inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileZ_1)); } inline int32_t get_tileZ_1() const { return ___tileZ_1; } inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; } inline void set_tileZ_1(int32_t value) { ___tileZ_1 = value; } }; // UnityEngine.Matrix4x4 struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 { public: // System.Single UnityEngine.Matrix4x4::m00 float ___m00_0; // System.Single UnityEngine.Matrix4x4::m10 float ___m10_1; // System.Single UnityEngine.Matrix4x4::m20 float ___m20_2; // System.Single UnityEngine.Matrix4x4::m30 float ___m30_3; // System.Single UnityEngine.Matrix4x4::m01 float ___m01_4; // System.Single UnityEngine.Matrix4x4::m11 float ___m11_5; // System.Single UnityEngine.Matrix4x4::m21 float ___m21_6; // System.Single UnityEngine.Matrix4x4::m31 float ___m31_7; // System.Single UnityEngine.Matrix4x4::m02 float ___m02_8; // System.Single UnityEngine.Matrix4x4::m12 float ___m12_9; // System.Single UnityEngine.Matrix4x4::m22 float ___m22_10; // System.Single UnityEngine.Matrix4x4::m32 float ___m32_11; // System.Single UnityEngine.Matrix4x4::m03 float ___m03_12; // System.Single UnityEngine.Matrix4x4::m13 float ___m13_13; // System.Single UnityEngine.Matrix4x4::m23 float ___m23_14; // System.Single UnityEngine.Matrix4x4::m33 float ___m33_15; public: inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m00_0)); } inline float get_m00_0() const { return ___m00_0; } inline float* get_address_of_m00_0() { return &___m00_0; } inline void set_m00_0(float value) { ___m00_0 = value; } inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m10_1)); } inline float get_m10_1() const { return ___m10_1; } inline float* get_address_of_m10_1() { return &___m10_1; } inline void set_m10_1(float value) { ___m10_1 = value; } inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m20_2)); } inline float get_m20_2() const { return ___m20_2; } inline float* get_address_of_m20_2() { return &___m20_2; } inline void set_m20_2(float value) { ___m20_2 = value; } inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m30_3)); } inline float get_m30_3() const { return ___m30_3; } inline float* get_address_of_m30_3() { return &___m30_3; } inline void set_m30_3(float value) { ___m30_3 = value; } inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m01_4)); } inline float get_m01_4() const { return ___m01_4; } inline float* get_address_of_m01_4() { return &___m01_4; } inline void set_m01_4(float value) { ___m01_4 = value; } inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m11_5)); } inline float get_m11_5() const { return ___m11_5; } inline float* get_address_of_m11_5() { return &___m11_5; } inline void set_m11_5(float value) { ___m11_5 = value; } inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m21_6)); } inline float get_m21_6() const { return ___m21_6; } inline float* get_address_of_m21_6() { return &___m21_6; } inline void set_m21_6(float value) { ___m21_6 = value; } inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m31_7)); } inline float get_m31_7() const { return ___m31_7; } inline float* get_address_of_m31_7() { return &___m31_7; } inline void set_m31_7(float value) { ___m31_7 = value; } inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m02_8)); } inline float get_m02_8() const { return ___m02_8; } inline float* get_address_of_m02_8() { return &___m02_8; } inline void set_m02_8(float value) { ___m02_8 = value; } inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m12_9)); } inline float get_m12_9() const { return ___m12_9; } inline float* get_address_of_m12_9() { return &___m12_9; } inline void set_m12_9(float value) { ___m12_9 = value; } inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m22_10)); } inline float get_m22_10() const { return ___m22_10; } inline float* get_address_of_m22_10() { return &___m22_10; } inline void set_m22_10(float value) { ___m22_10 = value; } inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m32_11)); } inline float get_m32_11() const { return ___m32_11; } inline float* get_address_of_m32_11() { return &___m32_11; } inline void set_m32_11(float value) { ___m32_11 = value; } inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m03_12)); } inline float get_m03_12() const { return ___m03_12; } inline float* get_address_of_m03_12() { return &___m03_12; } inline void set_m03_12(float value) { ___m03_12 = value; } inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m13_13)); } inline float get_m13_13() const { return ___m13_13; } inline float* get_address_of_m13_13() { return &___m13_13; } inline void set_m13_13(float value) { ___m13_13 = value; } inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m23_14)); } inline float get_m23_14() const { return ___m23_14; } inline float* get_address_of_m23_14() { return &___m23_14; } inline void set_m23_14(float value) { ___m23_14 = value; } inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m33_15)); } inline float get_m33_15() const { return ___m33_15; } inline float* get_address_of_m33_15() { return &___m33_15; } inline void set_m33_15(float value) { ___m33_15 = value; } }; struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields { public: // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___identityMatrix_17; public: inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___zeroMatrix_16)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_zeroMatrix_16() const { return ___zeroMatrix_16; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; } inline void set_zeroMatrix_16(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___zeroMatrix_16 = value; } inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___identityMatrix_17)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_identityMatrix_17() const { return ___identityMatrix_17; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; } inline void set_identityMatrix_17(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___identityMatrix_17 = value; } }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId struct ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 { public: // System.String UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId::m_Id String_t* ___m_Id_2; public: inline static int32_t get_offset_of_m_Id_2() { return static_cast<int32_t>(offsetof(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030, ___m_Id_2)); } inline String_t* get_m_Id_2() const { return ___m_Id_2; } inline String_t** get_address_of_m_Id_2() { return &___m_Id_2; } inline void set_m_Id_2(String_t* value) { ___m_Id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Id_2), (void*)value); } }; struct ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030_StaticFields { public: // UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId::With3Levels ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 ___With3Levels_0; // UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId::With4Levels ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 ___With4Levels_1; public: inline static int32_t get_offset_of_With3Levels_0() { return static_cast<int32_t>(offsetof(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030_StaticFields, ___With3Levels_0)); } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 get_With3Levels_0() const { return ___With3Levels_0; } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 * get_address_of_With3Levels_0() { return &___With3Levels_0; } inline void set_With3Levels_0(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 value) { ___With3Levels_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___With3Levels_0))->___m_Id_2), (void*)NULL); } inline static int32_t get_offset_of_With4Levels_1() { return static_cast<int32_t>(offsetof(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030_StaticFields, ___With4Levels_1)); } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 get_With4Levels_1() const { return ___With4Levels_1; } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 * get_address_of_With4Levels_1() { return &___With4Levels_1; } inline void set_With4Levels_1(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 value) { ___With4Levels_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___With4Levels_1))->___m_Id_2), (void*)NULL); } }; // Native definition for P/Invoke marshalling of UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId struct ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030_marshaled_pinvoke { char* ___m_Id_2; }; // Native definition for COM marshalling of UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId struct ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030_marshaled_com { Il2CppChar* ___m_Id_2; }; // UnityEngine.Vector2Int struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 { public: // System.Int32 UnityEngine.Vector2Int::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.Vector2Int::m_Y int32_t ___m_Y_1; public: inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_X_0)); } inline int32_t get_m_X_0() const { return ___m_X_0; } inline int32_t* get_address_of_m_X_0() { return &___m_X_0; } inline void set_m_X_0(int32_t value) { ___m_X_0 = value; } inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_Y_1)); } inline int32_t get_m_Y_1() const { return ___m_Y_1; } inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; } inline void set_m_Y_1(int32_t value) { ___m_Y_1 = value; } }; struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields { public: // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Zero_2; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_One_3; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Up_4; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Down_5; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Left_6; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Right_7; public: inline static int32_t get_offset_of_s_Zero_2() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Zero_2)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Zero_2() const { return ___s_Zero_2; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Zero_2() { return &___s_Zero_2; } inline void set_s_Zero_2(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_Zero_2 = value; } inline static int32_t get_offset_of_s_One_3() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_One_3)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_One_3() const { return ___s_One_3; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_One_3() { return &___s_One_3; } inline void set_s_One_3(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_One_3 = value; } inline static int32_t get_offset_of_s_Up_4() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Up_4)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Up_4() const { return ___s_Up_4; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Up_4() { return &___s_Up_4; } inline void set_s_Up_4(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_Up_4 = value; } inline static int32_t get_offset_of_s_Down_5() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Down_5)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Down_5() const { return ___s_Down_5; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Down_5() { return &___s_Down_5; } inline void set_s_Down_5(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_Down_5 = value; } inline static int32_t get_offset_of_s_Left_6() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Left_6)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Left_6() const { return ___s_Left_6; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Left_6() { return &___s_Left_6; } inline void set_s_Left_6(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_Left_6 = value; } inline static int32_t get_offset_of_s_Right_7() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Right_7)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Right_7() const { return ___s_Right_7; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Right_7() { return &___s_Right_7; } inline void set_s_Right_7(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___s_Right_7 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___key_2)); } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_key_2() const { return ___key_2; } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___page_0), (void*)NULL); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___value_3)); } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_value_3() const { return ___value_3; } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___page_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___value_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_3() const { return ___value_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8, ___value_3)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_value_3() const { return ___value_3; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Item1_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object> struct Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___key_2)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_key_2() const { return ___key_2; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___Item1_0), (void*)NULL); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB294B9C2737CEA8C4F8673B948596F849040B414, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2, ___key_2)); } inline ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 get_key_2() const { return ___key_2; } inline ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___Item2_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2, ___value_3)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_value_3() const { return ___value_3; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Item1_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object> struct Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99, ___key_2)); } inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 get_key_2() const { return ___key_2; } inline TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901 value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object> struct Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319, ___key_2)); } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 get_key_2() const { return ___key_2; } inline ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(ScalableSettingSchemaId_t124B9656E7789B9FC2E2267503E89902802EC030 value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___m_Id_2), (void*)NULL); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485, ___dictionary_0)); } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485, ___currentValue_3)); } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_currentValue_3() const { return ___currentValue_3; } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___page_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___currentValue_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_currentValue_3() const { return ___currentValue_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156, ___dictionary_0)); } inline Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156, ___currentValue_3)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_currentValue_3() const { return ___currentValue_3; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___Item1_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>> struct Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17, ___dictionary_0)); } inline Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17, ___currentValue_3)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_currentValue_3() const { return ___currentValue_3; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___Item1_0), (void*)NULL); } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int> struct ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C, ___Item2_1)); } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_Item2_1() const { return ___Item2_1; } inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value) { ___Item2_1 = value; } }; // System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793, ___Item2_1)); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 get_Item2_1() const { return ___Item2_1; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Item2_1))->___Item1_0), (void*)NULL); } }; // System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4> struct ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC { public: // T1 System.ValueTuple`2::Item1 Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___Item1_0; // T2 System.ValueTuple`2::Item2 Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC, ___Item1_0)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_Item1_0() const { return ___Item1_0; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC, ___Item2_1)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_Item2_1() const { return ___Item2_1; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___Item2_1 = value; } }; // System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4> struct ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 { public: // T1 System.ValueTuple`3::Item1 Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___Item1_0; // T2 System.ValueTuple`3::Item2 Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___Item2_1; // T3 System.ValueTuple`3::Item3 Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___Item3_2; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5, ___Item1_0)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_Item1_0() const { return ___Item1_0; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5, ___Item2_1)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_Item2_1() const { return ___Item2_1; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___Item2_1 = value; } inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5, ___Item3_2)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_Item3_2() const { return ___Item3_2; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___Item3_2 = value; } }; // UnityEngine.Rendering.HighDefinition.HDProbe_RenderData struct RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 { public: // UnityEngine.Matrix4x4 UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_WorldToCameraRHS Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___m_WorldToCameraRHS_0; // UnityEngine.Matrix4x4 UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_ProjectionMatrix Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___m_ProjectionMatrix_1; // UnityEngine.Vector3 UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_CapturePosition Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_CapturePosition_2; // UnityEngine.Quaternion UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_CaptureRotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_CaptureRotation_3; // System.Single UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_FieldOfView float ___m_FieldOfView_4; // System.Single UnityEngine.Rendering.HighDefinition.HDProbe_RenderData::m_Aspect float ___m_Aspect_5; public: inline static int32_t get_offset_of_m_WorldToCameraRHS_0() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_WorldToCameraRHS_0)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_m_WorldToCameraRHS_0() const { return ___m_WorldToCameraRHS_0; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_m_WorldToCameraRHS_0() { return &___m_WorldToCameraRHS_0; } inline void set_m_WorldToCameraRHS_0(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___m_WorldToCameraRHS_0 = value; } inline static int32_t get_offset_of_m_ProjectionMatrix_1() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_ProjectionMatrix_1)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_m_ProjectionMatrix_1() const { return ___m_ProjectionMatrix_1; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_m_ProjectionMatrix_1() { return &___m_ProjectionMatrix_1; } inline void set_m_ProjectionMatrix_1(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___m_ProjectionMatrix_1 = value; } inline static int32_t get_offset_of_m_CapturePosition_2() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_CapturePosition_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_CapturePosition_2() const { return ___m_CapturePosition_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_CapturePosition_2() { return &___m_CapturePosition_2; } inline void set_m_CapturePosition_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_CapturePosition_2 = value; } inline static int32_t get_offset_of_m_CaptureRotation_3() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_CaptureRotation_3)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_CaptureRotation_3() const { return ___m_CaptureRotation_3; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_CaptureRotation_3() { return &___m_CaptureRotation_3; } inline void set_m_CaptureRotation_3(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___m_CaptureRotation_3 = value; } inline static int32_t get_offset_of_m_FieldOfView_4() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_FieldOfView_4)); } inline float get_m_FieldOfView_4() const { return ___m_FieldOfView_4; } inline float* get_address_of_m_FieldOfView_4() { return &___m_FieldOfView_4; } inline void set_m_FieldOfView_4(float value) { ___m_FieldOfView_4 = value; } inline static int32_t get_offset_of_m_Aspect_5() { return static_cast<int32_t>(offsetof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7, ___m_Aspect_5)); } inline float get_m_Aspect_5() const { return ___m_Aspect_5; } inline float* get_address_of_m_Aspect_5() { return &___m_Aspect_5; } inline void set_m_Aspect_5(float value) { ___m_Aspect_5 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Int32> struct Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object> struct Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Vector4,System.Int32Enum> struct Entry_t4F9556B5007499E76FB224BE635684018EE204BD { public: // System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2_Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2_Entry::key Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___key_2; // TValue System.Collections.Generic.Dictionary`2_Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4F9556B5007499E76FB224BE635684018EE204BD, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t4F9556B5007499E76FB224BE635684018EE204BD, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t4F9556B5007499E76FB224BE635684018EE204BD, ___key_2)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_key_2() const { return ___key_2; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4F9556B5007499E76FB224BE635684018EE204BD, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<UnityEngine.Vector4,System.Int32Enum> struct Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3, ___dictionary_0)); } inline Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object> struct ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D { public: // T1 System.ValueTuple`2::Item1 RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D, ___Item1_0)); } inline RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 get_Item1_0() const { return ___Item1_0; } inline RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Int32>[] struct EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 m_Items[1]; public: inline Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB4985E16B52034773FC0A801896AAEFB2E2CA5E4 value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B m_Items[1]; public: inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A m_Items[1]; public: inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tE032650534234E8BCC41BF224A68F799EB231216 m_Items[1]; public: inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tE032650534234E8BCC41BF224A68F799EB231216 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE032650534234E8BCC41BF224A68F799EB231216 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A m_Items[1]; public: inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE m_Items[1]; public: inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Resources.ResourceLocator[] struct ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093 : public RuntimeArray { public: ALIGN_FIELD (8) ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 m_Items[1]; public: inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 m_Items[1]; public: inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>[] struct EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 m_Items[1]; public: inline Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___m_Id_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC97C775BD531D0F5C81AAF6E1A6BAE0ADA019319 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___m_Id_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t208639F3F4F37C945E22645BD356EDD28167B721 m_Items[1]; public: inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t208639F3F4F37C945E22645BD356EDD28167B721 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t208639F3F4F37C945E22645BD356EDD28167B721 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03A87BF6367938D67497088665C733ED14E14AC9 m_Items[1]; public: inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t03A87BF6367938D67497088665C733ED14E14AC9 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03A87BF6367938D67497088665C733ED14E14AC9 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>[] struct EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 m_Items[1]; public: inline Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Int32Enum[] struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Vector4,System.Int32Enum>[] struct EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t4F9556B5007499E76FB224BE635684018EE204BD m_Items[1]; public: inline Entry_t4F9556B5007499E76FB224BE635684018EE204BD GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t4F9556B5007499E76FB224BE635684018EE204BD * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t4F9556B5007499E76FB224BE635684018EE204BD value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t4F9556B5007499E76FB224BE635684018EE204BD GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t4F9556B5007499E76FB224BE635684018EE204BD * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t4F9556B5007499E76FB224BE635684018EE204BD value) { m_Items[index] = value; } }; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969 : public RuntimeArray { public: ALIGN_FIELD (8) XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 m_Items[1]; public: inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___page_0), (void*)NULL); } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___page_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>[] struct EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A m_Items[1]; public: inline Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___page_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___page_0), (void*)NULL); #endif } inline Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___page_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___page_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>[] struct EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 m_Items[1]; public: inline Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tA2F747A511B65CEC54DAB28F6273EE844D053E99 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`2<System.Object,System.Int32>,System.Object>[] struct EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 m_Items[1]; public: inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB294B9C2737CEA8C4F8673B948596F849040B414 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.ValueTuple`2<System.Object,System.Int32>[] struct ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D : public RuntimeArray { public: ALIGN_FIELD (8) ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 m_Items[1]; public: inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL); } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2_Entry<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>[] struct EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 m_Items[1]; public: inline Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item2_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Item1_0), (void*)NULL); #endif } inline Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tEB56B3978E145C64C54C502FC6DC9509685800E2 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___Item2_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Item1_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2_Entry<System.Object,System.ValueTuple`2<System.Object,System.Int32>>[] struct EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 m_Items[1]; public: inline Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Item1_0), (void*)NULL); #endif } inline Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC36F1707076D261D97C2633C60FAE77D24ACA4A8 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Item1_0), (void*)NULL); #endif } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE_gshared (Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 * __this, Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2_gshared (Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 * __this, Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41_gshared (Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 * __this, Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Vector4,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE_gshared (Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 * __this, Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC_gshared (Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 * __this, Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451_gshared (Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 * __this, Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942_gshared (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A_gshared (Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 * __this, Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255_gshared (Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 * __this, Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * ___dictionary0, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Boolean,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, bool ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Boolean,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Single>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, int32_t ___item10, float ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Single>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, int32_t ___item10, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Int32,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___item10, int32_t ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___item10, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`3<System.Object,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item32, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`3<System.Object,System.Object,System.Int32>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`3<System.Object,System.Object,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, bool ___item10, bool ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method); // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.ValueTuple`4<T1,T2,T3,T4>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::CompareTo(System.ValueTuple`4<T1,T2,T3,T4>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.String System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE (Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 * __this, Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 *, Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *, const RuntimeMethod*))Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE_gshared)(__this, ___dictionary0, method); } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2 (Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 * __this, Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 *, Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *, const RuntimeMethod*))Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41 (Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 * __this, Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 *, Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *, const RuntimeMethod*))Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Vector4,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE (Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 * __this, Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 *, Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *, const RuntimeMethod*))Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC (Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 * __this, Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 *, Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, const RuntimeMethod*))Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451 (Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 * __this, Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 *, Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *, const RuntimeMethod*))Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942 (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE *, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A (Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 * __this, Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 *, Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *, const RuntimeMethod*))Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255 (Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 * __this, Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 *, Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *, const RuntimeMethod*))Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255_gshared)(__this, ___dictionary0, method); } // System.Void System.ValueTuple`2<System.Boolean,System.Object>::.ctor(T1,T2) inline void ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, bool ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, bool, RuntimeObject *, const RuntimeMethod*))ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE , const RuntimeMethod*))ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.Object) inline bool ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_gshared)(__this, ___other0, ___comparer1, method); } // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE , const RuntimeMethod*))ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD_gshared)(__this, ___comparer0, method); } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Boolean,System.Object>::ToString() inline String_t* ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73 (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *, const RuntimeMethod*))ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Int32,System.Boolean>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, int32_t, bool, const RuntimeMethod*))ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE , const RuntimeMethod*))ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.Object) inline bool ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE , const RuntimeMethod*))ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.Int32::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72_gshared)(__this, ___comparer0, method); } // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Boolean>::ToString() inline String_t* ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5 (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *, const RuntimeMethod*))ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, int32_t, int32_t, const RuntimeMethod*))ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E , const RuntimeMethod*))ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) inline bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E , const RuntimeMethod*))ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() inline String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57 (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *, const RuntimeMethod*))ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Int32,System.Single>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, int32_t ___item10, float ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, int32_t, float, const RuntimeMethod*))ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA , const RuntimeMethod*))ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.Object) inline bool ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA , const RuntimeMethod*))ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.Single::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9 (float* __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3_gshared)(__this, ___comparer0, method); } // System.String System.Single::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010 (float* __this, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,System.Single>::ToString() inline String_t* ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544 (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *, const RuntimeMethod*))ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::.ctor(T1,T2) inline void ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, int32_t ___item10, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, int32_t, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 , const RuntimeMethod*))ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C , const RuntimeMethod*))ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.Object) inline bool ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C , const RuntimeMethod*))ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 UnityEngine.Vector2Int::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71 (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626 (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B_gshared)(__this, ___comparer0, method); } // System.String UnityEngine.Vector2Int::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector2Int_ToString_m7928A3CC56D9CAAB370F6B3EE797CED4BE9B9B20 (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method); // System.String System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::ToString() inline String_t* ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *, const RuntimeMethod*))ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Int32,System.Object>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, int32_t, RuntimeObject *, const RuntimeMethod*))ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 , const RuntimeMethod*))ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.Object) inline bool ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 , const RuntimeMethod*))ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Object>::ToString() inline String_t* ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310 (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *, const RuntimeMethod*))ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.Int32>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___item10, int32_t ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject *, int32_t, const RuntimeMethod*))ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , const RuntimeMethod*))ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.Object) inline bool ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , const RuntimeMethod*))ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817 (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Int32>::ToString() inline String_t* ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *, const RuntimeMethod*))ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*))ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) inline bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 , const RuntimeMethod*))ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465 (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() inline String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *, const RuntimeMethod*))ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(T1,T2) inline void ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___item10, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject *, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , const RuntimeMethod*))ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 , const RuntimeMethod*))ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.Object) inline bool ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 , const RuntimeMethod*))ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::ToString() inline String_t* ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6 (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *, const RuntimeMethod*))ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_gshared)(__this, method); } // System.Void System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*))ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC , const RuntimeMethod*))ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) inline bool ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC , const RuntimeMethod*))ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 UnityEngine.Vector4::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, const RuntimeMethod* method); // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429_gshared)(__this, ___comparer0, method); } // System.String UnityEngine.Vector4::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, const RuntimeMethod* method); // System.String System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::ToString() inline String_t* ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3 (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *, const RuntimeMethod*))ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_gshared)(__this, method); } // System.Void System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::.ctor(T1,T2) inline void ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 , RuntimeObject *, const RuntimeMethod*))ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D , const RuntimeMethod*))ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::Equals(System.Object) inline bool ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D , const RuntimeMethod*))ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, const RuntimeMethod*))ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData,System.Object>::ToString() inline String_t* ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8 (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *, const RuntimeMethod*))ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_gshared)(__this, method); } // System.Void System.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) inline void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, bool, const RuntimeMethod*))ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared)(__this, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) inline bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 , const RuntimeMethod*))ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) inline bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) inline int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 , const RuntimeMethod*))ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() inline int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, const RuntimeMethod*))ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared)(__this, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() inline String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561 (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *, const RuntimeMethod*))ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared)(__this, method); } // System.Void System.ValueTuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) inline void ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method) { (( void (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78_gshared)(__this, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.ValueTuple`3<T1,T2,T3>) inline bool ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D , const RuntimeMethod*))ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) inline bool ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::CompareTo(System.ValueTuple`3<T1,T2,T3>) inline int32_t ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D , const RuntimeMethod*))ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple::CombineHashCodes(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE (int32_t ___h10, int32_t ___h21, int32_t ___h32, const RuntimeMethod* method); // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCode() inline int32_t ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, const RuntimeMethod*))ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38_gshared)(__this, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4 (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`3<System.Object,System.Object,System.Object>::ToString() inline String_t* ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *, const RuntimeMethod*))ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_gshared)(__this, method); } // System.Void System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2,T3) inline void ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item32, const RuntimeMethod* method) { (( void (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , const RuntimeMethod*))ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670_gshared)(__this, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`3<T1,T2,T3>) inline bool ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 , const RuntimeMethod*))ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) inline bool ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`3<T1,T2,T3>) inline int32_t ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 , const RuntimeMethod*))ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() inline int32_t ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, const RuntimeMethod*))ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E_gshared)(__this, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731 (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::ToString() inline String_t* ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *, const RuntimeMethod*))ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_gshared)(__this, method); } // System.Void System.ValueTuple`3<System.Object,System.Object,System.Int32>::.ctor(T1,T2,T3) inline void ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, const RuntimeMethod* method) { (( void (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*))ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A_gshared)(__this, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.ValueTuple`3<T1,T2,T3>) inline bool ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 , const RuntimeMethod*))ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.Object) inline bool ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::CompareTo(System.ValueTuple`3<T1,T2,T3>) inline int32_t ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 , const RuntimeMethod*))ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject *, const RuntimeMethod*))ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCode() inline int32_t ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, const RuntimeMethod*))ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973_gshared)(__this, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, RuntimeObject*, const RuntimeMethod*))ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`3<System.Object,System.Object,System.Int32>::ToString() inline String_t* ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3 (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *, const RuntimeMethod*))ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_gshared)(__this, method); } // System.Void System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::.ctor(T1,T2,T3,T4) inline void ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, bool ___item10, bool ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method) { (( void (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, bool, bool, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6_gshared)(__this, ___item10, ___item21, ___item32, ___item43, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.ValueTuple`4<T1,T2,T3,T4>) inline bool ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC , const RuntimeMethod*))ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F_gshared)(__this, ___other0, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.Object) inline bool ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject *, const RuntimeMethod*))ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A_gshared)(__this, ___obj0, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) inline bool ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( bool (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::CompareTo(System.ValueTuple`4<T1,T2,T3,T4>) inline int32_t ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC , const RuntimeMethod*))ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) inline int32_t ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject *, const RuntimeMethod*))ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_gshared)(__this, ___other0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) inline int32_t ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_gshared)(__this, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple::CombineHashCodes(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_CombineHashCodes_mEA32AD08CEAD750BAC3650A78417195804185047 (int32_t ___h10, int32_t ___h21, int32_t ___h32, int32_t ___h43, const RuntimeMethod* method); // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCode() inline int32_t ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, const RuntimeMethod*))ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664_gshared)(__this, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) inline int32_t ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject*, const RuntimeMethod*))ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_gshared)(__this, ___comparer0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) inline int32_t ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { return (( int32_t (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, RuntimeObject*, const RuntimeMethod*))ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82_gshared)(__this, ___comparer0, method); } // System.String System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::ToString() inline String_t* ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87 (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method) { return (( String_t* (*) (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *, const RuntimeMethod*))ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_gshared)(__this, method); } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mB4A5D7A0F971136F6BD14876F2ACCEDEA1BB123D_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mB4A5D7A0F971136F6BD14876F2ACCEDEA1BB123D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mB4A5D7A0F971136F6BD14876F2ACCEDEA1BB123D_RuntimeMethod_var); } IL_0014: { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 ValueCollection_GetEnumerator_m9F335E91F8BDF1EC844479D95D6B216E408CC032_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE((&L_1), (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* V_1 = NULL; int32_t V_2 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_RuntimeMethod_var); } IL_002e: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_11 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mB40BD9827648ADFF02293180BA3E28696A10835D_RuntimeMethod_var); } IL_004b: { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_14 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_16 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_17 = (EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m3CBC6EA20505128300A2F1C8B03D2189EED3C8F8_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mF32CD67234893FDA0FABA002042621BEE5EDE70A_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEB0DE2E5644CA24323C26A5702384EB60AF43F46_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEB0DE2E5644CA24323C26A5702384EB60AF43F46_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mEB0DE2E5644CA24323C26A5702384EB60AF43F46_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m55771C73EFA9C35425887D7D2A3E6AED6235D10C_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m55771C73EFA9C35425887D7D2A3E6AED6235D10C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m55771C73EFA9C35425887D7D2A3E6AED6235D10C_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB9E4C9410C5BBB1583CFD203CF2FF642F325E6DC_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB9E4C9410C5BBB1583CFD203CF2FF642F325E6DC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB9E4C9410C5BBB1583CFD203CF2FF642F325E6DC_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m7802740E688B7BFE18E387DB0AFF25DC1AE24AA1_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); int32_t L_1 = ___item0; NullCheck((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m6C9BF4E412D6679FE4580569B46A522850982479_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE((&L_1), (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m27789543E74A59D90BF0CD604CDE8D50A217CAF0_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, const RuntimeMethod* method) { { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_0 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB42C48B06F276CF328A497A7B1238EDF7D4368BE((&L_1), (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t66F6FD81361839FBE34C35476D237F08CCB73558 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_gshared (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_19 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)((Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23 = V_0; if (!L_23) { goto IL_0096; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C *)__this); (( void (*) (ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tD929308874B3AE2B67C8D364703457B1C2CA578C *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } IL_00b0: { Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_29 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 * L_31 = (Dictionary_2_tCB10D3F0D8D28A1A6B54347C56E10FE9D9612C94 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_32 = (EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tD8BB4D24133634DA18486BF261F688773884CE09* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_mC7C945AE7D983AB1EDE6AE83621610A50C4461BD_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m6A3DA76F8FD0C751B34A297E5A0DC9C3036FDF9A_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m6A3DA76F8FD0C751B34A297E5A0DC9C3036FDF9A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m6A3DA76F8FD0C751B34A297E5A0DC9C3036FDF9A_RuntimeMethod_var); } IL_0014: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 ValueCollection_GetEnumerator_m2856AA67C8638FAC317916DD7BB02DE1F4DF2FEA_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D((&L_1), (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_11 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mFBFC3025528F64C18F6A85D59B2EEC839204F948_RuntimeMethod_var); } IL_004b: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_14 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_16 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_17 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m285CD8C43224C92990C0E16752214008514339B3_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mCC60AEBEEFB6DCB720B8E8D4B920EA1328F0BF24_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA3565E47C631CC1C2AD1E20C02D898C88C8A6630_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA3565E47C631CC1C2AD1E20C02D898C88C8A6630_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA3565E47C631CC1C2AD1E20C02D898C88C8A6630_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m41FF5CBB96F5AFFFA081A0C54D46B0A60512FA20_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m41FF5CBB96F5AFFFA081A0C54D46B0A60512FA20_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m41FF5CBB96F5AFFFA081A0C54D46B0A60512FA20_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mBB962CF0135A721028C9F909F804C33CA67DAEA3_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mBB962CF0135A721028C9F909F804C33CA67DAEA3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mBB962CF0135A721028C9F909F804C33CA67DAEA3_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m8BFE9C0C1F8B713FFDC9A2EBC0424BFFFA8E1A52_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m9193D8524A9C90D3BDAD47A7A225275DE002745E_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D((&L_1), (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m50EECD9816801B93BF2E1A0D24D82988EAD1FD47_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D((&L_1), (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_gshared (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_19 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A *)__this); (( void (*) (ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_29 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_31 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_32 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m64975BC36F131C9E27E54327C62171E03E3362BA_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m390C87E15C95AD8D542CC3B45E597757DAB146FF_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m390C87E15C95AD8D542CC3B45E597757DAB146FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m390C87E15C95AD8D542CC3B45E597757DAB146FF_RuntimeMethod_var); } IL_0014: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 ValueCollection_GetEnumerator_m3AA8241F2E2C7CF69D30EBEB67FD5DCEC9584C08_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E((&L_1), (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_11 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mB52BDE3FA9A9792E6E3A0C9D50EA9B336ACCE726_RuntimeMethod_var); } IL_004b: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_14 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_16 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_17 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mAD943C02127872764A264B2C35B0D3DAFF8AD3F9_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m587CC758921C2146B56F4E0CAA1008951E091826_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mD3C482CA0B8F8443AB6DC80CA2629F3E19844F1C_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mD3C482CA0B8F8443AB6DC80CA2629F3E19844F1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mD3C482CA0B8F8443AB6DC80CA2629F3E19844F1C_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8786D82858A3E9EF25FBBD4053475D602579A853_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8786D82858A3E9EF25FBBD4053475D602579A853_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8786D82858A3E9EF25FBBD4053475D602579A853_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mE30C8222666B4BEE98A06908C509C9217BC0EE7B_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mE30C8222666B4BEE98A06908C509C9217BC0EE7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mE30C8222666B4BEE98A06908C509C9217BC0EE7B_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mEAF4AFAA6C366BB7271F362FD62067C88720CB9B_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mC2DB9D871E7494947692FF5701D69171543B57A4_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E((&L_1), (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m9FF656AFB35C2899B577688CF5715500DB5C4006_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E((&L_1), (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int64,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_gshared (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_19 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 *)__this); (( void (*) (ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_29 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_31 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_32 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m953A21A77AE4AFFB58CFD01FC1E44929A0CB5950_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m3AF221DF37E81292F527B81EC82D307C22A07A73_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m3AF221DF37E81292F527B81EC82D307C22A07A73_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m3AF221DF37E81292F527B81EC82D307C22A07A73_RuntimeMethod_var); } IL_0014: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C ValueCollection_GetEnumerator_mE28AAC42DAE24A8EE51D6560F63A772D6BCD96E4_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D((&L_1), (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* V_1 = NULL; int32_t V_2 = 0; { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_RuntimeMethod_var); } IL_002e: { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_11 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m2D03112495D315EC30D9D8B70134D1B60B23C264_RuntimeMethod_var); } IL_004b: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_14 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_16 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_17 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); bool L_26 = (bool)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (bool)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m536DAE67C91E92E19C188127A7BB71831A50EBAE_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mC24C1C657D49179703BD6080E67F44C4253872A0_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m963232CA7779143D88A27E922A85E04B47C093F7_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m963232CA7779143D88A27E922A85E04B47C093F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m963232CA7779143D88A27E922A85E04B47C093F7_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mFCA70F772252855236B9E0934AA054291F68C7AD_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mFCA70F772252855236B9E0934AA054291F68C7AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mFCA70F772252855236B9E0934AA054291F68C7AD_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2F1690C9356C4E596C1FE8912B0F08D8F6E832D2_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2F1690C9356C4E596C1FE8912B0F08D8F6E832D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m2F1690C9356C4E596C1FE8912B0F08D8F6E832D2_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mF9AE10BED6D3E8B374DBB15BD79BF8D5D25373F0_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, bool ___item0, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); bool L_1 = ___item0; NullCheck((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mEC22C00C38C52BC2B42953620C412AF13CAE601D_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D((&L_1), (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2578170BC530CBCDF697C8EE52D22821117B39E5_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D((&L_1), (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_gshared (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_MetadataUsageId); s_Il2CppMethodInitialized = true; } BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_19 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)((BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_23 = V_0; if (!L_23) { goto IL_0096; } } { BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 *)__this); (( void (*) (ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 *, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 *)__this, (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_29 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_31 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_32 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); bool L_41 = (bool)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); bool L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_mDD7045E221B3B44507B7179464B179A5B33FB88D_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mC8EEA954A8BAFCF2EA9DD8B7122C8872E74FC3C8_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mC8EEA954A8BAFCF2EA9DD8B7122C8872E74FC3C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mC8EEA954A8BAFCF2EA9DD8B7122C8872E74FC3C8_RuntimeMethod_var); } IL_0014: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 ValueCollection_GetEnumerator_mE049A745DF2689CBA71F592F6FA146A4759D4176_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475((&L_1), (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* V_1 = NULL; int32_t V_2 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_RuntimeMethod_var); } IL_002e: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_11 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m8508843D0227197BF525C168816C23FA6E69E808_RuntimeMethod_var); } IL_004b: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_14 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_16 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_17 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m985BCA61A2A06A9168547247414618602BB457DC_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mD4867B2A2D8D73F3E6BD84BAA8CC3A42002090DE_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m82BB88792868D7BCA61CDDA0BA67146A05ABB392_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m82BB88792868D7BCA61CDDA0BA67146A05ABB392_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m82BB88792868D7BCA61CDDA0BA67146A05ABB392_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8ED2FCE61DFF18D6BAF9B4677391089D56BB21CC_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8ED2FCE61DFF18D6BAF9B4677391089D56BB21CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m8ED2FCE61DFF18D6BAF9B4677391089D56BB21CC_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m43A1E8E9B6E448F5109E63D2F9452D073E099F20_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m43A1E8E9B6E448F5109E63D2F9452D073E099F20_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m43A1E8E9B6E448F5109E63D2F9452D073E099F20_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m5AE2691CA73C84474D879E6C0F8D98A623F05A42_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); int32_t L_1 = ___item0; NullCheck((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m267B7F7412F5016D2F014656FFB50EBE8786E24D_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475((&L_1), (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mDEB78FB8CE3E70488BEA295553ACFE002E9AD324_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475((&L_1), (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_gshared (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_19 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)((Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23 = V_0; if (!L_23) { goto IL_0096; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 *)__this); (( void (*) (ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_29 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_31 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_32 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_mE6FC58EE945BEF28890408E53EC5559037DD761A_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mAF1C70E689EC3530A6B82DC6E3E16CEDEEA2A60E_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mAF1C70E689EC3530A6B82DC6E3E16CEDEEA2A60E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mAF1C70E689EC3530A6B82DC6E3E16CEDEEA2A60E_RuntimeMethod_var); } IL_0014: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 ValueCollection_GetEnumerator_m401C0FF4E5F0194244B19D7B9EF4B173FB7E88C3_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE((&L_1), (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_11 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m4CA310710CBE4DEEEB918B6C83A5F0D60E352956_RuntimeMethod_var); } IL_004b: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_14 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_16 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_17 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mF19B1FB9B0DD226A0E7C38405ACB31C13FEC28AD_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m65D5625DA1C2FEAA9BD4DD90CA367F21C7A7C288_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m6516D9B3E6511E95D07372033B20FD1C1A1B01F5_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m6516D9B3E6511E95D07372033B20FD1C1A1B01F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m6516D9B3E6511E95D07372033B20FD1C1A1B01F5_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7460FE265FDD1B034B1F2B80165B46E7CF2965BC_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7460FE265FDD1B034B1F2B80165B46E7CF2965BC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7460FE265FDD1B034B1F2B80165B46E7CF2965BC_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5147E7E8DBDEA9A83A71421C6C9B848DFF03F282_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5147E7E8DBDEA9A83A71421C6C9B848DFF03F282_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5147E7E8DBDEA9A83A71421C6C9B848DFF03F282_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m61660CBF2AB0BFAFA98B73C17978FE9BFA9C5E9F_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0); bool L_2 = (( bool (*) (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mCC42FF1A9647D2CA97817F67BD44AFFE5394AF21_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE((&L_1), (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m883729DAC8F3537A33DE83D42778BD27F46839B7_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE((&L_1), (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_gshared (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_19 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 *)__this); (( void (*) (ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } IL_00b0: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_29 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_31 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_32 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m87F5F8030928B2B117EFD6CB60703D875884D5CB_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mF03D64F567C6D69B0360E99FC446AF1FDC0ECD6A_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mF03D64F567C6D69B0360E99FC446AF1FDC0ECD6A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mF03D64F567C6D69B0360E99FC446AF1FDC0ECD6A_RuntimeMethod_var); } IL_0014: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 ValueCollection_GetEnumerator_m133ACECF2F504CF00C8DC7C1694E904FC002A47A_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7((&L_1), (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* V_1 = NULL; int32_t V_2 = 0; { ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_RuntimeMethod_var); } IL_002e: { ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_11 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mC7559BEFCDA91CB4D63DD80424BC6075B9C2EDA1_RuntimeMethod_var); } IL_004b: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_14 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_16 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_17 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_26 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mDA6619EBB6B0BD3D75007074361B37FA352CD73F_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m55312B4F6D366B2C1E5C53559D445CE688B5EA29_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5D72D827B600E6F821692279686EB2FAE565AEA4_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5D72D827B600E6F821692279686EB2FAE565AEA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5D72D827B600E6F821692279686EB2FAE565AEA4_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7A0F11CAFAA0F0AEFCDD965BE0B6430C090E40FA_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7A0F11CAFAA0F0AEFCDD965BE0B6430C090E40FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m7A0F11CAFAA0F0AEFCDD965BE0B6430C090E40FA_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7958C3DD111888A05CAE6AD5FB08398B34DD8AD0_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7958C3DD111888A05CAE6AD5FB08398B34DD8AD0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7958C3DD111888A05CAE6AD5FB08398B34DD8AD0_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m91F2E8C8141F53C4F789D6105EA3ED521822F4B0_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___item0, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_1 = ___item0; NullCheck((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m15D97F02928D7DDA88D4B9678E3E213E6A5DA8F6_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7((&L_1), (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m0B27E44A14428F86D9560A50C86D3BFCA448F04C_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7((&L_1), (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_gshared (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_MetadataUsageId); s_Il2CppMethodInitialized = true; } ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_19 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093*)((ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC *)__this); (( void (*) (ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC *, ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC *)__this, (ResourceLocatorU5BU5D_tE68C3EE72E3C812637D20321B4E5E9248C9FD093*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_29 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_31 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_32 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_41 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_m82709EFB7B9786BAD796E1CF71FA3A35E8177927_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m96CE0F22612E44E727762663A3D5CC8E0778FF12_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m96CE0F22612E44E727762663A3D5CC8E0778FF12_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m96CE0F22612E44E727762663A3D5CC8E0778FF12_RuntimeMethod_var); } IL_0014: { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 ValueCollection_GetEnumerator_m1B79451BA06277B55DA5A80267AB60E1D2065F16_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2((&L_1), (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_11 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mA422F1A5A03C6CAE1E92045FFF0618332388D9E8_RuntimeMethod_var); } IL_004b: { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_14 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_16 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_17 = (EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m67EC0901AE5FE3D5E2A5EA0B4447CDBCD5CF19BC_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mBBF674F1C18ED9C49CB2415439B3E2DFDD0CA177_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EDA09C466AC9912A90E65CCFFE2E12A7D99D2F2_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EDA09C466AC9912A90E65CCFFE2E12A7D99D2F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EDA09C466AC9912A90E65CCFFE2E12A7D99D2F2_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA01EEDE4D327F745DFE2CB5D14BF79E7C485E8F0_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA01EEDE4D327F745DFE2CB5D14BF79E7C485E8F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA01EEDE4D327F745DFE2CB5D14BF79E7C485E8F0_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1F0FB9B3238C0D075BDE47841A425B62CA27B214_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1F0FB9B3238C0D075BDE47841A425B62CA27B214_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m1F0FB9B3238C0D075BDE47841A425B62CA27B214_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m80CC993FEECD8342EB86EB153C15BD9E53CB5865_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mB5A0D72848FFE03908B13D3C1732DC133A6E635D_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2((&L_1), (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mFCEB639F785627BD03F2393CE3A744082A78696B_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, const RuntimeMethod* method) { { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_0 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mFC72DAD81C02A9AA74C42C2A69E49AAA32860BD2((&L_1), (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t6BF44B5D7F1F8679244FFDEEB1EB656A7951CDB1 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Rendering.HighDefinition.ScalableSettingSchemaId,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_gshared (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_19 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C *)__this); (( void (*) (ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE95F6BB4AF6250DB2621F332890A898769503A3C *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_29 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F * L_31 = (Dictionary_2_t43A4A7AA78794B272C3C16D2EFF4A2757E90332F *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_32 = (EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t8567AEDB73B7E3B5713D8CC1ABED2773905B59B3* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m60115DD9A2E43414808DE50D0D3D5F3773103C83_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mA1E39B02C97948D1666D3B25DE47950BD82E7184_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mA1E39B02C97948D1666D3B25DE47950BD82E7184_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mA1E39B02C97948D1666D3B25DE47950BD82E7184_RuntimeMethod_var); } IL_0014: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D ValueCollection_GetEnumerator_m7A6C73A9555F72FBD9AB7F7736E79C67303E0076_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770((&L_1), (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* V_1 = NULL; int32_t V_2 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_RuntimeMethod_var); } IL_002e: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_11 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mC86A0CFB431DD5771163DF5832F59F8C9BBDEC1D_RuntimeMethod_var); } IL_004b: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_14 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_16 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_17 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m1DCEC654015F0265D69E670750A703CB8E1EA437_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m9B25BB171C8933991D79A79CD33B3F67354BF5C9_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m794B6688B95BE4D32EDE5B1BA39E5541C419FF6F_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m794B6688B95BE4D32EDE5B1BA39E5541C419FF6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m794B6688B95BE4D32EDE5B1BA39E5541C419FF6F_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDA08F769F65339E3BF301BED933C1C1FA5D3551B_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDA08F769F65339E3BF301BED933C1C1FA5D3551B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDA08F769F65339E3BF301BED933C1C1FA5D3551B_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0B1E1DFDC47DEE71158101DD88E6FE1D5317E6B5_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0B1E1DFDC47DEE71158101DD88E6FE1D5317E6B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0B1E1DFDC47DEE71158101DD88E6FE1D5317E6B5_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m791FE1C222F774608DEA572CFFBF03B87335ABEA_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); int32_t L_1 = ___item0; NullCheck((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m79D26F34AD3FA20FF6C4807584852B5929491566_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770((&L_1), (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m8AFE60834716CF58F0ED25884807009C1C4663AD_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770((&L_1), (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_gshared (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_19 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)((Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23 = V_0; if (!L_23) { goto IL_0096; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB *)__this); (( void (*) (ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_29 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_31 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_32 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_m7972CAF88F2BBC38D95D58B8CDD7B0333F6F53BA_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mC0EDC977C96519A91ABC6132171044C199E9B373_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mC0EDC977C96519A91ABC6132171044C199E9B373_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mC0EDC977C96519A91ABC6132171044C199E9B373_RuntimeMethod_var); } IL_0014: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 ValueCollection_GetEnumerator_m168EB3C4C3CF96DB50361487D34E2B7C3C5DD710_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4((&L_1), (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_11 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m39A04F34240D264E490AE1461D2EC2EA8C13F59B_RuntimeMethod_var); } IL_004b: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_14 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_16 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_17 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m16B159F0B81AE5DA1E9C836A74B3CC4BFC8DFAB9_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mDF46955024EF7E6C8D6A7B6EEECF55B984A0DA74_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m8A721EADC21A16A3E8FED8C6CC66F8F93D9597E9_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m8A721EADC21A16A3E8FED8C6CC66F8F93D9597E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m8A721EADC21A16A3E8FED8C6CC66F8F93D9597E9_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA097DC99699A10DE87F6C02906DC72274C4C7A21_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA097DC99699A10DE87F6C02906DC72274C4C7A21_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA097DC99699A10DE87F6C02906DC72274C4C7A21_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mCF6134C4714809D458698BCA671D4325BA54A18A_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mCF6134C4714809D458698BCA671D4325BA54A18A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mCF6134C4714809D458698BCA671D4325BA54A18A_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m776947C686D32B02AC5D7D905F649FEEE06BFA9D_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mDAA32FAC5862947A55C30AAE082448F107D526F0_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4((&L_1), (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m3C03AE09873FB11F132AA08255235A43D88BE6AF_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4((&L_1), (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_gshared (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_19 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C *)__this); (( void (*) (ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_29 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_31 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_32 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m3CD1D91F7927F73F40FB05E4E1D4CEA1C6BEFA57_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mB5B16EFFE8E91D04EBA70E5F13D23834BD9202B6_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mB5B16EFFE8E91D04EBA70E5F13D23834BD9202B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mB5B16EFFE8E91D04EBA70E5F13D23834BD9202B6_RuntimeMethod_var); } IL_0014: { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 ValueCollection_GetEnumerator_m8EEB3CEF4E99B213BBC047118E2E93DFCD533CE6_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41((&L_1), (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_11 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mDBA7DCDF07C312FAA34E0CFD6A6976DFCC40EF3A_RuntimeMethod_var); } IL_004b: { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_14 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_16 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_17 = (EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m6B7F26C45D36CAB76DCF7C50EE29958A06D5731C_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mC8AA6D704EB50A786290B0A3053670DC35299E4E_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mFC1427B9B734FFCBBBEE6B9D459AA7676A54269B_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mFC1427B9B734FFCBBBEE6B9D459AA7676A54269B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mFC1427B9B734FFCBBBEE6B9D459AA7676A54269B_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDDBFCE312F2C4CD8CD0F6FC09C5C6240A265D076_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDDBFCE312F2C4CD8CD0F6FC09C5C6240A265D076_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mDDBFCE312F2C4CD8CD0F6FC09C5C6240A265D076_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA7A68EA12ADCDA48C1FB67B6ABCF6CD7E3979E8F_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA7A68EA12ADCDA48C1FB67B6ABCF6CD7E3979E8F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA7A68EA12ADCDA48C1FB67B6ABCF6CD7E3979E8F_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m2885C94D864C934D3277BBB8C93117F69EA4D3DC_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mE14AFFC18E294B0FF8AB0BBB86A160B2CC8DB1A8_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41((&L_1), (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m53AB21D3EA63FBE17753F9E67DBC6C19F3CD1E3F_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, const RuntimeMethod* method) { { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_0 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m35046DC7633EC3609130A1EE802B6B44F8EE2E41((&L_1), (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t982A8C1272A6393752AE9EE877A586D4EAA04934 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.UInt64,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_gshared (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_19 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 *)__this); (( void (*) (ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tDAA32EF298949BB68B6463967FD7914A38A3A759 *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_29 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * L_31 = (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_32 = (EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t54BBAD1F7328BEC876A63E4ADA6D7ACDD3ECE4D3* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_m704E3FEBA77C43BEA4C4F9F588989E89ADB2D2E5_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m3BD3C59E66406529429990E10209F9312C675DF8_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m3BD3C59E66406529429990E10209F9312C675DF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m3BD3C59E66406529429990E10209F9312C675DF8_RuntimeMethod_var); } IL_0014: { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 ValueCollection_GetEnumerator_mB117378B6482AEB1926EF760723B4B22BE973247_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE((&L_1), (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* V_1 = NULL; int32_t V_2 = 0; { Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_RuntimeMethod_var); } IL_002e: { Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_11 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m44F9DD6AEB1DD29B5DCC35CF0326051CC52B6E07_RuntimeMethod_var); } IL_004b: { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_14 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_16 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_17 = (EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m125FB857646840474E8F4856190C9E1ADE21FCFF_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m7413CC37DBA75B418F7580FEE37D818E7360E42A_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m06150DBA33B44E4614641E48D83830FAE0ED0623_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m06150DBA33B44E4614641E48D83830FAE0ED0623_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m06150DBA33B44E4614641E48D83830FAE0ED0623_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC6DA0F787937FCB5534597B4FDAE7C1DE4A717F4_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC6DA0F787937FCB5534597B4FDAE7C1DE4A717F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mC6DA0F787937FCB5534597B4FDAE7C1DE4A717F4_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mED0C2989B9AF15BFB22F60CD042FFB932B5B9D58_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mED0C2989B9AF15BFB22F60CD042FFB932B5B9D58_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mED0C2989B9AF15BFB22F60CD042FFB932B5B9D58_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m24E6C085601992DCE44E8B15813D08336CEF6323_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, int32_t ___item0, const RuntimeMethod* method) { { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); int32_t L_1 = ___item0; NullCheck((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m285D7E6C0EDB76D1EC2D28C1AE08BDBB7D8F66F9_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE((&L_1), (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m77DBA10F5CFAB91866F69DA41935CD57EC880CE6_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, const RuntimeMethod* method) { { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_0 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mF01F40A7E90E4F8CFA019862566CC0FAAB2272AE((&L_1), (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tD7F434541FB814898670FC6ECC6F8674C7837CC3 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Vector4,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_gshared (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_19 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)((Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_23 = V_0; if (!L_23) { goto IL_0096; } } { Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD *)__this); (( void (*) (ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD *, Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t8B71DB296D0C908CDC798077F97E5163BC7183BD *)__this, (Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_29 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E * L_31 = (Dictionary_2_t8840E1E9A519D09A2175442D3E1CBE10D5247D4E *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_32 = (EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t38C6F076E927AC85504628CA467233A807D41445* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_m441D7382BD2465E7E49A3F7CB034CE028315854A_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m1697546E6AD9F1DE825429271515C7070AFB6EE4_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m1697546E6AD9F1DE825429271515C7070AFB6EE4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m1697546E6AD9F1DE825429271515C7070AFB6EE4_RuntimeMethod_var); } IL_0014: { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 ValueCollection_GetEnumerator_mE3FDBA23D045D1FBC242A326EF7EF3BA1630BB34_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC((&L_1), (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* V_1 = NULL; int32_t V_2 = 0; { XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_RuntimeMethod_var); } IL_002e: { XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_11 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mE9F361B92EE08D2BA80474425EBE5BF77D6DF907_RuntimeMethod_var); } IL_004b: { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_14 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_16 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_17 = (EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_26 = (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mB3EA3F12FBACB67BC09E0C4F8499C92AA23E8C81_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mF82F78520AF0A6D1BD12ADB33609DA7EFE608CB4_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBC09D0AB05365727692428459A6B955AA5998D3F_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBC09D0AB05365727692428459A6B955AA5998D3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBC09D0AB05365727692428459A6B955AA5998D3F_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD61CCFDE7F79C894E7ED9E25C204B9060806A822_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD61CCFDE7F79C894E7ED9E25C204B9060806A822_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD61CCFDE7F79C894E7ED9E25C204B9060806A822_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFE6D21BB795E05F9573020825203CA93AF4E8D45_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFE6D21BB795E05F9573020825203CA93AF4E8D45_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFE6D21BB795E05F9573020825203CA93AF4E8D45_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1E171A3B53ABDE2497587A883F7F020AA53399F8_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___item0, const RuntimeMethod* method) { { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_1 = ___item0; NullCheck((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0, (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m37990090DB63226A09BBE826AE1B3669FE6B545D_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC((&L_1), (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mF0ABF0109934A9A1B2CAB1A7D173A1D6239B856D_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, const RuntimeMethod* method) { { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_0 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m57CA94785389881F1B40C43D11145D38FF8BACDC((&L_1), (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tDDFE1027CF6648FA7853D6CCFB02947F1F438485 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_gshared (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_19 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969*)((XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_23 = V_0; if (!L_23) { goto IL_0096; } } { XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B *)__this); (( void (*) (ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B *, XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tF406B1D62257B67240711CC39A9B13163014394B *)__this, (XPathNodeRefU5BU5D_t2FE2018B98F8FD216550263E71F88CAFD1569969*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_29 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C * L_31 = (Dictionary_2_t4EDA304EB239333A04A5B9AA8551E2714497961C *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_32 = (EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t5202EDAA20A12B03E10281AC8139A039C2E648DE* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_41 = (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_mB74C5B2B4225A279CA8AAEFE1D790F997CF09A7A_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m137B43D2AD4DE76087897823B0F9D17A83C08009_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m137B43D2AD4DE76087897823B0F9D17A83C08009_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m137B43D2AD4DE76087897823B0F9D17A83C08009_RuntimeMethod_var); } IL_0014: { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 ValueCollection_GetEnumerator_m022A2BA7A41FE118BF6B567F50A9C1D4C3598604_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451((&L_1), (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_11 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m68DCF814CE9B90F605034BAD98C0DB223CD9CED7_RuntimeMethod_var); } IL_004b: { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_14 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_16 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_17 = (EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m1C2AE783007C39BA8D3CD8CD14012D97EA416A0C_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mEA1FCA6B30542F33ABD930FF9D1622ABBC347423_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1507D6368EB4FD584D842B25F3A57D1D472F392F_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1507D6368EB4FD584D842B25F3A57D1D472F392F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1507D6368EB4FD584D842B25F3A57D1D472F392F_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m634617A4485B074C21CAFE4B998040E22F2A89D1_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m634617A4485B074C21CAFE4B998040E22F2A89D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m634617A4485B074C21CAFE4B998040E22F2A89D1_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m518D2432C00A46A713CE314CE9A6962FA93BF1D1_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m518D2432C00A46A713CE314CE9A6962FA93BF1D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m518D2432C00A46A713CE314CE9A6962FA93BF1D1_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mAD51D9F7C8EB271EE5B7E99AAD8793AB71189D3B_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0); bool L_2 = (( bool (*) (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mBDE018C38E2D52E0EC55F66E49BAFED75FDBDE02_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451((&L_1), (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m3CEDB604BA6D94D02DC5EFE1C6B773A13CCCDFB1_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, const RuntimeMethod* method) { { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_0 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m714DA4303AE7B7D39303A6CC5F3BCF02CD0AE451((&L_1), (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE3AED6FABD554C41493509499DBC5907B75D4DB3 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_gshared (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_19 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF *)__this); (( void (*) (ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE30D2CF7AE93E79624FC9423989FB43B317280DF *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } IL_00b0: { Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_29 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C * L_31 = (Dictionary_2_tBF9E2338C61ABCF5ED32053F509AFB44385F774C *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_32 = (EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t19FCE264BF26418E45186B707D1479049C0FEA67* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_mEEA45154B3D0A4B9E4C76C298F27B3E4062D303E_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m2A93078FAB4993BBD515AACF5284CFD4D917D755_RuntimeMethod_var); } IL_0014: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE ValueCollection_GetEnumerator_mE341C9F571D357B99C6263388DA500B7DA5378DC_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var); } IL_002e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_11 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mC780AF4B83A5459C2A68856DA627AF7D16357547_RuntimeMethod_var); } IL_004b: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_14 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_16 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_17 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m3A6480A92C53F9F10A69F264ADBE59689171C16C_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mA9394B10CF2FA77D51848624487B80E98CE70E67_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m0E18B7455ACC96C4D695E782C5B8739386B57F13_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mD8EC4C4D454E5A5DAB602B6DA14F23BEAB863EE0_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mABABD7BE47925CC58B608BF1AE87E533D3552885_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m6DFFBF6521DC0FE2335BF47FD5644C3A4749DD26_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); RuntimeObject * L_1 = ___item0; NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mFD822DDDB171CC6F877FA7AE541FE3E0AB074EFD_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m0537D5C80D7040F58779A2F999A9D514BB9813F8_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, const RuntimeMethod* method) { { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_0 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mE9D889F3AB1F21159B51104E1CC7EE7D08AF0942((&L_1), (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_t4C5FA0E746996FF8CD432DD8ADCF5422856D98CE L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`2<System.Object,System.Int32>,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_gshared (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_19 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *)__this); (( void (*) (ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tE0DEA97E692A65D11F8A256E4332962451F4ED0C *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_29 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E * L_31 = (Dictionary_2_t3BA8FCFE5DD25F2BB4BBAC4C3C306D4755C6003E *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_32 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t7E4ABC4275502F4A2BC3B218823396CC1708A42C* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_41); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41); } IL_00f7: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00fd: { int32_t L_43 = V_4; int32_t L_44 = V_2; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_45 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_45, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ValueCollection_System_Collections_ICollection_CopyTo_mEBE730CC5FDA4FCD0F9756C0562A047D79B2C3A6_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mF09694AA5808B8E14E45FC173A4A2E5B1C1FF415_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_mF09694AA5808B8E14E45FC173A4A2E5B1C1FF415_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_mF09694AA5808B8E14E45FC173A4A2E5B1C1FF415_RuntimeMethod_var); } IL_0014: { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 ValueCollection_GetEnumerator_m5D9C54CD8D0E0DF6F741DBDA9ED3C8CBEB58C7DB_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A((&L_1), (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* V_1 = NULL; int32_t V_2 = 0; { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_RuntimeMethod_var); } IL_002e: { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_11 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_mFE72CFE8C4057A02F02E1F703123B29B844E6009_RuntimeMethod_var); } IL_004b: { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_14 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_16 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_17 = (EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_26 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m34056C6A5DBB6ACEB4A13AC3B12A156879D9C0FF_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m3BAF71DA533D75113AE2935D18B955E5ACA37314_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mE1B68D7EF921AD23D29D38347578C0CC7A453EC8_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mE1B68D7EF921AD23D29D38347578C0CC7A453EC8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mE1B68D7EF921AD23D29D38347578C0CC7A453EC8_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m5AF75E6801BB1019B7D7A2205CE14414E77A8CFC_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m5AF75E6801BB1019B7D7A2205CE14414E77A8CFC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m5AF75E6801BB1019B7D7A2205CE14414E77A8CFC_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA6309D0C81CD486A8497A32DB55A492E6AE43070_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA6309D0C81CD486A8497A32DB55A492E6AE43070_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mA6309D0C81CD486A8497A32DB55A492E6AE43070_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m5D0FDB25960E7CC985E4B4B527000FE24959ECC0_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_1 = ___item0; NullCheck((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0); bool L_2 = (( bool (*) (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mA8835753155BC4F1DAD435CDF94640DE4177FC3E_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A((&L_1), (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mEE59CF6DB9AD89F30ED2F05DFD73A693E45740FA_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, const RuntimeMethod* method) { { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_0 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mB8ED20E53F9AADC82692BBCEF592CCFBD31E1B7A((&L_1), (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tA4167F8B3ACCEC4A4BB4240E4097521E28D92E17 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.ValueTuple`3<System.Object,System.Object,System.Int32>,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_gshared (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_19 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)((ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F *)__this); (( void (*) (ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F *, ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tB72BD152814BA4468B41B55EA8EC82C4C19F7E9F *)__this, (ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } IL_00b0: { Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_29 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 * L_31 = (Dictionary_2_tAB1D75834EF3A9D1D6FCE0902357E9B079860823 *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_32 = (EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t14A20419F3E3BE175ABC35ACAED3A2DF1655E698* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_41 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_m6E04FE9D7BBA9E86A146F7E64FB8C16F4E5AC946_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m688F752127866E631C65B729D5E529510763917C_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * ___dictionary0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection__ctor_m688F752127866E631C65B729D5E529510763917C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL); Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = ___dictionary0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralC0E02A0440A6BB4475B7E59901C37A6A25E773C8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection__ctor_m688F752127866E631C65B729D5E529510763917C_RuntimeMethod_var); } IL_0014: { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_2 = ___dictionary0; __this->set_dictionary_0(L_2); return; } } // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 ValueCollection_GetEnumerator_m170456192F286E8AB8C461735F27F5FB5CB8B3A8_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255((&L_1), (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return L_1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::CopyTo(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* V_1 = NULL; int32_t V_2 = 0; { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_8, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_7, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_RuntimeMethod_var); } IL_002e: { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_11 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_11); int32_t L_12 = (( int32_t (*) (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12))) { goto IL_004b; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ValueCollection_CopyTo_m7A022B4A4A4FA5EF5A29F2A14B0D5B0E1CDB1AFB_RuntimeMethod_var); } IL_004b: { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_14 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_count_2(); V_0 = (int32_t)L_15; Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_16 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck(L_16); EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_17 = (EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631*)L_16->get_entries_1(); V_1 = (EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631*)L_17; V_2 = (int32_t)0; goto IL_0092; } IL_0067: { EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0(); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_008e; } } { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_21 = ___array0; int32_t L_22 = ___index1; int32_t L_23 = (int32_t)L_22; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_26 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); NullCheck(L_21); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_26); } IL_008e: { int32_t L_27 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0092: { int32_t L_28 = V_2; int32_t L_29 = V_0; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0067; } } { return; } } // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mFAFC3CBDE898226EB744B24A4B0D10BE4B784F13_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return L_1; } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m28ADD20C933197C9C8BF83C32DF5C236931535AC_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Add(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBFEC68E2D916C07488D12E1D46194DB71ED8A0B0_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBFEC68E2D916C07488D12E1D46194DB71ED8A0B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBFEC68E2D916C07488D12E1D46194DB71ED8A0B0_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m736B9BF42A71B9C43409F4290A6CB2F300F84F86_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m736B9BF42A71B9C43409F4290A6CB2F300F84F86_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m736B9BF42A71B9C43409F4290A6CB2F300F84F86_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB0A04A12F3B87CC1107F1ECA601F420A4E927C55_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB0A04A12F3B87CC1107F1ECA601F420A4E927C55_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, (String_t*)_stringLiteralC5E4E1FAAB05C1541AB9B0C1282FD2FFCEF4F205, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mB0A04A12F3B87CC1107F1ECA601F420A4E927C55_RuntimeMethod_var); } } // System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m59967A5D5A4718CB2D21F8A611BC6DBA60E0A2DD_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item0, const RuntimeMethod* method) { { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_1 = ___item0; NullCheck((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0); bool L_2 = (( bool (*) (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return L_2; } } // System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m33568E2A8D3A6F61BA31F7AF0BD7283C3291C068_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255((&L_1), (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mCC9CA541B424D23D940A9F6D5821AD4FD4CDE2A8_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, const RuntimeMethod* method) { { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_0 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_m2682A8583D47175E8EF7D2D2EB9DDB3F26D86255((&L_1), (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); Enumerator_tE91BDD64D74C559F41F4FA4D51828DD8853FF156 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2); return (RuntimeObject*)L_3; } } // System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_gshared (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* V_0 = NULL; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t V_2 = 0; EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* V_3 = NULL; int32_t V_4 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, (String_t*)_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_m6198001EA09E7523356C18FD6E3315E1B3A5C773((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, (String_t*)_stringLiteral6195D7DA68D16D4985AD1A1B4FD2841A43CDDE70, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_15, (String_t*)_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, (RuntimeObject *)L_14, (String_t*)_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_19 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_19); int32_t L_20 = (( int32_t (*) (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20))) { goto IL_0083; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, (String_t*)_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_0083: { RuntimeArray * L_22 = ___array0; V_0 = (ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)((ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_23 = V_0; if (!L_23) { goto IL_0096; } } { ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D* L_24 = V_0; int32_t L_25 = ___index1; NullCheck((ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC *)__this); (( void (*) (ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC *, ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t5F3C3A286D59C1884A20CF97962048CC69BB92FC *)__this, (ValueTuple_2U5BU5D_tB92D5D737256E32B1DE203B453C1315FC73D715D*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); return; } IL_0096: { RuntimeArray * L_26 = ___array0; V_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_1; if (L_27) { goto IL_00b0; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } IL_00b0: { Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_29 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck(L_29); int32_t L_30 = (int32_t)L_29->get_count_2(); V_2 = (int32_t)L_30; Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF * L_31 = (Dictionary_2_t0C3CEEA75C7B29899D5D7D5A7BC61ECF3ACFB1BF *)__this->get_dictionary_0(); NullCheck(L_31); EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_32 = (EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631*)L_31->get_entries_1(); V_3 = (EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631*)L_32; } IL_00c8: try { // begin try (depth: 1) { V_4 = (int32_t)0; goto IL_00fd; } IL_00cd: { EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_33 = V_3; int32_t L_34 = V_4; NullCheck(L_33); int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0(); if ((((int32_t)L_35) < ((int32_t)0))) { goto IL_00f7; } } IL_00dd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_36 = V_1; int32_t L_37 = ___index1; int32_t L_38 = (int32_t)L_37; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); EntryU5BU5D_t9D5E84413029CBA5ABE2756A571CE50A68445631* L_39 = V_3; int32_t L_40 = V_4; NullCheck(L_39); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_41 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_42 = L_41; RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_43); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43); } IL_00f7: { int32_t L_44 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00fd: { int32_t L_45 = V_4; int32_t L_46 = V_2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00cd; } } IL_0102: { goto IL_0115; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tFD610FDA00012564CB75AFCA3A489F29CF628784_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0104; throw e; } CATCH_0104: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_47 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_47, (String_t*)_stringLiteralBD0381A992FDF4F7DA60E5D83689FE7FF6309CB8, (String_t*)_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, ValueCollection_System_Collections_ICollection_CopyTo_m7F658006432E4FF89DEF7F7435947F2D753E0D15_RuntimeMethod_var); } // end catch (depth: 1) IL_0115: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Boolean,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, bool ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { bool L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE_AdjustorThunk (RuntimeObject * __this, bool ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); ValueTuple_2__ctor_mAA04870E074B64D2F540DA9B21E98C28514F0AAE(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)__this, (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )((*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_Equals_m7E69E0123D1DAAEA442128719733E475BD3DEC02(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_0 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); bool L_1 = (bool)__this->get_Item1_0(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_2 = ___other0; bool L_3 = (bool)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_0); bool L_4 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_0, (bool)L_1, (bool)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_Equals_m11345581DF87C908CFB2EEBCEA1BBEE14FC8F94D(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )((*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; bool L_4 = (bool)__this->get_Item1_0(); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_7 = V_0; bool L_8 = (bool)L_7.get_Item1_0(); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_14 = V_0; RuntimeObject * L_15 = (RuntimeObject *)L_14.get_Item2_1(); NullCheck((RuntimeObject*)L_12); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m783450CFC981536303ECE1E1355FD9479E070BA6(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_2 = (*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)__this); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)__this, (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )((*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_mA543FC1A7C1199529D1D0595AA1A77A4D46D5D79(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_0 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); bool L_1 = (bool)__this->get_Item1_0(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_2 = ___other0; bool L_3 = (bool)L_2.get_Item1_0(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_0, (bool)L_1, (bool)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_CompareTo_mC6865594FF0092476D9A735CDD0823BA9F306473(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_2 = (*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)__this); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE )((*(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; bool L_11 = (bool)__this->get_Item1_0(); bool L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_14 = V_0; bool L_15 = (bool)L_14.get_Item1_0(); bool L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; RuntimeObject * L_22 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE L_23 = V_0; RuntimeObject * L_24 = (RuntimeObject *)L_23.get_Item2_1(); NullCheck((RuntimeObject*)L_21); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m390DDCA2F3A047E9D383447B19105C86BD8B5F0E(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method) { bool V_0 = false; RuntimeObject * V_1 = NULL; bool* G_B3_0 = NULL; bool* G_B1_0 = NULL; bool* G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { bool* L_0 = (bool*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(bool)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { bool L_2 = (*(bool*)G_B1_0); V_0 = (bool)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_GetHashCode_mB020366CE5A75BFC3CFE2FFF97DA360F9A4D7B39(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA((ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)(ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m53356964718CF0BE06285282C0B792494795BADD(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Boolean,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; bool L_1 = (bool)__this->get_Item1_0(); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_5); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_m2C3F01C2D8D5330AA0E7B211BAFC45F4857B4BDA(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Boolean,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_gshared (ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; RuntimeObject * V_1 = NULL; bool* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; bool* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; bool* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; bool* L_3 = (bool*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(bool)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { bool L_5 = (*(bool*)G_B1_0); V_0 = (bool)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE * _thisAdjusted = reinterpret_cast<ValueTuple_2_tB6F6AE1A54796440E686F7741EA3970A167A62AE *>(__this + _offset); return ValueTuple_2_ToString_m3C64AB9DDADA687CBA9A711F613304C750177B73(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); bool L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); ValueTuple_2__ctor_m8BF15E5598DC03FFE7F29A93076B73B3FA64AA2C(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)__this, (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE )((*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_Equals_m458D246093BE0E60C8EF19B1A7D077E72A223232(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_5 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); bool L_6 = (bool)__this->get_Item2_1(); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_7 = ___other0; bool L_8 = (bool)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5); bool L_9 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5, (bool)L_6, (bool)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_Equals_m5E1E5576D0EC6FA6666C2E55DF51F49C1AEA3CBD(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE )((*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; bool L_13 = (bool)__this->get_Item2_1(); bool L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_16 = V_0; bool L_17 = (bool)L_16.get_Item2_1(); bool L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m0B112BCA0FC2AC18306DB83EBBBA593A47EEA79A(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_2 = (*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)__this); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)__this, (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE )((*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m718AE819BE956583F282DD9CF738B8EEE06CEB5B(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_7 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); bool L_8 = (bool)__this->get_Item2_1(); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_9 = ___other0; bool L_10 = (bool)L_9.get_Item2_1(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7, (bool)L_8, (bool)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_CompareTo_m567471043E7DC862FEAEF8C3242529C5465882B6(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_2 = (*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)__this); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE )((*(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; bool L_22 = (bool)__this->get_Item2_1(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE L_25 = V_0; bool L_26 = (bool)L_25.get_Item2_1(); bool L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mE54A831A127F94B17B3B010C7D9C2E6EA493EE86(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method) { int32_t V_0 = 0; bool V_1 = false; int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { bool* L_5 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { bool L_7 = (*(bool*)G_B5_0); V_1 = (bool)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_GetHashCode_m3D5CB4338E76ABEEECB6A3BE0D2BB83DFD04796D(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104((ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)(ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mFBC67AE6EDC4008C1C499B5429AB9CDD85CB5A72(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; bool L_6 = (bool)__this->get_Item2_1(); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_m71D963EB19F06FF4C2B015F24319D30DF7B46104(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_gshared (ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; bool* L_10 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { bool L_12 = (*(bool*)G_B5_0); V_1 = (bool)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE * _thisAdjusted = reinterpret_cast<ValueTuple_2_t09889C82553E88C15C307F32ADD6F843F46373FE *>(__this + _offset); return ValueTuple_2_ToString_m207E4DAB9960FFAC163D85CC5C9DEF5AAF362CA5(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); int32_t L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, int32_t ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); ValueTuple_2__ctor_m01A747E4A6FE57A5A246C4803561DE7644B51B18(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_Equals_mC0E0EF169EEFCE978973E15496118F268FD7B7C4(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_5 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); int32_t L_6 = (int32_t)__this->get_Item2_1(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_7 = ___other0; int32_t L_8 = (int32_t)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5); bool L_9 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5, (int32_t)L_6, (int32_t)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_Equals_m4E98E6F4F014E56152B81136E075A9F2B903C18F(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; int32_t L_13 = (int32_t)__this->get_Item2_1(); int32_t L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_16 = V_0; int32_t L_17 = (int32_t)L_16.get_Item2_1(); int32_t L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDE6AFED7CE8568585F3AED8965E6A65EC9F6F58F(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = (*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m3DBD252A7E8189E297782943EBFF22D8CDD10135(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); int32_t L_8 = (int32_t)__this->get_Item2_1(); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_9 = ___other0; int32_t L_10 = (int32_t)L_9.get_Item2_1(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7, (int32_t)L_8, (int32_t)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_CompareTo_m9503667F96AB68659F5F02A22F605E6D119DB261(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_2 = (*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E )((*(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; int32_t L_22 = (int32_t)__this->get_Item2_1(); int32_t L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E L_25 = V_0; int32_t L_26 = (int32_t)L_25.get_Item2_1(); int32_t L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m2D2259EB8DB61AEF5EEBC5166DB895566B34763B(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { int32_t* L_5 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { int32_t L_7 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_GetHashCode_mA6135614B9859940CD7271FB53432604650365CA(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015((ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)(ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mB3B15FA05528852EE9B5B36D8506C72719EAF5D2(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; int32_t L_6 = (int32_t)__this->get_Item2_1(); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mC47192BDA9743026746FC39563CA969E14E2A015(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_gshared (ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; int32_t* L_10 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { int32_t L_12 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E * _thisAdjusted = reinterpret_cast<ValueTuple_2_t6E5328CF9F490572344E5992FA01B3256F92075E *>(__this + _offset); return ValueTuple_2_ToString_m4EFB1C580BCE5CF803F0D0AADAC544A2CFDF9F57(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,System.Single>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, int32_t ___item10, float ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); float L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, float ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); ValueTuple_2__ctor_m6EEC45E1FCDD5CF9270F775E4A4B3230AB319640(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)__this, (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA )((*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_Equals_m334A193B0D22DEF9CFA76DB3C7B16F3B3A5D14C1(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * L_5 = (( EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); float L_6 = (float)__this->get_Item2_1(); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_7 = ___other0; float L_8 = (float)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F *)L_5); bool L_9 = VirtFuncInvoker2< bool, float, float >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Single>::Equals(T,T) */, (EqualityComparer_1_t6C59536EBB4DD1217C6DBCECEC22F9F4202F710F *)L_5, (float)L_6, (float)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_Equals_m820B0189E2E441BDFD3558FB9A7E9D28A5F4A2F6(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA )((*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; float L_13 = (float)__this->get_Item2_1(); float L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_16 = V_0; float L_17 = (float)L_16.get_Item2_1(); float L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mE2E934495805C598D1EC50C816B484331507D28F(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_2 = (*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)__this); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)__this, (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA )((*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m2FECDD996EAD04FC870C51800CB34ABB66099738(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * L_7 = (( Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); float L_8 = (float)__this->get_Item2_1(); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_9 = ___other0; float L_10 = (float)L_9.get_Item2_1(); NullCheck((Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, float, float >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Single>::Compare(T,T) */, (Comparer_1_tA1074A33ECE2F467A97020AE25F9A5CFBEB7EACD *)L_7, (float)L_8, (float)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_CompareTo_mD0FDE72B47A73FBFE55131008403BC7C1924BDB3(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_2 = (*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)__this); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA )((*(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; float L_22 = (float)__this->get_Item2_1(); float L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA L_25 = V_0; float L_26 = (float)L_25.get_Item2_1(); float L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m262DCCFF9F1135C06C7C16718085A0402EB00749(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method) { int32_t V_0 = 0; float V_1 = 0.0f; int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; float* G_B7_0 = NULL; int32_t G_B7_1 = 0; float* G_B5_0 = NULL; int32_t G_B5_1 = 0; float* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { float* L_5 = (float*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(float)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { float L_7 = (*(float*)G_B5_0); V_1 = (float)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)(float*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_GetHashCode_m08D8D6E4A419C3F474C4F19E4E502B1870CA32E5(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12((ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)(ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m2A23D6D65F4F5E406D13CD4B9F5FA0F3010797A3(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Single>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; float L_6 = (float)__this->get_Item2_1(); float L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_m64D1918E7B029B3F90B63403EC8D763FF974BE12(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Single>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_gshared (ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; float V_1 = 0.0f; int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; float* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; float* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; float* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; float* L_10 = (float*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(float)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { float L_12 = (*(float*)G_B5_0); V_1 = (float)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010((float*)(float*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA * _thisAdjusted = reinterpret_cast<ValueTuple_2_t63C1B3F8B81B074CB44C8E11D6C03BBCAC5094BA *>(__this + _offset); return ValueTuple_2_ToString_m2AB1B2D8B0225659F1708873C7EE699C42E16544(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, int32_t ___item10, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); ValueTuple_2__ctor_mAEA42F4856C27183AAB62E6D564E2B724FEC63D5(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)__this, (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C )((*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_Equals_m7504A9720327E02A1B57075C1A65321E98EB6996(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B * L_5 = (( EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_6 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )__this->get_Item2_1(); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_7 = ___other0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_8 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B *)L_5); bool L_9 = VirtFuncInvoker2< bool, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 , Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2Int>::Equals(T,T) */, (EqualityComparer_1_tC4034E1B2C8FBB6B7E0BB7A4B52BE9113FCA423B *)L_5, (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_6, (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_Equals_mE891E8D50CFF727A477F9038CFBBB69CE40F1265(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C )((*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_13 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )__this->get_Item2_1(); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_16 = V_0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_17 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_16.get_Item2_1(); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m24DE1A000C2615C211F13116295A81C1B8F05167(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_2 = (*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)__this); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)__this, (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C )((*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m0E202C0BED6B5E040A6837F47333D8A5F0694EBB(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 * L_7 = (( Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_8 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )__this->get_Item2_1(); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_9 = ___other0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_10 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_9.get_Item2_1(); NullCheck((Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 , Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2Int>::Compare(T,T) */, (Comparer_1_t9D36BD54767798CFF478E84BA99EE332A3CD3380 *)L_7, (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_8, (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_CompareTo_m2158222A0D63884258293BCBD5662DC7BD5388A8(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_2 = (*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)__this); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C )((*(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_22 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )__this->get_Item2_1(); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C L_25 = V_0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_26 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_25.get_Item2_1(); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m68762131F7D57C8D4232DF8696D52B683141AE0C(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method) { int32_t V_0 = 0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B7_0 = NULL; int32_t G_B7_1 = 0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B5_0 = NULL; int32_t G_B5_1 = 0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_5 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_7 = (*(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)G_B5_0); V_1 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_GetHashCode_m940561DCC1B36DD9507E3F8BB88B4E8327990C53(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626((ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)(ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m7558BBB0C55ADED773DD93624E9A63FA3F51340B(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_6 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )__this->get_Item2_1(); Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mABF402007F9109F7C7EF1BD0D66144E5300EE626(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,UnityEngine.Vector2Int>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_gshared (ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_10 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_12 = (*(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)G_B5_0); V_1 = (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 )L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Vector2Int_ToString_m7928A3CC56D9CAAB370F6B3EE797CED4BE9B9B20((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C * _thisAdjusted = reinterpret_cast<ValueTuple_2_t7D218C1C568BCCEBA00CE9933D25495FC174B78C *>(__this + _offset); return ValueTuple_2_ToString_mD4DA70B2612F8EE236849CD44E729976FE9308CA(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Int32,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { int32_t L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8_AdjustorThunk (RuntimeObject * __this, int32_t ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); ValueTuple_2__ctor_m272CF7B585B014D57E7914BB7B6CB54E6232B6D8(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)__this, (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 )((*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_Equals_m09FD1475F54FF433B35FA3C48B3500680CABC1DE(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_0 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0); bool L_4 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_0, (int32_t)L_1, (int32_t)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_Equals_m522388DC8C4B0C41B65D7B2F0997AB95BE20A103(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 )((*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; int32_t L_4 = (int32_t)__this->get_Item1_0(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_7 = V_0; int32_t L_8 = (int32_t)L_7.get_Item1_0(); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_14 = V_0; RuntimeObject * L_15 = (RuntimeObject *)L_14.get_Item2_1(); NullCheck((RuntimeObject*)L_12); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m98C40C37B29CDBE13B15095D64F18FD7E9BC0251(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_2 = (*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)__this); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)__this, (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 )((*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_mF033449B159136014D3582C650A0620635F7874F(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_0 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); int32_t L_1 = (int32_t)__this->get_Item1_0(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_2 = ___other0; int32_t L_3 = (int32_t)L_2.get_Item1_0(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_0, (int32_t)L_1, (int32_t)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_CompareTo_m1C926EE4CCC9BB62098BFE3258E06E2B70B0170B(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_2 = (*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)__this); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 )((*(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; int32_t L_11 = (int32_t)__this->get_Item1_0(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_14 = V_0; int32_t L_15 = (int32_t)L_14.get_Item1_0(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; RuntimeObject * L_22 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 L_23 = V_0; RuntimeObject * L_24 = (RuntimeObject *)L_23.get_Item2_1(); NullCheck((RuntimeObject*)L_21); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB6AA4E89AA2AF7700A1522CCFB968C9FEAB964A7(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; RuntimeObject * V_1 = NULL; int32_t* G_B3_0 = NULL; int32_t* G_B1_0 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { int32_t* L_0 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { int32_t L_2 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_GetHashCode_mE92DDD702D8B53C5B6DC57A1F251CBB307488690(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0((ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)(ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m0D16F3F323527C7E3AC92DFB1BA2825830D6C0E6(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Int32,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = (int32_t)__this->get_Item1_0(); int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_5); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_m96727C2CD6A90D9DA3B4E390CEC64A209AC83ED0(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Int32,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_gshared (ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; int32_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; int32_t* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; int32_t* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; int32_t* L_3 = (int32_t*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { int32_t L_5 = (*(int32_t*)G_B1_0); V_0 = (int32_t)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA26D3A4C20B6E6F61C01B309B632FC717E2B9173 *>(__this + _offset); return ValueTuple_2_ToString_m3C88CBC01129BF33E7600536CA16B2B41D79F310(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Object,System.Int32>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___item10, int32_t ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); int32_t L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, int32_t ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); ValueTuple_2__ctor_m952595B933EB872D25BDD85DFFD79A83ABAB15EB(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_Equals_m0BAA603773D94EC9679A1C73D90918402E1B73A7(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_5 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); int32_t L_6 = (int32_t)__this->get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_7 = ___other0; int32_t L_8 = (int32_t)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5); bool L_9 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_5, (int32_t)L_6, (int32_t)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_Equals_mECB76C73628FD35CA528DE90BF19AF2198D7A816(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; int32_t L_9 = (int32_t)__this->get_Item2_1(); int32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_10); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_12 = V_0; int32_t L_13 = (int32_t)L_12.get_Item2_1(); int32_t L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); NullCheck((RuntimeObject*)L_8); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_mDA6C20930E243BEEAB5D106F8013584BA0913064(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_2 = (*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_mC6C398866A9D753D81F9C379C3E3B46EA8107D6F(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_7 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); int32_t L_8 = (int32_t)__this->get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_9 = ___other0; int32_t L_10 = (int32_t)L_9.get_Item2_1(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_7, (int32_t)L_8, (int32_t)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_CompareTo_m2801047313EFF2BCD31850FA1AC85452EED523E3(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_2 = (*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )((*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; int32_t L_18 = (int32_t)__this->get_Item2_1(); int32_t L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_19); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_21 = V_0; int32_t L_22 = (int32_t)L_21.get_Item2_1(); int32_t L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); NullCheck((RuntimeObject*)L_17); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_20, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mD7C8CEB854651AD1C01080B0BBDB98B854E30D51(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; int32_t V_1 = 0; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { int32_t* L_5 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { int32_t L_7 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_GetHashCode_m7720DD69A43F04CC68DFECBB957D7BD12208F5C8(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817((ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m93866C82404479AC16541797EC865A343AB05D4D(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; int32_t L_4 = (int32_t)__this->get_Item2_1(); int32_t L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_5); NullCheck((RuntimeObject*)L_3); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mF78C67C4480E353906D944FE8FFE7C16CA039817(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_gshared (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; int32_t V_1 = 0; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; int32_t* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; int32_t* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; int32_t* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; int32_t* L_10 = (int32_t*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(int32_t)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { int32_t L_12 = (*(int32_t*)G_B5_0); V_1 = (int32_t)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * _thisAdjusted = reinterpret_cast<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *>(__this + _offset); return ValueTuple_2_ToString_mAE90A21343E71F6709C57889EC9439DB499B533B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); ValueTuple_2__ctor_m7200D87E35146B328553F6054EF895C48674919C(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_Equals_mA3C53714A625AFACE3FB4DD96BC84FE564B7D605(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_Equals_m3D1CF9BC52D9D30BBAC81B7D1D92D1717B52C3D4(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_10 = V_0; RuntimeObject * L_11 = (RuntimeObject *)L_10.get_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); return L_12; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m7CCEDF9C2425B7F21E4A75174526F31EE7F06F29(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = (*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m5D3625FD43C4FB881C7AD4FE2D8903C4F01A40A1(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_CompareTo_m894473A95A5BE04AA574654C52387468E5B2BD8E(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_2 = (*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )((*(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; RuntimeObject * L_18 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_19 = V_0; RuntimeObject * L_20 = (RuntimeObject *)L_19.get_Item2_1(); NullCheck((RuntimeObject*)L_17); int32_t L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_18, (RuntimeObject *)L_20); return L_21; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m6DEDA5DBF39F632E019EF24EA6F6F645E3B935AB(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_GetHashCode_m2B7B9218773AF6E5AF8AE2EF061403949671DF16(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27((ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9249874063337840FE1DDBC90F27BB763DF7A465(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); int32_t L_6 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_5, /*hidden argument*/NULL); return L_6; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mC64A9F022779C7922D764A3A663CADA488A85A27(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *>(__this + _offset); return ValueTuple_2_ToString_mCF2014EA5D03C52E7A3D77986363E929B059D8BA(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___item10, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); ValueTuple_2__ctor_mE056997A7B964FEE6F5E66FC716137A9F4B06EBF(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)__this, (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 )((*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_Equals_m52B023D10A9D7D28248312A64D3DBFD7658FAFC6(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 * L_5 = (( EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_6 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )__this->get_Item2_1(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_7 = ___other0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_8 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 *)L_5); bool L_9 = VirtFuncInvoker2< bool, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.ValueTuple`2<System.Object,System.Int32>>::Equals(T,T) */, (EqualityComparer_1_tD08FDD15AF25E1CE7F818C8F8FC9B31911F4FBC1 *)L_5, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_6, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_Equals_mA973927E228446156AA58178E37A895E09B62AA6(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 )((*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_9 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )__this->get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_10); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_12 = V_0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_13 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_12.get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); NullCheck((RuntimeObject*)L_8); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6CC3F8B8961443E6C92A73D1678D8721B0E60312(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_2 = (*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)__this); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)__this, (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 )((*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_mBE8958A9B628A2A916311213CB09710C9FD779FA(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 * L_7 = (( Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_8 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )__this->get_Item2_1(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_9 = ___other0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_10 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_9.get_Item2_1(); NullCheck((Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 , ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.ValueTuple`2<System.Object,System.Int32>>::Compare(T,T) */, (Comparer_1_tC79C66160CE2E355AC57D4471B242F135715F0B3 *)L_7, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_8, (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_CompareTo_m761EC04A48AE479C13B4090FAE8076C56B792CDE(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_2 = (*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)__this); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 )((*(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_18 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )__this->get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_19); ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 L_21 = V_0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_22 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_21.get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); NullCheck((RuntimeObject*)L_17); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_20, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mB61C1E6E185746871DA570EED1A052282DA5A05C(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 V_1; memset((&V_1), 0, sizeof(V_1)); RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B7_0 = NULL; int32_t G_B7_1 = 0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B5_0 = NULL; int32_t G_B5_1 = 0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * L_5 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_7 = (*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)G_B5_0); V_1 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { Il2CppFakeBox<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 > L_9(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), G_B7_0); const VirtualInvokeData& il2cpp_virtual_invoke_data__101 = il2cpp_codegen_get_virtual_invoke_data(2, (&L_9)); int32_t L_10 = (( int32_t (*) (RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__101.methodPtr)((RuntimeObject *)(&L_9), /*hidden argument*/il2cpp_virtual_invoke_data__101.method); *G_B7_0 = L_9.m_Value; G_B8_0 = L_10; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_11 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_GetHashCode_m073795C5B7D14598CAE5DBFFFD66E9F2F52EA898(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD((ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)(ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m9972D620E5FD0F18F24EBF5FE915C3761ED68091(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_4 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )__this->get_Item2_1(); ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_5); NullCheck((RuntimeObject*)L_3); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mBD4F288A41D63B5300C937D4FB32F4A6C58A78AD(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_gshared (ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 V_1; memset((&V_1), 0, sizeof(V_1)); RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 * L_10 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 L_12 = (*(ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 *)G_B5_0); V_1 = (ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 )L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { Il2CppFakeBox<ValueTuple_2_tA372AD60186562EAB001D5060A8DA062D95A5A00 > L_14(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), G_B7_0); const VirtualInvokeData& il2cpp_virtual_invoke_data__128 = il2cpp_codegen_get_virtual_invoke_data(3, (&L_14)); String_t* L_15 = (( String_t* (*) (RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__128.methodPtr)((RuntimeObject *)(&L_14), /*hidden argument*/il2cpp_virtual_invoke_data__128.method); *G_B7_0 = L_14.m_Value; G_B8_0 = L_15; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_17 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_16, /*hidden argument*/NULL); return L_17; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t39C25CAE4F6CA469E896F7BC1066EE78949FD793 *>(__this + _offset); return ValueTuple_2_ToString_m669760CA7764F934C942EB7E765945080420AAD6(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, const RuntimeMethod* method) { { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0 = ___item10; __this->set_Item1_0(L_0); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B_AdjustorThunk (RuntimeObject * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); ValueTuple_2__ctor_m1CD4609B0E5B4CC81118247314E8AAB783480D2B(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)__this, (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC )((*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_Equals_mB35907582FF34F78A5FC2C384127C63D05337A99(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { { EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * L_0 = (( EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_2 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2.get_Item1_0(); NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_0); bool L_4 = VirtFuncInvoker2< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_0, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * L_5 = (( EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_6 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_7 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_5); bool L_9 = VirtFuncInvoker2< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_5, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_6, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_Equals_m85F41B00206BFC2E928FE52A735B946DFC6DDA23(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC )((*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_4 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_7 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7.get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_13 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_16 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_17 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_16.get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); return L_20; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m23EE0C46EBD82F89B1F949B0CDF4191C398443A0(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_2 = (*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)__this); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)__this, (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC )((*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m4F49439D35C0EF7CFBE92FA3ECFD9754EF0044A5(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * L_0 = (( Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_2 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2.get_Item1_0(); NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_0, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * L_7 = (( Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_9 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_10 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_9.get_Item2_1(); NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_7, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_8, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_CompareTo_m7397C91C4E22FE54F157332552006D32D3637034(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_2 = (*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)__this); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC )((*(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_11 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_14 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_15 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_14.get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_22 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC L_25 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_26 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_25.get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mC43F00B723CA710323858F2E82ABDAD2542C6754(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method) { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_0; memset((&V_0), 0, sizeof(V_0)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_1; memset((&V_1), 0, sizeof(V_1)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B3_0 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B1_0 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B2_0 = NULL; int32_t G_B4_0 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B7_0 = NULL; int32_t G_B7_1 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B5_0 = NULL; int32_t G_B5_1 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B1_0); V_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_5 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B5_0); V_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_GetHashCode_mBAEAEF3A0BE0811FCE5BB6CB21A981F4C4AB656D(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D((ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)(ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mF6917852C97EE554024CC4B8BF95293776F31429(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_6 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mAF3011C9CE09786C4179C284C4F93159145D0D7D(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<UnityEngine.Vector4,UnityEngine.Vector4>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_gshared (ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_0; memset((&V_0), 0, sizeof(V_0)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_1; memset((&V_1), 0, sizeof(V_1)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B1_0); V_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_10 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B5_0); V_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC * _thisAdjusted = reinterpret_cast<ValueTuple_2_t2F87B5599F773563698B610E2609393ED8B5F5AC *>(__this + _offset); return ValueTuple_2_ToString_m944FE532546907BC2BC947CEDC9ACBBA8A2266E3(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { { RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79_AdjustorThunk (RuntimeObject * __this, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 ___item10, RuntimeObject * ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); ValueTuple_2__ctor_mA36104AE848C953E4EEBAA67D03A5E4191C3EC79(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)__this, (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D )((*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_Equals_m4EFEE51AEC6B1940AF72B19FD148FED83AC1BAAF(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { { EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 * L_0 = (( EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_1 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )__this->get_Item1_0(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_2 = ___other0; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_3 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_2.get_Item1_0(); NullCheck((EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 , RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData>::Equals(T,T) */, (EqualityComparer_1_tA9237B3EECCCC2BE2CC89E23A37D067DBB5EAE40 *)L_0, (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_1, (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_Equals_m406967C48AC9F099A7BEC9DB5B9691B971BE4C59(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D )((*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_4 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )__this->get_Item1_0(); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_5); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_7 = V_0; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_8 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_7.get_Item1_0(); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_004f; } } { RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_14 = V_0; RuntimeObject * L_15 = (RuntimeObject *)L_14.get_Item2_1(); NullCheck((RuntimeObject*)L_12); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_13, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m682ABE9A64FB6B2FF9A2689DE853D4C38DC22034(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_2 = (*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)__this); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)__this, (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D )((*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m97544389DA0A6853C5C7BF8E3129AF94BC8EE6BF(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 * L_0 = (( Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_1 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )__this->get_Item1_0(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_2 = ___other0; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_3 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_2.get_Item1_0(); NullCheck((Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 , RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Rendering.HighDefinition.HDProbe/RenderData>::Compare(T,T) */, (Comparer_1_t41281F81958B684F21A926DB7A7255215CD79A22 *)L_0, (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_1, (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_CompareTo_mAA76AB718BDC88BDECB82A640F89B58E870B0186(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_2 = (*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)__this); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D )((*(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_11 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )__this->get_Item1_0(); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_12); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_14 = V_0; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_15 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_14.get_Item1_0(); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; RuntimeObject * L_22 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D L_23 = V_0; RuntimeObject * L_24 = (RuntimeObject *)L_23.get_Item2_1(); NullCheck((RuntimeObject*)L_21); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_mABD9410F42625CB949D2585946E00A22C3CA625B(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method) { RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B3_0 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B1_0 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * L_0 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_2 = (*(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)G_B1_0); V_0 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), G_B3_0); NullCheck((RuntimeObject *)L_4); int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_4); *G_B3_0 = *(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)UnBox(L_4); G_B4_0 = L_5; } IL_0035: { RuntimeObject ** L_6 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_7 = V_1; G_B5_0 = L_6; G_B5_1 = G_B4_0; if (L_7) { G_B7_0 = L_6; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_8 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_8; RuntimeObject * L_9 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_9) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_10; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_11 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_GetHashCode_m4F1869955B560A470BF22382807C8F2E4D7AD711(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026((ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)(ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_m89173ACFE58A9A9CEEAF91869DC4C8B5B8D43976(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_1 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )__this->get_Item1_0(); RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_5); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_4, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_m07025B917AABE0CFFE5038FFAE6B8B31396D3026(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<UnityEngine.Rendering.HighDefinition.HDProbe_RenderData,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_gshared (ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 V_0; memset((&V_0), 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 * L_3 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 L_5 = (*(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)G_B1_0); V_0 = (RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 )L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), G_B3_0); NullCheck((RuntimeObject *)L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_7); *G_B3_0 = *(RenderData_t2A12DE797505FCCF6AEC065BC303337F0B17B8D7 *)UnBox(L_7); G_B4_0 = L_8; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_9; RuntimeObject ** L_11 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_12 = V_1; G_B5_0 = L_11; G_B5_1 = 3; G_B5_2 = L_10; G_B5_3 = L_10; if (L_12) { G_B7_0 = L_11; G_B7_1 = 3; G_B7_2 = L_10; G_B7_3 = L_10; goto IL_007a; } } { RuntimeObject * L_13 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_13; RuntimeObject * L_14 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_14) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_15; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_17 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_16, /*hidden argument*/NULL); return L_17; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D * _thisAdjusted = reinterpret_cast<ValueTuple_2_t8A372D7C7F9263F9CC34F33C5B58F3FEC61B028D *>(__this + _offset); return ValueTuple_2_ToString_m2FB934D5343D661D633A6607662FF0FFA2211BF8(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`2<System.Object,System.Boolean>::.ctor(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); bool L_1 = ___item21; __this->set_Item2_1(L_1); return; } } IL2CPP_EXTERN_C void ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); ValueTuple_2__ctor_m8799150AED3E5BAB5F5B5A9ABD61CB021D597B2E(_thisAdjusted, ___item10, ___item21, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_Equals_mE4BCEB7807BDE9F1AF41BD3B363CBB9B789EDCF1(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_002f; } } { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_5 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); bool L_6 = (bool)__this->get_Item2_1(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_7 = ___other0; bool L_8 = (bool)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5); bool L_9 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5, (bool)L_6, (bool)L_8); return L_9; } IL_002f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_Equals_mDCAE0CFCD9B41F9581F177384890CE77B0FD0A0C(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_004f; } } { RuntimeObject* L_8 = ___comparer1; bool L_9 = (bool)__this->get_Item2_1(); bool L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_10); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_12 = V_0; bool L_13 = (bool)L_12.get_Item2_1(); bool L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_14); NullCheck((RuntimeObject*)L_8); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_11, (RuntimeObject *)L_15); return L_16; } IL_004f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_Equals_m6794ABF462564ABD4D55C662553E43FEBA71E64E(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = (*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_System_IComparable_CompareTo_m0704B19C007F31880C0866C144A16A9DB58622C5(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_7 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); bool L_8 = (bool)__this->get_Item2_1(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_9 = ___other0; bool L_10 = (bool)L_9.get_Item2_1(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7, (bool)L_8, (bool)L_10); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D_AdjustorThunk (RuntimeObject * __this, ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_CompareTo_mBFBE9B48A345A7DCE7C4961B0CEA601E8C9B0E4D(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_2 = (*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 )((*(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; bool L_18 = (bool)__this->get_Item2_1(); bool L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_19); ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 L_21 = V_0; bool L_22 = (bool)L_21.get_Item2_1(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_23); NullCheck((RuntimeObject*)L_17); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_20, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralComparable_CompareTo_m4E9B9FFF7913F4856E75A97F1A7754F1ABD0F425(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; bool V_1 = false; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { bool* L_5 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { bool L_7 = (*(bool*)G_B5_0); V_1 = (bool)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t L_10 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)G_B8_1, (int32_t)G_B8_0, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_GetHashCode_mCC2F3E980E6FEC45B9A468946FDEDF44F5A816C5(_thisAdjusted, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD((ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_System_Collections_IStructuralEquatable_GetHashCode_mEB5440FC6147FF36E33BD24A3949D1F4F0389AAD(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`2<System.Object,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; bool L_4 = (bool)__this->get_Item2_1(); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 9), &L_5); NullCheck((RuntimeObject*)L_3); int32_t L_7 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6); int32_t L_8 = ValueTuple_CombineHashCodes_m8DFF92580E749E5A974898EB0828D424C2A251BB((int32_t)L_2, (int32_t)L_7, /*hidden argument*/NULL); return L_8; } } IL2CPP_EXTERN_C int32_t ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_GetHashCodeCore_mAB31381969CCF20C8FD1EFA4C3512B153BB99CCD(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`2<System.Object,System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; bool* L_10 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { bool L_12 = (*(bool*)G_B5_0); V_1 = (bool)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C String_t* ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * _thisAdjusted = reinterpret_cast<ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 *>(__this + _offset); return ValueTuple_2_ToString_m8A3D17EBDEBC136FF2D5AC286F30EDFB1E991561(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); RuntimeObject * L_2 = ___item32; __this->set_Item3_2(L_2); return; } } IL2CPP_EXTERN_C void ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, RuntimeObject * ___item32, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); ValueTuple_3__ctor_m8868D9B867F41FEEDC7C736B39DAB0889188EC78(_thisAdjusted, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this, (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )((*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_Equals_m3C24A212A23EBE783C3B3C61B0F5E45334DF6AB1(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_0047; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); if (!L_9) { goto IL_0047; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_10 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_12 = ___other0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item3_2(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_10); bool L_14 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); return L_14; } IL_0047: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_Equals_mD5979E2C620E3606530CD15B27D8BC4750CD37A5(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )((*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_006d; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_10 = V_0; RuntimeObject * L_11 = (RuntimeObject *)L_10.get_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); if (!L_12) { goto IL_006d; } } { RuntimeObject* L_13 = ___comparer1; RuntimeObject * L_14 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_15 = V_0; RuntimeObject * L_16 = (RuntimeObject *)L_15.get_Item3_2(); NullCheck((RuntimeObject*)L_13); bool L_17 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14, (RuntimeObject *)L_16); return L_17; } IL_006d: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m8D1BD92383DC97A390119BEE2ABAA659470A3252(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_2 = (*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this, (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )((*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_System_IComparable_CompareTo_m565E54913F6D87E2DE47D69286058547E5C28155(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); V_0 = (int32_t)L_11; int32_t L_12 = V_0; if (!L_12) { goto IL_0038; } } { int32_t L_13 = V_0; return L_13; } IL_0038: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_14 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)); RuntimeObject * L_15 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_16 = ___other0; RuntimeObject * L_17 = (RuntimeObject *)L_16.get_Item3_2(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_14); int32_t L_18 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17); return L_18; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_CompareTo_mCEB32C7146D5A53C51A72678D3F152EBB02E0495(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_2 = (*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )((*(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; RuntimeObject * L_18 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_19 = V_0; RuntimeObject * L_20 = (RuntimeObject *)L_19.get_Item2_1(); NullCheck((RuntimeObject*)L_17); int32_t L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_18, (RuntimeObject *)L_20); V_1 = (int32_t)L_21; int32_t L_22 = V_1; if (!L_22) { goto IL_0082; } } { int32_t L_23 = V_1; return L_23; } IL_0082: { RuntimeObject* L_24 = ___comparer1; RuntimeObject * L_25 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_26 = V_0; RuntimeObject * L_27 = (RuntimeObject *)L_26.get_Item3_2(); NullCheck((RuntimeObject*)L_24); int32_t L_28 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_24, (RuntimeObject *)L_25, (RuntimeObject *)L_27); return L_28; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m7233DE35FC3952A4832494EDCA1F3F2681AE09FE(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; RuntimeObject ** G_B11_0 = NULL; int32_t G_B11_1 = 0; int32_t G_B11_2 = 0; RuntimeObject ** G_B9_0 = NULL; int32_t G_B9_1 = 0; int32_t G_B9_2 = 0; RuntimeObject ** G_B10_0 = NULL; int32_t G_B10_1 = 0; int32_t G_B10_2 = 0; int32_t G_B12_0 = 0; int32_t G_B12_1 = 0; int32_t G_B12_2 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_2; G_B9_0 = L_10; G_B9_1 = G_B8_0; G_B9_2 = G_B8_1; if (L_11) { G_B11_0 = L_10; G_B11_1 = G_B8_0; G_B11_2 = G_B8_1; goto IL_0094; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B9_0); V_2 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_2; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; if (L_13) { G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; goto IL_0094; } } { G_B12_0 = 0; G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; goto IL_009f; } IL_0094: { NullCheck((RuntimeObject *)(*G_B11_0)); int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B11_0)); G_B12_0 = L_14; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_009f: { int32_t L_15 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)G_B12_2, (int32_t)G_B12_1, (int32_t)G_B12_0, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_GetHashCode_m7484E3361C746C8B62359592753CDFD38BCC2E38(_thisAdjusted, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4((ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 24)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mD601062CE782B8EDA3A9AEBD2DE16AC0423B61FE(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); RuntimeObject* L_6 = ___comparer0; RuntimeObject * L_7 = (RuntimeObject *)__this->get_Item3_2(); NullCheck((RuntimeObject*)L_6); int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_7); int32_t L_9 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)L_2, (int32_t)L_5, (int32_t)L_8, /*hidden argument*/NULL); return L_9; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_GetHashCodeCore_m67CB7531D334ACBE07696D3CFC5DB57C4738F3C4(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`3<System.Object,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_gshared (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; RuntimeObject ** G_B11_0 = NULL; int32_t G_B11_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_3 = NULL; RuntimeObject ** G_B9_0 = NULL; int32_t G_B9_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_3 = NULL; RuntimeObject ** G_B10_0 = NULL; int32_t G_B10_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_3 = NULL; String_t* G_B12_0 = NULL; int32_t G_B12_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15; RuntimeObject ** L_17 = (RuntimeObject **)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_18 = V_2; G_B9_0 = L_17; G_B9_1 = 5; G_B9_2 = L_16; G_B9_3 = L_16; if (L_18) { G_B11_0 = L_17; G_B11_1 = 5; G_B11_2 = L_16; G_B11_3 = L_16; goto IL_00ba; } } { RuntimeObject * L_19 = (*(RuntimeObject **)G_B9_0); V_2 = (RuntimeObject *)L_19; RuntimeObject * L_20 = V_2; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; G_B10_3 = G_B9_3; if (L_20) { G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; G_B11_3 = G_B9_3; goto IL_00ba; } } { G_B12_0 = ((String_t*)(NULL)); G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; G_B12_3 = G_B10_3; goto IL_00c5; } IL_00ba: { NullCheck((RuntimeObject *)(*G_B11_0)); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B11_0)); G_B12_0 = L_21; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; G_B12_3 = G_B11_3; } IL_00c5: { NullCheck(G_B12_2); ArrayElementTypeCheck (G_B12_2, G_B12_0); (G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (String_t*)G_B12_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B12_3; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_23 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_22, /*hidden argument*/NULL); return L_23; } } IL2CPP_EXTERN_C String_t* ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * _thisAdjusted = reinterpret_cast<ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *>(__this + _offset); return ValueTuple_3_ToString_mE918A7F63C8F4AD1C4BCF5C2F28D048307DBB1BF(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item32, const RuntimeMethod* method) { { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0 = ___item10; __this->set_Item1_0(L_0); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = ___item21; __this->set_Item2_1(L_1); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = ___item32; __this->set_Item3_2(L_2); return; } } IL2CPP_EXTERN_C void ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670_AdjustorThunk (RuntimeObject * __this, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item21, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___item32, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); ValueTuple_3__ctor_mCB5A2C8A72952508684BA5B641486528A773A670(_thisAdjusted, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)__this, (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 )((*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_Equals_m3D96E39FD82E7C0FF90956B59AC55794A1F2D724(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * L_0 = (( EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_2 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2.get_Item1_0(); NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_0); bool L_4 = VirtFuncInvoker2< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_0, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_3); if (!L_4) { goto IL_0047; } } { EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * L_5 = (( EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_6 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_7 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_5); bool L_9 = VirtFuncInvoker2< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_5, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_6, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_8); if (!L_9) { goto IL_0047; } } { EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * L_10 = (( EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_11 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item3_2(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_12 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_13 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_12.get_Item3_2(); NullCheck((EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_10); bool L_14 = VirtFuncInvoker2< bool, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_tF0279A3F5650C6035C7E9ABDE4237DCE38E8507E *)L_10, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_11, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_13); return L_14; } IL_0047: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_Equals_m7F0287ACB5F228FE2C345AC086983A43BEF3B710(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 )((*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_4 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), &L_5); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_7 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7.get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_006d; } } { RuntimeObject* L_12 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_13 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12), &L_14); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_16 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_17 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_16.get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); if (!L_20) { goto IL_006d; } } { RuntimeObject* L_21 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_22 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item3_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_23); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_25 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_26 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_25.get_Item3_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_27); NullCheck((RuntimeObject*)L_21); bool L_29 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); return L_29; } IL_006d: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_Equals_m2B4EB2E18EAA9D66C46192CAFA91BD15AAAEF78E(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_2 = (*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)__this); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)__this, (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 )((*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_System_IComparable_CompareTo_mDCBC6504198CCF4FD5A11911B785F625602F0A5A(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * L_0 = (( Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_2 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2.get_Item1_0(); NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_0, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_1, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * L_7 = (( Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_8 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_9 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_10 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_9.get_Item2_1(); NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_7, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_8, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_10); V_0 = (int32_t)L_11; int32_t L_12 = V_0; if (!L_12) { goto IL_0038; } } { int32_t L_13 = V_0; return L_13; } IL_0038: { Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * L_14 = (( Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_15 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item3_2(); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_16 = ___other0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_17 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_16.get_Item3_2(); NullCheck((Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_14); int32_t L_18 = VirtFuncInvoker2< int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_tDDF07F24B981E579AEB1E2A018BED4F9752478BD *)L_14, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_15, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_17); return L_18; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_CompareTo_m82FF5B1B9AFC3BC475D59DB9BCC3948E8B6737B5(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_2 = (*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)__this); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 )((*(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_11 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), &L_12); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_14 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_15 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_14.get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_22 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12), &L_23); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_25 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_26 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_25.get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); V_1 = (int32_t)L_29; int32_t L_30 = V_1; if (!L_30) { goto IL_0082; } } { int32_t L_31 = V_1; return L_31; } IL_0082: { RuntimeObject* L_32 = ___comparer1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_33 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item3_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_34 = L_33; RuntimeObject * L_35 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_34); ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 L_36 = V_0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_37 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_36.get_Item3_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_38 = L_37; RuntimeObject * L_39 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_38); NullCheck((RuntimeObject*)L_32); int32_t L_40 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_32, (RuntimeObject *)L_35, (RuntimeObject *)L_39); return L_40; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m8F9A1A82E5960A5A167B7B61237919AC9EA86869(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method) { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_0; memset((&V_0), 0, sizeof(V_0)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_1; memset((&V_1), 0, sizeof(V_1)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_2; memset((&V_2), 0, sizeof(V_2)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B3_0 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B1_0 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B2_0 = NULL; int32_t G_B4_0 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B7_0 = NULL; int32_t G_B7_1 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B5_0 = NULL; int32_t G_B5_1 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B11_0 = NULL; int32_t G_B11_1 = 0; int32_t G_B11_2 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B9_0 = NULL; int32_t G_B9_1 = 0; int32_t G_B9_2 = 0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B10_0 = NULL; int32_t G_B10_1 = 0; int32_t G_B10_2 = 0; int32_t G_B12_0 = 0; int32_t G_B12_1 = 0; int32_t G_B12_2 = 0; { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B1_0); V_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_5 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B5_0); V_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_10 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B11_0 = L_10; G_B11_1 = G_B8_0; G_B11_2 = G_B8_1; goto IL_0094; G_B9_0 = L_10; G_B9_1 = G_B8_0; G_B9_2 = G_B8_1; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B9_0); V_2 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_12; G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; goto IL_0094; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; } { G_B12_0 = 0; G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; goto IL_009f; } IL_0094: { int32_t L_14 = Vector4_GetHashCode_mCA7B312F8CA141F6F25BABDDF406F3D2BDD5E895((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B11_0, /*hidden argument*/NULL); G_B12_0 = L_14; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_009f: { int32_t L_15 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)G_B12_2, (int32_t)G_B12_1, (int32_t)G_B12_0, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_GetHashCode_mD7AC1A1D2BFFD62FC7C766D1595076CE613BFC4E(_thisAdjusted, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731((ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)(ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 24)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mBC40DB422DFF4D33476C79DE080198048A6A167F(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item1_0(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_6 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item2_1(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); RuntimeObject* L_10 = ___comparer0; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_11 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )__this->get_Item3_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_12); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13); int32_t L_15 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)L_4, (int32_t)L_9, (int32_t)L_14, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_GetHashCodeCore_m6D7023B397C18B2B04D077227DDC88F0E0282731(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`3<UnityEngine.Vector4,UnityEngine.Vector4,UnityEngine.Vector4>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_gshared (ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_0; memset((&V_0), 0, sizeof(V_0)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_1; memset((&V_1), 0, sizeof(V_1)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 V_2; memset((&V_2), 0, sizeof(V_2)); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B11_0 = NULL; int32_t G_B11_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B9_0 = NULL; int32_t G_B9_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_3 = NULL; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * G_B10_0 = NULL; int32_t G_B10_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_3 = NULL; String_t* G_B12_0 = NULL; int32_t G_B12_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_3 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_5 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B1_0); V_0 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { String_t* L_7 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_10 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B5_0); V_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { String_t* L_14 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * L_17 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )); G_B11_0 = L_17; G_B11_1 = 5; G_B11_2 = L_16; G_B11_3 = L_16; goto IL_00ba; G_B9_0 = L_17; G_B9_1 = 5; G_B9_2 = L_16; G_B9_3 = L_16; } { Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_19 = (*(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B9_0); V_2 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_19; G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; G_B11_3 = G_B9_3; goto IL_00ba; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; G_B10_3 = G_B9_3; } { G_B12_0 = ((String_t*)(NULL)); G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; G_B12_3 = G_B10_3; goto IL_00c5; } IL_00ba: { String_t* L_21 = Vector4_ToString_mF2D17142EBD75E91BC718B3E347F614AC45E9040((Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)G_B11_0, /*hidden argument*/NULL); G_B12_0 = L_21; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; G_B12_3 = G_B11_3; } IL_00c5: { NullCheck(G_B12_2); ArrayElementTypeCheck (G_B12_2, G_B12_0); (G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (String_t*)G_B12_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B12_3; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_23 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_22, /*hidden argument*/NULL); return L_23; } } IL2CPP_EXTERN_C String_t* ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 * _thisAdjusted = reinterpret_cast<ValueTuple_3_t119A9C2BAE92B64219BA73BB34C7AAA6E0716EF5 *>(__this + _offset); return ValueTuple_3_ToString_m2F574559A50EDFB3E99D4CCD1B85A772BB84798F(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`3<System.Object,System.Object,System.Int32>::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___item10; __this->set_Item1_0(L_0); RuntimeObject * L_1 = ___item21; __this->set_Item2_1(L_1); int32_t L_2 = ___item32; __this->set_Item3_2(L_2); return; } } IL2CPP_EXTERN_C void ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, int32_t ___item32, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); ValueTuple_3__ctor_m1BB81B42D7CBF7812BD3F142E0CFF03A4268279A(_thisAdjusted, ___item10, ___item21, ___item32, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)__this, (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )((*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_Equals_m8AB848D8DC2746C210D6ABB7DB92D051E4C3CF6D(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::Equals(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_0 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0); bool L_4 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); if (!L_4) { goto IL_0047; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_5 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); RuntimeObject * L_6 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_7 = ___other0; RuntimeObject * L_8 = (RuntimeObject *)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5); bool L_9 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_8); if (!L_9) { goto IL_0047; } } { EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * L_10 = (( EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); int32_t L_11 = (int32_t)__this->get_Item3_2(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_12 = ___other0; int32_t L_13 = (int32_t)L_12.get_Item3_2(); NullCheck((EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_10); bool L_14 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t20B8E5927E151143D1CBD8554CAF17F0EAC1CF62 *)L_10, (int32_t)L_11, (int32_t)L_13); return L_14; } IL_0047: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_Equals_m8F48C6F107BB08DED3304EAD41FF1DE7956E321E(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )((*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_5 = V_0; RuntimeObject * L_6 = (RuntimeObject *)L_5.get_Item1_0(); NullCheck((RuntimeObject*)L_3); bool L_7 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4, (RuntimeObject *)L_6); if (!L_7) { goto IL_006d; } } { RuntimeObject* L_8 = ___comparer1; RuntimeObject * L_9 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_10 = V_0; RuntimeObject * L_11 = (RuntimeObject *)L_10.get_Item2_1(); NullCheck((RuntimeObject*)L_8); bool L_12 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_11); if (!L_12) { goto IL_006d; } } { RuntimeObject* L_13 = ___comparer1; int32_t L_14 = (int32_t)__this->get_Item3_2(); int32_t L_15 = L_14; RuntimeObject * L_16 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_15); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_17 = V_0; int32_t L_18 = (int32_t)L_17.get_Item3_2(); int32_t L_19 = L_18; RuntimeObject * L_20 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_19); NullCheck((RuntimeObject*)L_13); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_16, (RuntimeObject *)L_20); return L_21; } IL_006d: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_Equals_mF647ECDB1FDC279E451343C4702F1DA4DD597D24(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_2 = (*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)__this); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)__this, (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )((*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_System_IComparable_CompareTo_m7646F0E8B5AE82D52971E07BC80C95250BAB605D(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::CompareTo(System.ValueTuple`3<T1,T2,T3>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_0 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)); RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_2 = ___other0; RuntimeObject * L_3 = (RuntimeObject *)L_2.get_Item1_0(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_7 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); RuntimeObject * L_8 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_9 = ___other0; RuntimeObject * L_10 = (RuntimeObject *)L_9.get_Item2_1(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_7, (RuntimeObject *)L_8, (RuntimeObject *)L_10); V_0 = (int32_t)L_11; int32_t L_12 = V_0; if (!L_12) { goto IL_0038; } } { int32_t L_13 = V_0; return L_13; } IL_0038: { Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_14 = (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 21)); int32_t L_15 = (int32_t)__this->get_Item3_2(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_16 = ___other0; int32_t L_17 = (int32_t)L_16.get_Item3_2(); NullCheck((Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_14); int32_t L_18 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 *)L_14, (int32_t)L_15, (int32_t)L_17); return L_18; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0_AdjustorThunk (RuntimeObject * __this, ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_CompareTo_m6C608A13935B9D8C3CCF311BB83C9413F65FA5A0(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_2 = (*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)__this); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 )((*(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item1_0(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_12 = V_0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item1_0(); NullCheck((RuntimeObject*)L_10); int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); V_1 = (int32_t)L_14; int32_t L_15 = V_1; if (!L_15) { goto IL_0060; } } { int32_t L_16 = V_1; return L_16; } IL_0060: { RuntimeObject* L_17 = ___comparer1; RuntimeObject * L_18 = (RuntimeObject *)__this->get_Item2_1(); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_19 = V_0; RuntimeObject * L_20 = (RuntimeObject *)L_19.get_Item2_1(); NullCheck((RuntimeObject*)L_17); int32_t L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_17, (RuntimeObject *)L_18, (RuntimeObject *)L_20); V_1 = (int32_t)L_21; int32_t L_22 = V_1; if (!L_22) { goto IL_0082; } } { int32_t L_23 = V_1; return L_23; } IL_0082: { RuntimeObject* L_24 = ___comparer1; int32_t L_25 = (int32_t)__this->get_Item3_2(); int32_t L_26 = L_25; RuntimeObject * L_27 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_26); ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 L_28 = V_0; int32_t L_29 = (int32_t)L_28.get_Item3_2(); int32_t L_30 = L_29; RuntimeObject * L_31 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_30); NullCheck((RuntimeObject*)L_24); int32_t L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_24, (RuntimeObject *)L_27, (RuntimeObject *)L_31); return L_32; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralComparable_CompareTo_m6E273C1D43F95C69529F2C4640BAD52D563DF967(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; RuntimeObject ** G_B3_0 = NULL; RuntimeObject ** G_B1_0 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B4_0 = 0; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; int32_t* G_B11_0 = NULL; int32_t G_B11_1 = 0; int32_t G_B11_2 = 0; int32_t* G_B9_0 = NULL; int32_t G_B9_1 = 0; int32_t G_B9_2 = 0; int32_t* G_B10_0 = NULL; int32_t G_B10_1 = 0; int32_t G_B10_2 = 0; int32_t G_B12_0 = 0; int32_t G_B12_1 = 0; int32_t G_B12_2 = 0; { RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_1 = V_0; G_B1_0 = L_0; if (L_1) { G_B3_0 = L_0; goto IL_002a; } } { RuntimeObject * L_2 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_2; RuntimeObject * L_3 = V_0; G_B2_0 = (&V_0); if (L_3) { G_B3_0 = (&V_0); goto IL_002a; } } { G_B4_0 = 0; goto IL_0035; } IL_002a: { NullCheck((RuntimeObject *)(*G_B3_0)); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_4; } IL_0035: { RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_6 = V_1; G_B5_0 = L_5; G_B5_1 = G_B4_0; if (L_6) { G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; } } { RuntimeObject * L_7 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_7; RuntimeObject * L_8 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; if (L_8) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; } } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { NullCheck((RuntimeObject *)(*G_B7_0)); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { int32_t* L_10 = (int32_t*)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(int32_t)); G_B11_0 = L_10; G_B11_1 = G_B8_0; G_B11_2 = G_B8_1; goto IL_0094; G_B9_0 = L_10; G_B9_1 = G_B8_0; G_B9_2 = G_B8_1; } { int32_t L_12 = (*(int32_t*)G_B9_0); V_2 = (int32_t)L_12; G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; goto IL_0094; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; } { G_B12_0 = 0; G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; goto IL_009f; } IL_0094: { int32_t L_14 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)G_B11_0, /*hidden argument*/NULL); G_B12_0 = L_14; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_009f: { int32_t L_15 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)G_B12_2, (int32_t)G_B12_1, (int32_t)G_B12_0, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_GetHashCode_mC03DE90C55D9103CF566DC53E4651604A07C1973(_thisAdjusted, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3((ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)(ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 24)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_System_Collections_IStructuralEquatable_GetHashCode_mDE56BB2CB269CB37F4C241E70D2C6BE6F3FE3AA9(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`3<System.Object,System.Object,System.Int32>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; RuntimeObject * L_1 = (RuntimeObject *)__this->get_Item1_0(); NullCheck((RuntimeObject*)L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_1); RuntimeObject* L_3 = ___comparer0; RuntimeObject * L_4 = (RuntimeObject *)__this->get_Item2_1(); NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_4); RuntimeObject* L_6 = ___comparer0; int32_t L_7 = (int32_t)__this->get_Item3_2(); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 13), &L_8); NullCheck((RuntimeObject*)L_6); int32_t L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_6, (RuntimeObject *)L_9); int32_t L_11 = ValueTuple_CombineHashCodes_m6D3138F0BA3D04CA1B640620E47716F05EB2DEBE((int32_t)L_2, (int32_t)L_5, (int32_t)L_10, /*hidden argument*/NULL); return L_11; } } IL2CPP_EXTERN_C int32_t ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_GetHashCodeCore_m3C0C987C73AFBF5849DA005E4DBE43918A9B53A3(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`3<System.Object,System.Object,System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_gshared (ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; RuntimeObject ** G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; RuntimeObject ** G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; RuntimeObject ** G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; RuntimeObject ** G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; RuntimeObject ** G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; RuntimeObject ** G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; int32_t* G_B11_0 = NULL; int32_t G_B11_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_3 = NULL; int32_t* G_B9_0 = NULL; int32_t G_B9_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_3 = NULL; int32_t* G_B10_0 = NULL; int32_t G_B10_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_3 = NULL; String_t* G_B12_0 = NULL; int32_t G_B12_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_4 = V_0; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; if (L_4) { G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003a; } } { RuntimeObject * L_5 = (*(RuntimeObject **)G_B1_0); V_0 = (RuntimeObject *)L_5; RuntimeObject * L_6 = V_0; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; if (L_6) { G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003a; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0045; } IL_003a: { NullCheck((RuntimeObject *)(*G_B3_0)); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B3_0)); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0045: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_1; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; if (L_11) { G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007a; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B5_0); V_1 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_1; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; if (L_13) { G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007a; } } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0085; } IL_007a: { NullCheck((RuntimeObject *)(*G_B7_0)); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B7_0)); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0085: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15; int32_t* L_17 = (int32_t*)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(int32_t)); G_B11_0 = L_17; G_B11_1 = 5; G_B11_2 = L_16; G_B11_3 = L_16; goto IL_00ba; G_B9_0 = L_17; G_B9_1 = 5; G_B9_2 = L_16; G_B9_3 = L_16; } { int32_t L_19 = (*(int32_t*)G_B9_0); V_2 = (int32_t)L_19; G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; G_B11_3 = G_B9_3; goto IL_00ba; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; G_B10_3 = G_B9_3; } { G_B12_0 = ((String_t*)(NULL)); G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; G_B12_3 = G_B10_3; goto IL_00c5; } IL_00ba: { String_t* L_21 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(int32_t*)G_B11_0, /*hidden argument*/NULL); G_B12_0 = L_21; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; G_B12_3 = G_B11_3; } IL_00c5: { NullCheck(G_B12_2); ArrayElementTypeCheck (G_B12_2, G_B12_0); (G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (String_t*)G_B12_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B12_3; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_23 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_22, /*hidden argument*/NULL); return L_23; } } IL2CPP_EXTERN_C String_t* ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 * _thisAdjusted = reinterpret_cast<ValueTuple_3_tA2BBCCC52DFBFFE7F17F71793C91A129BC51EAC8 *>(__this + _offset); return ValueTuple_3_ToString_m2A3935AB44E9DA00F7B0DA57F64C4C5C9B38E5A3(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::.ctor(T1,T2,T3,T4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, bool ___item10, bool ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method) { { bool L_0 = ___item10; __this->set_Item1_0(L_0); bool L_1 = ___item21; __this->set_Item2_1(L_1); RuntimeObject * L_2 = ___item32; __this->set_Item3_2(L_2); RuntimeObject * L_3 = ___item43; __this->set_Item4_3(L_3); return; } } IL2CPP_EXTERN_C void ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6_AdjustorThunk (RuntimeObject * __this, bool ___item10, bool ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); ValueTuple_4__ctor_m4205B244CE73D5066CE5138BF6553D6FDD6CF3E6(_thisAdjusted, ___item10, ___item21, ___item32, ___item43, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)__this, (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC )((*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)UnBox(L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_Equals_mE4BD4779E6DB40CFDC7F204ADA9D72206B939C5A(_thisAdjusted, ___obj0, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::Equals(System.ValueTuple`4<T1,T2,T3,T4>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_0 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); bool L_1 = (bool)__this->get_Item1_0(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_2 = ___other0; bool L_3 = (bool)L_2.get_Item1_0(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_0); bool L_4 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_0, (bool)L_1, (bool)L_3); if (!L_4) { goto IL_005f; } } { EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * L_5 = (( EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); bool L_6 = (bool)__this->get_Item2_1(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_7 = ___other0; bool L_8 = (bool)L_7.get_Item2_1(); NullCheck((EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5); bool L_9 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_tA00ECA27EEC6CA6AADD7F115EB7E6A654C8E96E7 *)L_5, (bool)L_6, (bool)L_8); if (!L_9) { goto IL_005f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_10 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)); RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_12 = ___other0; RuntimeObject * L_13 = (RuntimeObject *)L_12.get_Item3_2(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_10); bool L_14 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_10, (RuntimeObject *)L_11, (RuntimeObject *)L_13); if (!L_14) { goto IL_005f; } } { EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * L_15 = (( EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)); RuntimeObject * L_16 = (RuntimeObject *)__this->get_Item4_3(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_17 = ___other0; RuntimeObject * L_18 = (RuntimeObject *)L_17.get_Item4_3(); NullCheck((EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_15); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t469B0BBE7B6765C576211BEF8F2803A5AD411A20 *)L_15, (RuntimeObject *)L_16, (RuntimeObject *)L_18); return L_19; } IL_005f: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F_AdjustorThunk (RuntimeObject * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_Equals_m1ED7B48D243A1A11B0BC965F85AE9DF2D779455F(_thisAdjusted, ___other0, method); } // System.Boolean System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject * L_0 = ___other0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_000d; } } IL_000b: { return (bool)0; } IL_000d: { RuntimeObject * L_2 = ___other0; V_0 = (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC )((*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_3 = ___comparer1; bool L_4 = (bool)__this->get_Item1_0(); bool L_5 = L_4; RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14), &L_5); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_7 = V_0; bool L_8 = (bool)L_7.get_Item1_0(); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14), &L_9); NullCheck((RuntimeObject*)L_3); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_10); if (!L_11) { goto IL_008b; } } { RuntimeObject* L_12 = ___comparer1; bool L_13 = (bool)__this->get_Item2_1(); bool L_14 = L_13; RuntimeObject * L_15 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15), &L_14); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_16 = V_0; bool L_17 = (bool)L_16.get_Item2_1(); bool L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15), &L_18); NullCheck((RuntimeObject*)L_12); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (RuntimeObject *)L_15, (RuntimeObject *)L_19); if (!L_20) { goto IL_008b; } } { RuntimeObject* L_21 = ___comparer1; RuntimeObject * L_22 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_23 = V_0; RuntimeObject * L_24 = (RuntimeObject *)L_23.get_Item3_2(); NullCheck((RuntimeObject*)L_21); bool L_25 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); if (!L_25) { goto IL_008b; } } { RuntimeObject* L_26 = ___comparer1; RuntimeObject * L_27 = (RuntimeObject *)__this->get_Item4_3(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_28 = V_0; RuntimeObject * L_29 = (RuntimeObject *)L_28.get_Item4_3(); NullCheck((RuntimeObject*)L_26); bool L_30 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_26, (RuntimeObject *)L_27, (RuntimeObject *)L_29); return L_30; } IL_008b: { return (bool)0; } } IL2CPP_EXTERN_C bool ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_System_Collections_IStructuralEquatable_Equals_m29DAD59534F5332085C00E5E39E147E47FB3C53C(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_2 = (*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)__this); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; int32_t L_10 = ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)__this, (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC )((*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); return L_10; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_System_IComparable_CompareTo_m8078752F6BCD82EE8E5C198918024A7D473B38E4(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::CompareTo(System.ValueTuple`4<T1,T2,T3,T4>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { int32_t V_0 = 0; { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_0 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 19)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 19)); bool L_1 = (bool)__this->get_Item1_0(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_2 = ___other0; bool L_3 = (bool)L_2.get_Item1_0(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_0); int32_t L_4 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_0, (bool)L_1, (bool)L_3); V_0 = (int32_t)L_4; int32_t L_5 = V_0; if (!L_5) { goto IL_001c; } } { int32_t L_6 = V_0; return L_6; } IL_001c: { Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * L_7 = (( Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 22)); bool L_8 = (bool)__this->get_Item2_1(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_9 = ___other0; bool L_10 = (bool)L_9.get_Item2_1(); NullCheck((Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7); int32_t L_11 = VirtFuncInvoker2< int32_t, bool, bool >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::Compare(T,T) */, (Comparer_1_tC0B38F30FEF4F46666AA129BB9DBBD166FF98149 *)L_7, (bool)L_8, (bool)L_10); V_0 = (int32_t)L_11; int32_t L_12 = V_0; if (!L_12) { goto IL_0038; } } { int32_t L_13 = V_0; return L_13; } IL_0038: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_14 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 25)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 25)); RuntimeObject * L_15 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_16 = ___other0; RuntimeObject * L_17 = (RuntimeObject *)L_16.get_Item3_2(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_14); int32_t L_18 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_14, (RuntimeObject *)L_15, (RuntimeObject *)L_17); V_0 = (int32_t)L_18; int32_t L_19 = V_0; if (!L_19) { goto IL_0054; } } { int32_t L_20 = V_0; return L_20; } IL_0054: { Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * L_21 = (( Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 28)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 28)); RuntimeObject * L_22 = (RuntimeObject *)__this->get_Item4_3(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_23 = ___other0; RuntimeObject * L_24 = (RuntimeObject *)L_23.get_Item4_3(); NullCheck((Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_21); int32_t L_25 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t33EA2A3D50A5D04C1A23DFF361A0AAD011657B84 *)L_21, (RuntimeObject *)L_22, (RuntimeObject *)L_24); return L_25; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F_AdjustorThunk (RuntimeObject * __this, ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC ___other0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_CompareTo_m8E60E1CEBC266D4E0888135F8A7014A0D4A0736F(_thisAdjusted, ___other0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0037; } } { ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_2 = (*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)__this); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_3); NullCheck((RuntimeObject *)L_4); Type_t * L_5 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)L_4, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_5); String_t* L_7 = SR_Format_m942E78AC3ABE13F58075ED90094D6074CA5A7DC8((String_t*)_stringLiteral1459AD7D3E0F8808A85528961118835E18AD1F96, (RuntimeObject *)L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, (String_t*)L_7, (String_t*)_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_RuntimeMethod_var); } IL_0037: { RuntimeObject * L_9 = ___other0; V_0 = (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC )((*(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)UnBox(L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0))))); RuntimeObject* L_10 = ___comparer1; bool L_11 = (bool)__this->get_Item1_0(); bool L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14), &L_12); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_14 = V_0; bool L_15 = (bool)L_14.get_Item1_0(); bool L_16 = L_15; RuntimeObject * L_17 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14), &L_16); NullCheck((RuntimeObject*)L_10); int32_t L_18 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_13, (RuntimeObject *)L_17); V_1 = (int32_t)L_18; int32_t L_19 = V_1; if (!L_19) { goto IL_0060; } } { int32_t L_20 = V_1; return L_20; } IL_0060: { RuntimeObject* L_21 = ___comparer1; bool L_22 = (bool)__this->get_Item2_1(); bool L_23 = L_22; RuntimeObject * L_24 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15), &L_23); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_25 = V_0; bool L_26 = (bool)L_25.get_Item2_1(); bool L_27 = L_26; RuntimeObject * L_28 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15), &L_27); NullCheck((RuntimeObject*)L_21); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_21, (RuntimeObject *)L_24, (RuntimeObject *)L_28); V_1 = (int32_t)L_29; int32_t L_30 = V_1; if (!L_30) { goto IL_0082; } } { int32_t L_31 = V_1; return L_31; } IL_0082: { RuntimeObject* L_32 = ___comparer1; RuntimeObject * L_33 = (RuntimeObject *)__this->get_Item3_2(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_34 = V_0; RuntimeObject * L_35 = (RuntimeObject *)L_34.get_Item3_2(); NullCheck((RuntimeObject*)L_32); int32_t L_36 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_32, (RuntimeObject *)L_33, (RuntimeObject *)L_35); V_1 = (int32_t)L_36; int32_t L_37 = V_1; if (!L_37) { goto IL_00a4; } } { int32_t L_38 = V_1; return L_38; } IL_00a4: { RuntimeObject* L_39 = ___comparer1; RuntimeObject * L_40 = (RuntimeObject *)__this->get_Item4_3(); ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC L_41 = V_0; RuntimeObject * L_42 = (RuntimeObject *)L_41.get_Item4_3(); NullCheck((RuntimeObject*)L_39); int32_t L_43 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, (RuntimeObject*)L_39, (RuntimeObject *)L_40, (RuntimeObject *)L_42); return L_43; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_System_Collections_IStructuralComparable_CompareTo_mD8A40F2489073DE50DA35575816FC5C7DFF97821(_thisAdjusted, ___other0, ___comparer1, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method) { bool V_0 = false; bool V_1 = false; RuntimeObject * V_2 = NULL; RuntimeObject * V_3 = NULL; bool* G_B3_0 = NULL; bool* G_B1_0 = NULL; bool* G_B2_0 = NULL; int32_t G_B4_0 = 0; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B8_1 = 0; RuntimeObject ** G_B11_0 = NULL; int32_t G_B11_1 = 0; int32_t G_B11_2 = 0; RuntimeObject ** G_B9_0 = NULL; int32_t G_B9_1 = 0; int32_t G_B9_2 = 0; RuntimeObject ** G_B10_0 = NULL; int32_t G_B10_1 = 0; int32_t G_B10_2 = 0; int32_t G_B12_0 = 0; int32_t G_B12_1 = 0; int32_t G_B12_2 = 0; RuntimeObject ** G_B15_0 = NULL; int32_t G_B15_1 = 0; int32_t G_B15_2 = 0; int32_t G_B15_3 = 0; RuntimeObject ** G_B13_0 = NULL; int32_t G_B13_1 = 0; int32_t G_B13_2 = 0; int32_t G_B13_3 = 0; RuntimeObject ** G_B14_0 = NULL; int32_t G_B14_1 = 0; int32_t G_B14_2 = 0; int32_t G_B14_3 = 0; int32_t G_B16_0 = 0; int32_t G_B16_1 = 0; int32_t G_B16_2 = 0; int32_t G_B16_3 = 0; { bool* L_0 = (bool*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(bool)); G_B3_0 = L_0; goto IL_002a; G_B1_0 = L_0; } { bool L_2 = (*(bool*)G_B1_0); V_0 = (bool)L_2; G_B3_0 = (&V_0); goto IL_002a; G_B2_0 = (&V_0); } { G_B4_0 = 0; goto IL_0035; } IL_002a: { int32_t L_4 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_4; } IL_0035: { bool* L_5 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_5; G_B7_1 = G_B4_0; goto IL_005f; G_B5_0 = L_5; G_B5_1 = G_B4_0; } { bool L_7 = (*(bool*)G_B5_0); V_1 = (bool)L_7; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; goto IL_005f; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; } { G_B8_0 = 0; G_B8_1 = G_B6_1; goto IL_006a; } IL_005f: { int32_t L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_9; G_B8_1 = G_B7_1; } IL_006a: { RuntimeObject ** L_10 = (RuntimeObject **)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_11 = V_2; G_B9_0 = L_10; G_B9_1 = G_B8_0; G_B9_2 = G_B8_1; if (L_11) { G_B11_0 = L_10; G_B11_1 = G_B8_0; G_B11_2 = G_B8_1; goto IL_0094; } } { RuntimeObject * L_12 = (*(RuntimeObject **)G_B9_0); V_2 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_2; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; if (L_13) { G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; goto IL_0094; } } { G_B12_0 = 0; G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; goto IL_009f; } IL_0094: { NullCheck((RuntimeObject *)(*G_B11_0)); int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B11_0)); G_B12_0 = L_14; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_009f: { RuntimeObject ** L_15 = (RuntimeObject **)__this->get_address_of_Item4_3(); il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *)); RuntimeObject * L_16 = V_3; G_B13_0 = L_15; G_B13_1 = G_B12_0; G_B13_2 = G_B12_1; G_B13_3 = G_B12_2; if (L_16) { G_B15_0 = L_15; G_B15_1 = G_B12_0; G_B15_2 = G_B12_1; G_B15_3 = G_B12_2; goto IL_00c9; } } { RuntimeObject * L_17 = (*(RuntimeObject **)G_B13_0); V_3 = (RuntimeObject *)L_17; RuntimeObject * L_18 = V_3; G_B14_0 = (&V_3); G_B14_1 = G_B13_1; G_B14_2 = G_B13_2; G_B14_3 = G_B13_3; if (L_18) { G_B15_0 = (&V_3); G_B15_1 = G_B13_1; G_B15_2 = G_B13_2; G_B15_3 = G_B13_3; goto IL_00c9; } } { G_B16_0 = 0; G_B16_1 = G_B14_1; G_B16_2 = G_B14_2; G_B16_3 = G_B14_3; goto IL_00d4; } IL_00c9: { NullCheck((RuntimeObject *)(*G_B15_0)); int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(*G_B15_0)); G_B16_0 = L_19; G_B16_1 = G_B15_1; G_B16_2 = G_B15_2; G_B16_3 = G_B15_3; } IL_00d4: { int32_t L_20 = ValueTuple_CombineHashCodes_mEA32AD08CEAD750BAC3650A78417195804185047((int32_t)G_B16_3, (int32_t)G_B16_2, (int32_t)G_B16_1, (int32_t)G_B16_0, /*hidden argument*/NULL); return L_20; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_GetHashCode_m67282AFBB683D47A155B9FE3F058FD33D552C664(_thisAdjusted, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; int32_t L_1 = ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94((ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 31)); return L_1; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_System_Collections_IStructuralEquatable_GetHashCode_m6C379D7DFE078980A6C05B6A5612110EE5AF1C82(_thisAdjusted, ___comparer0, method); } // System.Int32 System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer0; bool L_1 = (bool)__this->get_Item1_0(); bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14), &L_2); NullCheck((RuntimeObject*)L_0); int32_t L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (RuntimeObject *)L_3); RuntimeObject* L_5 = ___comparer0; bool L_6 = (bool)__this->get_Item2_1(); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15), &L_7); NullCheck((RuntimeObject*)L_5); int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_5, (RuntimeObject *)L_8); RuntimeObject* L_10 = ___comparer0; RuntimeObject * L_11 = (RuntimeObject *)__this->get_Item3_2(); NullCheck((RuntimeObject*)L_10); int32_t L_12 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_10, (RuntimeObject *)L_11); RuntimeObject* L_13 = ___comparer0; RuntimeObject * L_14 = (RuntimeObject *)__this->get_Item4_3(); NullCheck((RuntimeObject*)L_13); int32_t L_15 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68_il2cpp_TypeInfo_var, (RuntimeObject*)L_13, (RuntimeObject *)L_14); int32_t L_16 = ValueTuple_CombineHashCodes_mEA32AD08CEAD750BAC3650A78417195804185047((int32_t)L_4, (int32_t)L_9, (int32_t)L_12, (int32_t)L_15, /*hidden argument*/NULL); return L_16; } } IL2CPP_EXTERN_C int32_t ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_GetHashCodeCore_m4E8073FABD1096F198C7827C4E0B1737A6EE9B94(_thisAdjusted, ___comparer0, method); } // System.String System.ValueTuple`4<System.Boolean,System.Boolean,System.Object,System.Object>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; RuntimeObject * V_2 = NULL; RuntimeObject * V_3 = NULL; bool* G_B3_0 = NULL; int32_t G_B3_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL; bool* G_B1_0 = NULL; int32_t G_B1_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B1_3 = NULL; bool* G_B2_0 = NULL; int32_t G_B2_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL; String_t* G_B4_0 = NULL; int32_t G_B4_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL; bool* G_B7_0 = NULL; int32_t G_B7_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B7_3 = NULL; bool* G_B5_0 = NULL; int32_t G_B5_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_3 = NULL; bool* G_B6_0 = NULL; int32_t G_B6_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_3 = NULL; String_t* G_B8_0 = NULL; int32_t G_B8_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B8_3 = NULL; RuntimeObject ** G_B11_0 = NULL; int32_t G_B11_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B11_3 = NULL; RuntimeObject ** G_B9_0 = NULL; int32_t G_B9_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B9_3 = NULL; RuntimeObject ** G_B10_0 = NULL; int32_t G_B10_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B10_3 = NULL; String_t* G_B12_0 = NULL; int32_t G_B12_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B12_3 = NULL; RuntimeObject ** G_B15_0 = NULL; int32_t G_B15_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B15_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B15_3 = NULL; RuntimeObject ** G_B13_0 = NULL; int32_t G_B13_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B13_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B13_3 = NULL; RuntimeObject ** G_B14_0 = NULL; int32_t G_B14_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B14_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B14_3 = NULL; String_t* G_B16_0 = NULL; int32_t G_B16_1 = 0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B16_2 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B16_3 = NULL; { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_1; bool* L_3 = (bool*)__this->get_address_of_Item1_0(); il2cpp_codegen_initobj((&V_0), sizeof(bool)); G_B3_0 = L_3; G_B3_1 = 1; G_B3_2 = L_2; G_B3_3 = L_2; goto IL_003b; G_B1_0 = L_3; G_B1_1 = 1; G_B1_2 = L_2; G_B1_3 = L_2; } { bool L_5 = (*(bool*)G_B1_0); V_0 = (bool)L_5; G_B3_0 = (&V_0); G_B3_1 = G_B1_1; G_B3_2 = G_B1_2; G_B3_3 = G_B1_3; goto IL_003b; G_B2_0 = (&V_0); G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; G_B2_3 = G_B1_3; } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; G_B4_2 = G_B2_2; G_B4_3 = G_B2_3; goto IL_0046; } IL_003b: { String_t* L_7 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B3_0, /*hidden argument*/NULL); G_B4_0 = L_7; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; G_B4_3 = G_B3_3; } IL_0046: { NullCheck(G_B4_2); ArrayElementTypeCheck (G_B4_2, G_B4_0); (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B4_3; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_8; bool* L_10 = (bool*)__this->get_address_of_Item2_1(); il2cpp_codegen_initobj((&V_1), sizeof(bool)); G_B7_0 = L_10; G_B7_1 = 3; G_B7_2 = L_9; G_B7_3 = L_9; goto IL_007b; G_B5_0 = L_10; G_B5_1 = 3; G_B5_2 = L_9; G_B5_3 = L_9; } { bool L_12 = (*(bool*)G_B5_0); V_1 = (bool)L_12; G_B7_0 = (&V_1); G_B7_1 = G_B5_1; G_B7_2 = G_B5_2; G_B7_3 = G_B5_3; goto IL_007b; G_B6_0 = (&V_1); G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; G_B6_3 = G_B5_3; } { G_B8_0 = ((String_t*)(NULL)); G_B8_1 = G_B6_1; G_B8_2 = G_B6_2; G_B8_3 = G_B6_3; goto IL_0086; } IL_007b: { String_t* L_14 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(bool*)G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_14; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; G_B8_3 = G_B7_3; } IL_0086: { NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, G_B8_0); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B8_3; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_15; RuntimeObject ** L_17 = (RuntimeObject **)__this->get_address_of_Item3_2(); il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_18 = V_2; G_B9_0 = L_17; G_B9_1 = 5; G_B9_2 = L_16; G_B9_3 = L_16; if (L_18) { G_B11_0 = L_17; G_B11_1 = 5; G_B11_2 = L_16; G_B11_3 = L_16; goto IL_00bb; } } { RuntimeObject * L_19 = (*(RuntimeObject **)G_B9_0); V_2 = (RuntimeObject *)L_19; RuntimeObject * L_20 = V_2; G_B10_0 = (&V_2); G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; G_B10_3 = G_B9_3; if (L_20) { G_B11_0 = (&V_2); G_B11_1 = G_B9_1; G_B11_2 = G_B9_2; G_B11_3 = G_B9_3; goto IL_00bb; } } { G_B12_0 = ((String_t*)(NULL)); G_B12_1 = G_B10_1; G_B12_2 = G_B10_2; G_B12_3 = G_B10_3; goto IL_00c6; } IL_00bb: { NullCheck((RuntimeObject *)(*G_B11_0)); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B11_0)); G_B12_0 = L_21; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; G_B12_3 = G_B11_3; } IL_00c6: { NullCheck(G_B12_2); ArrayElementTypeCheck (G_B12_2, G_B12_0); (G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (String_t*)G_B12_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B12_3; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_22; RuntimeObject ** L_24 = (RuntimeObject **)__this->get_address_of_Item4_3(); il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *)); RuntimeObject * L_25 = V_3; G_B13_0 = L_24; G_B13_1 = 7; G_B13_2 = L_23; G_B13_3 = L_23; if (L_25) { G_B15_0 = L_24; G_B15_1 = 7; G_B15_2 = L_23; G_B15_3 = L_23; goto IL_00fb; } } { RuntimeObject * L_26 = (*(RuntimeObject **)G_B13_0); V_3 = (RuntimeObject *)L_26; RuntimeObject * L_27 = V_3; G_B14_0 = (&V_3); G_B14_1 = G_B13_1; G_B14_2 = G_B13_2; G_B14_3 = G_B13_3; if (L_27) { G_B15_0 = (&V_3); G_B15_1 = G_B13_1; G_B15_2 = G_B13_2; G_B15_3 = G_B13_3; goto IL_00fb; } } { G_B16_0 = ((String_t*)(NULL)); G_B16_1 = G_B14_1; G_B16_2 = G_B14_2; G_B16_3 = G_B14_3; goto IL_0106; } IL_00fb: { NullCheck((RuntimeObject *)(*G_B15_0)); String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(*G_B15_0)); G_B16_0 = L_28; G_B16_1 = G_B15_1; G_B16_2 = G_B15_2; G_B16_3 = G_B15_3; } IL_0106: { NullCheck(G_B16_2); ArrayElementTypeCheck (G_B16_2, G_B16_0); (G_B16_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B16_1), (String_t*)G_B16_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)G_B16_3; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_30 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)L_29, /*hidden argument*/NULL); return L_30; } } IL2CPP_EXTERN_C String_t* ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * _thisAdjusted = reinterpret_cast<ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC *>(__this + _offset); return ValueTuple_4_ToString_m9782F34DDACB2D2FB35B1F47DD65BB3FB5D15C87(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif
6b163da3060ec1cd570012d02b35904f7763bb07
2ebd4553d638cedd3d53b6526aba154ec06fb660
/SLCUPC-OJ/1181【二维数组】青年歌手大奖赛_评委会打分.cpp
7a5d7caa5860a41acd00a48c352220ed0b25428a
[]
no_license
dongxiaorui/OJ
7680942cdb19ff6ed859d5fcd99e2d230f236c71
8daeea2af1a9fe891aeb71e1392164305034a67f
refs/heads/master
2020-06-04T07:09:17.796361
2019-06-14T10:00:14
2019-06-14T10:00:14
191,917,724
0
0
null
null
null
null
UTF-8
C++
false
false
290
cpp
1181【二维数组】青年歌手大奖赛_评委会打分.cpp
#include<stdio.h> int main(){ int num,n,sum,max,min; while(scanf("%d",&num)!=EOF){ sum=0,max=0,min=9999; for(int i=0;i<num;i++){ scanf("%d",&n); sum+=n; max=max>n?max:n; min=min>n?n:min; } printf("%.2lf\n",1.0*(sum-max-min)/(num-2)); } return 0; }
24a0458ae9e5bcd5cd3a4aa9deaeb9fb4c2a7197
0149ed842327e3133fc2fe7b49d6ee2e27c22021
/level_zero/tools/source/sysman/pci/windows/os_pci_imp.cpp
2035afc57394529636f39b784ed7b042e63f1995
[ "MIT" ]
permissive
intel/compute-runtime
17f1c3dd3e1120895c6217b1e6c311d88a09902e
869e3ec9f83a79ca4ac43a18d21847183c63e037
refs/heads/master
2023-09-03T07:28:16.591743
2023-09-02T02:04:35
2023-09-02T02:24:33
105,299,354
1,027
262
MIT
2023-08-25T11:06:41
2017-09-29T17:26:43
C++
UTF-8
C++
false
false
8,025
cpp
os_pci_imp.cpp
/* * Copyright (C) 2020-2023 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "level_zero/tools/source/sysman/pci/windows/os_pci_imp.h" #include "shared/source/memory_manager/memory_manager.h" #include "level_zero/core/source/device/device.h" #include "level_zero/core/source/driver/driver_handle.h" #include "level_zero/tools/source/sysman/windows/kmd_sys_manager.h" #include "level_zero/tools/source/sysman/windows/os_sysman_imp.h" namespace L0 { ze_result_t WddmPciImp::getProperties(zes_pci_properties_t *properties) { properties->haveBandwidthCounters = false; properties->havePacketCounters = false; properties->haveReplayCounters = false; return ZE_RESULT_SUCCESS; } ze_result_t WddmPciImp::getPciBdf(zes_pci_properties_t &pciProperties) { uint32_t valueSmall = 0; uint32_t domain = 0, bus = 0, dev = 0, func = 0; std::vector<KmdSysman::RequestProperty> vRequests = {}; std::vector<KmdSysman::ResponseProperty> vResponses = {}; KmdSysman::RequestProperty request = {}; request.commandId = KmdSysman::Command::Get; request.componentId = KmdSysman::Component::PciComponent; request.paramInfo = (isLmemSupported) ? KmdSysman::PciDomainsType::PciRootPort : KmdSysman::PciDomainsType::PciCurrentDevice; request.requestId = KmdSysman::Requests::Pci::Bus; vRequests.push_back(request); request.requestId = KmdSysman::Requests::Pci::Domain; vRequests.push_back(request); request.requestId = KmdSysman::Requests::Pci::Device; vRequests.push_back(request); request.requestId = KmdSysman::Requests::Pci::Function; vRequests.push_back(request); ze_result_t status = pKmdSysManager->requestMultiple(vRequests, vResponses); if ((status != ZE_RESULT_SUCCESS) || (vResponses.size() != vRequests.size())) { return status; } if (vResponses[0].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[0].dataBuffer, sizeof(uint32_t)); bus = valueSmall; } if (vResponses[1].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[1].dataBuffer, sizeof(uint32_t)); domain = valueSmall; } if (vResponses[2].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[2].dataBuffer, sizeof(uint32_t)); dev = valueSmall; } if (vResponses[3].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[3].dataBuffer, sizeof(uint32_t)); func = valueSmall; } pciProperties.address.domain = domain; pciProperties.address.bus = bus; pciProperties.address.device = dev; pciProperties.address.function = func; return ZE_RESULT_SUCCESS; } void WddmPciImp::getMaxLinkCaps(double &maxLinkSpeed, int32_t &maxLinkWidth) { uint32_t valueSmall = 0; KmdSysman::RequestProperty request; KmdSysman::ResponseProperty response; request.commandId = KmdSysman::Command::Get; request.componentId = KmdSysman::Component::PciComponent; request.requestId = KmdSysman::Requests::Pci::MaxLinkSpeed; request.paramInfo = (isLmemSupported) ? KmdSysman::PciDomainsType::PciRootPort : KmdSysman::PciDomainsType::PciCurrentDevice; ze_result_t status = pKmdSysManager->requestSingle(request, response); if (status != ZE_RESULT_SUCCESS) { maxLinkSpeed = 0; } else { memcpy_s(&valueSmall, sizeof(uint32_t), response.dataBuffer, sizeof(uint32_t)); maxLinkSpeed = convertPciGenToLinkSpeed(valueSmall); } request.requestId = KmdSysman::Requests::Pci::MaxLinkWidth; status = pKmdSysManager->requestSingle(request, response); if (status != ZE_RESULT_SUCCESS) { maxLinkWidth = -1; return; } memcpy_s(&valueSmall, sizeof(uint32_t), response.dataBuffer, sizeof(uint32_t)); maxLinkWidth = static_cast<int32_t>(valueSmall); return; } ze_result_t WddmPciImp::getState(zes_pci_state_t *state) { uint32_t valueSmall = 0; std::vector<KmdSysman::RequestProperty> vRequests = {}; std::vector<KmdSysman::ResponseProperty> vResponses = {}; KmdSysman::RequestProperty request = {}; state->qualityIssues = ZES_PCI_LINK_QUAL_ISSUE_FLAG_FORCE_UINT32; state->stabilityIssues = ZES_PCI_LINK_STAB_ISSUE_FLAG_FORCE_UINT32; state->status = ZES_PCI_LINK_STATUS_FORCE_UINT32; request.commandId = KmdSysman::Command::Get; request.componentId = KmdSysman::Component::PciComponent; request.paramInfo = (isLmemSupported) ? KmdSysman::PciDomainsType::PciRootPort : KmdSysman::PciDomainsType::PciCurrentDevice; request.requestId = KmdSysman::Requests::Pci::CurrentLinkSpeed; vRequests.push_back(request); request.requestId = KmdSysman::Requests::Pci::CurrentLinkWidth; vRequests.push_back(request); ze_result_t status = pKmdSysManager->requestMultiple(vRequests, vResponses); if ((status != ZE_RESULT_SUCCESS) || (vResponses.size() != vRequests.size())) { return status; } if (vResponses[0].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[0].dataBuffer, sizeof(uint32_t)); state->speed.gen = static_cast<int32_t>(valueSmall); } if (vResponses[1].returnCode == KmdSysman::Success) { memcpy_s(&valueSmall, sizeof(uint32_t), vResponses[1].dataBuffer, sizeof(uint32_t)); state->speed.width = static_cast<int32_t>(valueSmall); } double currentLinkSpeed = convertPciGenToLinkSpeed(state->speed.gen); state->speed.maxBandwidth = state->speed.width * convertPcieSpeedFromGTsToBs(currentLinkSpeed); if (state->speed.maxBandwidth == 0) { state->speed.maxBandwidth = -1; } return ZE_RESULT_SUCCESS; } bool WddmPciImp::resizableBarSupported() { uint32_t valueSmall = 0; bool supported = false; KmdSysman::RequestProperty request; KmdSysman::ResponseProperty response; request.commandId = KmdSysman::Command::Get; request.componentId = KmdSysman::Component::PciComponent; request.paramInfo = KmdSysman::PciDomainsType::PciCurrentDevice; request.requestId = KmdSysman::Requests::Pci::ResizableBarSupported; if (pKmdSysManager->requestSingle(request, response) == ZE_RESULT_SUCCESS) { memcpy_s(&valueSmall, sizeof(uint32_t), response.dataBuffer, sizeof(uint32_t)); supported = static_cast<bool>(valueSmall); } return supported; } bool WddmPciImp::resizableBarEnabled(uint32_t barIndex) { uint32_t valueSmall = 0; bool enabled = false; KmdSysman::RequestProperty request; KmdSysman::ResponseProperty response; request.commandId = KmdSysman::Command::Get; request.componentId = KmdSysman::Component::PciComponent; request.paramInfo = KmdSysman::PciDomainsType::PciCurrentDevice; request.requestId = KmdSysman::Requests::Pci::ResizableBarEnabled; if (pKmdSysManager->requestSingle(request, response) == ZE_RESULT_SUCCESS) { memcpy_s(&valueSmall, sizeof(uint32_t), response.dataBuffer, sizeof(uint32_t)); enabled = static_cast<bool>(valueSmall); } return enabled; } ze_result_t WddmPciImp::initializeBarProperties(std::vector<zes_pci_bar_properties_t *> &pBarProperties) { zes_pci_bar_properties_t *pBarProp = new zes_pci_bar_properties_t; memset(pBarProp, 0, sizeof(zes_pci_bar_properties_t)); pBarProperties.push_back(pBarProp); return ZE_RESULT_SUCCESS; } WddmPciImp::WddmPciImp(OsSysman *pOsSysman) { WddmSysmanImp *pWddmSysmanImp = static_cast<WddmSysmanImp *>(pOsSysman); pKmdSysManager = &pWddmSysmanImp->getKmdSysManager(); Device *pDevice = pWddmSysmanImp->getDeviceHandle(); isLmemSupported = pDevice->getDriverHandle()->getMemoryManager()->isLocalMemorySupported(pDevice->getRootDeviceIndex()); } OsPci *OsPci::create(OsSysman *pOsSysman) { WddmPciImp *pWddmPciImp = new WddmPciImp(pOsSysman); return static_cast<OsPci *>(pWddmPciImp); } } // namespace L0
cecf49973a493cfba49dda08498689cb13414583
e41ad6d5e27a0996acf8a152c1e7b6bbfb37bf91
/Transceiver.cc
abdbf76bf6875e596195eb744c49c1801cc30962
[]
no_license
annadaniot/Omnet-CSMA-Type-MAC-Protocol-over-a-Wireless-Channel-Model
8ad6f28b1ccc967216bea3b96c4fd981fbedf221
b138c8076a26695506592a54af91d755afc6b6f9
refs/heads/master
2020-03-21T03:40:27.928076
2018-07-05T09:31:26
2018-07-05T09:31:26
138,067,825
1
1
null
null
null
null
UTF-8
C++
false
false
18,175
cc
Transceiver.cc
/** Author: Haydn */ #include "Transceiver.h" #include <cmath> #include <ctgmath> Define_Module(Transceiver); int statNumSentPackets = 0; //called when the simulation starts void Transceiver::initialize() { EV << getParentModule()->getName() << ": initialsing Transceiver\n"; turnAroundTime = par("turnAroundTime"); txPowerDBm = par("txPowerDBm"); bitRate = par("bitRate"); csThreshDBm = par("csThreshDBm"); noisePowerDBm = par("noisePowerDBm"); csTime = par("csTime"); Nnodes = getParentModule()->par("numTransmitters"); for(int i = 0; i<Nnodes; i++) { currentTransmissionsList[i] = nullptr; } transceiverState = receive; //logging //check if conditions meet second tests, log packetsLost if(strcmp(getParentModule()->getName(),"receiverNode") == 0 && Nnodes>1) { TransceiverLogFileName = generate_log_file_name(par("TransceiverFile2").stringValue(), true); EV << "Transceiver Using log file: " << TransceiverLogFileName << endl; } else if(Nnodes == 1) { //settings meet first test, log statNumSentPackets TransceiverLogFileName = generate_log_file_name(par("TransceiverFile1").stringValue(), true); EV << "Transceiver Using log file: " << TransceiverLogFileName << endl; } // statNumSentPackets = 0; // packetsLost = 0; } //called when the simulation finishes void Transceiver::finish() { //do not delete anything or cancel timers, all cleanup must be done in the destructor //use this for statistics EV <<"NUM SENT PACKETS " << statNumSentPackets << endl; std::ofstream file; if(strcmp(getParentModule()->getName(),"receiverNode") == 0 && Nnodes>1) { //log packetsLost EV << "Finishing transceiver, Logging to" << TransceiverLogFileName; file.open(TransceiverLogFileName, std::ios::app); //this appends to end of file file << Nnodes << ", "<< statNumSentPackets<<", "<< packetsLost << endl; EV << "Logged "<< Nnodes << ", "<<statNumSentPackets<<", "<< packetsLost << endl; file.close(); } else if(Nnodes == 1) { //log statNumSentPackets EV << "Finishing transceiver, Logging statNumSentPackets to " << TransceiverLogFileName <<endl; file.open(TransceiverLogFileName, std::ios::app); //this appends to end of file double R = getParentModule()->getParentModule()->par("R"); file << R << ", "<< statNumSentPackets << endl; EV <<"logged " << R << ", "<< statNumSentPackets << endl; file.close(); } } //Called whenever the transceiver receives a message void Transceiver::handleMessage(cMessage *msg) { EV << "Handling message"; short msgKind = msg->getKind(); EV << " cMessage received of kind " << msgKind << endl; if(msgKind == TRANSMISSION_REQUEST || msgKind == TRANSMISSION_REQUEST_STATE_1 || msgKind == TRANSMISSION_REQUEST_STATE_2) { EV << "TRANSMISSION_REQUEST received\n"; TransmissionRequest* msgTransmissionRequest = check_and_cast<TransmissionRequest *>(msg); handleTransmissionRequest(msgTransmissionRequest); } else if(msgKind == CS_REQUEST) { EV << "CS_REQUEST received\n"; CSRequest* msgCSResquest = dynamic_cast<CSRequest *>(msg); handleCSRequest(msgCSResquest); } else if(msgKind == SIGNAL_START) { EV << "SIGNAL_START received\n"; SignalStart* msgSignalStart = check_and_cast<SignalStart *>(msg); handleSignalStart(msgSignalStart); } else if(msgKind == SIGNAL_STOP) { EV << "SIGNAL_STOP received\n"; SignalStop* msgSignalStop = check_and_cast<SignalStop *>(msg); handleSignalStop(msgSignalStop); } else if(msgKind == CS_RESPONSE) { EV << "Self message of CS_RESPONSE received\n"; CSResponse* msgSignalStop = check_and_cast<CSResponse *>(msg); handleCSResponse(msgSignalStop); } else if(msgKind == BITRATE_WAIT) { EV << "Self message of BITRATE_WAIT received\n"; SignalStop* msgBitRateWait = check_and_cast<SignalStop *>(msg); handleBitRateWait(msgBitRateWait); } else { //should never get here //abort program EV<<"Transceiver is dropping message of kind "<< (msg->getKind()) <<endl; delete msg; // throw cRuntimeError("Unrecognised message, aborting"); // endSimulation(); } } void Transceiver::handleBitRateWait(SignalStop* msg) { //program wated packetlen/bitrate, now send signal stop to channel msg->setKind(SIGNAL_STOP); send(msg,"tx2ChanOut"); TransmissionRequest* newMsg = new TransmissionRequest(); //Wait for a time specified by the TurnaroundTime newMsg->setKind(TRANSMISSION_REQUEST_STATE_2); //set context pointer to turnAroundState scheduleAt(simTime()+turnAroundTime, newMsg); //Send the message to itself after waiting turnAroundTime + time to send signalStop } void Transceiver::handleCSResponse(CSResponse* msg) { EV << "Sending CSResponse to MAC" << endl; send(msg, "tx2MacOut"); } //regardless of the state the transceiver is in, it has to process these messages //TODO do transmit power calculation here void Transceiver::handleSignalStart(SignalStart *msg) { EV << "handleSignalStart\n"; int emptyIndex = -1; int numberOfTransmissions = 0; //traverse list to see if the transmission is present for(int i = 0;i<Nnodes; i++) { if(currentTransmissionsList[i] == nullptr) { emptyIndex = i; //for adding the message later continue; } //message in current transmissionslist else if(msg->getIdentifier() == currentTransmissionsList[i]->getIdentifier()) { throw cRuntimeError("Received signalStart message but message already in current transmissions, aborting"); endSimulation(); } else { numberOfTransmissions++; //There should at most be one transmission at a time } } EV << "numberOfTransmissions: " << numberOfTransmissions << endl; if(emptyIndex >=0) { //add message to currentTransmissionsList currentTransmissionsList[emptyIndex] = msg; numberOfTransmissions++; } else { //list is full, should never reach this throw cRuntimeError("currentTransmissionsList full, aborting"); endSimulation(); } if(numberOfTransmissions > 1) { double normalRecvPower = 0; double dBmRecvPower = -100; //set this to low number so if no transmissions the following statements wont detect one int i; for(i = 0;i<Nnodes ;i++ ) { if(currentTransmissionsList[i] != nullptr) { normalRecvPower = normalRecvPower + dBm2mW(calcReceivedPowerDBM(currentTransmissionsList[i])); } } if(normalRecvPower != 0) { dBmRecvPower = mW2dBm(normalRecvPower); } //Collision detected, see if recv power is above threshold, if so set flag to true if(dBmRecvPower > csThreshDBm) { for(i = 0;i<Nnodes ;i++ ) { //possible for multiple transmissions to be on the channel but no collision (hidden terminal) if(currentTransmissionsList[i] != nullptr) { currentTransmissionsList[i]->setCollidedFlag(true); } } } } //no need to delete msg here as it is stored in currentTransmissionsList } double Transceiver::calcReceivedPowerDBM(SignalStart* SNRsignal) { //calculate euclidean distance between this node and the sender node double euclideanDistance = sqrt(pow((SNRsignal->getPositionX()- (double) getParentModule()->par("nodeXPosition")),2) + pow((SNRsignal->getPositionY()- (double) getParentModule()>par("nodeYPosition")),2)); EV << "euclideanDistance(m): " << euclideanDistance << endl; //path loss calculation double pathLossExponent = getParentModule()->getParentModule()>par("pathLossExponent"); double pathLoss; //dB if(euclideanDistance > 1) { pathLoss = 10*log10(pow(euclideanDistance,pathLossExponent)); } else { pathLoss = 10*log10(1); } EV << "pathLoss (dB): " << pathLoss << endl; //convert to DB domain //pathLossDB and DBm incompatible double receivedPowerDBM = SNRsignal->getTransmitPowerDBm() - pathLoss; EV << "receivedPowerDBM (dBm): " << receivedPowerDBM << endl; return receivedPowerDBM; } void Transceiver::handleSignalStop(SignalStop *msg) { EV << "SignalStop message received\n"; bool msgFound = false; //see if corresopnding signalStart message in currentTransmissionsList SignalStart* currentSignalStart = nullptr; for(int i = 0; i<Nnodes ;i++) { currentSignalStart= currentTransmissionsList[i]; // currentTransmissionsList[i] = nullptr; //dereference the msg in the list if(currentSignalStart != nullptr) { if(msg->getIdentifier() == currentSignalStart->getIdentifier()) { msgFound = true; if(currentSignalStart->getCollidedFlag() == true) { //delete SignalStop and SignalStart message, collided messages are always dropped EV << "Signal Stop received, collision detected, signalstop message dropped\n"; packetsLost++; cancelAndDelete(currentTransmissionsList[i]); currentTransmissionsList[i]= nullptr; } else{ double receivedPowerDBM = calcReceivedPowerDBM(currentSignalStart); double signalToNoiseRatio = receivedPowerDBM - (noisePowerDBm + 10*log10(bitRate)); EV << "signalToNoiseRatio : " << signalToNoiseRatio << endl; double bitErrorRate = erfc(sqrt(2*pow(10,(signalToNoiseRatio/10)))); EV << "bitErrorRate (Berror): " << bitErrorRate << endl; int msgSize = currentSignalStart->getMacMsg()->getApplMsg()>getMsgSize() * 8; double packetErrorRate = 1 - pow((1 - bitErrorRate),msgSize); EV << "Packet Error Rate :" << packetErrorRate << endl; double u = ((double) rand() / (RAND_MAX)); if(u<packetErrorRate) { //drop message EV << "packet exceeds bit error rate, dropping\n"; //TODO log packet dropped } else { //extract out MAC packet and put in transmissionindication EV << "Sending transmission indication message\n"; TransmissionIndication* newTransmissionIndication = new TransmissionIndication(); MacMessage* extractedMacMessage = currentSignalStart>getMacMsg()->dup(); //dup message, because deleting currentSignalStart in a few lines newTransmissionIndication->setMpkt(extractedMacMessage); newTransmissionIndication->setKind(TRANSMISSION_INDICATION); send(newTransmissionIndication, "tx2MacOut"); //TODO log packet received } EV << "Removing SignalStart from currentTransmissionsList where ID = " << currentSignalStart->getIdentifier() << endl; cancelAndDelete(currentSignalStart); //remove message also sets currentTransmissionsList[i] to nullptr currentTransmissionsList[i] = nullptr; } } } } if(!msgFound) { throw cRuntimeError("Signal stop message received but no corresponding signalStart message in TransmissionsList. Aborting."); endSimulation(); } delete msg; //remove the SignalStop message } void Transceiver::handleTransmissionRequest(TransmissionRequest* msg) { EV << "TransmissionRequest message received\n"; long kind = msg->getKind(); //set context pointer to HandeTransmissionRequestState if(kind == TRANSMISSION_REQUEST) { if(transceiverState == receive) { transceiverState = transmit; //Wait for a time specified by the TurnaroundTime msg->setKind(TRANSMISSION_REQUEST_STATE_1); //set context pointer to turnAroundState scheduleAt(simTime()+turnAroundTime, msg); //Send the message to itself } else { //respond with message of type TransmissionConfirm to the MAC with the field status set to statusBusy EV <<"Transmission Request received but in the transmit state, sending statusBusy" << endl; TransmissionConfirm* msgTransmissionConfirm = new TransmissionConfirm(); msgTransmissionConfirm->setStatus(statusBusy); msgTransmissionConfirm->setKind(TRANSMISSION_CONFIRM); send(msgTransmissionConfirm, "tx2MacOut"); cancelAndDelete(msg); } } else if(kind == TRANSMISSION_REQUEST_STATE_1) { //extract message size, do this here before sending signal start as the receiver might delete the msg before extracting the length //msgSize is bits, getMsgSize() is bytes int msgSize = msg->getMacMsg()->getApplMsg()->getMsgSize() * 8; double msgDelay = (double) msgSize/ (double) bitRate; EV << "Extracted appmsg of size (bits) " << msgSize << "\nSneding signal stop in "<< msgDelay << "seconds"<< endl; //signal start of transmission by sending message SignalStart to the channel SignalStart* msgSignalStart = new SignalStart(); msgSignalStart->setTransmitPowerDBm(txPowerDBm); msgSignalStart->setPositionX(getParentModule()->par("nodeXPosition")); msgSignalStart->setPositionY(getParentModule()->par("nodeYPosition")); msgSignalStart->setIdentifier(getParentModule()->par("nodeIdentifier")); msgSignalStart->setCollidedFlag(false); msgSignalStart->setKind(SIGNAL_START); msgSignalStart->setMacMsg(msg->getMacMsg()); statNumSentPackets++; send(msgSignalStart, "tx2ChanOut"); //start creation of signal stop SignalStop* msgSignalStop = new SignalStop(); //signal stop contains no feilds msgSignalStop->setKind(BITRATE_WAIT); msgSignalStop->setIdentifier(getParentModule()->par("nodeIdentifier")); scheduleAt(simTime() + msgDelay, msgSignalStop); //This message will trigger TRANSMISSION_REQUEST_STATE_2 cancelAndDelete(msg); } else if(kind == TRANSMISSION_REQUEST_STATE_2) { transceiverState = receive; TransmissionConfirm* msgTransmissionConfirm = new TransmissionConfirm(); msgTransmissionConfirm->setKind(TRANSMISSION_CONFIRM); msgTransmissionConfirm->setStatus(statusOK); send(msgTransmissionConfirm, "tx2MacOut"); //finally delete the message cancelAndDelete(msg); } } //Calculates the current signal power (in dBm) observed on the channel. //Then waits csTime parameter //Sends back CSResponse with busy channel field which is True when the current signal power observed in the first step exceeds the value //of the paramter csThreshDBm otherwise false. // https://stackoverflow.com/questions/4089726/how-do-i-cast-a-parent-class-as-thechild-class void Transceiver::handleCSRequest(CSRequest *msg){ EV << "CSRequest message received\n"; CSResponse* macResponse = new CSResponse(); //create message bool SignalPresent = false; double normalRecvPower = 0; double dBmRecvPower = -1000; //traverse currentTransmissionsList for(int i = 0;i<Nnodes; i++) { SignalStart* curSignalStart = currentTransmissionsList[i]; if(curSignalStart != nullptr) { SignalPresent = true; normalRecvPower = normalRecvPower + dBm2mW(calcReceivedPowerDBM(curSignalStart)); } } macResponse->setBusyChannel(false); if(SignalPresent) { dBmRecvPower = mW2dBm(normalRecvPower); EV << "Traversed current transmissions, calculated in dBm:" << dBmRecvPower << endl << "Threshold = " << csThreshDBm << endl; if(dBmRecvPower >= csThreshDBm) { EV << "dBmRecvPower >= csThreshDBm" << endl; macResponse->setBusyChannel(true); } } else { EV << "Traversed current transmissions, no signals present" << endl; } //if transceiver in the transmit state, tell MAC its busy if(transceiverState == transmit) { EV << "Transceiver in transmit state" << endl; macResponse->setBusyChannel(true); } macResponse->setKind(CS_RESPONSE); EV << "Sending CS_RESPONSE with BusyChannel: " << macResponse->getBusyChannel() << endl; EV << "CS_RESPOSE will arrive at T= " << simTime() + csTime << endl; //wait for a time corresponding to the csTime parameter scheduleAt(simTime()+csTime, macResponse); // sendDelayed(macResponse, simTime() + csTime, "tx2MacOut"); delete msg; }
56ef81d5362c10c70582e1ff0b0e4600b624a8d6
374c957e14ec5ce96e11ef949862d26ce00d830a
/HG41_01_FractalTree_Base/HG41_01_FractalTree_Base/manager.h
ee334429bd0651711164d122d5cec38aa06c154b
[ "MIT" ]
permissive
Yu24maki/HG41
0cb41c3557e9579a6d945ba8cb8dd35f03a35237
04781174e0b596c9c2423564e3a0e0c3f05045aa
refs/heads/master
2023-08-14T09:24:21.886938
2020-07-28T10:09:01
2020-07-28T10:09:01
263,252,361
0
0
null
null
null
null
UTF-8
C++
false
false
133
h
manager.h
#pragma once class CManager { public: static void Init(); static void Uninit(); static void Update(); static void Draw(); };
1a88f529740e965a0605401874c52e676e18902e
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/extensions/common/api/declarative/declarative_manifest_handler.cc
9ba8a672d59c167fe038580ae1c445800768e5d6
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
1,223
cc
declarative_manifest_handler.cc
// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/common/api/declarative/declarative_manifest_handler.h" #include "extensions/common/api/declarative/declarative_manifest_data.h" #include "extensions/common/extension.h" #include "extensions/common/manifest_constants.h" namespace extensions { DeclarativeManifestHandler::DeclarativeManifestHandler() { } DeclarativeManifestHandler::~DeclarativeManifestHandler() { } bool DeclarativeManifestHandler::Parse(Extension* extension, std::u16string* error) { const base::Value* event_rules = extension->manifest()->FindPath(manifest_keys::kEventRules); CHECK(event_rules != nullptr); std::unique_ptr<DeclarativeManifestData> data = DeclarativeManifestData::FromValue(*event_rules, error); if (!data) return false; extension->SetManifestData(manifest_keys::kEventRules, std::move(data)); return true; } base::span<const char* const> DeclarativeManifestHandler::Keys() const { static constexpr const char* kKeys[] = {manifest_keys::kEventRules}; return kKeys; } } // namespace extensions
aaa2f8a135cb1b5a34fd1535c0aa1c46daead639
b846d1c19bb29d3e9272e021adfd34e6313692b1
/jeheath-cs2-week1/pointers/pointers4.cpp
3525dfa9103bcc0660e2866c310ad8b33618c2a0
[]
no_license
heathjohn62/CS2_all
d5510320280c4cb80050f60dda57660ab5e2f1bb
b8ff01d5630a48d18e0b22fb366b20398a456436
refs/heads/master
2021-05-14T13:21:08.554417
2018-03-04T21:19:50
2018-03-04T21:19:50
116,437,831
0
0
null
null
null
null
UTF-8
C++
false
false
1,315
cpp
pointers4.cpp
/** * @file pointers4.cpp * @author The CS2 TA Team <cs2tas@caltech.edu> * @date 2015 * @copyright This code is in the public domain. * * @brief Pointer-fu Exercise 4: Typecasting vs. address-of */ #include <cstdlib> #include <iostream> using namespace std; /** * @brief performs type castings */ int main(int argc, char *argv[]) { int a = 5, *b; void *c; // Now make `b` point to `a`. b = &a; // I changed this from (int *), a cast, to the address operator (&). // If the intention is to make b point to a, the address operator // should be used. Casting will have a different effect. /***** CHANGE NOTHING BELOW THIS LINE *****/ cout << "The value pointed by `b` is " << *b; /***** CHANGE NOTHING ABOVE THIS LINE *****/ // Allocate an array of 10 ints. c = malloc(10 * sizeof(int)); // Get the address of the array. b = (int *) c; /** * I deleted the & symbol before c. This is because c was already a * pointer, and thus was already the address of the array--it is * different to get the address of the pointer. It is valid to cast * the void pointer as a pointer to an int. */ /***** CHANGE NOTHING BELOW THIS LINE *****/ b[2] = 5; /***** CHANGE NOTHING ABOVE THIS LINE *****/ return 0; }
0cd75f9f47c2dc1ab561790ed8b3c3adb5205f4a
f6c9c91f56f7814cbfa7c4e9af96c5d500cc4e86
/Src/ProfileDataParser/OccupancyInfoDataHandlerImp.h
26b3b1c4be751bded1ce7f4b1f2b5db2062c7af6
[ "MIT" ]
permissive
juyoungkim-lisa/radeon_compute_profiler
1f24877bb7ada1e61e6fba1dad67bbdbcca35ff0
43b01a1ee293e31762ac1e346bc454c93254fa7c
refs/heads/master
2023-01-22T14:31:00.273091
2020-12-02T16:52:48
2020-12-02T16:52:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,457
h
OccupancyInfoDataHandlerImp.h
//============================================================================== // Copyright (c) 2017 Advanced Micro Devices, Inc. All rights reserved. /// \author AMD Developer Tools Team /// \file /// \brief Occupancy Info Data Handler Implmentation header //============================================================================== #ifndef _OCCUPANCY_INFO_DATA_HANDLER_IMP_H_ #define _OCCUPANCY_INFO_DATA_HANDLER_IMP_H_ #include "IOccupancyInfoDataHandler.h" #include "../sprofile/OccupancyUtils.h" /// Kernel occupancy info data handler class class OccupancyInfoDataHandler : public IOccupancyInfoDataHandler { public: ///Constructor OccupancyInfoDataHandler() : m_pErrorMessageResource(nullptr) { } /// Get the thread Id /// \return thread Id unsigned int GetThreadId() const override; /// Get the kernel name /// \return kernel name char array const char* GetKernelName() const override; /// Get the device name /// \return device name char array const char* GetDeviceName() const override; /// Get the Graphics ip version of the device /// \return gfxIp of the device unsigned int GetDeviceGfxIp() const override; /// Get the count of the compute unit on device /// \return number of the CU on device unsigned int GetComputeUnitCount() const override; /// Get the maximum wave count per CU /// \return maximum count of the waves in a CU unsigned int GetMaxWavePerCU() const override; /// Get max number of work group per compute unit /// \return max number of work group per compute unit unsigned int GetMaxWorkGroupPerCU() const override; /// Get Max number of vector GPR on compute unit /// \return Max number of vector GPR on compute unit unsigned int GetMaxVGPRs() const override; /// Get Max number of scalar GPR on compute unit /// \return Max number of scalar GPR on compute unit unsigned int GetMaxSGPRs() const override; /// Get Max amount of LDS on compute unit /// \return Max amount of LDS on compute unit unsigned int GetMaxLDS() const override; /// Get Number of vector GPR used by kernel /// \return Number of vector GPR used by kernel unsigned int GetUsedVGPRs() const override; /// Get Number of scalar GPR used by kernel /// \return Number of scalar GPR used by kernel unsigned int GetUsedSGPRs() const override; /// Get Amount of LDS used by kernel (per work-group) /// \return Amount of LDS used by kernel (per work-group) unsigned int GetUsedLDS() const override; /// Get Number of work-items per work-group - wave front size /// \return Number of work-items per work-group - wave front size unsigned int GetWavefrontSize() const override; /// Get Number of work-items in work-group /// \return Number of work-items in work-group unsigned int GetWorkGroupSize() const override; /// Get Number of wavefronts in work-group /// \return Number of wavefronts in work-group unsigned int GetWavesPerWorkGroup() const override; /// Get Max. number of work-items in a work-group /// \return Max. number of work-items in a work-group unsigned int GetMaxWorkGroupSize() const override; /// Get Max. number of waves per work-group /// \return Max. number of waves per work-group unsigned int GetMaxWavesPerWorkGroup() const override; /// Get Global number work items /// \return Global number work items unsigned int GetGlobalWorkSize() const override; /// Get Global max. number of work-items /// \return Global max. number of work-items unsigned int GetMaxGloablWorkSize() const override; /// Get Number of wavefronts when the VGPR is the only limit on resources /// \return Number of wavefronts unsigned int GetWavesLimitByVGPR() const override; /// Get Number of wavefronts when the SGPR is the only limit on resources /// \return Number of wavefronts unsigned int GetWavesLimitBySGPR() const override; /// Get Number of wavefronts when the shared memory is the only limit on resources /// \return Number of wavefronts unsigned int GetWavesLimitByLDS() const override; /// Get Number of wavefronts when the work-group size is the only constraint on resources /// \return Number of wavefronts unsigned int GetWavesLimitByWorkGroup() const override; /// Get compute unit occupancy /// \return compute unit float GetOccupancy() const override; /// Get ASIC generation /// \return generation GDT_HW_GENERATION GetGeneration() const override; /// Set the number of SIMDS per CU /// \return number of SIMDS per CU unsigned int GetSimdsPerCU() const override; /// Generate the Occupancy Chart HTML Files /// \param[in] pOutputFile occupancy chart output file /// \param[out] ppErrorMessage error message if operation was not successful /// \return flag indicating the operation is successful or not bool GenerateOccupancyChart(const char* pOutputFile, char** ppErrorMessage) const override; /// Virtual Destructor ~OccupancyInfoDataHandler(); OccupancyUtils::OccupancyParams m_occupancyInfo; ///< occupancy info struct member private: mutable char* m_pErrorMessageResource; ///< error message resource for handling message on generating occupancy chart }; #endif // _OCCUPANCY_INFO_DATA_HANDLER_IMP_H_
b460d369942476118926c0925cd2254656f2c221
ce4e35363db5683d4a5d9c97fcee521d5d8dfb08
/include/pgmlink/ext_opengm/indicator_function.hxx
7138a37b0675fe767f387cd4755d80d5307d7f24
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
martinsch/pgmlink
36032c3fa9cd3908b65c4df921cd903a22c496a2
ad0c7318a002897f64bb60284f2968a3a722051e
refs/heads/master
2021-06-27T17:50:10.894556
2015-12-09T17:13:50
2015-12-09T17:13:50
16,145,841
19
10
null
2016-11-09T19:34:09
2014-01-22T17:04:36
C++
UTF-8
C++
false
false
2,550
hxx
indicator_function.hxx
#pragma once #ifndef OPENGM_INDICATORFUNCTION_HXX #define OPENGM_INDICATORFUNCTION_HXX #include <algorithm> #include <numeric> #include <vector> #include "opengm/opengm.hxx" #include "opengm/functions/function_properties_base.hxx" namespace opengm { /// Indicator Function /// /// The indicator function assumes two values: a default value /// (usually 0) for all arguments other than the indicated argument /// and a another value for the indicated argument (usually 1). /// /// \ingroup functions template<class T, class I = size_t, class L = size_t> class IndicatorFunction : public FunctionBase<IndicatorFunction<T, I, L>, T, I, L> { public: typedef T ValueType; typedef I IndexType; typedef L LabelType; template<class IT1, class IT2> IndicatorFunction(IT1 shapeBegin, IT1 shapeEnd, IT2 indicate, ValueType indicate_value = 1., ValueType default_value = 0.); template<class ITERATOR> ValueType operator()(ITERATOR) const; size_t dimension() const { return shape_.size(); } size_t shape(const IndexType i) const { return shape_[i]; } size_t size() const { if(shape_.size()){ return std::accumulate(shape_.begin(), shape_.end(), 1, Multiplier());} else return 0; } const std::vector<LabelType>& indicate() const { return indicate_; }; void indicate_value( const ValueType& v ) { value_ = v; } ValueType indicate_value() const { return value_; } void default_value( const ValueType& v ) { default_ = v; } ValueType default_value() const { return default_; } private: struct Multiplier { ValueType operator()( ValueType a, ValueType b ) { return a*b; } }; std::vector<LabelType> shape_; std::vector<LabelType> indicate_; ValueType value_; ValueType default_; }; /**/ /* implementation */ /**/ template<class T, class I, class L> template<class IT1, class IT2> IndicatorFunction<T,I,L>::IndicatorFunction(IT1 shapeBegin, IT1 shapeEnd, IT2 indicate, ValueType indicate_value, ValueType default_value) : value_(indicate_value), default_(default_value) { for(; shapeBegin!=shapeEnd; ++shapeBegin, ++indicate) { shape_.push_back(*shapeBegin); indicate_.push_back(*indicate); } } template<class T, class I, class L> template<class Iterator> inline typename IndicatorFunction<T,I,L>::ValueType IndicatorFunction<T,I,L>::operator()(Iterator begin) const { return std::equal(indicate_.begin(), indicate_.end(), begin) ? value_ : default_; } } // namespace opengm #endif // #ifndef OPENGM_INDICATORFUNCTION_HXX
ccff703100697fe9b86e8bb081f07c6abcd1783a
dcc9a84c1766f3c49c92e81fe398d867f05e7b13
/PathTracer/LambertianBRDF.h
fedb496e2ea9207548e9f9df653fd600c6b93556
[ "MIT" ]
permissive
bbtarzan12/PathTracer
13df271b893d91cc4e62846480bc77f9b17453c6
3178d6d2bfe05d505a67fbca4465cec154e3152d
refs/heads/master
2020-12-27T08:28:48.766363
2020-03-08T09:00:41
2020-03-08T09:00:41
144,651,545
0
0
null
null
null
null
UTF-8
C++
false
false
269
h
LambertianBRDF.h
#pragma once #include "Bxdf.h" class LambertianBrdf : public Bxdf { public: LambertianBrdf(const glm::vec3& R); virtual glm::vec3 CalculateF(const glm::vec3& wo, const glm::vec3& wi) const override; const glm::vec3& GetR() const; private: glm::vec3 R; };
30168d9831d4685cd1d31036e62b99779d27584c
4482484f2b93c407f12530c024dd4c934a4f51ca
/fbench/src/grpcclient/third_party/googleapis/gens/google/privacy/dlp/v2/storage.pb.cc
00464c5a92c00871f4d4193630101fe0ed9827fa
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kashiish/vespa
3adc974a3f7618185bf5959da02dc311cacd749b
307de4bb24463d0f36cd8391a7b8df75bd0949b2
refs/heads/master
2023-07-04T05:13:11.650818
2021-08-06T22:26:21
2021-08-06T22:26:21
377,258,605
0
0
Apache-2.0
2021-08-06T22:26:21
2021-06-15T18:25:48
Java
UTF-8
C++
false
true
600,257
cc
storage.pb.cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/privacy/dlp/v2/storage.proto #include "google/privacy/dlp/v2/storage.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/extension_set.h> #include <google/protobuf/wire_format_lite_inl.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // @@protoc_insertion_point(includes) #include <google/protobuf/port_def.inc> extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_HybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2ftimestamp_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto; namespace google { namespace privacy { namespace dlp { namespace v2 { class InfoTypeDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<InfoType> _instance; } _InfoType_default_instance_; class StoredTypeDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<StoredType> _instance; } _StoredType_default_instance_; class CustomInfoType_Dictionary_WordListDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_Dictionary_WordList> _instance; } _CustomInfoType_Dictionary_WordList_default_instance_; class CustomInfoType_DictionaryDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_Dictionary> _instance; const ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList* word_list_; const ::google::privacy::dlp::v2::CloudStoragePath* cloud_storage_path_; } _CustomInfoType_Dictionary_default_instance_; class CustomInfoType_RegexDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_Regex> _instance; } _CustomInfoType_Regex_default_instance_; class CustomInfoType_SurrogateTypeDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_SurrogateType> _instance; } _CustomInfoType_SurrogateType_default_instance_; class CustomInfoType_DetectionRule_ProximityDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_DetectionRule_Proximity> _instance; } _CustomInfoType_DetectionRule_Proximity_default_instance_; class CustomInfoType_DetectionRule_LikelihoodAdjustmentDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_DetectionRule_LikelihoodAdjustment> _instance; int fixed_likelihood_; ::google::protobuf::int32 relative_likelihood_; } _CustomInfoType_DetectionRule_LikelihoodAdjustment_default_instance_; class CustomInfoType_DetectionRule_HotwordRuleDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_DetectionRule_HotwordRule> _instance; } _CustomInfoType_DetectionRule_HotwordRule_default_instance_; class CustomInfoType_DetectionRuleDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType_DetectionRule> _instance; const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule* hotword_rule_; } _CustomInfoType_DetectionRule_default_instance_; class CustomInfoTypeDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CustomInfoType> _instance; const ::google::privacy::dlp::v2::CustomInfoType_Dictionary* dictionary_; const ::google::privacy::dlp::v2::CustomInfoType_Regex* regex_; const ::google::privacy::dlp::v2::CustomInfoType_SurrogateType* surrogate_type_; const ::google::privacy::dlp::v2::StoredType* stored_type_; } _CustomInfoType_default_instance_; class FieldIdDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<FieldId> _instance; } _FieldId_default_instance_; class PartitionIdDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<PartitionId> _instance; } _PartitionId_default_instance_; class KindExpressionDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<KindExpression> _instance; } _KindExpression_default_instance_; class DatastoreOptionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<DatastoreOptions> _instance; } _DatastoreOptions_default_instance_; class CloudStorageRegexFileSetDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CloudStorageRegexFileSet> _instance; } _CloudStorageRegexFileSet_default_instance_; class CloudStorageOptions_FileSetDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CloudStorageOptions_FileSet> _instance; } _CloudStorageOptions_FileSet_default_instance_; class CloudStorageOptionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CloudStorageOptions> _instance; } _CloudStorageOptions_default_instance_; class CloudStorageFileSetDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CloudStorageFileSet> _instance; } _CloudStorageFileSet_default_instance_; class CloudStoragePathDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<CloudStoragePath> _instance; } _CloudStoragePath_default_instance_; class BigQueryOptionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<BigQueryOptions> _instance; } _BigQueryOptions_default_instance_; class StorageConfig_TimespanConfigDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<StorageConfig_TimespanConfig> _instance; } _StorageConfig_TimespanConfig_default_instance_; class StorageConfigDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<StorageConfig> _instance; const ::google::privacy::dlp::v2::DatastoreOptions* datastore_options_; const ::google::privacy::dlp::v2::CloudStorageOptions* cloud_storage_options_; const ::google::privacy::dlp::v2::BigQueryOptions* big_query_options_; const ::google::privacy::dlp::v2::HybridOptions* hybrid_options_; } _StorageConfig_default_instance_; class HybridOptions_LabelsEntry_DoNotUseDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<HybridOptions_LabelsEntry_DoNotUse> _instance; } _HybridOptions_LabelsEntry_DoNotUse_default_instance_; class HybridOptionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<HybridOptions> _instance; } _HybridOptions_default_instance_; class BigQueryKeyDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<BigQueryKey> _instance; } _BigQueryKey_default_instance_; class DatastoreKeyDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<DatastoreKey> _instance; } _DatastoreKey_default_instance_; class Key_PathElementDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<Key_PathElement> _instance; ::google::protobuf::int64 id_; ::google::protobuf::internal::ArenaStringPtr name_; } _Key_PathElement_default_instance_; class KeyDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<Key> _instance; } _Key_default_instance_; class RecordKeyDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<RecordKey> _instance; const ::google::privacy::dlp::v2::DatastoreKey* datastore_key_; const ::google::privacy::dlp::v2::BigQueryKey* big_query_key_; } _RecordKey_default_instance_; class BigQueryTableDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<BigQueryTable> _instance; } _BigQueryTable_default_instance_; class BigQueryFieldDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<BigQueryField> _instance; } _BigQueryField_default_instance_; class EntityIdDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<EntityId> _instance; } _EntityId_default_instance_; class TableOptionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed<TableOptions> _instance; } _TableOptions_default_instance_; } // namespace v2 } // namespace dlp } // namespace privacy } // namespace google static void InitDefaultsInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_InfoType_default_instance_; new (ptr) ::google::privacy::dlp::v2::InfoType(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::InfoType::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsStoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_StoredType_default_instance_; new (ptr) ::google::privacy::dlp::v2::StoredType(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::StoredType::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsStoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base,}}; static void InitDefaultsCustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_Dictionary_WordList_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_Dictionary_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_Dictionary(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_Dictionary::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsCustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_Regex_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_Regex(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_Regex::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_SurrogateType_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_SurrogateType(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_SurrogateType::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_Proximity_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_LikelihoodAdjustment_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_HotwordRule_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<3> scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 3, InitDefaultsCustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType_DetectionRule(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType_DetectionRule::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsCustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CustomInfoType_default_instance_; new (ptr) ::google::privacy::dlp::v2::CustomInfoType(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CustomInfoType::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<6> scc_info_CustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 6, InitDefaultsCustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsFieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_FieldId_default_instance_; new (ptr) ::google::privacy::dlp::v2::FieldId(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::FieldId::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsFieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsPartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_PartitionId_default_instance_; new (ptr) ::google::privacy::dlp::v2::PartitionId(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::PartitionId::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsPartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsKindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_KindExpression_default_instance_; new (ptr) ::google::privacy::dlp::v2::KindExpression(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::KindExpression::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsKindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsDatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_DatastoreOptions_default_instance_; new (ptr) ::google::privacy::dlp::v2::DatastoreOptions(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::DatastoreOptions::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsDatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CloudStorageRegexFileSet_default_instance_; new (ptr) ::google::privacy::dlp::v2::CloudStorageRegexFileSet(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CloudStorageRegexFileSet::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CloudStorageOptions_FileSet_default_instance_; new (ptr) ::google::privacy::dlp::v2::CloudStorageOptions_FileSet(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CloudStorageOptions_FileSet::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsCloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CloudStorageOptions_default_instance_; new (ptr) ::google::privacy::dlp::v2::CloudStorageOptions(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CloudStorageOptions::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsCloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsCloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CloudStorageFileSet_default_instance_; new (ptr) ::google::privacy::dlp::v2::CloudStorageFileSet(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CloudStorageFileSet::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsCloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_CloudStoragePath_default_instance_; new (ptr) ::google::privacy::dlp::v2::CloudStoragePath(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::CloudStoragePath::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsBigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_BigQueryOptions_default_instance_; new (ptr) ::google::privacy::dlp::v2::BigQueryOptions(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::BigQueryOptions::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsBigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsStorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_StorageConfig_TimespanConfig_default_instance_; new (ptr) ::google::privacy::dlp::v2::StorageConfig_TimespanConfig(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::StorageConfig_TimespanConfig::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsStorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base, &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsStorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_StorageConfig_default_instance_; new (ptr) ::google::privacy::dlp::v2::StorageConfig(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::StorageConfig::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<5> scc_info_StorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 5, InitDefaultsStorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsHybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_HybridOptions_LabelsEntry_DoNotUse_default_instance_; new (ptr) ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse(); } ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_HybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsHybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsHybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_HybridOptions_default_instance_; new (ptr) ::google::privacy::dlp::v2::HybridOptions(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::HybridOptions::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsHybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_HybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsBigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_BigQueryKey_default_instance_; new (ptr) ::google::privacy::dlp::v2::BigQueryKey(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::BigQueryKey::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsBigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsDatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_DatastoreKey_default_instance_; new (ptr) ::google::privacy::dlp::v2::DatastoreKey(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::DatastoreKey::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsDatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsKey_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_Key_PathElement_default_instance_; new (ptr) ::google::privacy::dlp::v2::Key_PathElement(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::Key_PathElement::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsKey_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_Key_default_instance_; new (ptr) ::google::privacy::dlp::v2::Key(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::Key::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsRecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_RecordKey_default_instance_; new (ptr) ::google::privacy::dlp::v2::RecordKey(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::RecordKey::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_RecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsRecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsBigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_BigQueryTable_default_instance_; new (ptr) ::google::privacy::dlp::v2::BigQueryTable(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::BigQueryTable::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<0> scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsBigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, {}}; static void InitDefaultsBigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_BigQueryField_default_instance_; new (ptr) ::google::privacy::dlp::v2::BigQueryField(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::BigQueryField::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<2> scc_info_BigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsBigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base, &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsEntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_EntityId_default_instance_; new (ptr) ::google::privacy::dlp::v2::EntityId(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::EntityId::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_EntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsEntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; static void InitDefaultsTableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; { void* ptr = &::google::privacy::dlp::v2::_TableOptions_default_instance_; new (ptr) ::google::privacy::dlp::v2::TableOptions(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } ::google::privacy::dlp::v2::TableOptions::InitAsDefaultInstance(); } ::google::protobuf::internal::SCCInfo<1> scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsTableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto}, { &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base,}}; void InitDefaults_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_StorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_HybridOptions_LabelsEntry_DoNotUse_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_RecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_BigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_EntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); } ::google::protobuf::Metadata file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[34]; const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[5]; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = nullptr; const ::google::protobuf::uint32 TableStruct_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::InfoType, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::InfoType, name_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StoredType, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StoredType, name_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StoredType, create_time_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList, words_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Dictionary, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Dictionary, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::google::privacy::dlp::v2::CustomInfoType_DictionaryDefaultTypeInternal, word_list_), offsetof(::google::privacy::dlp::v2::CustomInfoType_DictionaryDefaultTypeInternal, cloud_storage_path_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Dictionary, source_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Regex, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Regex, pattern_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_Regex, group_indexes_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_SurrogateType, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity, window_before_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity, window_after_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustmentDefaultTypeInternal, fixed_likelihood_), offsetof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustmentDefaultTypeInternal, relative_likelihood_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment, adjustment_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule, hotword_regex_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule, proximity_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule, likelihood_adjustment_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::google::privacy::dlp::v2::CustomInfoType_DetectionRuleDefaultTypeInternal, hotword_rule_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType_DetectionRule, type_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, _oneof_case_[0]), ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, info_type_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, likelihood_), offsetof(::google::privacy::dlp::v2::CustomInfoTypeDefaultTypeInternal, dictionary_), offsetof(::google::privacy::dlp::v2::CustomInfoTypeDefaultTypeInternal, regex_), offsetof(::google::privacy::dlp::v2::CustomInfoTypeDefaultTypeInternal, surrogate_type_), offsetof(::google::privacy::dlp::v2::CustomInfoTypeDefaultTypeInternal, stored_type_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, detection_rules_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, exclusion_type_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CustomInfoType, type_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::FieldId, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::FieldId, name_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::PartitionId, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::PartitionId, project_id_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::PartitionId, namespace_id_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::KindExpression, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::KindExpression, name_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::DatastoreOptions, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::DatastoreOptions, partition_id_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::DatastoreOptions, kind_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageRegexFileSet, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageRegexFileSet, bucket_name_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageRegexFileSet, include_regex_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageRegexFileSet, exclude_regex_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions_FileSet, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions_FileSet, url_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions_FileSet, regex_file_set_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, file_set_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, bytes_limit_per_file_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, bytes_limit_per_file_percent_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, file_types_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, sample_method_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageOptions, files_limit_percent_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageFileSet, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStorageFileSet, url_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStoragePath, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::CloudStoragePath, path_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, table_reference_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, identifying_fields_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, rows_limit_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, rows_limit_percent_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, sample_method_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryOptions, excluded_fields_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig_TimespanConfig, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig_TimespanConfig, start_time_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig_TimespanConfig, end_time_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig_TimespanConfig, timestamp_field_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig_TimespanConfig, enable_auto_population_of_timespan_config_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::google::privacy::dlp::v2::StorageConfigDefaultTypeInternal, datastore_options_), offsetof(::google::privacy::dlp::v2::StorageConfigDefaultTypeInternal, cloud_storage_options_), offsetof(::google::privacy::dlp::v2::StorageConfigDefaultTypeInternal, big_query_options_), offsetof(::google::privacy::dlp::v2::StorageConfigDefaultTypeInternal, hybrid_options_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig, timespan_config_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::StorageConfig, type_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse, _has_bits_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse, key_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse, value_), 0, 1, ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions, description_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions, required_finding_label_keys_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions, labels_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::HybridOptions, table_options_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryKey, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryKey, table_reference_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryKey, row_number_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::DatastoreKey, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::DatastoreKey, entity_key_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key_PathElement, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key_PathElement, _oneof_case_[0]), ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key_PathElement, kind_), offsetof(::google::privacy::dlp::v2::Key_PathElementDefaultTypeInternal, id_), offsetof(::google::privacy::dlp::v2::Key_PathElementDefaultTypeInternal, name_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key_PathElement, id_type_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key, partition_id_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::Key, path_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::RecordKey, _internal_metadata_), ~0u, // no _extensions_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::RecordKey, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::google::privacy::dlp::v2::RecordKeyDefaultTypeInternal, datastore_key_), offsetof(::google::privacy::dlp::v2::RecordKeyDefaultTypeInternal, big_query_key_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::RecordKey, id_values_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::RecordKey, type_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryTable, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryTable, project_id_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryTable, dataset_id_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryTable, table_id_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryField, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryField, table_), PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::BigQueryField, field_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::EntityId, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::EntityId, field_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::TableOptions, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::google::privacy::dlp::v2::TableOptions, identifying_fields_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::google::privacy::dlp::v2::InfoType)}, { 6, -1, sizeof(::google::privacy::dlp::v2::StoredType)}, { 13, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList)}, { 19, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_Dictionary)}, { 27, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_Regex)}, { 34, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_SurrogateType)}, { 39, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity)}, { 46, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment)}, { 54, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule)}, { 62, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType_DetectionRule)}, { 69, -1, sizeof(::google::privacy::dlp::v2::CustomInfoType)}, { 83, -1, sizeof(::google::privacy::dlp::v2::FieldId)}, { 89, -1, sizeof(::google::privacy::dlp::v2::PartitionId)}, { 96, -1, sizeof(::google::privacy::dlp::v2::KindExpression)}, { 102, -1, sizeof(::google::privacy::dlp::v2::DatastoreOptions)}, { 109, -1, sizeof(::google::privacy::dlp::v2::CloudStorageRegexFileSet)}, { 117, -1, sizeof(::google::privacy::dlp::v2::CloudStorageOptions_FileSet)}, { 124, -1, sizeof(::google::privacy::dlp::v2::CloudStorageOptions)}, { 135, -1, sizeof(::google::privacy::dlp::v2::CloudStorageFileSet)}, { 141, -1, sizeof(::google::privacy::dlp::v2::CloudStoragePath)}, { 147, -1, sizeof(::google::privacy::dlp::v2::BigQueryOptions)}, { 158, -1, sizeof(::google::privacy::dlp::v2::StorageConfig_TimespanConfig)}, { 167, -1, sizeof(::google::privacy::dlp::v2::StorageConfig)}, { 178, 185, sizeof(::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse)}, { 187, -1, sizeof(::google::privacy::dlp::v2::HybridOptions)}, { 196, -1, sizeof(::google::privacy::dlp::v2::BigQueryKey)}, { 203, -1, sizeof(::google::privacy::dlp::v2::DatastoreKey)}, { 209, -1, sizeof(::google::privacy::dlp::v2::Key_PathElement)}, { 218, -1, sizeof(::google::privacy::dlp::v2::Key)}, { 225, -1, sizeof(::google::privacy::dlp::v2::RecordKey)}, { 234, -1, sizeof(::google::privacy::dlp::v2::BigQueryTable)}, { 242, -1, sizeof(::google::privacy::dlp::v2::BigQueryField)}, { 249, -1, sizeof(::google::privacy::dlp::v2::EntityId)}, { 255, -1, sizeof(::google::privacy::dlp::v2::TableOptions)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_InfoType_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_StoredType_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_Dictionary_WordList_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_Dictionary_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_Regex_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_SurrogateType_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_Proximity_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_LikelihoodAdjustment_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_HotwordRule_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CustomInfoType_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_FieldId_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_PartitionId_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_KindExpression_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_DatastoreOptions_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CloudStorageRegexFileSet_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CloudStorageOptions_FileSet_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CloudStorageOptions_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CloudStorageFileSet_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_CloudStoragePath_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_BigQueryOptions_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_StorageConfig_TimespanConfig_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_StorageConfig_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_HybridOptions_LabelsEntry_DoNotUse_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_HybridOptions_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_BigQueryKey_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_DatastoreKey_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_Key_PathElement_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_Key_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_RecordKey_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_BigQueryTable_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_BigQueryField_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_EntityId_default_instance_), reinterpret_cast<const ::google::protobuf::Message*>(&::google::privacy::dlp::v2::_TableOptions_default_instance_), }; ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = { {}, AddDescriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, "google/privacy/dlp/v2/storage.proto", schemas, file_default_instances, TableStruct_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto::offsets, file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, 34, file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, file_level_service_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, }; const char descriptor_table_protodef_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[] = "\n#google/privacy/dlp/v2/storage.proto\022\025g" "oogle.privacy.dlp.v2\032\031google/api/resourc" "e.proto\032\037google/protobuf/timestamp.proto" "\032\034google/api/annotations.proto\"\030\n\010InfoTy" "pe\022\014\n\004name\030\001 \001(\t\"K\n\nStoredType\022\014\n\004name\030\001" " \001(\t\022/\n\013create_time\030\002 \001(\0132\032.google.proto" "buf.Timestamp\"\310\013\n\016CustomInfoType\0222\n\tinfo" "_type\030\001 \001(\0132\037.google.privacy.dlp.v2.Info" "Type\0225\n\nlikelihood\030\006 \001(\0162!.google.privac" "y.dlp.v2.Likelihood\022F\n\ndictionary\030\002 \001(\0132" "0.google.privacy.dlp.v2.CustomInfoType.D" "ictionaryH\000\022<\n\005regex\030\003 \001(\0132+.google.priv" "acy.dlp.v2.CustomInfoType.RegexH\000\022M\n\016sur" "rogate_type\030\004 \001(\01323.google.privacy.dlp.v" "2.CustomInfoType.SurrogateTypeH\000\0228\n\013stor" "ed_type\030\005 \001(\0132!.google.privacy.dlp.v2.St" "oredTypeH\000\022L\n\017detection_rules\030\007 \003(\01323.go" "ogle.privacy.dlp.v2.CustomInfoType.Detec" "tionRule\022K\n\016exclusion_type\030\010 \001(\01623.googl" "e.privacy.dlp.v2.CustomInfoType.Exclusio" "nType\032\310\001\n\nDictionary\022N\n\tword_list\030\001 \001(\0132" "9.google.privacy.dlp.v2.CustomInfoType.D" "ictionary.WordListH\000\022E\n\022cloud_storage_pa" "th\030\003 \001(\0132\'.google.privacy.dlp.v2.CloudSt" "oragePathH\000\032\031\n\010WordList\022\r\n\005words\030\001 \003(\tB\010" "\n\006source\032/\n\005Regex\022\017\n\007pattern\030\001 \001(\t\022\025\n\rgr" "oup_indexes\030\002 \003(\005\032\017\n\rSurrogateType\032\276\004\n\rD" "etectionRule\022W\n\014hotword_rule\030\001 \001(\0132\?.goo" "gle.privacy.dlp.v2.CustomInfoType.Detect" "ionRule.HotwordRuleH\000\0328\n\tProximity\022\025\n\rwi" "ndow_before\030\001 \001(\005\022\024\n\014window_after\030\002 \001(\005\032" "\202\001\n\024LikelihoodAdjustment\022=\n\020fixed_likeli" "hood\030\001 \001(\0162!.google.privacy.dlp.v2.Likel" "ihoodH\000\022\035\n\023relative_likelihood\030\002 \001(\005H\000B\014" "\n\nadjustment\032\214\002\n\013HotwordRule\022B\n\rhotword_" "regex\030\001 \001(\0132+.google.privacy.dlp.v2.Cust" "omInfoType.Regex\022P\n\tproximity\030\002 \001(\0132=.go" "ogle.privacy.dlp.v2.CustomInfoType.Detec" "tionRule.Proximity\022g\n\025likelihood_adjustm" "ent\030\003 \001(\0132H.google.privacy.dlp.v2.Custom" "InfoType.DetectionRule.LikelihoodAdjustm" "entB\006\n\004type\"K\n\rExclusionType\022\036\n\032EXCLUSIO" "N_TYPE_UNSPECIFIED\020\000\022\032\n\026EXCLUSION_TYPE_E" "XCLUDE\020\001B\006\n\004type\"\027\n\007FieldId\022\014\n\004name\030\001 \001(" "\t\"7\n\013PartitionId\022\022\n\nproject_id\030\002 \001(\t\022\024\n\014" "namespace_id\030\004 \001(\t\"\036\n\016KindExpression\022\014\n\004" "name\030\001 \001(\t\"\201\001\n\020DatastoreOptions\0228\n\014parti" "tion_id\030\001 \001(\0132\".google.privacy.dlp.v2.Pa" "rtitionId\0223\n\004kind\030\002 \001(\0132%.google.privacy" ".dlp.v2.KindExpression\"]\n\030CloudStorageRe" "gexFileSet\022\023\n\013bucket_name\030\001 \001(\t\022\025\n\rinclu" "de_regex\030\002 \003(\t\022\025\n\rexclude_regex\030\003 \003(\t\"\354\003" "\n\023CloudStorageOptions\022D\n\010file_set\030\001 \001(\0132" "2.google.privacy.dlp.v2.CloudStorageOpti" "ons.FileSet\022\034\n\024bytes_limit_per_file\030\004 \001(" "\003\022$\n\034bytes_limit_per_file_percent\030\010 \001(\005\022" "3\n\nfile_types\030\005 \003(\0162\037.google.privacy.dlp" ".v2.FileType\022N\n\rsample_method\030\006 \001(\01627.go" "ogle.privacy.dlp.v2.CloudStorageOptions." "SampleMethod\022\033\n\023files_limit_percent\030\007 \001(" "\005\032_\n\007FileSet\022\013\n\003url\030\001 \001(\t\022G\n\016regex_file_" "set\030\002 \001(\0132/.google.privacy.dlp.v2.CloudS" "torageRegexFileSet\"H\n\014SampleMethod\022\035\n\031SA" "MPLE_METHOD_UNSPECIFIED\020\000\022\007\n\003TOP\020\001\022\020\n\014RA" "NDOM_START\020\002\"\"\n\023CloudStorageFileSet\022\013\n\003u" "rl\030\001 \001(\t\" \n\020CloudStoragePath\022\014\n\004path\030\001 \001" "(\t\"\213\003\n\017BigQueryOptions\022=\n\017table_referenc" "e\030\001 \001(\0132$.google.privacy.dlp.v2.BigQuery" "Table\022:\n\022identifying_fields\030\002 \003(\0132\036.goog" "le.privacy.dlp.v2.FieldId\022\022\n\nrows_limit\030" "\003 \001(\003\022\032\n\022rows_limit_percent\030\006 \001(\005\022J\n\rsam" "ple_method\030\004 \001(\01623.google.privacy.dlp.v2" ".BigQueryOptions.SampleMethod\0227\n\017exclude" "d_fields\030\005 \003(\0132\036.google.privacy.dlp.v2.F" "ieldId\"H\n\014SampleMethod\022\035\n\031SAMPLE_METHOD_" "UNSPECIFIED\020\000\022\007\n\003TOP\020\001\022\020\n\014RANDOM_START\020\002" "\"\332\004\n\rStorageConfig\022D\n\021datastore_options\030" "\002 \001(\0132\'.google.privacy.dlp.v2.DatastoreO" "ptionsH\000\022K\n\025cloud_storage_options\030\003 \001(\0132" "*.google.privacy.dlp.v2.CloudStorageOpti" "onsH\000\022C\n\021big_query_options\030\004 \001(\0132&.googl" "e.privacy.dlp.v2.BigQueryOptionsH\000\022>\n\016hy" "brid_options\030\t \001(\0132$.google.privacy.dlp." "v2.HybridOptionsH\000\022L\n\017timespan_config\030\006 " "\001(\01323.google.privacy.dlp.v2.StorageConfi" "g.TimespanConfig\032\332\001\n\016TimespanConfig\022.\n\ns" "tart_time\030\001 \001(\0132\032.google.protobuf.Timest" "amp\022,\n\010end_time\030\002 \001(\0132\032.google.protobuf." "Timestamp\0227\n\017timestamp_field\030\003 \001(\0132\036.goo" "gle.privacy.dlp.v2.FieldId\0221\n)enable_aut" "o_population_of_timespan_config\030\004 \001(\010B\006\n" "\004type\"\366\001\n\rHybridOptions\022\023\n\013description\030\001" " \001(\t\022#\n\033required_finding_label_keys\030\002 \003(" "\t\022@\n\006labels\030\003 \003(\01320.google.privacy.dlp.v" "2.HybridOptions.LabelsEntry\022:\n\rtable_opt" "ions\030\004 \001(\0132#.google.privacy.dlp.v2.Table" "Options\032-\n\013LabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005v" "alue\030\002 \001(\t:\0028\001\"`\n\013BigQueryKey\022=\n\017table_r" "eference\030\001 \001(\0132$.google.privacy.dlp.v2.B" "igQueryTable\022\022\n\nrow_number\030\002 \001(\003\">\n\014Data" "storeKey\022.\n\nentity_key\030\001 \001(\0132\032.google.pr" "ivacy.dlp.v2.Key\"\273\001\n\003Key\0228\n\014partition_id" "\030\001 \001(\0132\".google.privacy.dlp.v2.Partition" "Id\0224\n\004path\030\002 \003(\0132&.google.privacy.dlp.v2" ".Key.PathElement\032D\n\013PathElement\022\014\n\004kind\030" "\001 \001(\t\022\014\n\002id\030\002 \001(\003H\000\022\016\n\004name\030\003 \001(\tH\000B\t\n\007i" "d_type\"\241\001\n\tRecordKey\022<\n\rdatastore_key\030\002 " "\001(\0132#.google.privacy.dlp.v2.DatastoreKey" "H\000\022;\n\rbig_query_key\030\003 \001(\0132\".google.priva" "cy.dlp.v2.BigQueryKeyH\000\022\021\n\tid_values\030\005 \003" "(\tB\006\n\004type\"I\n\rBigQueryTable\022\022\n\nproject_i" "d\030\001 \001(\t\022\022\n\ndataset_id\030\002 \001(\t\022\020\n\010table_id\030" "\003 \001(\t\"s\n\rBigQueryField\0223\n\005table\030\001 \001(\0132$." "google.privacy.dlp.v2.BigQueryTable\022-\n\005f" "ield\030\002 \001(\0132\036.google.privacy.dlp.v2.Field" "Id\"9\n\010EntityId\022-\n\005field\030\001 \001(\0132\036.google.p" "rivacy.dlp.v2.FieldId\"J\n\014TableOptions\022:\n" "\022identifying_fields\030\001 \003(\0132\036.google.priva" "cy.dlp.v2.FieldId*t\n\nLikelihood\022\032\n\026LIKEL" "IHOOD_UNSPECIFIED\020\000\022\021\n\rVERY_UNLIKELY\020\001\022\014" "\n\010UNLIKELY\020\002\022\014\n\010POSSIBLE\020\003\022\n\n\006LIKELY\020\004\022\017" "\n\013VERY_LIKELY\020\005*\177\n\010FileType\022\031\n\025FILE_TYPE" "_UNSPECIFIED\020\000\022\017\n\013BINARY_FILE\020\001\022\r\n\tTEXT_" "FILE\020\002\022\t\n\005IMAGE\020\003\022\010\n\004WORD\020\005\022\007\n\003PDF\020\006\022\010\n\004" "AVRO\020\007\022\007\n\003CSV\020\010\022\007\n\003TSV\020\tB\250\001\n\031com.google." "privacy.dlp.v2B\nDlpStorageP\001Z8google.gol" "ang.org/genproto/googleapis/privacy/dlp/" "v2;dlp\252\002\023Google.Cloud.Dlp.V2\312\002\023Google\\Cl" "oud\\Dlp\\V2\352\002\026Google::Cloud::Dlp::V2b\006pro" "to3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = { false, InitDefaults_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, descriptor_table_protodef_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, "google/privacy/dlp/v2/storage.proto", &assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, 5163, }; void AddDescriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto() { static constexpr ::google::protobuf::internal::InitFunc deps[3] = { ::AddDescriptors_google_2fapi_2fresource_2eproto, ::AddDescriptors_google_2fprotobuf_2ftimestamp_2eproto, ::AddDescriptors_google_2fapi_2fannotations_2eproto, }; ::google::protobuf::internal::AddDescriptors(&descriptor_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto, deps, 3); } // Force running AddDescriptors() at dynamic initialization time. static bool dynamic_init_dummy_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto = []() { AddDescriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto(); return true; }(); namespace google { namespace privacy { namespace dlp { namespace v2 { const ::google::protobuf::EnumDescriptor* CustomInfoType_ExclusionType_descriptor() { ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[0]; } bool CustomInfoType_ExclusionType_IsValid(int value) { switch (value) { case 0: case 1: return true; default: return false; } } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const CustomInfoType_ExclusionType CustomInfoType::EXCLUSION_TYPE_UNSPECIFIED; const CustomInfoType_ExclusionType CustomInfoType::EXCLUSION_TYPE_EXCLUDE; const CustomInfoType_ExclusionType CustomInfoType::ExclusionType_MIN; const CustomInfoType_ExclusionType CustomInfoType::ExclusionType_MAX; const int CustomInfoType::ExclusionType_ARRAYSIZE; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 const ::google::protobuf::EnumDescriptor* CloudStorageOptions_SampleMethod_descriptor() { ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[1]; } bool CloudStorageOptions_SampleMethod_IsValid(int value) { switch (value) { case 0: case 1: case 2: return true; default: return false; } } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const CloudStorageOptions_SampleMethod CloudStorageOptions::SAMPLE_METHOD_UNSPECIFIED; const CloudStorageOptions_SampleMethod CloudStorageOptions::TOP; const CloudStorageOptions_SampleMethod CloudStorageOptions::RANDOM_START; const CloudStorageOptions_SampleMethod CloudStorageOptions::SampleMethod_MIN; const CloudStorageOptions_SampleMethod CloudStorageOptions::SampleMethod_MAX; const int CloudStorageOptions::SampleMethod_ARRAYSIZE; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 const ::google::protobuf::EnumDescriptor* BigQueryOptions_SampleMethod_descriptor() { ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[2]; } bool BigQueryOptions_SampleMethod_IsValid(int value) { switch (value) { case 0: case 1: case 2: return true; default: return false; } } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const BigQueryOptions_SampleMethod BigQueryOptions::SAMPLE_METHOD_UNSPECIFIED; const BigQueryOptions_SampleMethod BigQueryOptions::TOP; const BigQueryOptions_SampleMethod BigQueryOptions::RANDOM_START; const BigQueryOptions_SampleMethod BigQueryOptions::SampleMethod_MIN; const BigQueryOptions_SampleMethod BigQueryOptions::SampleMethod_MAX; const int BigQueryOptions::SampleMethod_ARRAYSIZE; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 const ::google::protobuf::EnumDescriptor* Likelihood_descriptor() { ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[3]; } bool Likelihood_IsValid(int value) { switch (value) { case 0: case 1: case 2: case 3: case 4: case 5: return true; default: return false; } } const ::google::protobuf::EnumDescriptor* FileType_descriptor() { ::google::protobuf::internal::AssignDescriptors(&assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return file_level_enum_descriptors_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[4]; } bool FileType_IsValid(int value) { switch (value) { case 0: case 1: case 2: case 3: case 5: case 6: case 7: case 8: case 9: return true; default: return false; } } // =================================================================== void InfoType::InitAsDefaultInstance() { } class InfoType::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int InfoType::kNameFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 InfoType::InfoType() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.InfoType) } InfoType::InfoType(const InfoType& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.InfoType) } void InfoType::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } InfoType::~InfoType() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.InfoType) SharedDtor(); } void InfoType::SharedDtor() { name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void InfoType::SetCachedSize(int size) const { _cached_size_.Set(size); } const InfoType& InfoType::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_InfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void InfoType::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.InfoType) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* InfoType::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<InfoType*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string name = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.InfoType.name"); object = msg->mutable_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool InfoType::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.InfoType) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.InfoType.name")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.InfoType) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.InfoType) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void InfoType::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.InfoType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.InfoType.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->name(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.InfoType) } ::google::protobuf::uint8* InfoType::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.InfoType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.InfoType.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->name(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.InfoType) return target; } size_t InfoType::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.InfoType) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void InfoType::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.InfoType) GOOGLE_DCHECK_NE(&from, this); const InfoType* source = ::google::protobuf::DynamicCastToGenerated<InfoType>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.InfoType) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.InfoType) MergeFrom(*source); } } void InfoType::MergeFrom(const InfoType& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.InfoType) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } } void InfoType::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.InfoType) if (&from == this) return; Clear(); MergeFrom(from); } void InfoType::CopyFrom(const InfoType& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.InfoType) if (&from == this) return; Clear(); MergeFrom(from); } bool InfoType::IsInitialized() const { return true; } void InfoType::Swap(InfoType* other) { if (other == this) return; InternalSwap(other); } void InfoType::InternalSwap(InfoType* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata InfoType::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void StoredType::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_StoredType_default_instance_._instance.get_mutable()->create_time_ = const_cast< ::google::protobuf::Timestamp*>( ::google::protobuf::Timestamp::internal_default_instance()); } class StoredType::HasBitSetters { public: static const ::google::protobuf::Timestamp& create_time(const StoredType* msg); }; const ::google::protobuf::Timestamp& StoredType::HasBitSetters::create_time(const StoredType* msg) { return *msg->create_time_; } void StoredType::clear_create_time() { if (GetArenaNoVirtual() == nullptr && create_time_ != nullptr) { delete create_time_; } create_time_ = nullptr; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int StoredType::kNameFieldNumber; const int StoredType::kCreateTimeFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 StoredType::StoredType() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.StoredType) } StoredType::StoredType(const StoredType& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } if (from.has_create_time()) { create_time_ = new ::google::protobuf::Timestamp(*from.create_time_); } else { create_time_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.StoredType) } void StoredType::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); create_time_ = nullptr; } StoredType::~StoredType() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.StoredType) SharedDtor(); } void StoredType::SharedDtor() { name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete create_time_; } void StoredType::SetCachedSize(int size) const { _cached_size_.Set(size); } const StoredType& StoredType::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_StoredType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void StoredType::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.StoredType) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == nullptr && create_time_ != nullptr) { delete create_time_; } create_time_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* StoredType::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<StoredType*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string name = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.StoredType.name"); object = msg->mutable_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // .google.protobuf.Timestamp create_time = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::Timestamp::_InternalParse; object = msg->mutable_create_time(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool StoredType::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.StoredType) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.StoredType.name")); } else { goto handle_unusual; } break; } // .google.protobuf.Timestamp create_time = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_create_time())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.StoredType) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.StoredType) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void StoredType::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.StoredType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.StoredType.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->name(), output); } // .google.protobuf.Timestamp create_time = 2; if (this->has_create_time()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::create_time(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.StoredType) } ::google::protobuf::uint8* StoredType::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.StoredType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.StoredType.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->name(), target); } // .google.protobuf.Timestamp create_time = 2; if (this->has_create_time()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::create_time(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.StoredType) return target; } size_t StoredType::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.StoredType) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } // .google.protobuf.Timestamp create_time = 2; if (this->has_create_time()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *create_time_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void StoredType::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.StoredType) GOOGLE_DCHECK_NE(&from, this); const StoredType* source = ::google::protobuf::DynamicCastToGenerated<StoredType>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.StoredType) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.StoredType) MergeFrom(*source); } } void StoredType::MergeFrom(const StoredType& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.StoredType) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } if (from.has_create_time()) { mutable_create_time()->::google::protobuf::Timestamp::MergeFrom(from.create_time()); } } void StoredType::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.StoredType) if (&from == this) return; Clear(); MergeFrom(from); } void StoredType::CopyFrom(const StoredType& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.StoredType) if (&from == this) return; Clear(); MergeFrom(from); } bool StoredType::IsInitialized() const { return true; } void StoredType::Swap(StoredType* other) { if (other == this) return; InternalSwap(other); } void StoredType::InternalSwap(StoredType* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(create_time_, other->create_time_); } ::google::protobuf::Metadata StoredType::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_Dictionary_WordList::InitAsDefaultInstance() { } class CustomInfoType_Dictionary_WordList::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_Dictionary_WordList::kWordsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_Dictionary_WordList::CustomInfoType_Dictionary_WordList() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) } CustomInfoType_Dictionary_WordList::CustomInfoType_Dictionary_WordList(const CustomInfoType_Dictionary_WordList& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), words_(from.words_) { _internal_metadata_.MergeFrom(from._internal_metadata_); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) } void CustomInfoType_Dictionary_WordList::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); } CustomInfoType_Dictionary_WordList::~CustomInfoType_Dictionary_WordList() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) SharedDtor(); } void CustomInfoType_Dictionary_WordList::SharedDtor() { } void CustomInfoType_Dictionary_WordList::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_Dictionary_WordList& CustomInfoType_Dictionary_WordList::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_Dictionary_WordList_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_Dictionary_WordList::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; words_.Clear(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_Dictionary_WordList::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_Dictionary_WordList*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // repeated string words = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList.words"); object = msg->add_words(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 10 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_Dictionary_WordList::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated string words = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_words())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->words(this->words_size() - 1).data(), static_cast<int>(this->words(this->words_size() - 1).length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList.words")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_Dictionary_WordList::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // repeated string words = 1; for (int i = 0, n = this->words_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->words(i).data(), static_cast<int>(this->words(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList.words"); ::google::protobuf::internal::WireFormatLite::WriteString( 1, this->words(i), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) } ::google::protobuf::uint8* CustomInfoType_Dictionary_WordList::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // repeated string words = 1; for (int i = 0, n = this->words_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->words(i).data(), static_cast<int>(this->words(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList.words"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(1, this->words(i), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) return target; } size_t CustomInfoType_Dictionary_WordList::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated string words = 1; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->words_size()); for (int i = 0, n = this->words_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->words(i)); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_Dictionary_WordList::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_Dictionary_WordList* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_Dictionary_WordList>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) MergeFrom(*source); } } void CustomInfoType_Dictionary_WordList::MergeFrom(const CustomInfoType_Dictionary_WordList& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; words_.MergeFrom(from.words_); } void CustomInfoType_Dictionary_WordList::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_Dictionary_WordList::CopyFrom(const CustomInfoType_Dictionary_WordList& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_Dictionary_WordList::IsInitialized() const { return true; } void CustomInfoType_Dictionary_WordList::Swap(CustomInfoType_Dictionary_WordList* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_Dictionary_WordList::InternalSwap(CustomInfoType_Dictionary_WordList* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); words_.InternalSwap(CastToBase(&other->words_)); } ::google::protobuf::Metadata CustomInfoType_Dictionary_WordList::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_Dictionary::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CustomInfoType_Dictionary_default_instance_.word_list_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList*>( ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_Dictionary_default_instance_.cloud_storage_path_ = const_cast< ::google::privacy::dlp::v2::CloudStoragePath*>( ::google::privacy::dlp::v2::CloudStoragePath::internal_default_instance()); } class CustomInfoType_Dictionary::HasBitSetters { public: static const ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList& word_list(const CustomInfoType_Dictionary* msg); static const ::google::privacy::dlp::v2::CloudStoragePath& cloud_storage_path(const CustomInfoType_Dictionary* msg); }; const ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList& CustomInfoType_Dictionary::HasBitSetters::word_list(const CustomInfoType_Dictionary* msg) { return *msg->source_.word_list_; } const ::google::privacy::dlp::v2::CloudStoragePath& CustomInfoType_Dictionary::HasBitSetters::cloud_storage_path(const CustomInfoType_Dictionary* msg) { return *msg->source_.cloud_storage_path_; } void CustomInfoType_Dictionary::set_allocated_word_list(::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList* word_list) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_source(); if (word_list) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { word_list = ::google::protobuf::internal::GetOwnedMessage( message_arena, word_list, submessage_arena); } set_has_word_list(); source_.word_list_ = word_list; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.Dictionary.word_list) } void CustomInfoType_Dictionary::set_allocated_cloud_storage_path(::google::privacy::dlp::v2::CloudStoragePath* cloud_storage_path) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_source(); if (cloud_storage_path) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { cloud_storage_path = ::google::protobuf::internal::GetOwnedMessage( message_arena, cloud_storage_path, submessage_arena); } set_has_cloud_storage_path(); source_.cloud_storage_path_ = cloud_storage_path; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.Dictionary.cloud_storage_path) } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_Dictionary::kWordListFieldNumber; const int CustomInfoType_Dictionary::kCloudStoragePathFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_Dictionary::CustomInfoType_Dictionary() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.Dictionary) } CustomInfoType_Dictionary::CustomInfoType_Dictionary(const CustomInfoType_Dictionary& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); clear_has_source(); switch (from.source_case()) { case kWordList: { mutable_word_list()->::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList::MergeFrom(from.word_list()); break; } case kCloudStoragePath: { mutable_cloud_storage_path()->::google::privacy::dlp::v2::CloudStoragePath::MergeFrom(from.cloud_storage_path()); break; } case SOURCE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.Dictionary) } void CustomInfoType_Dictionary::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); clear_has_source(); } CustomInfoType_Dictionary::~CustomInfoType_Dictionary() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.Dictionary) SharedDtor(); } void CustomInfoType_Dictionary::SharedDtor() { if (has_source()) { clear_source(); } } void CustomInfoType_Dictionary::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_Dictionary& CustomInfoType_Dictionary::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_Dictionary_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_Dictionary::clear_source() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) switch (source_case()) { case kWordList: { delete source_.word_list_; break; } case kCloudStoragePath: { delete source_.cloud_storage_path_; break; } case SOURCE_NOT_SET: { break; } } _oneof_case_[0] = SOURCE_NOT_SET; } void CustomInfoType_Dictionary::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; clear_source(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_Dictionary::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_Dictionary*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList word_list = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList::_InternalParse; object = msg->mutable_word_list(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CloudStoragePath cloud_storage_path = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CloudStoragePath::_InternalParse; object = msg->mutable_cloud_storage_path(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_Dictionary::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList word_list = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_word_list())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CloudStoragePath cloud_storage_path = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_cloud_storage_path())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.Dictionary) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.Dictionary) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_Dictionary::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList word_list = 1; if (has_word_list()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::word_list(this), output); } // .google.privacy.dlp.v2.CloudStoragePath cloud_storage_path = 3; if (has_cloud_storage_path()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::cloud_storage_path(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.Dictionary) } ::google::protobuf::uint8* CustomInfoType_Dictionary::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList word_list = 1; if (has_word_list()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::word_list(this), target); } // .google.privacy.dlp.v2.CloudStoragePath cloud_storage_path = 3; if (has_cloud_storage_path()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::cloud_storage_path(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.Dictionary) return target; } size_t CustomInfoType_Dictionary::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; switch (source_case()) { // .google.privacy.dlp.v2.CustomInfoType.Dictionary.WordList word_list = 1; case kWordList: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *source_.word_list_); break; } // .google.privacy.dlp.v2.CloudStoragePath cloud_storage_path = 3; case kCloudStoragePath: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *source_.cloud_storage_path_); break; } case SOURCE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_Dictionary::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_Dictionary* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_Dictionary>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.Dictionary) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.Dictionary) MergeFrom(*source); } } void CustomInfoType_Dictionary::MergeFrom(const CustomInfoType_Dictionary& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; switch (from.source_case()) { case kWordList: { mutable_word_list()->::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList::MergeFrom(from.word_list()); break; } case kCloudStoragePath: { mutable_cloud_storage_path()->::google::privacy::dlp::v2::CloudStoragePath::MergeFrom(from.cloud_storage_path()); break; } case SOURCE_NOT_SET: { break; } } } void CustomInfoType_Dictionary::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_Dictionary::CopyFrom(const CustomInfoType_Dictionary& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Dictionary) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_Dictionary::IsInitialized() const { return true; } void CustomInfoType_Dictionary::Swap(CustomInfoType_Dictionary* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_Dictionary::InternalSwap(CustomInfoType_Dictionary* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(source_, other->source_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata CustomInfoType_Dictionary::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_Regex::InitAsDefaultInstance() { } class CustomInfoType_Regex::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_Regex::kPatternFieldNumber; const int CustomInfoType_Regex::kGroupIndexesFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_Regex::CustomInfoType_Regex() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.Regex) } CustomInfoType_Regex::CustomInfoType_Regex(const CustomInfoType_Regex& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), group_indexes_(from.group_indexes_) { _internal_metadata_.MergeFrom(from._internal_metadata_); pattern_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.pattern().size() > 0) { pattern_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.pattern_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.Regex) } void CustomInfoType_Regex::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); pattern_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } CustomInfoType_Regex::~CustomInfoType_Regex() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.Regex) SharedDtor(); } void CustomInfoType_Regex::SharedDtor() { pattern_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void CustomInfoType_Regex::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_Regex& CustomInfoType_Regex::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_Regex_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_Regex::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.Regex) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; group_indexes_.Clear(); pattern_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_Regex::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_Regex*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string pattern = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CustomInfoType.Regex.pattern"); object = msg->mutable_pattern(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // repeated int32 group_indexes = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) == 18) { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::internal::PackedInt32Parser; object = msg->mutable_group_indexes(); if (size > end - ptr) goto len_delim_till_end; auto newend = ptr + size; if (size) ptr = parser_till_end(ptr, newend, object, ctx); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr == newend); break; } else if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; do { msg->add_group_indexes(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 16 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_Regex::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.Regex) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string pattern = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_pattern())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->pattern().data(), static_cast<int>(this->pattern().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CustomInfoType.Regex.pattern")); } else { goto handle_unusual; } break; } // repeated int32 group_indexes = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, this->mutable_group_indexes()))); } else if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitiveNoInline< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( 1, 18u, input, this->mutable_group_indexes()))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.Regex) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.Regex) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_Regex::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.Regex) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string pattern = 1; if (this->pattern().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->pattern().data(), static_cast<int>(this->pattern().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CustomInfoType.Regex.pattern"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->pattern(), output); } // repeated int32 group_indexes = 2; if (this->group_indexes_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag(2, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(_group_indexes_cached_byte_size_.load( std::memory_order_relaxed)); } for (int i = 0, n = this->group_indexes_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteInt32NoTag( this->group_indexes(i), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.Regex) } ::google::protobuf::uint8* CustomInfoType_Regex::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.Regex) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string pattern = 1; if (this->pattern().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->pattern().data(), static_cast<int>(this->pattern().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CustomInfoType.Regex.pattern"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->pattern(), target); } // repeated int32 group_indexes = 2; if (this->group_indexes_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 2, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( _group_indexes_cached_byte_size_.load(std::memory_order_relaxed), target); target = ::google::protobuf::internal::WireFormatLite:: WriteInt32NoTagToArray(this->group_indexes_, target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.Regex) return target; } size_t CustomInfoType_Regex::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.Regex) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated int32 group_indexes = 2; { size_t data_size = ::google::protobuf::internal::WireFormatLite:: Int32Size(this->group_indexes_); if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast<::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); _group_indexes_cached_byte_size_.store(cached_size, std::memory_order_relaxed); total_size += data_size; } // string pattern = 1; if (this->pattern().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->pattern()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_Regex::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Regex) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_Regex* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_Regex>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.Regex) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.Regex) MergeFrom(*source); } } void CustomInfoType_Regex::MergeFrom(const CustomInfoType_Regex& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.Regex) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; group_indexes_.MergeFrom(from.group_indexes_); if (from.pattern().size() > 0) { pattern_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.pattern_); } } void CustomInfoType_Regex::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Regex) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_Regex::CopyFrom(const CustomInfoType_Regex& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.Regex) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_Regex::IsInitialized() const { return true; } void CustomInfoType_Regex::Swap(CustomInfoType_Regex* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_Regex::InternalSwap(CustomInfoType_Regex* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); group_indexes_.InternalSwap(&other->group_indexes_); pattern_.Swap(&other->pattern_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata CustomInfoType_Regex::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_SurrogateType::InitAsDefaultInstance() { } class CustomInfoType_SurrogateType::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_SurrogateType::CustomInfoType_SurrogateType() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.SurrogateType) } CustomInfoType_SurrogateType::CustomInfoType_SurrogateType(const CustomInfoType_SurrogateType& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.SurrogateType) } void CustomInfoType_SurrogateType::SharedCtor() { } CustomInfoType_SurrogateType::~CustomInfoType_SurrogateType() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.SurrogateType) SharedDtor(); } void CustomInfoType_SurrogateType::SharedDtor() { } void CustomInfoType_SurrogateType::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_SurrogateType& CustomInfoType_SurrogateType::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_SurrogateType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_SurrogateType::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_SurrogateType::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_SurrogateType*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { default: { if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_SurrogateType::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.SurrogateType) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.SurrogateType) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_SurrogateType::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.SurrogateType) } ::google::protobuf::uint8* CustomInfoType_SurrogateType::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.SurrogateType) return target; } size_t CustomInfoType_SurrogateType::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_SurrogateType::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_SurrogateType* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_SurrogateType>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.SurrogateType) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.SurrogateType) MergeFrom(*source); } } void CustomInfoType_SurrogateType::MergeFrom(const CustomInfoType_SurrogateType& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; } void CustomInfoType_SurrogateType::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_SurrogateType::CopyFrom(const CustomInfoType_SurrogateType& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.SurrogateType) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_SurrogateType::IsInitialized() const { return true; } void CustomInfoType_SurrogateType::Swap(CustomInfoType_SurrogateType* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_SurrogateType::InternalSwap(CustomInfoType_SurrogateType* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); } ::google::protobuf::Metadata CustomInfoType_SurrogateType::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_DetectionRule_Proximity::InitAsDefaultInstance() { } class CustomInfoType_DetectionRule_Proximity::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_DetectionRule_Proximity::kWindowBeforeFieldNumber; const int CustomInfoType_DetectionRule_Proximity::kWindowAfterFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_DetectionRule_Proximity::CustomInfoType_DetectionRule_Proximity() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) } CustomInfoType_DetectionRule_Proximity::CustomInfoType_DetectionRule_Proximity(const CustomInfoType_DetectionRule_Proximity& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); ::memcpy(&window_before_, &from.window_before_, static_cast<size_t>(reinterpret_cast<char*>(&window_after_) - reinterpret_cast<char*>(&window_before_)) + sizeof(window_after_)); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) } void CustomInfoType_DetectionRule_Proximity::SharedCtor() { ::memset(&window_before_, 0, static_cast<size_t>( reinterpret_cast<char*>(&window_after_) - reinterpret_cast<char*>(&window_before_)) + sizeof(window_after_)); } CustomInfoType_DetectionRule_Proximity::~CustomInfoType_DetectionRule_Proximity() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) SharedDtor(); } void CustomInfoType_DetectionRule_Proximity::SharedDtor() { } void CustomInfoType_DetectionRule_Proximity::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_DetectionRule_Proximity& CustomInfoType_DetectionRule_Proximity::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_DetectionRule_Proximity_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_DetectionRule_Proximity::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; ::memset(&window_before_, 0, static_cast<size_t>( reinterpret_cast<char*>(&window_after_) - reinterpret_cast<char*>(&window_before_)) + sizeof(window_after_)); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_DetectionRule_Proximity::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_DetectionRule_Proximity*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // int32 window_before = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; msg->set_window_before(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // int32 window_after = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; msg->set_window_after(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_DetectionRule_Proximity::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // int32 window_before = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &window_before_))); } else { goto handle_unusual; } break; } // int32 window_after = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &window_after_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_DetectionRule_Proximity::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // int32 window_before = 1; if (this->window_before() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->window_before(), output); } // int32 window_after = 2; if (this->window_after() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->window_after(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) } ::google::protobuf::uint8* CustomInfoType_DetectionRule_Proximity::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // int32 window_before = 1; if (this->window_before() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->window_before(), target); } // int32 window_after = 2; if (this->window_after() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->window_after(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) return target; } size_t CustomInfoType_DetectionRule_Proximity::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // int32 window_before = 1; if (this->window_before() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->window_before()); } // int32 window_after = 2; if (this->window_after() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->window_after()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_DetectionRule_Proximity::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_DetectionRule_Proximity* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_DetectionRule_Proximity>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) MergeFrom(*source); } } void CustomInfoType_DetectionRule_Proximity::MergeFrom(const CustomInfoType_DetectionRule_Proximity& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.window_before() != 0) { set_window_before(from.window_before()); } if (from.window_after() != 0) { set_window_after(from.window_after()); } } void CustomInfoType_DetectionRule_Proximity::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_DetectionRule_Proximity::CopyFrom(const CustomInfoType_DetectionRule_Proximity& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_DetectionRule_Proximity::IsInitialized() const { return true; } void CustomInfoType_DetectionRule_Proximity::Swap(CustomInfoType_DetectionRule_Proximity* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_DetectionRule_Proximity::InternalSwap(CustomInfoType_DetectionRule_Proximity* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(window_before_, other->window_before_); swap(window_after_, other->window_after_); } ::google::protobuf::Metadata CustomInfoType_DetectionRule_Proximity::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_DetectionRule_LikelihoodAdjustment::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_LikelihoodAdjustment_default_instance_.fixed_likelihood_ = 0; ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_LikelihoodAdjustment_default_instance_.relative_likelihood_ = 0; } class CustomInfoType_DetectionRule_LikelihoodAdjustment::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_DetectionRule_LikelihoodAdjustment::kFixedLikelihoodFieldNumber; const int CustomInfoType_DetectionRule_LikelihoodAdjustment::kRelativeLikelihoodFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_DetectionRule_LikelihoodAdjustment::CustomInfoType_DetectionRule_LikelihoodAdjustment() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) } CustomInfoType_DetectionRule_LikelihoodAdjustment::CustomInfoType_DetectionRule_LikelihoodAdjustment(const CustomInfoType_DetectionRule_LikelihoodAdjustment& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); clear_has_adjustment(); switch (from.adjustment_case()) { case kFixedLikelihood: { set_fixed_likelihood(from.fixed_likelihood()); break; } case kRelativeLikelihood: { set_relative_likelihood(from.relative_likelihood()); break; } case ADJUSTMENT_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) } void CustomInfoType_DetectionRule_LikelihoodAdjustment::SharedCtor() { clear_has_adjustment(); } CustomInfoType_DetectionRule_LikelihoodAdjustment::~CustomInfoType_DetectionRule_LikelihoodAdjustment() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) SharedDtor(); } void CustomInfoType_DetectionRule_LikelihoodAdjustment::SharedDtor() { if (has_adjustment()) { clear_adjustment(); } } void CustomInfoType_DetectionRule_LikelihoodAdjustment::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_DetectionRule_LikelihoodAdjustment& CustomInfoType_DetectionRule_LikelihoodAdjustment::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_DetectionRule_LikelihoodAdjustment_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_DetectionRule_LikelihoodAdjustment::clear_adjustment() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) switch (adjustment_case()) { case kFixedLikelihood: { // No need to clear break; } case kRelativeLikelihood: { // No need to clear break; } case ADJUSTMENT_NOT_SET: { break; } } _oneof_case_[0] = ADJUSTMENT_NOT_SET; } void CustomInfoType_DetectionRule_LikelihoodAdjustment::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; clear_adjustment(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_DetectionRule_LikelihoodAdjustment::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_DetectionRule_LikelihoodAdjustment*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.Likelihood fixed_likelihood = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual; ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->set_fixed_likelihood(static_cast<::google::privacy::dlp::v2::Likelihood>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // int32 relative_likelihood = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; msg->set_relative_likelihood(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_DetectionRule_LikelihoodAdjustment::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.Likelihood fixed_likelihood = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_fixed_likelihood(static_cast< ::google::privacy::dlp::v2::Likelihood >(value)); } else { goto handle_unusual; } break; } // int32 relative_likelihood = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { clear_adjustment(); DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &adjustment_.relative_likelihood_))); set_has_relative_likelihood(); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_DetectionRule_LikelihoodAdjustment::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.Likelihood fixed_likelihood = 1; if (has_fixed_likelihood()) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 1, this->fixed_likelihood(), output); } // int32 relative_likelihood = 2; if (has_relative_likelihood()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->relative_likelihood(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) } ::google::protobuf::uint8* CustomInfoType_DetectionRule_LikelihoodAdjustment::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.Likelihood fixed_likelihood = 1; if (has_fixed_likelihood()) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 1, this->fixed_likelihood(), target); } // int32 relative_likelihood = 2; if (has_relative_likelihood()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->relative_likelihood(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) return target; } size_t CustomInfoType_DetectionRule_LikelihoodAdjustment::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; switch (adjustment_case()) { // .google.privacy.dlp.v2.Likelihood fixed_likelihood = 1; case kFixedLikelihood: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->fixed_likelihood()); break; } // int32 relative_likelihood = 2; case kRelativeLikelihood: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->relative_likelihood()); break; } case ADJUSTMENT_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_DetectionRule_LikelihoodAdjustment::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_DetectionRule_LikelihoodAdjustment* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_DetectionRule_LikelihoodAdjustment>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) MergeFrom(*source); } } void CustomInfoType_DetectionRule_LikelihoodAdjustment::MergeFrom(const CustomInfoType_DetectionRule_LikelihoodAdjustment& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; switch (from.adjustment_case()) { case kFixedLikelihood: { set_fixed_likelihood(from.fixed_likelihood()); break; } case kRelativeLikelihood: { set_relative_likelihood(from.relative_likelihood()); break; } case ADJUSTMENT_NOT_SET: { break; } } } void CustomInfoType_DetectionRule_LikelihoodAdjustment::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_DetectionRule_LikelihoodAdjustment::CopyFrom(const CustomInfoType_DetectionRule_LikelihoodAdjustment& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_DetectionRule_LikelihoodAdjustment::IsInitialized() const { return true; } void CustomInfoType_DetectionRule_LikelihoodAdjustment::Swap(CustomInfoType_DetectionRule_LikelihoodAdjustment* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_DetectionRule_LikelihoodAdjustment::InternalSwap(CustomInfoType_DetectionRule_LikelihoodAdjustment* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(adjustment_, other->adjustment_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata CustomInfoType_DetectionRule_LikelihoodAdjustment::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_DetectionRule_HotwordRule::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_HotwordRule_default_instance_._instance.get_mutable()->hotword_regex_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_Regex*>( ::google::privacy::dlp::v2::CustomInfoType_Regex::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_HotwordRule_default_instance_._instance.get_mutable()->proximity_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity*>( ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_HotwordRule_default_instance_._instance.get_mutable()->likelihood_adjustment_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment*>( ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment::internal_default_instance()); } class CustomInfoType_DetectionRule_HotwordRule::HasBitSetters { public: static const ::google::privacy::dlp::v2::CustomInfoType_Regex& hotword_regex(const CustomInfoType_DetectionRule_HotwordRule* msg); static const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity& proximity(const CustomInfoType_DetectionRule_HotwordRule* msg); static const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment& likelihood_adjustment(const CustomInfoType_DetectionRule_HotwordRule* msg); }; const ::google::privacy::dlp::v2::CustomInfoType_Regex& CustomInfoType_DetectionRule_HotwordRule::HasBitSetters::hotword_regex(const CustomInfoType_DetectionRule_HotwordRule* msg) { return *msg->hotword_regex_; } const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity& CustomInfoType_DetectionRule_HotwordRule::HasBitSetters::proximity(const CustomInfoType_DetectionRule_HotwordRule* msg) { return *msg->proximity_; } const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment& CustomInfoType_DetectionRule_HotwordRule::HasBitSetters::likelihood_adjustment(const CustomInfoType_DetectionRule_HotwordRule* msg) { return *msg->likelihood_adjustment_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_DetectionRule_HotwordRule::kHotwordRegexFieldNumber; const int CustomInfoType_DetectionRule_HotwordRule::kProximityFieldNumber; const int CustomInfoType_DetectionRule_HotwordRule::kLikelihoodAdjustmentFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_DetectionRule_HotwordRule::CustomInfoType_DetectionRule_HotwordRule() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) } CustomInfoType_DetectionRule_HotwordRule::CustomInfoType_DetectionRule_HotwordRule(const CustomInfoType_DetectionRule_HotwordRule& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_hotword_regex()) { hotword_regex_ = new ::google::privacy::dlp::v2::CustomInfoType_Regex(*from.hotword_regex_); } else { hotword_regex_ = nullptr; } if (from.has_proximity()) { proximity_ = new ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity(*from.proximity_); } else { proximity_ = nullptr; } if (from.has_likelihood_adjustment()) { likelihood_adjustment_ = new ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment(*from.likelihood_adjustment_); } else { likelihood_adjustment_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) } void CustomInfoType_DetectionRule_HotwordRule::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&hotword_regex_, 0, static_cast<size_t>( reinterpret_cast<char*>(&likelihood_adjustment_) - reinterpret_cast<char*>(&hotword_regex_)) + sizeof(likelihood_adjustment_)); } CustomInfoType_DetectionRule_HotwordRule::~CustomInfoType_DetectionRule_HotwordRule() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) SharedDtor(); } void CustomInfoType_DetectionRule_HotwordRule::SharedDtor() { if (this != internal_default_instance()) delete hotword_regex_; if (this != internal_default_instance()) delete proximity_; if (this != internal_default_instance()) delete likelihood_adjustment_; } void CustomInfoType_DetectionRule_HotwordRule::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_DetectionRule_HotwordRule& CustomInfoType_DetectionRule_HotwordRule::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_DetectionRule_HotwordRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_DetectionRule_HotwordRule::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && hotword_regex_ != nullptr) { delete hotword_regex_; } hotword_regex_ = nullptr; if (GetArenaNoVirtual() == nullptr && proximity_ != nullptr) { delete proximity_; } proximity_ = nullptr; if (GetArenaNoVirtual() == nullptr && likelihood_adjustment_ != nullptr) { delete likelihood_adjustment_; } likelihood_adjustment_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_DetectionRule_HotwordRule::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_DetectionRule_HotwordRule*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.CustomInfoType.Regex hotword_regex = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_Regex::_InternalParse; object = msg->mutable_hotword_regex(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity proximity = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity::_InternalParse; object = msg->mutable_proximity(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment likelihood_adjustment = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment::_InternalParse; object = msg->mutable_likelihood_adjustment(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_DetectionRule_HotwordRule::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.CustomInfoType.Regex hotword_regex = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_hotword_regex())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity proximity = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_proximity())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment likelihood_adjustment = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_likelihood_adjustment())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_DetectionRule_HotwordRule::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.Regex hotword_regex = 1; if (this->has_hotword_regex()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::hotword_regex(this), output); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity proximity = 2; if (this->has_proximity()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::proximity(this), output); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment likelihood_adjustment = 3; if (this->has_likelihood_adjustment()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::likelihood_adjustment(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) } ::google::protobuf::uint8* CustomInfoType_DetectionRule_HotwordRule::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.Regex hotword_regex = 1; if (this->has_hotword_regex()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::hotword_regex(this), target); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity proximity = 2; if (this->has_proximity()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::proximity(this), target); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment likelihood_adjustment = 3; if (this->has_likelihood_adjustment()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::likelihood_adjustment(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) return target; } size_t CustomInfoType_DetectionRule_HotwordRule::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.Regex hotword_regex = 1; if (this->has_hotword_regex()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *hotword_regex_); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.Proximity proximity = 2; if (this->has_proximity()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *proximity_); } // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.LikelihoodAdjustment likelihood_adjustment = 3; if (this->has_likelihood_adjustment()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *likelihood_adjustment_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_DetectionRule_HotwordRule::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_DetectionRule_HotwordRule* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_DetectionRule_HotwordRule>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) MergeFrom(*source); } } void CustomInfoType_DetectionRule_HotwordRule::MergeFrom(const CustomInfoType_DetectionRule_HotwordRule& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_hotword_regex()) { mutable_hotword_regex()->::google::privacy::dlp::v2::CustomInfoType_Regex::MergeFrom(from.hotword_regex()); } if (from.has_proximity()) { mutable_proximity()->::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity::MergeFrom(from.proximity()); } if (from.has_likelihood_adjustment()) { mutable_likelihood_adjustment()->::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment::MergeFrom(from.likelihood_adjustment()); } } void CustomInfoType_DetectionRule_HotwordRule::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_DetectionRule_HotwordRule::CopyFrom(const CustomInfoType_DetectionRule_HotwordRule& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_DetectionRule_HotwordRule::IsInitialized() const { return true; } void CustomInfoType_DetectionRule_HotwordRule::Swap(CustomInfoType_DetectionRule_HotwordRule* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_DetectionRule_HotwordRule::InternalSwap(CustomInfoType_DetectionRule_HotwordRule* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(hotword_regex_, other->hotword_regex_); swap(proximity_, other->proximity_); swap(likelihood_adjustment_, other->likelihood_adjustment_); } ::google::protobuf::Metadata CustomInfoType_DetectionRule_HotwordRule::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType_DetectionRule::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CustomInfoType_DetectionRule_default_instance_.hotword_rule_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule*>( ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule::internal_default_instance()); } class CustomInfoType_DetectionRule::HasBitSetters { public: static const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule& hotword_rule(const CustomInfoType_DetectionRule* msg); }; const ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule& CustomInfoType_DetectionRule::HasBitSetters::hotword_rule(const CustomInfoType_DetectionRule* msg) { return *msg->type_.hotword_rule_; } void CustomInfoType_DetectionRule::set_allocated_hotword_rule(::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule* hotword_rule) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (hotword_rule) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { hotword_rule = ::google::protobuf::internal::GetOwnedMessage( message_arena, hotword_rule, submessage_arena); } set_has_hotword_rule(); type_.hotword_rule_ = hotword_rule; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.DetectionRule.hotword_rule) } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType_DetectionRule::kHotwordRuleFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType_DetectionRule::CustomInfoType_DetectionRule() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule) } CustomInfoType_DetectionRule::CustomInfoType_DetectionRule(const CustomInfoType_DetectionRule& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); clear_has_type(); switch (from.type_case()) { case kHotwordRule: { mutable_hotword_rule()->::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule::MergeFrom(from.hotword_rule()); break; } case TYPE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule) } void CustomInfoType_DetectionRule::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); clear_has_type(); } CustomInfoType_DetectionRule::~CustomInfoType_DetectionRule() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType.DetectionRule) SharedDtor(); } void CustomInfoType_DetectionRule::SharedDtor() { if (has_type()) { clear_type(); } } void CustomInfoType_DetectionRule::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType_DetectionRule& CustomInfoType_DetectionRule::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_DetectionRule_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType_DetectionRule::clear_type() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) switch (type_case()) { case kHotwordRule: { delete type_.hotword_rule_; break; } case TYPE_NOT_SET: { break; } } _oneof_case_[0] = TYPE_NOT_SET; } void CustomInfoType_DetectionRule::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; clear_type(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType_DetectionRule::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType_DetectionRule*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule hotword_rule = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule::_InternalParse; object = msg->mutable_hotword_rule(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType_DetectionRule::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule hotword_rule = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_hotword_rule())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType.DetectionRule) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType_DetectionRule::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule hotword_rule = 1; if (has_hotword_rule()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::hotword_rule(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule) } ::google::protobuf::uint8* CustomInfoType_DetectionRule::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule hotword_rule = 1; if (has_hotword_rule()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::hotword_rule(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType.DetectionRule) return target; } size_t CustomInfoType_DetectionRule::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; switch (type_case()) { // .google.privacy.dlp.v2.CustomInfoType.DetectionRule.HotwordRule hotword_rule = 1; case kHotwordRule: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.hotword_rule_); break; } case TYPE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType_DetectionRule::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType_DetectionRule* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType_DetectionRule>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType.DetectionRule) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType.DetectionRule) MergeFrom(*source); } } void CustomInfoType_DetectionRule::MergeFrom(const CustomInfoType_DetectionRule& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; switch (from.type_case()) { case kHotwordRule: { mutable_hotword_rule()->::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule::MergeFrom(from.hotword_rule()); break; } case TYPE_NOT_SET: { break; } } } void CustomInfoType_DetectionRule::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType_DetectionRule::CopyFrom(const CustomInfoType_DetectionRule& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType.DetectionRule) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType_DetectionRule::IsInitialized() const { return true; } void CustomInfoType_DetectionRule::Swap(CustomInfoType_DetectionRule* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType_DetectionRule::InternalSwap(CustomInfoType_DetectionRule* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(type_, other->type_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata CustomInfoType_DetectionRule::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CustomInfoType::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CustomInfoType_default_instance_._instance.get_mutable()->info_type_ = const_cast< ::google::privacy::dlp::v2::InfoType*>( ::google::privacy::dlp::v2::InfoType::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_default_instance_.dictionary_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_Dictionary*>( ::google::privacy::dlp::v2::CustomInfoType_Dictionary::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_default_instance_.regex_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_Regex*>( ::google::privacy::dlp::v2::CustomInfoType_Regex::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_default_instance_.surrogate_type_ = const_cast< ::google::privacy::dlp::v2::CustomInfoType_SurrogateType*>( ::google::privacy::dlp::v2::CustomInfoType_SurrogateType::internal_default_instance()); ::google::privacy::dlp::v2::_CustomInfoType_default_instance_.stored_type_ = const_cast< ::google::privacy::dlp::v2::StoredType*>( ::google::privacy::dlp::v2::StoredType::internal_default_instance()); } class CustomInfoType::HasBitSetters { public: static const ::google::privacy::dlp::v2::InfoType& info_type(const CustomInfoType* msg); static const ::google::privacy::dlp::v2::CustomInfoType_Dictionary& dictionary(const CustomInfoType* msg); static const ::google::privacy::dlp::v2::CustomInfoType_Regex& regex(const CustomInfoType* msg); static const ::google::privacy::dlp::v2::CustomInfoType_SurrogateType& surrogate_type(const CustomInfoType* msg); static const ::google::privacy::dlp::v2::StoredType& stored_type(const CustomInfoType* msg); }; const ::google::privacy::dlp::v2::InfoType& CustomInfoType::HasBitSetters::info_type(const CustomInfoType* msg) { return *msg->info_type_; } const ::google::privacy::dlp::v2::CustomInfoType_Dictionary& CustomInfoType::HasBitSetters::dictionary(const CustomInfoType* msg) { return *msg->type_.dictionary_; } const ::google::privacy::dlp::v2::CustomInfoType_Regex& CustomInfoType::HasBitSetters::regex(const CustomInfoType* msg) { return *msg->type_.regex_; } const ::google::privacy::dlp::v2::CustomInfoType_SurrogateType& CustomInfoType::HasBitSetters::surrogate_type(const CustomInfoType* msg) { return *msg->type_.surrogate_type_; } const ::google::privacy::dlp::v2::StoredType& CustomInfoType::HasBitSetters::stored_type(const CustomInfoType* msg) { return *msg->type_.stored_type_; } void CustomInfoType::set_allocated_dictionary(::google::privacy::dlp::v2::CustomInfoType_Dictionary* dictionary) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (dictionary) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { dictionary = ::google::protobuf::internal::GetOwnedMessage( message_arena, dictionary, submessage_arena); } set_has_dictionary(); type_.dictionary_ = dictionary; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.dictionary) } void CustomInfoType::set_allocated_regex(::google::privacy::dlp::v2::CustomInfoType_Regex* regex) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (regex) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { regex = ::google::protobuf::internal::GetOwnedMessage( message_arena, regex, submessage_arena); } set_has_regex(); type_.regex_ = regex; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.regex) } void CustomInfoType::set_allocated_surrogate_type(::google::privacy::dlp::v2::CustomInfoType_SurrogateType* surrogate_type) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (surrogate_type) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { surrogate_type = ::google::protobuf::internal::GetOwnedMessage( message_arena, surrogate_type, submessage_arena); } set_has_surrogate_type(); type_.surrogate_type_ = surrogate_type; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.surrogate_type) } void CustomInfoType::set_allocated_stored_type(::google::privacy::dlp::v2::StoredType* stored_type) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (stored_type) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { stored_type = ::google::protobuf::internal::GetOwnedMessage( message_arena, stored_type, submessage_arena); } set_has_stored_type(); type_.stored_type_ = stored_type; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.CustomInfoType.stored_type) } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CustomInfoType::kInfoTypeFieldNumber; const int CustomInfoType::kLikelihoodFieldNumber; const int CustomInfoType::kDictionaryFieldNumber; const int CustomInfoType::kRegexFieldNumber; const int CustomInfoType::kSurrogateTypeFieldNumber; const int CustomInfoType::kStoredTypeFieldNumber; const int CustomInfoType::kDetectionRulesFieldNumber; const int CustomInfoType::kExclusionTypeFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CustomInfoType::CustomInfoType() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CustomInfoType) } CustomInfoType::CustomInfoType(const CustomInfoType& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), detection_rules_(from.detection_rules_) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_info_type()) { info_type_ = new ::google::privacy::dlp::v2::InfoType(*from.info_type_); } else { info_type_ = nullptr; } ::memcpy(&likelihood_, &from.likelihood_, static_cast<size_t>(reinterpret_cast<char*>(&exclusion_type_) - reinterpret_cast<char*>(&likelihood_)) + sizeof(exclusion_type_)); clear_has_type(); switch (from.type_case()) { case kDictionary: { mutable_dictionary()->::google::privacy::dlp::v2::CustomInfoType_Dictionary::MergeFrom(from.dictionary()); break; } case kRegex: { mutable_regex()->::google::privacy::dlp::v2::CustomInfoType_Regex::MergeFrom(from.regex()); break; } case kSurrogateType: { mutable_surrogate_type()->::google::privacy::dlp::v2::CustomInfoType_SurrogateType::MergeFrom(from.surrogate_type()); break; } case kStoredType: { mutable_stored_type()->::google::privacy::dlp::v2::StoredType::MergeFrom(from.stored_type()); break; } case TYPE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CustomInfoType) } void CustomInfoType::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&info_type_, 0, static_cast<size_t>( reinterpret_cast<char*>(&exclusion_type_) - reinterpret_cast<char*>(&info_type_)) + sizeof(exclusion_type_)); clear_has_type(); } CustomInfoType::~CustomInfoType() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CustomInfoType) SharedDtor(); } void CustomInfoType::SharedDtor() { if (this != internal_default_instance()) delete info_type_; if (has_type()) { clear_type(); } } void CustomInfoType::SetCachedSize(int size) const { _cached_size_.Set(size); } const CustomInfoType& CustomInfoType::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CustomInfoType_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CustomInfoType::clear_type() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.CustomInfoType) switch (type_case()) { case kDictionary: { delete type_.dictionary_; break; } case kRegex: { delete type_.regex_; break; } case kSurrogateType: { delete type_.surrogate_type_; break; } case kStoredType: { delete type_.stored_type_; break; } case TYPE_NOT_SET: { break; } } _oneof_case_[0] = TYPE_NOT_SET; } void CustomInfoType::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CustomInfoType) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; detection_rules_.Clear(); if (GetArenaNoVirtual() == nullptr && info_type_ != nullptr) { delete info_type_; } info_type_ = nullptr; ::memset(&likelihood_, 0, static_cast<size_t>( reinterpret_cast<char*>(&exclusion_type_) - reinterpret_cast<char*>(&likelihood_)) + sizeof(exclusion_type_)); clear_type(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CustomInfoType::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CustomInfoType*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.InfoType info_type = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::InfoType::_InternalParse; object = msg->mutable_info_type(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CustomInfoType.Dictionary dictionary = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_Dictionary::_InternalParse; object = msg->mutable_dictionary(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CustomInfoType.Regex regex = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_Regex::_InternalParse; object = msg->mutable_regex(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CustomInfoType.SurrogateType surrogate_type = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_SurrogateType::_InternalParse; object = msg->mutable_surrogate_type(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.StoredType stored_type = 5; case 5: { if (static_cast<::google::protobuf::uint8>(tag) != 42) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::StoredType::_InternalParse; object = msg->mutable_stored_type(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.Likelihood likelihood = 6; case 6: { if (static_cast<::google::protobuf::uint8>(tag) != 48) goto handle_unusual; ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->set_likelihood(static_cast<::google::privacy::dlp::v2::Likelihood>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // repeated .google.privacy.dlp.v2.CustomInfoType.DetectionRule detection_rules = 7; case 7: { if (static_cast<::google::protobuf::uint8>(tag) != 58) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CustomInfoType_DetectionRule::_InternalParse; object = msg->add_detection_rules(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 58 && (ptr += 1)); break; } // .google.privacy.dlp.v2.CustomInfoType.ExclusionType exclusion_type = 8; case 8: { if (static_cast<::google::protobuf::uint8>(tag) != 64) goto handle_unusual; ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->set_exclusion_type(static_cast<::google::privacy::dlp::v2::CustomInfoType_ExclusionType>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CustomInfoType::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CustomInfoType) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.InfoType info_type = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_info_type())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.Dictionary dictionary = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_dictionary())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.Regex regex = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_regex())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.SurrogateType surrogate_type = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_surrogate_type())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.StoredType stored_type = 5; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_stored_type())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.Likelihood likelihood = 6; case 6: { if (static_cast< ::google::protobuf::uint8>(tag) == (48 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_likelihood(static_cast< ::google::privacy::dlp::v2::Likelihood >(value)); } else { goto handle_unusual; } break; } // repeated .google.privacy.dlp.v2.CustomInfoType.DetectionRule detection_rules = 7; case 7: { if (static_cast< ::google::protobuf::uint8>(tag) == (58 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, add_detection_rules())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CustomInfoType.ExclusionType exclusion_type = 8; case 8: { if (static_cast< ::google::protobuf::uint8>(tag) == (64 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_exclusion_type(static_cast< ::google::privacy::dlp::v2::CustomInfoType_ExclusionType >(value)); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CustomInfoType) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CustomInfoType) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CustomInfoType::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CustomInfoType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.InfoType info_type = 1; if (this->has_info_type()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::info_type(this), output); } // .google.privacy.dlp.v2.CustomInfoType.Dictionary dictionary = 2; if (has_dictionary()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::dictionary(this), output); } // .google.privacy.dlp.v2.CustomInfoType.Regex regex = 3; if (has_regex()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::regex(this), output); } // .google.privacy.dlp.v2.CustomInfoType.SurrogateType surrogate_type = 4; if (has_surrogate_type()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 4, HasBitSetters::surrogate_type(this), output); } // .google.privacy.dlp.v2.StoredType stored_type = 5; if (has_stored_type()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 5, HasBitSetters::stored_type(this), output); } // .google.privacy.dlp.v2.Likelihood likelihood = 6; if (this->likelihood() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 6, this->likelihood(), output); } // repeated .google.privacy.dlp.v2.CustomInfoType.DetectionRule detection_rules = 7; for (unsigned int i = 0, n = static_cast<unsigned int>(this->detection_rules_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 7, this->detection_rules(static_cast<int>(i)), output); } // .google.privacy.dlp.v2.CustomInfoType.ExclusionType exclusion_type = 8; if (this->exclusion_type() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 8, this->exclusion_type(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CustomInfoType) } ::google::protobuf::uint8* CustomInfoType::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CustomInfoType) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.InfoType info_type = 1; if (this->has_info_type()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::info_type(this), target); } // .google.privacy.dlp.v2.CustomInfoType.Dictionary dictionary = 2; if (has_dictionary()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::dictionary(this), target); } // .google.privacy.dlp.v2.CustomInfoType.Regex regex = 3; if (has_regex()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::regex(this), target); } // .google.privacy.dlp.v2.CustomInfoType.SurrogateType surrogate_type = 4; if (has_surrogate_type()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 4, HasBitSetters::surrogate_type(this), target); } // .google.privacy.dlp.v2.StoredType stored_type = 5; if (has_stored_type()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 5, HasBitSetters::stored_type(this), target); } // .google.privacy.dlp.v2.Likelihood likelihood = 6; if (this->likelihood() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 6, this->likelihood(), target); } // repeated .google.privacy.dlp.v2.CustomInfoType.DetectionRule detection_rules = 7; for (unsigned int i = 0, n = static_cast<unsigned int>(this->detection_rules_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 7, this->detection_rules(static_cast<int>(i)), target); } // .google.privacy.dlp.v2.CustomInfoType.ExclusionType exclusion_type = 8; if (this->exclusion_type() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 8, this->exclusion_type(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CustomInfoType) return target; } size_t CustomInfoType::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CustomInfoType) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .google.privacy.dlp.v2.CustomInfoType.DetectionRule detection_rules = 7; { unsigned int count = static_cast<unsigned int>(this->detection_rules_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->detection_rules(static_cast<int>(i))); } } // .google.privacy.dlp.v2.InfoType info_type = 1; if (this->has_info_type()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *info_type_); } // .google.privacy.dlp.v2.Likelihood likelihood = 6; if (this->likelihood() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->likelihood()); } // .google.privacy.dlp.v2.CustomInfoType.ExclusionType exclusion_type = 8; if (this->exclusion_type() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->exclusion_type()); } switch (type_case()) { // .google.privacy.dlp.v2.CustomInfoType.Dictionary dictionary = 2; case kDictionary: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.dictionary_); break; } // .google.privacy.dlp.v2.CustomInfoType.Regex regex = 3; case kRegex: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.regex_); break; } // .google.privacy.dlp.v2.CustomInfoType.SurrogateType surrogate_type = 4; case kSurrogateType: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.surrogate_type_); break; } // .google.privacy.dlp.v2.StoredType stored_type = 5; case kStoredType: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.stored_type_); break; } case TYPE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CustomInfoType::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CustomInfoType) GOOGLE_DCHECK_NE(&from, this); const CustomInfoType* source = ::google::protobuf::DynamicCastToGenerated<CustomInfoType>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CustomInfoType) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CustomInfoType) MergeFrom(*source); } } void CustomInfoType::MergeFrom(const CustomInfoType& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CustomInfoType) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; detection_rules_.MergeFrom(from.detection_rules_); if (from.has_info_type()) { mutable_info_type()->::google::privacy::dlp::v2::InfoType::MergeFrom(from.info_type()); } if (from.likelihood() != 0) { set_likelihood(from.likelihood()); } if (from.exclusion_type() != 0) { set_exclusion_type(from.exclusion_type()); } switch (from.type_case()) { case kDictionary: { mutable_dictionary()->::google::privacy::dlp::v2::CustomInfoType_Dictionary::MergeFrom(from.dictionary()); break; } case kRegex: { mutable_regex()->::google::privacy::dlp::v2::CustomInfoType_Regex::MergeFrom(from.regex()); break; } case kSurrogateType: { mutable_surrogate_type()->::google::privacy::dlp::v2::CustomInfoType_SurrogateType::MergeFrom(from.surrogate_type()); break; } case kStoredType: { mutable_stored_type()->::google::privacy::dlp::v2::StoredType::MergeFrom(from.stored_type()); break; } case TYPE_NOT_SET: { break; } } } void CustomInfoType::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CustomInfoType) if (&from == this) return; Clear(); MergeFrom(from); } void CustomInfoType::CopyFrom(const CustomInfoType& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CustomInfoType) if (&from == this) return; Clear(); MergeFrom(from); } bool CustomInfoType::IsInitialized() const { return true; } void CustomInfoType::Swap(CustomInfoType* other) { if (other == this) return; InternalSwap(other); } void CustomInfoType::InternalSwap(CustomInfoType* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); CastToBase(&detection_rules_)->InternalSwap(CastToBase(&other->detection_rules_)); swap(info_type_, other->info_type_); swap(likelihood_, other->likelihood_); swap(exclusion_type_, other->exclusion_type_); swap(type_, other->type_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata CustomInfoType::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void FieldId::InitAsDefaultInstance() { } class FieldId::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int FieldId::kNameFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 FieldId::FieldId() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.FieldId) } FieldId::FieldId(const FieldId& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.FieldId) } void FieldId::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } FieldId::~FieldId() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.FieldId) SharedDtor(); } void FieldId::SharedDtor() { name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void FieldId::SetCachedSize(int size) const { _cached_size_.Set(size); } const FieldId& FieldId::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_FieldId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void FieldId::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.FieldId) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* FieldId::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<FieldId*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string name = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.FieldId.name"); object = msg->mutable_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool FieldId::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.FieldId) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.FieldId.name")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.FieldId) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.FieldId) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void FieldId::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.FieldId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.FieldId.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->name(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.FieldId) } ::google::protobuf::uint8* FieldId::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.FieldId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.FieldId.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->name(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.FieldId) return target; } size_t FieldId::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.FieldId) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void FieldId::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.FieldId) GOOGLE_DCHECK_NE(&from, this); const FieldId* source = ::google::protobuf::DynamicCastToGenerated<FieldId>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.FieldId) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.FieldId) MergeFrom(*source); } } void FieldId::MergeFrom(const FieldId& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.FieldId) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } } void FieldId::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.FieldId) if (&from == this) return; Clear(); MergeFrom(from); } void FieldId::CopyFrom(const FieldId& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.FieldId) if (&from == this) return; Clear(); MergeFrom(from); } bool FieldId::IsInitialized() const { return true; } void FieldId::Swap(FieldId* other) { if (other == this) return; InternalSwap(other); } void FieldId::InternalSwap(FieldId* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata FieldId::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void PartitionId::InitAsDefaultInstance() { } class PartitionId::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int PartitionId::kProjectIdFieldNumber; const int PartitionId::kNamespaceIdFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 PartitionId::PartitionId() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.PartitionId) } PartitionId::PartitionId(const PartitionId& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); project_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.project_id().size() > 0) { project_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.project_id_); } namespace_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.namespace_id().size() > 0) { namespace_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.namespace_id_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.PartitionId) } void PartitionId::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); project_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); namespace_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } PartitionId::~PartitionId() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.PartitionId) SharedDtor(); } void PartitionId::SharedDtor() { project_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); namespace_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void PartitionId::SetCachedSize(int size) const { _cached_size_.Set(size); } const PartitionId& PartitionId::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_PartitionId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void PartitionId::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.PartitionId) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; project_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); namespace_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* PartitionId::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<PartitionId*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string project_id = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.PartitionId.project_id"); object = msg->mutable_project_id(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // string namespace_id = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.PartitionId.namespace_id"); object = msg->mutable_namespace_id(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool PartitionId::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.PartitionId) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string project_id = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_project_id())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.PartitionId.project_id")); } else { goto handle_unusual; } break; } // string namespace_id = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_namespace_id())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->namespace_id().data(), static_cast<int>(this->namespace_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.PartitionId.namespace_id")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.PartitionId) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.PartitionId) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void PartitionId::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.PartitionId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string project_id = 2; if (this->project_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.PartitionId.project_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->project_id(), output); } // string namespace_id = 4; if (this->namespace_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->namespace_id().data(), static_cast<int>(this->namespace_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.PartitionId.namespace_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 4, this->namespace_id(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.PartitionId) } ::google::protobuf::uint8* PartitionId::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.PartitionId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string project_id = 2; if (this->project_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.PartitionId.project_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->project_id(), target); } // string namespace_id = 4; if (this->namespace_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->namespace_id().data(), static_cast<int>(this->namespace_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.PartitionId.namespace_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 4, this->namespace_id(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.PartitionId) return target; } size_t PartitionId::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.PartitionId) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string project_id = 2; if (this->project_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->project_id()); } // string namespace_id = 4; if (this->namespace_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->namespace_id()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void PartitionId::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.PartitionId) GOOGLE_DCHECK_NE(&from, this); const PartitionId* source = ::google::protobuf::DynamicCastToGenerated<PartitionId>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.PartitionId) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.PartitionId) MergeFrom(*source); } } void PartitionId::MergeFrom(const PartitionId& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.PartitionId) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.project_id().size() > 0) { project_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.project_id_); } if (from.namespace_id().size() > 0) { namespace_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.namespace_id_); } } void PartitionId::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.PartitionId) if (&from == this) return; Clear(); MergeFrom(from); } void PartitionId::CopyFrom(const PartitionId& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.PartitionId) if (&from == this) return; Clear(); MergeFrom(from); } bool PartitionId::IsInitialized() const { return true; } void PartitionId::Swap(PartitionId* other) { if (other == this) return; InternalSwap(other); } void PartitionId::InternalSwap(PartitionId* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); project_id_.Swap(&other->project_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); namespace_id_.Swap(&other->namespace_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata PartitionId::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void KindExpression::InitAsDefaultInstance() { } class KindExpression::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int KindExpression::kNameFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 KindExpression::KindExpression() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.KindExpression) } KindExpression::KindExpression(const KindExpression& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.KindExpression) } void KindExpression::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } KindExpression::~KindExpression() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.KindExpression) SharedDtor(); } void KindExpression::SharedDtor() { name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void KindExpression::SetCachedSize(int size) const { _cached_size_.Set(size); } const KindExpression& KindExpression::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_KindExpression_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void KindExpression::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.KindExpression) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* KindExpression::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<KindExpression*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string name = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.KindExpression.name"); object = msg->mutable_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool KindExpression::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.KindExpression) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.KindExpression.name")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.KindExpression) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.KindExpression) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void KindExpression::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.KindExpression) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.KindExpression.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->name(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.KindExpression) } ::google::protobuf::uint8* KindExpression::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.KindExpression) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.KindExpression.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->name(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.KindExpression) return target; } size_t KindExpression::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.KindExpression) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string name = 1; if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void KindExpression::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.KindExpression) GOOGLE_DCHECK_NE(&from, this); const KindExpression* source = ::google::protobuf::DynamicCastToGenerated<KindExpression>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.KindExpression) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.KindExpression) MergeFrom(*source); } } void KindExpression::MergeFrom(const KindExpression& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.KindExpression) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.name().size() > 0) { name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } } void KindExpression::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.KindExpression) if (&from == this) return; Clear(); MergeFrom(from); } void KindExpression::CopyFrom(const KindExpression& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.KindExpression) if (&from == this) return; Clear(); MergeFrom(from); } bool KindExpression::IsInitialized() const { return true; } void KindExpression::Swap(KindExpression* other) { if (other == this) return; InternalSwap(other); } void KindExpression::InternalSwap(KindExpression* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata KindExpression::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void DatastoreOptions::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_DatastoreOptions_default_instance_._instance.get_mutable()->partition_id_ = const_cast< ::google::privacy::dlp::v2::PartitionId*>( ::google::privacy::dlp::v2::PartitionId::internal_default_instance()); ::google::privacy::dlp::v2::_DatastoreOptions_default_instance_._instance.get_mutable()->kind_ = const_cast< ::google::privacy::dlp::v2::KindExpression*>( ::google::privacy::dlp::v2::KindExpression::internal_default_instance()); } class DatastoreOptions::HasBitSetters { public: static const ::google::privacy::dlp::v2::PartitionId& partition_id(const DatastoreOptions* msg); static const ::google::privacy::dlp::v2::KindExpression& kind(const DatastoreOptions* msg); }; const ::google::privacy::dlp::v2::PartitionId& DatastoreOptions::HasBitSetters::partition_id(const DatastoreOptions* msg) { return *msg->partition_id_; } const ::google::privacy::dlp::v2::KindExpression& DatastoreOptions::HasBitSetters::kind(const DatastoreOptions* msg) { return *msg->kind_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int DatastoreOptions::kPartitionIdFieldNumber; const int DatastoreOptions::kKindFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 DatastoreOptions::DatastoreOptions() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.DatastoreOptions) } DatastoreOptions::DatastoreOptions(const DatastoreOptions& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_partition_id()) { partition_id_ = new ::google::privacy::dlp::v2::PartitionId(*from.partition_id_); } else { partition_id_ = nullptr; } if (from.has_kind()) { kind_ = new ::google::privacy::dlp::v2::KindExpression(*from.kind_); } else { kind_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.DatastoreOptions) } void DatastoreOptions::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&partition_id_, 0, static_cast<size_t>( reinterpret_cast<char*>(&kind_) - reinterpret_cast<char*>(&partition_id_)) + sizeof(kind_)); } DatastoreOptions::~DatastoreOptions() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.DatastoreOptions) SharedDtor(); } void DatastoreOptions::SharedDtor() { if (this != internal_default_instance()) delete partition_id_; if (this != internal_default_instance()) delete kind_; } void DatastoreOptions::SetCachedSize(int size) const { _cached_size_.Set(size); } const DatastoreOptions& DatastoreOptions::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_DatastoreOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void DatastoreOptions::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.DatastoreOptions) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && partition_id_ != nullptr) { delete partition_id_; } partition_id_ = nullptr; if (GetArenaNoVirtual() == nullptr && kind_ != nullptr) { delete kind_; } kind_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* DatastoreOptions::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<DatastoreOptions*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.PartitionId partition_id = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::PartitionId::_InternalParse; object = msg->mutable_partition_id(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.KindExpression kind = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::KindExpression::_InternalParse; object = msg->mutable_kind(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool DatastoreOptions::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.DatastoreOptions) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.PartitionId partition_id = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_partition_id())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.KindExpression kind = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_kind())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.DatastoreOptions) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.DatastoreOptions) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void DatastoreOptions::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.DatastoreOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::partition_id(this), output); } // .google.privacy.dlp.v2.KindExpression kind = 2; if (this->has_kind()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::kind(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.DatastoreOptions) } ::google::protobuf::uint8* DatastoreOptions::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.DatastoreOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::partition_id(this), target); } // .google.privacy.dlp.v2.KindExpression kind = 2; if (this->has_kind()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::kind(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.DatastoreOptions) return target; } size_t DatastoreOptions::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.DatastoreOptions) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *partition_id_); } // .google.privacy.dlp.v2.KindExpression kind = 2; if (this->has_kind()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *kind_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void DatastoreOptions::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.DatastoreOptions) GOOGLE_DCHECK_NE(&from, this); const DatastoreOptions* source = ::google::protobuf::DynamicCastToGenerated<DatastoreOptions>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.DatastoreOptions) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.DatastoreOptions) MergeFrom(*source); } } void DatastoreOptions::MergeFrom(const DatastoreOptions& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.DatastoreOptions) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_partition_id()) { mutable_partition_id()->::google::privacy::dlp::v2::PartitionId::MergeFrom(from.partition_id()); } if (from.has_kind()) { mutable_kind()->::google::privacy::dlp::v2::KindExpression::MergeFrom(from.kind()); } } void DatastoreOptions::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.DatastoreOptions) if (&from == this) return; Clear(); MergeFrom(from); } void DatastoreOptions::CopyFrom(const DatastoreOptions& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.DatastoreOptions) if (&from == this) return; Clear(); MergeFrom(from); } bool DatastoreOptions::IsInitialized() const { return true; } void DatastoreOptions::Swap(DatastoreOptions* other) { if (other == this) return; InternalSwap(other); } void DatastoreOptions::InternalSwap(DatastoreOptions* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(partition_id_, other->partition_id_); swap(kind_, other->kind_); } ::google::protobuf::Metadata DatastoreOptions::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CloudStorageRegexFileSet::InitAsDefaultInstance() { } class CloudStorageRegexFileSet::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CloudStorageRegexFileSet::kBucketNameFieldNumber; const int CloudStorageRegexFileSet::kIncludeRegexFieldNumber; const int CloudStorageRegexFileSet::kExcludeRegexFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CloudStorageRegexFileSet::CloudStorageRegexFileSet() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CloudStorageRegexFileSet) } CloudStorageRegexFileSet::CloudStorageRegexFileSet(const CloudStorageRegexFileSet& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), include_regex_(from.include_regex_), exclude_regex_(from.exclude_regex_) { _internal_metadata_.MergeFrom(from._internal_metadata_); bucket_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.bucket_name().size() > 0) { bucket_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.bucket_name_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CloudStorageRegexFileSet) } void CloudStorageRegexFileSet::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); bucket_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } CloudStorageRegexFileSet::~CloudStorageRegexFileSet() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CloudStorageRegexFileSet) SharedDtor(); } void CloudStorageRegexFileSet::SharedDtor() { bucket_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void CloudStorageRegexFileSet::SetCachedSize(int size) const { _cached_size_.Set(size); } const CloudStorageRegexFileSet& CloudStorageRegexFileSet::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CloudStorageRegexFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CloudStorageRegexFileSet::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; include_regex_.Clear(); exclude_regex_.Clear(); bucket_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CloudStorageRegexFileSet::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CloudStorageRegexFileSet*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string bucket_name = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStorageRegexFileSet.bucket_name"); object = msg->mutable_bucket_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // repeated string include_regex = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStorageRegexFileSet.include_regex"); object = msg->add_include_regex(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 18 && (ptr += 1)); break; } // repeated string exclude_regex = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStorageRegexFileSet.exclude_regex"); object = msg->add_exclude_regex(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 26 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CloudStorageRegexFileSet::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string bucket_name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_bucket_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->bucket_name().data(), static_cast<int>(this->bucket_name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.bucket_name")); } else { goto handle_unusual; } break; } // repeated string include_regex = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_include_regex())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->include_regex(this->include_regex_size() - 1).data(), static_cast<int>(this->include_regex(this->include_regex_size() - 1).length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.include_regex")); } else { goto handle_unusual; } break; } // repeated string exclude_regex = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_exclude_regex())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->exclude_regex(this->exclude_regex_size() - 1).data(), static_cast<int>(this->exclude_regex(this->exclude_regex_size() - 1).length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.exclude_regex")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CloudStorageRegexFileSet) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CloudStorageRegexFileSet) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CloudStorageRegexFileSet::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string bucket_name = 1; if (this->bucket_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->bucket_name().data(), static_cast<int>(this->bucket_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.bucket_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->bucket_name(), output); } // repeated string include_regex = 2; for (int i = 0, n = this->include_regex_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->include_regex(i).data(), static_cast<int>(this->include_regex(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.include_regex"); ::google::protobuf::internal::WireFormatLite::WriteString( 2, this->include_regex(i), output); } // repeated string exclude_regex = 3; for (int i = 0, n = this->exclude_regex_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->exclude_regex(i).data(), static_cast<int>(this->exclude_regex(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.exclude_regex"); ::google::protobuf::internal::WireFormatLite::WriteString( 3, this->exclude_regex(i), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CloudStorageRegexFileSet) } ::google::protobuf::uint8* CloudStorageRegexFileSet::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string bucket_name = 1; if (this->bucket_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->bucket_name().data(), static_cast<int>(this->bucket_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.bucket_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->bucket_name(), target); } // repeated string include_regex = 2; for (int i = 0, n = this->include_regex_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->include_regex(i).data(), static_cast<int>(this->include_regex(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.include_regex"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(2, this->include_regex(i), target); } // repeated string exclude_regex = 3; for (int i = 0, n = this->exclude_regex_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->exclude_regex(i).data(), static_cast<int>(this->exclude_regex(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageRegexFileSet.exclude_regex"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(3, this->exclude_regex(i), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CloudStorageRegexFileSet) return target; } size_t CloudStorageRegexFileSet::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated string include_regex = 2; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->include_regex_size()); for (int i = 0, n = this->include_regex_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->include_regex(i)); } // repeated string exclude_regex = 3; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->exclude_regex_size()); for (int i = 0, n = this->exclude_regex_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->exclude_regex(i)); } // string bucket_name = 1; if (this->bucket_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->bucket_name()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CloudStorageRegexFileSet::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) GOOGLE_DCHECK_NE(&from, this); const CloudStorageRegexFileSet* source = ::google::protobuf::DynamicCastToGenerated<CloudStorageRegexFileSet>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CloudStorageRegexFileSet) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CloudStorageRegexFileSet) MergeFrom(*source); } } void CloudStorageRegexFileSet::MergeFrom(const CloudStorageRegexFileSet& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; include_regex_.MergeFrom(from.include_regex_); exclude_regex_.MergeFrom(from.exclude_regex_); if (from.bucket_name().size() > 0) { bucket_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.bucket_name_); } } void CloudStorageRegexFileSet::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) if (&from == this) return; Clear(); MergeFrom(from); } void CloudStorageRegexFileSet::CopyFrom(const CloudStorageRegexFileSet& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CloudStorageRegexFileSet) if (&from == this) return; Clear(); MergeFrom(from); } bool CloudStorageRegexFileSet::IsInitialized() const { return true; } void CloudStorageRegexFileSet::Swap(CloudStorageRegexFileSet* other) { if (other == this) return; InternalSwap(other); } void CloudStorageRegexFileSet::InternalSwap(CloudStorageRegexFileSet* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); include_regex_.InternalSwap(CastToBase(&other->include_regex_)); exclude_regex_.InternalSwap(CastToBase(&other->exclude_regex_)); bucket_name_.Swap(&other->bucket_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata CloudStorageRegexFileSet::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CloudStorageOptions_FileSet::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CloudStorageOptions_FileSet_default_instance_._instance.get_mutable()->regex_file_set_ = const_cast< ::google::privacy::dlp::v2::CloudStorageRegexFileSet*>( ::google::privacy::dlp::v2::CloudStorageRegexFileSet::internal_default_instance()); } class CloudStorageOptions_FileSet::HasBitSetters { public: static const ::google::privacy::dlp::v2::CloudStorageRegexFileSet& regex_file_set(const CloudStorageOptions_FileSet* msg); }; const ::google::privacy::dlp::v2::CloudStorageRegexFileSet& CloudStorageOptions_FileSet::HasBitSetters::regex_file_set(const CloudStorageOptions_FileSet* msg) { return *msg->regex_file_set_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CloudStorageOptions_FileSet::kUrlFieldNumber; const int CloudStorageOptions_FileSet::kRegexFileSetFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CloudStorageOptions_FileSet::CloudStorageOptions_FileSet() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CloudStorageOptions.FileSet) } CloudStorageOptions_FileSet::CloudStorageOptions_FileSet(const CloudStorageOptions_FileSet& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); url_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.url().size() > 0) { url_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.url_); } if (from.has_regex_file_set()) { regex_file_set_ = new ::google::privacy::dlp::v2::CloudStorageRegexFileSet(*from.regex_file_set_); } else { regex_file_set_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CloudStorageOptions.FileSet) } void CloudStorageOptions_FileSet::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); url_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); regex_file_set_ = nullptr; } CloudStorageOptions_FileSet::~CloudStorageOptions_FileSet() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CloudStorageOptions.FileSet) SharedDtor(); } void CloudStorageOptions_FileSet::SharedDtor() { url_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete regex_file_set_; } void CloudStorageOptions_FileSet::SetCachedSize(int size) const { _cached_size_.Set(size); } const CloudStorageOptions_FileSet& CloudStorageOptions_FileSet::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CloudStorageOptions_FileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CloudStorageOptions_FileSet::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; url_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == nullptr && regex_file_set_ != nullptr) { delete regex_file_set_; } regex_file_set_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CloudStorageOptions_FileSet::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CloudStorageOptions_FileSet*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string url = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStorageOptions.FileSet.url"); object = msg->mutable_url(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // .google.privacy.dlp.v2.CloudStorageRegexFileSet regex_file_set = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CloudStorageRegexFileSet::_InternalParse; object = msg->mutable_regex_file_set(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CloudStorageOptions_FileSet::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string url = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_url())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStorageOptions.FileSet.url")); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CloudStorageRegexFileSet regex_file_set = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_regex_file_set())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CloudStorageOptions.FileSet) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CloudStorageOptions.FileSet) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CloudStorageOptions_FileSet::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageOptions.FileSet.url"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->url(), output); } // .google.privacy.dlp.v2.CloudStorageRegexFileSet regex_file_set = 2; if (this->has_regex_file_set()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::regex_file_set(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CloudStorageOptions.FileSet) } ::google::protobuf::uint8* CloudStorageOptions_FileSet::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageOptions.FileSet.url"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->url(), target); } // .google.privacy.dlp.v2.CloudStorageRegexFileSet regex_file_set = 2; if (this->has_regex_file_set()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::regex_file_set(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CloudStorageOptions.FileSet) return target; } size_t CloudStorageOptions_FileSet::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->url()); } // .google.privacy.dlp.v2.CloudStorageRegexFileSet regex_file_set = 2; if (this->has_regex_file_set()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *regex_file_set_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CloudStorageOptions_FileSet::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) GOOGLE_DCHECK_NE(&from, this); const CloudStorageOptions_FileSet* source = ::google::protobuf::DynamicCastToGenerated<CloudStorageOptions_FileSet>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CloudStorageOptions.FileSet) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CloudStorageOptions.FileSet) MergeFrom(*source); } } void CloudStorageOptions_FileSet::MergeFrom(const CloudStorageOptions_FileSet& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.url().size() > 0) { url_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.url_); } if (from.has_regex_file_set()) { mutable_regex_file_set()->::google::privacy::dlp::v2::CloudStorageRegexFileSet::MergeFrom(from.regex_file_set()); } } void CloudStorageOptions_FileSet::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) if (&from == this) return; Clear(); MergeFrom(from); } void CloudStorageOptions_FileSet::CopyFrom(const CloudStorageOptions_FileSet& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CloudStorageOptions.FileSet) if (&from == this) return; Clear(); MergeFrom(from); } bool CloudStorageOptions_FileSet::IsInitialized() const { return true; } void CloudStorageOptions_FileSet::Swap(CloudStorageOptions_FileSet* other) { if (other == this) return; InternalSwap(other); } void CloudStorageOptions_FileSet::InternalSwap(CloudStorageOptions_FileSet* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); url_.Swap(&other->url_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(regex_file_set_, other->regex_file_set_); } ::google::protobuf::Metadata CloudStorageOptions_FileSet::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CloudStorageOptions::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_CloudStorageOptions_default_instance_._instance.get_mutable()->file_set_ = const_cast< ::google::privacy::dlp::v2::CloudStorageOptions_FileSet*>( ::google::privacy::dlp::v2::CloudStorageOptions_FileSet::internal_default_instance()); } class CloudStorageOptions::HasBitSetters { public: static const ::google::privacy::dlp::v2::CloudStorageOptions_FileSet& file_set(const CloudStorageOptions* msg); }; const ::google::privacy::dlp::v2::CloudStorageOptions_FileSet& CloudStorageOptions::HasBitSetters::file_set(const CloudStorageOptions* msg) { return *msg->file_set_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CloudStorageOptions::kFileSetFieldNumber; const int CloudStorageOptions::kBytesLimitPerFileFieldNumber; const int CloudStorageOptions::kBytesLimitPerFilePercentFieldNumber; const int CloudStorageOptions::kFileTypesFieldNumber; const int CloudStorageOptions::kSampleMethodFieldNumber; const int CloudStorageOptions::kFilesLimitPercentFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CloudStorageOptions::CloudStorageOptions() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CloudStorageOptions) } CloudStorageOptions::CloudStorageOptions(const CloudStorageOptions& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), file_types_(from.file_types_) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_file_set()) { file_set_ = new ::google::privacy::dlp::v2::CloudStorageOptions_FileSet(*from.file_set_); } else { file_set_ = nullptr; } ::memcpy(&bytes_limit_per_file_, &from.bytes_limit_per_file_, static_cast<size_t>(reinterpret_cast<char*>(&bytes_limit_per_file_percent_) - reinterpret_cast<char*>(&bytes_limit_per_file_)) + sizeof(bytes_limit_per_file_percent_)); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CloudStorageOptions) } void CloudStorageOptions::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&file_set_, 0, static_cast<size_t>( reinterpret_cast<char*>(&bytes_limit_per_file_percent_) - reinterpret_cast<char*>(&file_set_)) + sizeof(bytes_limit_per_file_percent_)); } CloudStorageOptions::~CloudStorageOptions() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CloudStorageOptions) SharedDtor(); } void CloudStorageOptions::SharedDtor() { if (this != internal_default_instance()) delete file_set_; } void CloudStorageOptions::SetCachedSize(int size) const { _cached_size_.Set(size); } const CloudStorageOptions& CloudStorageOptions::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CloudStorageOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CloudStorageOptions::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CloudStorageOptions) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; file_types_.Clear(); if (GetArenaNoVirtual() == nullptr && file_set_ != nullptr) { delete file_set_; } file_set_ = nullptr; ::memset(&bytes_limit_per_file_, 0, static_cast<size_t>( reinterpret_cast<char*>(&bytes_limit_per_file_percent_) - reinterpret_cast<char*>(&bytes_limit_per_file_)) + sizeof(bytes_limit_per_file_percent_)); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CloudStorageOptions::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CloudStorageOptions*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CloudStorageOptions_FileSet::_InternalParse; object = msg->mutable_file_set(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // int64 bytes_limit_per_file = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 32) goto handle_unusual; msg->set_bytes_limit_per_file(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // repeated .google.privacy.dlp.v2.FileType file_types = 5; case 5: { if (static_cast<::google::protobuf::uint8>(tag) == 42) { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::internal::PackedEnumParser; object = msg->mutable_file_types(); if (size > end - ptr) goto len_delim_till_end; auto newend = ptr + size; if (size) ptr = parser_till_end(ptr, newend, object, ctx); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr == newend); break; } else if (static_cast<::google::protobuf::uint8>(tag) != 40) goto handle_unusual; do { ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->add_file_types(static_cast<::google::privacy::dlp::v2::FileType>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 40 && (ptr += 1)); break; } // .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6; case 6: { if (static_cast<::google::protobuf::uint8>(tag) != 48) goto handle_unusual; ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->set_sample_method(static_cast<::google::privacy::dlp::v2::CloudStorageOptions_SampleMethod>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // int32 files_limit_percent = 7; case 7: { if (static_cast<::google::protobuf::uint8>(tag) != 56) goto handle_unusual; msg->set_files_limit_percent(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // int32 bytes_limit_per_file_percent = 8; case 8: { if (static_cast<::google::protobuf::uint8>(tag) != 64) goto handle_unusual; msg->set_bytes_limit_per_file_percent(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CloudStorageOptions::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CloudStorageOptions) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_file_set())); } else { goto handle_unusual; } break; } // int64 bytes_limit_per_file = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (32 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &bytes_limit_per_file_))); } else { goto handle_unusual; } break; } // repeated .google.privacy.dlp.v2.FileType file_types = 5; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { ::google::protobuf::uint32 length; DO_(input->ReadVarint32(&length)); ::google::protobuf::io::CodedInputStream::Limit limit = input->PushLimit(static_cast<int>(length)); while (input->BytesUntilLimit() > 0) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); add_file_types(static_cast< ::google::privacy::dlp::v2::FileType >(value)); } input->PopLimit(limit); } else if (static_cast< ::google::protobuf::uint8>(tag) == (40 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); add_file_types(static_cast< ::google::privacy::dlp::v2::FileType >(value)); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6; case 6: { if (static_cast< ::google::protobuf::uint8>(tag) == (48 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_sample_method(static_cast< ::google::privacy::dlp::v2::CloudStorageOptions_SampleMethod >(value)); } else { goto handle_unusual; } break; } // int32 files_limit_percent = 7; case 7: { if (static_cast< ::google::protobuf::uint8>(tag) == (56 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &files_limit_percent_))); } else { goto handle_unusual; } break; } // int32 bytes_limit_per_file_percent = 8; case 8: { if (static_cast< ::google::protobuf::uint8>(tag) == (64 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &bytes_limit_per_file_percent_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CloudStorageOptions) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CloudStorageOptions) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CloudStorageOptions::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CloudStorageOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1; if (this->has_file_set()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::file_set(this), output); } // int64 bytes_limit_per_file = 4; if (this->bytes_limit_per_file() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt64(4, this->bytes_limit_per_file(), output); } // repeated .google.privacy.dlp.v2.FileType file_types = 5; if (this->file_types_size() > 0) { ::google::protobuf::internal::WireFormatLite::WriteTag( 5, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, output); output->WriteVarint32(_file_types_cached_byte_size_.load( std::memory_order_relaxed)); } for (int i = 0, n = this->file_types_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteEnumNoTag( this->file_types(i), output); } // .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6; if (this->sample_method() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 6, this->sample_method(), output); } // int32 files_limit_percent = 7; if (this->files_limit_percent() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(7, this->files_limit_percent(), output); } // int32 bytes_limit_per_file_percent = 8; if (this->bytes_limit_per_file_percent() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(8, this->bytes_limit_per_file_percent(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CloudStorageOptions) } ::google::protobuf::uint8* CloudStorageOptions::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CloudStorageOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1; if (this->has_file_set()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::file_set(this), target); } // int64 bytes_limit_per_file = 4; if (this->bytes_limit_per_file() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(4, this->bytes_limit_per_file(), target); } // repeated .google.privacy.dlp.v2.FileType file_types = 5; if (this->file_types_size() > 0) { target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( 5, ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, target); target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( _file_types_cached_byte_size_.load(std::memory_order_relaxed), target); target = ::google::protobuf::internal::WireFormatLite::WriteEnumNoTagToArray( this->file_types_, target); } // .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6; if (this->sample_method() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 6, this->sample_method(), target); } // int32 files_limit_percent = 7; if (this->files_limit_percent() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(7, this->files_limit_percent(), target); } // int32 bytes_limit_per_file_percent = 8; if (this->bytes_limit_per_file_percent() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(8, this->bytes_limit_per_file_percent(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CloudStorageOptions) return target; } size_t CloudStorageOptions::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CloudStorageOptions) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .google.privacy.dlp.v2.FileType file_types = 5; { size_t data_size = 0; unsigned int count = static_cast<unsigned int>(this->file_types_size());for (unsigned int i = 0; i < count; i++) { data_size += ::google::protobuf::internal::WireFormatLite::EnumSize( this->file_types(static_cast<int>(i))); } if (data_size > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( static_cast<::google::protobuf::int32>(data_size)); } int cached_size = ::google::protobuf::internal::ToCachedSize(data_size); _file_types_cached_byte_size_.store(cached_size, std::memory_order_relaxed); total_size += data_size; } // .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1; if (this->has_file_set()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *file_set_); } // int64 bytes_limit_per_file = 4; if (this->bytes_limit_per_file() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->bytes_limit_per_file()); } // .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6; if (this->sample_method() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->sample_method()); } // int32 files_limit_percent = 7; if (this->files_limit_percent() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->files_limit_percent()); } // int32 bytes_limit_per_file_percent = 8; if (this->bytes_limit_per_file_percent() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->bytes_limit_per_file_percent()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CloudStorageOptions::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CloudStorageOptions) GOOGLE_DCHECK_NE(&from, this); const CloudStorageOptions* source = ::google::protobuf::DynamicCastToGenerated<CloudStorageOptions>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CloudStorageOptions) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CloudStorageOptions) MergeFrom(*source); } } void CloudStorageOptions::MergeFrom(const CloudStorageOptions& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CloudStorageOptions) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; file_types_.MergeFrom(from.file_types_); if (from.has_file_set()) { mutable_file_set()->::google::privacy::dlp::v2::CloudStorageOptions_FileSet::MergeFrom(from.file_set()); } if (from.bytes_limit_per_file() != 0) { set_bytes_limit_per_file(from.bytes_limit_per_file()); } if (from.sample_method() != 0) { set_sample_method(from.sample_method()); } if (from.files_limit_percent() != 0) { set_files_limit_percent(from.files_limit_percent()); } if (from.bytes_limit_per_file_percent() != 0) { set_bytes_limit_per_file_percent(from.bytes_limit_per_file_percent()); } } void CloudStorageOptions::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CloudStorageOptions) if (&from == this) return; Clear(); MergeFrom(from); } void CloudStorageOptions::CopyFrom(const CloudStorageOptions& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CloudStorageOptions) if (&from == this) return; Clear(); MergeFrom(from); } bool CloudStorageOptions::IsInitialized() const { return true; } void CloudStorageOptions::Swap(CloudStorageOptions* other) { if (other == this) return; InternalSwap(other); } void CloudStorageOptions::InternalSwap(CloudStorageOptions* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); file_types_.InternalSwap(&other->file_types_); swap(file_set_, other->file_set_); swap(bytes_limit_per_file_, other->bytes_limit_per_file_); swap(sample_method_, other->sample_method_); swap(files_limit_percent_, other->files_limit_percent_); swap(bytes_limit_per_file_percent_, other->bytes_limit_per_file_percent_); } ::google::protobuf::Metadata CloudStorageOptions::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CloudStorageFileSet::InitAsDefaultInstance() { } class CloudStorageFileSet::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CloudStorageFileSet::kUrlFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CloudStorageFileSet::CloudStorageFileSet() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CloudStorageFileSet) } CloudStorageFileSet::CloudStorageFileSet(const CloudStorageFileSet& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); url_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.url().size() > 0) { url_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.url_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CloudStorageFileSet) } void CloudStorageFileSet::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); url_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } CloudStorageFileSet::~CloudStorageFileSet() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CloudStorageFileSet) SharedDtor(); } void CloudStorageFileSet::SharedDtor() { url_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void CloudStorageFileSet::SetCachedSize(int size) const { _cached_size_.Set(size); } const CloudStorageFileSet& CloudStorageFileSet::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CloudStorageFileSet_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CloudStorageFileSet::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CloudStorageFileSet) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; url_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CloudStorageFileSet::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CloudStorageFileSet*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string url = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStorageFileSet.url"); object = msg->mutable_url(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CloudStorageFileSet::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CloudStorageFileSet) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string url = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_url())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStorageFileSet.url")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CloudStorageFileSet) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CloudStorageFileSet) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CloudStorageFileSet::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CloudStorageFileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageFileSet.url"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->url(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CloudStorageFileSet) } ::google::protobuf::uint8* CloudStorageFileSet::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CloudStorageFileSet) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->url().data(), static_cast<int>(this->url().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStorageFileSet.url"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->url(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CloudStorageFileSet) return target; } size_t CloudStorageFileSet::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CloudStorageFileSet) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string url = 1; if (this->url().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->url()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CloudStorageFileSet::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CloudStorageFileSet) GOOGLE_DCHECK_NE(&from, this); const CloudStorageFileSet* source = ::google::protobuf::DynamicCastToGenerated<CloudStorageFileSet>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CloudStorageFileSet) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CloudStorageFileSet) MergeFrom(*source); } } void CloudStorageFileSet::MergeFrom(const CloudStorageFileSet& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CloudStorageFileSet) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.url().size() > 0) { url_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.url_); } } void CloudStorageFileSet::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CloudStorageFileSet) if (&from == this) return; Clear(); MergeFrom(from); } void CloudStorageFileSet::CopyFrom(const CloudStorageFileSet& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CloudStorageFileSet) if (&from == this) return; Clear(); MergeFrom(from); } bool CloudStorageFileSet::IsInitialized() const { return true; } void CloudStorageFileSet::Swap(CloudStorageFileSet* other) { if (other == this) return; InternalSwap(other); } void CloudStorageFileSet::InternalSwap(CloudStorageFileSet* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); url_.Swap(&other->url_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata CloudStorageFileSet::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void CloudStoragePath::InitAsDefaultInstance() { } class CloudStoragePath::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CloudStoragePath::kPathFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 CloudStoragePath::CloudStoragePath() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.CloudStoragePath) } CloudStoragePath::CloudStoragePath(const CloudStoragePath& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.path().size() > 0) { path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.path_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.CloudStoragePath) } void CloudStoragePath::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); path_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } CloudStoragePath::~CloudStoragePath() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.CloudStoragePath) SharedDtor(); } void CloudStoragePath::SharedDtor() { path_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void CloudStoragePath::SetCachedSize(int size) const { _cached_size_.Set(size); } const CloudStoragePath& CloudStoragePath::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_CloudStoragePath_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void CloudStoragePath::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.CloudStoragePath) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* CloudStoragePath::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<CloudStoragePath*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string path = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.CloudStoragePath.path"); object = msg->mutable_path(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool CloudStoragePath::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.CloudStoragePath) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string path = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_path())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->path().data(), static_cast<int>(this->path().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.CloudStoragePath.path")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.CloudStoragePath) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.CloudStoragePath) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void CloudStoragePath::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.CloudStoragePath) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string path = 1; if (this->path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->path().data(), static_cast<int>(this->path().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStoragePath.path"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->path(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.CloudStoragePath) } ::google::protobuf::uint8* CloudStoragePath::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.CloudStoragePath) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string path = 1; if (this->path().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->path().data(), static_cast<int>(this->path().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.CloudStoragePath.path"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->path(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.CloudStoragePath) return target; } size_t CloudStoragePath::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.CloudStoragePath) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string path = 1; if (this->path().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->path()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void CloudStoragePath::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.CloudStoragePath) GOOGLE_DCHECK_NE(&from, this); const CloudStoragePath* source = ::google::protobuf::DynamicCastToGenerated<CloudStoragePath>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.CloudStoragePath) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.CloudStoragePath) MergeFrom(*source); } } void CloudStoragePath::MergeFrom(const CloudStoragePath& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.CloudStoragePath) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.path().size() > 0) { path_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.path_); } } void CloudStoragePath::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.CloudStoragePath) if (&from == this) return; Clear(); MergeFrom(from); } void CloudStoragePath::CopyFrom(const CloudStoragePath& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.CloudStoragePath) if (&from == this) return; Clear(); MergeFrom(from); } bool CloudStoragePath::IsInitialized() const { return true; } void CloudStoragePath::Swap(CloudStoragePath* other) { if (other == this) return; InternalSwap(other); } void CloudStoragePath::InternalSwap(CloudStoragePath* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); path_.Swap(&other->path_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata CloudStoragePath::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void BigQueryOptions::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_BigQueryOptions_default_instance_._instance.get_mutable()->table_reference_ = const_cast< ::google::privacy::dlp::v2::BigQueryTable*>( ::google::privacy::dlp::v2::BigQueryTable::internal_default_instance()); } class BigQueryOptions::HasBitSetters { public: static const ::google::privacy::dlp::v2::BigQueryTable& table_reference(const BigQueryOptions* msg); }; const ::google::privacy::dlp::v2::BigQueryTable& BigQueryOptions::HasBitSetters::table_reference(const BigQueryOptions* msg) { return *msg->table_reference_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int BigQueryOptions::kTableReferenceFieldNumber; const int BigQueryOptions::kIdentifyingFieldsFieldNumber; const int BigQueryOptions::kRowsLimitFieldNumber; const int BigQueryOptions::kRowsLimitPercentFieldNumber; const int BigQueryOptions::kSampleMethodFieldNumber; const int BigQueryOptions::kExcludedFieldsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 BigQueryOptions::BigQueryOptions() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.BigQueryOptions) } BigQueryOptions::BigQueryOptions(const BigQueryOptions& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), identifying_fields_(from.identifying_fields_), excluded_fields_(from.excluded_fields_) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_table_reference()) { table_reference_ = new ::google::privacy::dlp::v2::BigQueryTable(*from.table_reference_); } else { table_reference_ = nullptr; } ::memcpy(&rows_limit_, &from.rows_limit_, static_cast<size_t>(reinterpret_cast<char*>(&rows_limit_percent_) - reinterpret_cast<char*>(&rows_limit_)) + sizeof(rows_limit_percent_)); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.BigQueryOptions) } void BigQueryOptions::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&table_reference_, 0, static_cast<size_t>( reinterpret_cast<char*>(&rows_limit_percent_) - reinterpret_cast<char*>(&table_reference_)) + sizeof(rows_limit_percent_)); } BigQueryOptions::~BigQueryOptions() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.BigQueryOptions) SharedDtor(); } void BigQueryOptions::SharedDtor() { if (this != internal_default_instance()) delete table_reference_; } void BigQueryOptions::SetCachedSize(int size) const { _cached_size_.Set(size); } const BigQueryOptions& BigQueryOptions::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_BigQueryOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void BigQueryOptions::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.BigQueryOptions) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; identifying_fields_.Clear(); excluded_fields_.Clear(); if (GetArenaNoVirtual() == nullptr && table_reference_ != nullptr) { delete table_reference_; } table_reference_ = nullptr; ::memset(&rows_limit_, 0, static_cast<size_t>( reinterpret_cast<char*>(&rows_limit_percent_) - reinterpret_cast<char*>(&rows_limit_)) + sizeof(rows_limit_percent_)); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* BigQueryOptions::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<BigQueryOptions*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::BigQueryTable::_InternalParse; object = msg->mutable_table_reference(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->add_identifying_fields(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 18 && (ptr += 1)); break; } // int64 rows_limit = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 24) goto handle_unusual; msg->set_rows_limit(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // .google.privacy.dlp.v2.BigQueryOptions.SampleMethod sample_method = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 32) goto handle_unusual; ::google::protobuf::uint64 val = ::google::protobuf::internal::ReadVarint(&ptr); msg->set_sample_method(static_cast<::google::privacy::dlp::v2::BigQueryOptions_SampleMethod>(val)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // repeated .google.privacy.dlp.v2.FieldId excluded_fields = 5; case 5: { if (static_cast<::google::protobuf::uint8>(tag) != 42) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->add_excluded_fields(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 42 && (ptr += 1)); break; } // int32 rows_limit_percent = 6; case 6: { if (static_cast<::google::protobuf::uint8>(tag) != 48) goto handle_unusual; msg->set_rows_limit_percent(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool BigQueryOptions::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.BigQueryOptions) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_table_reference())); } else { goto handle_unusual; } break; } // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, add_identifying_fields())); } else { goto handle_unusual; } break; } // int64 rows_limit = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (24 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &rows_limit_))); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.BigQueryOptions.SampleMethod sample_method = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (32 & 0xFF)) { int value = 0; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_sample_method(static_cast< ::google::privacy::dlp::v2::BigQueryOptions_SampleMethod >(value)); } else { goto handle_unusual; } break; } // repeated .google.privacy.dlp.v2.FieldId excluded_fields = 5; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, add_excluded_fields())); } else { goto handle_unusual; } break; } // int32 rows_limit_percent = 6; case 6: { if (static_cast< ::google::protobuf::uint8>(tag) == (48 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &rows_limit_percent_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.BigQueryOptions) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.BigQueryOptions) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void BigQueryOptions::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.BigQueryOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::table_reference(this), output); } // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 2; for (unsigned int i = 0, n = static_cast<unsigned int>(this->identifying_fields_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, this->identifying_fields(static_cast<int>(i)), output); } // int64 rows_limit = 3; if (this->rows_limit() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt64(3, this->rows_limit(), output); } // .google.privacy.dlp.v2.BigQueryOptions.SampleMethod sample_method = 4; if (this->sample_method() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 4, this->sample_method(), output); } // repeated .google.privacy.dlp.v2.FieldId excluded_fields = 5; for (unsigned int i = 0, n = static_cast<unsigned int>(this->excluded_fields_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 5, this->excluded_fields(static_cast<int>(i)), output); } // int32 rows_limit_percent = 6; if (this->rows_limit_percent() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt32(6, this->rows_limit_percent(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.BigQueryOptions) } ::google::protobuf::uint8* BigQueryOptions::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.BigQueryOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::table_reference(this), target); } // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 2; for (unsigned int i = 0, n = static_cast<unsigned int>(this->identifying_fields_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, this->identifying_fields(static_cast<int>(i)), target); } // int64 rows_limit = 3; if (this->rows_limit() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(3, this->rows_limit(), target); } // .google.privacy.dlp.v2.BigQueryOptions.SampleMethod sample_method = 4; if (this->sample_method() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 4, this->sample_method(), target); } // repeated .google.privacy.dlp.v2.FieldId excluded_fields = 5; for (unsigned int i = 0, n = static_cast<unsigned int>(this->excluded_fields_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 5, this->excluded_fields(static_cast<int>(i)), target); } // int32 rows_limit_percent = 6; if (this->rows_limit_percent() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(6, this->rows_limit_percent(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.BigQueryOptions) return target; } size_t BigQueryOptions::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.BigQueryOptions) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 2; { unsigned int count = static_cast<unsigned int>(this->identifying_fields_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->identifying_fields(static_cast<int>(i))); } } // repeated .google.privacy.dlp.v2.FieldId excluded_fields = 5; { unsigned int count = static_cast<unsigned int>(this->excluded_fields_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->excluded_fields(static_cast<int>(i))); } } // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *table_reference_); } // int64 rows_limit = 3; if (this->rows_limit() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->rows_limit()); } // .google.privacy.dlp.v2.BigQueryOptions.SampleMethod sample_method = 4; if (this->sample_method() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->sample_method()); } // int32 rows_limit_percent = 6; if (this->rows_limit_percent() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->rows_limit_percent()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void BigQueryOptions::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.BigQueryOptions) GOOGLE_DCHECK_NE(&from, this); const BigQueryOptions* source = ::google::protobuf::DynamicCastToGenerated<BigQueryOptions>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.BigQueryOptions) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.BigQueryOptions) MergeFrom(*source); } } void BigQueryOptions::MergeFrom(const BigQueryOptions& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.BigQueryOptions) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; identifying_fields_.MergeFrom(from.identifying_fields_); excluded_fields_.MergeFrom(from.excluded_fields_); if (from.has_table_reference()) { mutable_table_reference()->::google::privacy::dlp::v2::BigQueryTable::MergeFrom(from.table_reference()); } if (from.rows_limit() != 0) { set_rows_limit(from.rows_limit()); } if (from.sample_method() != 0) { set_sample_method(from.sample_method()); } if (from.rows_limit_percent() != 0) { set_rows_limit_percent(from.rows_limit_percent()); } } void BigQueryOptions::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.BigQueryOptions) if (&from == this) return; Clear(); MergeFrom(from); } void BigQueryOptions::CopyFrom(const BigQueryOptions& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.BigQueryOptions) if (&from == this) return; Clear(); MergeFrom(from); } bool BigQueryOptions::IsInitialized() const { return true; } void BigQueryOptions::Swap(BigQueryOptions* other) { if (other == this) return; InternalSwap(other); } void BigQueryOptions::InternalSwap(BigQueryOptions* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); CastToBase(&identifying_fields_)->InternalSwap(CastToBase(&other->identifying_fields_)); CastToBase(&excluded_fields_)->InternalSwap(CastToBase(&other->excluded_fields_)); swap(table_reference_, other->table_reference_); swap(rows_limit_, other->rows_limit_); swap(sample_method_, other->sample_method_); swap(rows_limit_percent_, other->rows_limit_percent_); } ::google::protobuf::Metadata BigQueryOptions::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void StorageConfig_TimespanConfig::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_StorageConfig_TimespanConfig_default_instance_._instance.get_mutable()->start_time_ = const_cast< ::google::protobuf::Timestamp*>( ::google::protobuf::Timestamp::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_TimespanConfig_default_instance_._instance.get_mutable()->end_time_ = const_cast< ::google::protobuf::Timestamp*>( ::google::protobuf::Timestamp::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_TimespanConfig_default_instance_._instance.get_mutable()->timestamp_field_ = const_cast< ::google::privacy::dlp::v2::FieldId*>( ::google::privacy::dlp::v2::FieldId::internal_default_instance()); } class StorageConfig_TimespanConfig::HasBitSetters { public: static const ::google::protobuf::Timestamp& start_time(const StorageConfig_TimespanConfig* msg); static const ::google::protobuf::Timestamp& end_time(const StorageConfig_TimespanConfig* msg); static const ::google::privacy::dlp::v2::FieldId& timestamp_field(const StorageConfig_TimespanConfig* msg); }; const ::google::protobuf::Timestamp& StorageConfig_TimespanConfig::HasBitSetters::start_time(const StorageConfig_TimespanConfig* msg) { return *msg->start_time_; } const ::google::protobuf::Timestamp& StorageConfig_TimespanConfig::HasBitSetters::end_time(const StorageConfig_TimespanConfig* msg) { return *msg->end_time_; } const ::google::privacy::dlp::v2::FieldId& StorageConfig_TimespanConfig::HasBitSetters::timestamp_field(const StorageConfig_TimespanConfig* msg) { return *msg->timestamp_field_; } void StorageConfig_TimespanConfig::clear_start_time() { if (GetArenaNoVirtual() == nullptr && start_time_ != nullptr) { delete start_time_; } start_time_ = nullptr; } void StorageConfig_TimespanConfig::clear_end_time() { if (GetArenaNoVirtual() == nullptr && end_time_ != nullptr) { delete end_time_; } end_time_ = nullptr; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int StorageConfig_TimespanConfig::kStartTimeFieldNumber; const int StorageConfig_TimespanConfig::kEndTimeFieldNumber; const int StorageConfig_TimespanConfig::kTimestampFieldFieldNumber; const int StorageConfig_TimespanConfig::kEnableAutoPopulationOfTimespanConfigFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 StorageConfig_TimespanConfig::StorageConfig_TimespanConfig() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.StorageConfig.TimespanConfig) } StorageConfig_TimespanConfig::StorageConfig_TimespanConfig(const StorageConfig_TimespanConfig& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_start_time()) { start_time_ = new ::google::protobuf::Timestamp(*from.start_time_); } else { start_time_ = nullptr; } if (from.has_end_time()) { end_time_ = new ::google::protobuf::Timestamp(*from.end_time_); } else { end_time_ = nullptr; } if (from.has_timestamp_field()) { timestamp_field_ = new ::google::privacy::dlp::v2::FieldId(*from.timestamp_field_); } else { timestamp_field_ = nullptr; } enable_auto_population_of_timespan_config_ = from.enable_auto_population_of_timespan_config_; // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.StorageConfig.TimespanConfig) } void StorageConfig_TimespanConfig::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&start_time_, 0, static_cast<size_t>( reinterpret_cast<char*>(&enable_auto_population_of_timespan_config_) - reinterpret_cast<char*>(&start_time_)) + sizeof(enable_auto_population_of_timespan_config_)); } StorageConfig_TimespanConfig::~StorageConfig_TimespanConfig() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.StorageConfig.TimespanConfig) SharedDtor(); } void StorageConfig_TimespanConfig::SharedDtor() { if (this != internal_default_instance()) delete start_time_; if (this != internal_default_instance()) delete end_time_; if (this != internal_default_instance()) delete timestamp_field_; } void StorageConfig_TimespanConfig::SetCachedSize(int size) const { _cached_size_.Set(size); } const StorageConfig_TimespanConfig& StorageConfig_TimespanConfig::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_StorageConfig_TimespanConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void StorageConfig_TimespanConfig::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && start_time_ != nullptr) { delete start_time_; } start_time_ = nullptr; if (GetArenaNoVirtual() == nullptr && end_time_ != nullptr) { delete end_time_; } end_time_ = nullptr; if (GetArenaNoVirtual() == nullptr && timestamp_field_ != nullptr) { delete timestamp_field_; } timestamp_field_ = nullptr; enable_auto_population_of_timespan_config_ = false; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* StorageConfig_TimespanConfig::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<StorageConfig_TimespanConfig*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.protobuf.Timestamp start_time = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::Timestamp::_InternalParse; object = msg->mutable_start_time(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.protobuf.Timestamp end_time = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::Timestamp::_InternalParse; object = msg->mutable_end_time(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.FieldId timestamp_field = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->mutable_timestamp_field(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // bool enable_auto_population_of_timespan_config = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 32) goto handle_unusual; msg->set_enable_auto_population_of_timespan_config(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool StorageConfig_TimespanConfig::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.protobuf.Timestamp start_time = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_start_time())); } else { goto handle_unusual; } break; } // .google.protobuf.Timestamp end_time = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_end_time())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.FieldId timestamp_field = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_timestamp_field())); } else { goto handle_unusual; } break; } // bool enable_auto_population_of_timespan_config = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (32 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( input, &enable_auto_population_of_timespan_config_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.StorageConfig.TimespanConfig) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.StorageConfig.TimespanConfig) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void StorageConfig_TimespanConfig::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.protobuf.Timestamp start_time = 1; if (this->has_start_time()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::start_time(this), output); } // .google.protobuf.Timestamp end_time = 2; if (this->has_end_time()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::end_time(this), output); } // .google.privacy.dlp.v2.FieldId timestamp_field = 3; if (this->has_timestamp_field()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::timestamp_field(this), output); } // bool enable_auto_population_of_timespan_config = 4; if (this->enable_auto_population_of_timespan_config() != 0) { ::google::protobuf::internal::WireFormatLite::WriteBool(4, this->enable_auto_population_of_timespan_config(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.StorageConfig.TimespanConfig) } ::google::protobuf::uint8* StorageConfig_TimespanConfig::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.protobuf.Timestamp start_time = 1; if (this->has_start_time()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::start_time(this), target); } // .google.protobuf.Timestamp end_time = 2; if (this->has_end_time()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::end_time(this), target); } // .google.privacy.dlp.v2.FieldId timestamp_field = 3; if (this->has_timestamp_field()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::timestamp_field(this), target); } // bool enable_auto_population_of_timespan_config = 4; if (this->enable_auto_population_of_timespan_config() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(4, this->enable_auto_population_of_timespan_config(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.StorageConfig.TimespanConfig) return target; } size_t StorageConfig_TimespanConfig::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.protobuf.Timestamp start_time = 1; if (this->has_start_time()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *start_time_); } // .google.protobuf.Timestamp end_time = 2; if (this->has_end_time()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *end_time_); } // .google.privacy.dlp.v2.FieldId timestamp_field = 3; if (this->has_timestamp_field()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *timestamp_field_); } // bool enable_auto_population_of_timespan_config = 4; if (this->enable_auto_population_of_timespan_config() != 0) { total_size += 1 + 1; } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void StorageConfig_TimespanConfig::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) GOOGLE_DCHECK_NE(&from, this); const StorageConfig_TimespanConfig* source = ::google::protobuf::DynamicCastToGenerated<StorageConfig_TimespanConfig>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.StorageConfig.TimespanConfig) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.StorageConfig.TimespanConfig) MergeFrom(*source); } } void StorageConfig_TimespanConfig::MergeFrom(const StorageConfig_TimespanConfig& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_start_time()) { mutable_start_time()->::google::protobuf::Timestamp::MergeFrom(from.start_time()); } if (from.has_end_time()) { mutable_end_time()->::google::protobuf::Timestamp::MergeFrom(from.end_time()); } if (from.has_timestamp_field()) { mutable_timestamp_field()->::google::privacy::dlp::v2::FieldId::MergeFrom(from.timestamp_field()); } if (from.enable_auto_population_of_timespan_config() != 0) { set_enable_auto_population_of_timespan_config(from.enable_auto_population_of_timespan_config()); } } void StorageConfig_TimespanConfig::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) if (&from == this) return; Clear(); MergeFrom(from); } void StorageConfig_TimespanConfig::CopyFrom(const StorageConfig_TimespanConfig& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.StorageConfig.TimespanConfig) if (&from == this) return; Clear(); MergeFrom(from); } bool StorageConfig_TimespanConfig::IsInitialized() const { return true; } void StorageConfig_TimespanConfig::Swap(StorageConfig_TimespanConfig* other) { if (other == this) return; InternalSwap(other); } void StorageConfig_TimespanConfig::InternalSwap(StorageConfig_TimespanConfig* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(start_time_, other->start_time_); swap(end_time_, other->end_time_); swap(timestamp_field_, other->timestamp_field_); swap(enable_auto_population_of_timespan_config_, other->enable_auto_population_of_timespan_config_); } ::google::protobuf::Metadata StorageConfig_TimespanConfig::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void StorageConfig::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_StorageConfig_default_instance_.datastore_options_ = const_cast< ::google::privacy::dlp::v2::DatastoreOptions*>( ::google::privacy::dlp::v2::DatastoreOptions::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_default_instance_.cloud_storage_options_ = const_cast< ::google::privacy::dlp::v2::CloudStorageOptions*>( ::google::privacy::dlp::v2::CloudStorageOptions::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_default_instance_.big_query_options_ = const_cast< ::google::privacy::dlp::v2::BigQueryOptions*>( ::google::privacy::dlp::v2::BigQueryOptions::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_default_instance_.hybrid_options_ = const_cast< ::google::privacy::dlp::v2::HybridOptions*>( ::google::privacy::dlp::v2::HybridOptions::internal_default_instance()); ::google::privacy::dlp::v2::_StorageConfig_default_instance_._instance.get_mutable()->timespan_config_ = const_cast< ::google::privacy::dlp::v2::StorageConfig_TimespanConfig*>( ::google::privacy::dlp::v2::StorageConfig_TimespanConfig::internal_default_instance()); } class StorageConfig::HasBitSetters { public: static const ::google::privacy::dlp::v2::DatastoreOptions& datastore_options(const StorageConfig* msg); static const ::google::privacy::dlp::v2::CloudStorageOptions& cloud_storage_options(const StorageConfig* msg); static const ::google::privacy::dlp::v2::BigQueryOptions& big_query_options(const StorageConfig* msg); static const ::google::privacy::dlp::v2::HybridOptions& hybrid_options(const StorageConfig* msg); static const ::google::privacy::dlp::v2::StorageConfig_TimespanConfig& timespan_config(const StorageConfig* msg); }; const ::google::privacy::dlp::v2::DatastoreOptions& StorageConfig::HasBitSetters::datastore_options(const StorageConfig* msg) { return *msg->type_.datastore_options_; } const ::google::privacy::dlp::v2::CloudStorageOptions& StorageConfig::HasBitSetters::cloud_storage_options(const StorageConfig* msg) { return *msg->type_.cloud_storage_options_; } const ::google::privacy::dlp::v2::BigQueryOptions& StorageConfig::HasBitSetters::big_query_options(const StorageConfig* msg) { return *msg->type_.big_query_options_; } const ::google::privacy::dlp::v2::HybridOptions& StorageConfig::HasBitSetters::hybrid_options(const StorageConfig* msg) { return *msg->type_.hybrid_options_; } const ::google::privacy::dlp::v2::StorageConfig_TimespanConfig& StorageConfig::HasBitSetters::timespan_config(const StorageConfig* msg) { return *msg->timespan_config_; } void StorageConfig::set_allocated_datastore_options(::google::privacy::dlp::v2::DatastoreOptions* datastore_options) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (datastore_options) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { datastore_options = ::google::protobuf::internal::GetOwnedMessage( message_arena, datastore_options, submessage_arena); } set_has_datastore_options(); type_.datastore_options_ = datastore_options; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.StorageConfig.datastore_options) } void StorageConfig::set_allocated_cloud_storage_options(::google::privacy::dlp::v2::CloudStorageOptions* cloud_storage_options) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (cloud_storage_options) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { cloud_storage_options = ::google::protobuf::internal::GetOwnedMessage( message_arena, cloud_storage_options, submessage_arena); } set_has_cloud_storage_options(); type_.cloud_storage_options_ = cloud_storage_options; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.StorageConfig.cloud_storage_options) } void StorageConfig::set_allocated_big_query_options(::google::privacy::dlp::v2::BigQueryOptions* big_query_options) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (big_query_options) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { big_query_options = ::google::protobuf::internal::GetOwnedMessage( message_arena, big_query_options, submessage_arena); } set_has_big_query_options(); type_.big_query_options_ = big_query_options; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.StorageConfig.big_query_options) } void StorageConfig::set_allocated_hybrid_options(::google::privacy::dlp::v2::HybridOptions* hybrid_options) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (hybrid_options) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { hybrid_options = ::google::protobuf::internal::GetOwnedMessage( message_arena, hybrid_options, submessage_arena); } set_has_hybrid_options(); type_.hybrid_options_ = hybrid_options; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.StorageConfig.hybrid_options) } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int StorageConfig::kDatastoreOptionsFieldNumber; const int StorageConfig::kCloudStorageOptionsFieldNumber; const int StorageConfig::kBigQueryOptionsFieldNumber; const int StorageConfig::kHybridOptionsFieldNumber; const int StorageConfig::kTimespanConfigFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 StorageConfig::StorageConfig() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.StorageConfig) } StorageConfig::StorageConfig(const StorageConfig& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_timespan_config()) { timespan_config_ = new ::google::privacy::dlp::v2::StorageConfig_TimespanConfig(*from.timespan_config_); } else { timespan_config_ = nullptr; } clear_has_type(); switch (from.type_case()) { case kDatastoreOptions: { mutable_datastore_options()->::google::privacy::dlp::v2::DatastoreOptions::MergeFrom(from.datastore_options()); break; } case kCloudStorageOptions: { mutable_cloud_storage_options()->::google::privacy::dlp::v2::CloudStorageOptions::MergeFrom(from.cloud_storage_options()); break; } case kBigQueryOptions: { mutable_big_query_options()->::google::privacy::dlp::v2::BigQueryOptions::MergeFrom(from.big_query_options()); break; } case kHybridOptions: { mutable_hybrid_options()->::google::privacy::dlp::v2::HybridOptions::MergeFrom(from.hybrid_options()); break; } case TYPE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.StorageConfig) } void StorageConfig::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_StorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); timespan_config_ = nullptr; clear_has_type(); } StorageConfig::~StorageConfig() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.StorageConfig) SharedDtor(); } void StorageConfig::SharedDtor() { if (this != internal_default_instance()) delete timespan_config_; if (has_type()) { clear_type(); } } void StorageConfig::SetCachedSize(int size) const { _cached_size_.Set(size); } const StorageConfig& StorageConfig::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_StorageConfig_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void StorageConfig::clear_type() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.StorageConfig) switch (type_case()) { case kDatastoreOptions: { delete type_.datastore_options_; break; } case kCloudStorageOptions: { delete type_.cloud_storage_options_; break; } case kBigQueryOptions: { delete type_.big_query_options_; break; } case kHybridOptions: { delete type_.hybrid_options_; break; } case TYPE_NOT_SET: { break; } } _oneof_case_[0] = TYPE_NOT_SET; } void StorageConfig::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.StorageConfig) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && timespan_config_ != nullptr) { delete timespan_config_; } timespan_config_ = nullptr; clear_type(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* StorageConfig::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<StorageConfig*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.DatastoreOptions datastore_options = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::DatastoreOptions::_InternalParse; object = msg->mutable_datastore_options(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.CloudStorageOptions cloud_storage_options = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::CloudStorageOptions::_InternalParse; object = msg->mutable_cloud_storage_options(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.BigQueryOptions big_query_options = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::BigQueryOptions::_InternalParse; object = msg->mutable_big_query_options(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.StorageConfig.TimespanConfig timespan_config = 6; case 6: { if (static_cast<::google::protobuf::uint8>(tag) != 50) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::StorageConfig_TimespanConfig::_InternalParse; object = msg->mutable_timespan_config(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.HybridOptions hybrid_options = 9; case 9: { if (static_cast<::google::protobuf::uint8>(tag) != 74) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::HybridOptions::_InternalParse; object = msg->mutable_hybrid_options(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool StorageConfig::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.StorageConfig) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.DatastoreOptions datastore_options = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_datastore_options())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.CloudStorageOptions cloud_storage_options = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_cloud_storage_options())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.BigQueryOptions big_query_options = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_big_query_options())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.StorageConfig.TimespanConfig timespan_config = 6; case 6: { if (static_cast< ::google::protobuf::uint8>(tag) == (50 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_timespan_config())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.HybridOptions hybrid_options = 9; case 9: { if (static_cast< ::google::protobuf::uint8>(tag) == (74 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_hybrid_options())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.StorageConfig) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.StorageConfig) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void StorageConfig::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.StorageConfig) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.DatastoreOptions datastore_options = 2; if (has_datastore_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::datastore_options(this), output); } // .google.privacy.dlp.v2.CloudStorageOptions cloud_storage_options = 3; if (has_cloud_storage_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::cloud_storage_options(this), output); } // .google.privacy.dlp.v2.BigQueryOptions big_query_options = 4; if (has_big_query_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 4, HasBitSetters::big_query_options(this), output); } // .google.privacy.dlp.v2.StorageConfig.TimespanConfig timespan_config = 6; if (this->has_timespan_config()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 6, HasBitSetters::timespan_config(this), output); } // .google.privacy.dlp.v2.HybridOptions hybrid_options = 9; if (has_hybrid_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 9, HasBitSetters::hybrid_options(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.StorageConfig) } ::google::protobuf::uint8* StorageConfig::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.StorageConfig) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.DatastoreOptions datastore_options = 2; if (has_datastore_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::datastore_options(this), target); } // .google.privacy.dlp.v2.CloudStorageOptions cloud_storage_options = 3; if (has_cloud_storage_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::cloud_storage_options(this), target); } // .google.privacy.dlp.v2.BigQueryOptions big_query_options = 4; if (has_big_query_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 4, HasBitSetters::big_query_options(this), target); } // .google.privacy.dlp.v2.StorageConfig.TimespanConfig timespan_config = 6; if (this->has_timespan_config()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 6, HasBitSetters::timespan_config(this), target); } // .google.privacy.dlp.v2.HybridOptions hybrid_options = 9; if (has_hybrid_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 9, HasBitSetters::hybrid_options(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.StorageConfig) return target; } size_t StorageConfig::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.StorageConfig) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.StorageConfig.TimespanConfig timespan_config = 6; if (this->has_timespan_config()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *timespan_config_); } switch (type_case()) { // .google.privacy.dlp.v2.DatastoreOptions datastore_options = 2; case kDatastoreOptions: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.datastore_options_); break; } // .google.privacy.dlp.v2.CloudStorageOptions cloud_storage_options = 3; case kCloudStorageOptions: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.cloud_storage_options_); break; } // .google.privacy.dlp.v2.BigQueryOptions big_query_options = 4; case kBigQueryOptions: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.big_query_options_); break; } // .google.privacy.dlp.v2.HybridOptions hybrid_options = 9; case kHybridOptions: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.hybrid_options_); break; } case TYPE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void StorageConfig::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.StorageConfig) GOOGLE_DCHECK_NE(&from, this); const StorageConfig* source = ::google::protobuf::DynamicCastToGenerated<StorageConfig>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.StorageConfig) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.StorageConfig) MergeFrom(*source); } } void StorageConfig::MergeFrom(const StorageConfig& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.StorageConfig) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_timespan_config()) { mutable_timespan_config()->::google::privacy::dlp::v2::StorageConfig_TimespanConfig::MergeFrom(from.timespan_config()); } switch (from.type_case()) { case kDatastoreOptions: { mutable_datastore_options()->::google::privacy::dlp::v2::DatastoreOptions::MergeFrom(from.datastore_options()); break; } case kCloudStorageOptions: { mutable_cloud_storage_options()->::google::privacy::dlp::v2::CloudStorageOptions::MergeFrom(from.cloud_storage_options()); break; } case kBigQueryOptions: { mutable_big_query_options()->::google::privacy::dlp::v2::BigQueryOptions::MergeFrom(from.big_query_options()); break; } case kHybridOptions: { mutable_hybrid_options()->::google::privacy::dlp::v2::HybridOptions::MergeFrom(from.hybrid_options()); break; } case TYPE_NOT_SET: { break; } } } void StorageConfig::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.StorageConfig) if (&from == this) return; Clear(); MergeFrom(from); } void StorageConfig::CopyFrom(const StorageConfig& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.StorageConfig) if (&from == this) return; Clear(); MergeFrom(from); } bool StorageConfig::IsInitialized() const { return true; } void StorageConfig::Swap(StorageConfig* other) { if (other == this) return; InternalSwap(other); } void StorageConfig::InternalSwap(StorageConfig* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(timespan_config_, other->timespan_config_); swap(type_, other->type_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata StorageConfig::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== HybridOptions_LabelsEntry_DoNotUse::HybridOptions_LabelsEntry_DoNotUse() {} HybridOptions_LabelsEntry_DoNotUse::HybridOptions_LabelsEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} void HybridOptions_LabelsEntry_DoNotUse::MergeFrom(const HybridOptions_LabelsEntry_DoNotUse& other) { MergeFromInternal(other); } ::google::protobuf::Metadata HybridOptions_LabelsEntry_DoNotUse::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[23]; } void HybridOptions_LabelsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { ::google::protobuf::Message::MergeFrom(other); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool HybridOptions_LabelsEntry_DoNotUse::_ParseMap(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { using MF = ::google::protobuf::internal::MapField< HybridOptions_LabelsEntry_DoNotUse, EntryKeyType, EntryValueType, kEntryKeyFieldType, kEntryValueFieldType, kEntryDefaultEnumValue>; auto mf = static_cast<MF*>(object); Parser<MF, ::google::protobuf::Map<EntryKeyType, EntryValueType>> parser(mf); #define DO_(x) if (!(x)) return false DO_(parser.ParseMap(begin, end)); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( parser.key().data(), static_cast<int>(parser.key().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.key")); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( parser.value().data(), static_cast<int>(parser.value().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.value")); #undef DO_ return true; } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER // =================================================================== void HybridOptions::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_HybridOptions_default_instance_._instance.get_mutable()->table_options_ = const_cast< ::google::privacy::dlp::v2::TableOptions*>( ::google::privacy::dlp::v2::TableOptions::internal_default_instance()); } class HybridOptions::HasBitSetters { public: static const ::google::privacy::dlp::v2::TableOptions& table_options(const HybridOptions* msg); }; const ::google::privacy::dlp::v2::TableOptions& HybridOptions::HasBitSetters::table_options(const HybridOptions* msg) { return *msg->table_options_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int HybridOptions::kDescriptionFieldNumber; const int HybridOptions::kRequiredFindingLabelKeysFieldNumber; const int HybridOptions::kLabelsFieldNumber; const int HybridOptions::kTableOptionsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 HybridOptions::HybridOptions() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.HybridOptions) } HybridOptions::HybridOptions(const HybridOptions& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), required_finding_label_keys_(from.required_finding_label_keys_) { _internal_metadata_.MergeFrom(from._internal_metadata_); labels_.MergeFrom(from.labels_); description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.description().size() > 0) { description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.description_); } if (from.has_table_options()) { table_options_ = new ::google::privacy::dlp::v2::TableOptions(*from.table_options_); } else { table_options_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.HybridOptions) } void HybridOptions::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); table_options_ = nullptr; } HybridOptions::~HybridOptions() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.HybridOptions) SharedDtor(); } void HybridOptions::SharedDtor() { description_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete table_options_; } void HybridOptions::SetCachedSize(int size) const { _cached_size_.Set(size); } const HybridOptions& HybridOptions::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_HybridOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void HybridOptions::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.HybridOptions) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; required_finding_label_keys_.Clear(); labels_.Clear(); description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == nullptr && table_options_ != nullptr) { delete table_options_; } table_options_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* HybridOptions::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<HybridOptions*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string description = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.HybridOptions.description"); object = msg->mutable_description(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // repeated string required_finding_label_keys = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.HybridOptions.required_finding_label_keys"); object = msg->add_required_finding_label_keys(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 18 && (ptr += 1)); break; } // map<string, string> labels = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::protobuf::internal::SlowMapEntryParser; auto parse_map = ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse::_ParseMap; ctx->extra_parse_data().payload.clear(); ctx->extra_parse_data().parse_map = parse_map; object = &msg->labels_; if (size > end - ptr) goto len_delim_till_end; auto newend = ptr + size; GOOGLE_PROTOBUF_PARSER_ASSERT(parse_map(ptr, newend, object, ctx)); ptr = newend; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 26 && (ptr += 1)); break; } // .google.privacy.dlp.v2.TableOptions table_options = 4; case 4: { if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::TableOptions::_InternalParse; object = msg->mutable_table_options(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool HybridOptions::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.HybridOptions) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string description = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_description())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->description().data(), static_cast<int>(this->description().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.description")); } else { goto handle_unusual; } break; } // repeated string required_finding_label_keys = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_required_finding_label_keys())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->required_finding_label_keys(this->required_finding_label_keys_size() - 1).data(), static_cast<int>(this->required_finding_label_keys(this->required_finding_label_keys_size() - 1).length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.required_finding_label_keys")); } else { goto handle_unusual; } break; } // map<string, string> labels = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { HybridOptions_LabelsEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< HybridOptions_LabelsEntry_DoNotUse, ::std::string, ::std::string, ::google::protobuf::internal::WireFormatLite::TYPE_STRING, ::google::protobuf::internal::WireFormatLite::TYPE_STRING, 0 >, ::google::protobuf::Map< ::std::string, ::std::string > > parser(&labels_); DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, &parser)); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( parser.key().data(), static_cast<int>(parser.key().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.key")); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( parser.value().data(), static_cast<int>(parser.value().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.value")); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.TableOptions table_options = 4; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_table_options())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.HybridOptions) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.HybridOptions) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void HybridOptions::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.HybridOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string description = 1; if (this->description().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->description().data(), static_cast<int>(this->description().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.description"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->description(), output); } // repeated string required_finding_label_keys = 2; for (int i = 0, n = this->required_finding_label_keys_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->required_finding_label_keys(i).data(), static_cast<int>(this->required_finding_label_keys(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.required_finding_label_keys"); ::google::protobuf::internal::WireFormatLite::WriteString( 2, this->required_finding_label_keys(i), output); } // map<string, string> labels = 3; if (!this->labels().empty()) { typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer ConstPtr; typedef ConstPtr SortItem; typedef ::google::protobuf::internal::CompareByDerefFirst<SortItem> Less; struct Utf8Check { static void Check(ConstPtr p) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( p->first.data(), static_cast<int>(p->first.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.key"); ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( p->second.data(), static_cast<int>(p->second.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.value"); } }; if (output->IsSerializationDeterministic() && this->labels().size() > 1) { ::std::unique_ptr<SortItem[]> items( new SortItem[this->labels().size()]); typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; size_type n = 0; for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator it = this->labels().begin(); it != this->labels().end(); ++it, ++n) { items[static_cast<ptrdiff_t>(n)] = SortItem(&*it); } ::std::sort(&items[0], &items[static_cast<ptrdiff_t>(n)], Less()); ::std::unique_ptr<HybridOptions_LabelsEntry_DoNotUse> entry; for (size_type i = 0; i < n; i++) { entry.reset(labels_.NewEntryWrapper(items[static_cast<ptrdiff_t>(i)]->first, items[static_cast<ptrdiff_t>(i)]->second)); ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(3, *entry, output); Utf8Check::Check(&(*items[static_cast<ptrdiff_t>(i)])); } } else { ::std::unique_ptr<HybridOptions_LabelsEntry_DoNotUse> entry; for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator it = this->labels().begin(); it != this->labels().end(); ++it) { entry.reset(labels_.NewEntryWrapper(it->first, it->second)); ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(3, *entry, output); Utf8Check::Check(&(*it)); } } } // .google.privacy.dlp.v2.TableOptions table_options = 4; if (this->has_table_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 4, HasBitSetters::table_options(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.HybridOptions) } ::google::protobuf::uint8* HybridOptions::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.HybridOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string description = 1; if (this->description().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->description().data(), static_cast<int>(this->description().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.description"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->description(), target); } // repeated string required_finding_label_keys = 2; for (int i = 0, n = this->required_finding_label_keys_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->required_finding_label_keys(i).data(), static_cast<int>(this->required_finding_label_keys(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.required_finding_label_keys"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(2, this->required_finding_label_keys(i), target); } // map<string, string> labels = 3; if (!this->labels().empty()) { typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer ConstPtr; typedef ConstPtr SortItem; typedef ::google::protobuf::internal::CompareByDerefFirst<SortItem> Less; struct Utf8Check { static void Check(ConstPtr p) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( p->first.data(), static_cast<int>(p->first.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.key"); ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( p->second.data(), static_cast<int>(p->second.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.HybridOptions.LabelsEntry.value"); } }; if (false && this->labels().size() > 1) { ::std::unique_ptr<SortItem[]> items( new SortItem[this->labels().size()]); typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; size_type n = 0; for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator it = this->labels().begin(); it != this->labels().end(); ++it, ++n) { items[static_cast<ptrdiff_t>(n)] = SortItem(&*it); } ::std::sort(&items[0], &items[static_cast<ptrdiff_t>(n)], Less()); ::std::unique_ptr<HybridOptions_LabelsEntry_DoNotUse> entry; for (size_type i = 0; i < n; i++) { entry.reset(labels_.NewEntryWrapper(items[static_cast<ptrdiff_t>(i)]->first, items[static_cast<ptrdiff_t>(i)]->second)); target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessageNoVirtualToArray(3, *entry, target); Utf8Check::Check(&(*items[static_cast<ptrdiff_t>(i)])); } } else { ::std::unique_ptr<HybridOptions_LabelsEntry_DoNotUse> entry; for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator it = this->labels().begin(); it != this->labels().end(); ++it) { entry.reset(labels_.NewEntryWrapper(it->first, it->second)); target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessageNoVirtualToArray(3, *entry, target); Utf8Check::Check(&(*it)); } } } // .google.privacy.dlp.v2.TableOptions table_options = 4; if (this->has_table_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 4, HasBitSetters::table_options(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.HybridOptions) return target; } size_t HybridOptions::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.HybridOptions) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated string required_finding_label_keys = 2; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->required_finding_label_keys_size()); for (int i = 0, n = this->required_finding_label_keys_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->required_finding_label_keys(i)); } // map<string, string> labels = 3; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->labels_size()); { ::std::unique_ptr<HybridOptions_LabelsEntry_DoNotUse> entry; for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator it = this->labels().begin(); it != this->labels().end(); ++it) { entry.reset(labels_.NewEntryWrapper(it->first, it->second)); total_size += ::google::protobuf::internal::WireFormatLite:: MessageSizeNoVirtual(*entry); } } // string description = 1; if (this->description().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->description()); } // .google.privacy.dlp.v2.TableOptions table_options = 4; if (this->has_table_options()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *table_options_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void HybridOptions::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.HybridOptions) GOOGLE_DCHECK_NE(&from, this); const HybridOptions* source = ::google::protobuf::DynamicCastToGenerated<HybridOptions>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.HybridOptions) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.HybridOptions) MergeFrom(*source); } } void HybridOptions::MergeFrom(const HybridOptions& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.HybridOptions) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; required_finding_label_keys_.MergeFrom(from.required_finding_label_keys_); labels_.MergeFrom(from.labels_); if (from.description().size() > 0) { description_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.description_); } if (from.has_table_options()) { mutable_table_options()->::google::privacy::dlp::v2::TableOptions::MergeFrom(from.table_options()); } } void HybridOptions::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.HybridOptions) if (&from == this) return; Clear(); MergeFrom(from); } void HybridOptions::CopyFrom(const HybridOptions& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.HybridOptions) if (&from == this) return; Clear(); MergeFrom(from); } bool HybridOptions::IsInitialized() const { return true; } void HybridOptions::Swap(HybridOptions* other) { if (other == this) return; InternalSwap(other); } void HybridOptions::InternalSwap(HybridOptions* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); required_finding_label_keys_.InternalSwap(CastToBase(&other->required_finding_label_keys_)); labels_.Swap(&other->labels_); description_.Swap(&other->description_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(table_options_, other->table_options_); } ::google::protobuf::Metadata HybridOptions::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void BigQueryKey::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_BigQueryKey_default_instance_._instance.get_mutable()->table_reference_ = const_cast< ::google::privacy::dlp::v2::BigQueryTable*>( ::google::privacy::dlp::v2::BigQueryTable::internal_default_instance()); } class BigQueryKey::HasBitSetters { public: static const ::google::privacy::dlp::v2::BigQueryTable& table_reference(const BigQueryKey* msg); }; const ::google::privacy::dlp::v2::BigQueryTable& BigQueryKey::HasBitSetters::table_reference(const BigQueryKey* msg) { return *msg->table_reference_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int BigQueryKey::kTableReferenceFieldNumber; const int BigQueryKey::kRowNumberFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 BigQueryKey::BigQueryKey() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.BigQueryKey) } BigQueryKey::BigQueryKey(const BigQueryKey& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_table_reference()) { table_reference_ = new ::google::privacy::dlp::v2::BigQueryTable(*from.table_reference_); } else { table_reference_ = nullptr; } row_number_ = from.row_number_; // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.BigQueryKey) } void BigQueryKey::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&table_reference_, 0, static_cast<size_t>( reinterpret_cast<char*>(&row_number_) - reinterpret_cast<char*>(&table_reference_)) + sizeof(row_number_)); } BigQueryKey::~BigQueryKey() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.BigQueryKey) SharedDtor(); } void BigQueryKey::SharedDtor() { if (this != internal_default_instance()) delete table_reference_; } void BigQueryKey::SetCachedSize(int size) const { _cached_size_.Set(size); } const BigQueryKey& BigQueryKey::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_BigQueryKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void BigQueryKey::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.BigQueryKey) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && table_reference_ != nullptr) { delete table_reference_; } table_reference_ = nullptr; row_number_ = PROTOBUF_LONGLONG(0); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* BigQueryKey::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<BigQueryKey*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::BigQueryTable::_InternalParse; object = msg->mutable_table_reference(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // int64 row_number = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; msg->set_row_number(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool BigQueryKey::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.BigQueryKey) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_table_reference())); } else { goto handle_unusual; } break; } // int64 row_number = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &row_number_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.BigQueryKey) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.BigQueryKey) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void BigQueryKey::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.BigQueryKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::table_reference(this), output); } // int64 row_number = 2; if (this->row_number() != 0) { ::google::protobuf::internal::WireFormatLite::WriteInt64(2, this->row_number(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.BigQueryKey) } ::google::protobuf::uint8* BigQueryKey::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.BigQueryKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::table_reference(this), target); } // int64 row_number = 2; if (this->row_number() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(2, this->row_number(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.BigQueryKey) return target; } size_t BigQueryKey::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.BigQueryKey) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table_reference = 1; if (this->has_table_reference()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *table_reference_); } // int64 row_number = 2; if (this->row_number() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->row_number()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void BigQueryKey::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.BigQueryKey) GOOGLE_DCHECK_NE(&from, this); const BigQueryKey* source = ::google::protobuf::DynamicCastToGenerated<BigQueryKey>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.BigQueryKey) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.BigQueryKey) MergeFrom(*source); } } void BigQueryKey::MergeFrom(const BigQueryKey& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.BigQueryKey) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_table_reference()) { mutable_table_reference()->::google::privacy::dlp::v2::BigQueryTable::MergeFrom(from.table_reference()); } if (from.row_number() != 0) { set_row_number(from.row_number()); } } void BigQueryKey::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.BigQueryKey) if (&from == this) return; Clear(); MergeFrom(from); } void BigQueryKey::CopyFrom(const BigQueryKey& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.BigQueryKey) if (&from == this) return; Clear(); MergeFrom(from); } bool BigQueryKey::IsInitialized() const { return true; } void BigQueryKey::Swap(BigQueryKey* other) { if (other == this) return; InternalSwap(other); } void BigQueryKey::InternalSwap(BigQueryKey* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(table_reference_, other->table_reference_); swap(row_number_, other->row_number_); } ::google::protobuf::Metadata BigQueryKey::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void DatastoreKey::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_DatastoreKey_default_instance_._instance.get_mutable()->entity_key_ = const_cast< ::google::privacy::dlp::v2::Key*>( ::google::privacy::dlp::v2::Key::internal_default_instance()); } class DatastoreKey::HasBitSetters { public: static const ::google::privacy::dlp::v2::Key& entity_key(const DatastoreKey* msg); }; const ::google::privacy::dlp::v2::Key& DatastoreKey::HasBitSetters::entity_key(const DatastoreKey* msg) { return *msg->entity_key_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int DatastoreKey::kEntityKeyFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 DatastoreKey::DatastoreKey() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.DatastoreKey) } DatastoreKey::DatastoreKey(const DatastoreKey& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_entity_key()) { entity_key_ = new ::google::privacy::dlp::v2::Key(*from.entity_key_); } else { entity_key_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.DatastoreKey) } void DatastoreKey::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); entity_key_ = nullptr; } DatastoreKey::~DatastoreKey() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.DatastoreKey) SharedDtor(); } void DatastoreKey::SharedDtor() { if (this != internal_default_instance()) delete entity_key_; } void DatastoreKey::SetCachedSize(int size) const { _cached_size_.Set(size); } const DatastoreKey& DatastoreKey::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_DatastoreKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void DatastoreKey::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.DatastoreKey) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && entity_key_ != nullptr) { delete entity_key_; } entity_key_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* DatastoreKey::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<DatastoreKey*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.Key entity_key = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::Key::_InternalParse; object = msg->mutable_entity_key(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool DatastoreKey::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.DatastoreKey) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.Key entity_key = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_entity_key())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.DatastoreKey) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.DatastoreKey) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void DatastoreKey::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.DatastoreKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.Key entity_key = 1; if (this->has_entity_key()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::entity_key(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.DatastoreKey) } ::google::protobuf::uint8* DatastoreKey::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.DatastoreKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.Key entity_key = 1; if (this->has_entity_key()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::entity_key(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.DatastoreKey) return target; } size_t DatastoreKey::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.DatastoreKey) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.Key entity_key = 1; if (this->has_entity_key()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *entity_key_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void DatastoreKey::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.DatastoreKey) GOOGLE_DCHECK_NE(&from, this); const DatastoreKey* source = ::google::protobuf::DynamicCastToGenerated<DatastoreKey>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.DatastoreKey) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.DatastoreKey) MergeFrom(*source); } } void DatastoreKey::MergeFrom(const DatastoreKey& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.DatastoreKey) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_entity_key()) { mutable_entity_key()->::google::privacy::dlp::v2::Key::MergeFrom(from.entity_key()); } } void DatastoreKey::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.DatastoreKey) if (&from == this) return; Clear(); MergeFrom(from); } void DatastoreKey::CopyFrom(const DatastoreKey& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.DatastoreKey) if (&from == this) return; Clear(); MergeFrom(from); } bool DatastoreKey::IsInitialized() const { return true; } void DatastoreKey::Swap(DatastoreKey* other) { if (other == this) return; InternalSwap(other); } void DatastoreKey::InternalSwap(DatastoreKey* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(entity_key_, other->entity_key_); } ::google::protobuf::Metadata DatastoreKey::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void Key_PathElement::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_Key_PathElement_default_instance_.id_ = PROTOBUF_LONGLONG(0); ::google::privacy::dlp::v2::_Key_PathElement_default_instance_.name_.UnsafeSetDefault( &::google::protobuf::internal::GetEmptyStringAlreadyInited()); } class Key_PathElement::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int Key_PathElement::kKindFieldNumber; const int Key_PathElement::kIdFieldNumber; const int Key_PathElement::kNameFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 Key_PathElement::Key_PathElement() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.Key.PathElement) } Key_PathElement::Key_PathElement(const Key_PathElement& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); kind_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.kind().size() > 0) { kind_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.kind_); } clear_has_id_type(); switch (from.id_type_case()) { case kId: { set_id(from.id()); break; } case kName: { set_name(from.name()); break; } case ID_TYPE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.Key.PathElement) } void Key_PathElement::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); kind_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_id_type(); } Key_PathElement::~Key_PathElement() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.Key.PathElement) SharedDtor(); } void Key_PathElement::SharedDtor() { kind_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (has_id_type()) { clear_id_type(); } } void Key_PathElement::SetCachedSize(int size) const { _cached_size_.Set(size); } const Key_PathElement& Key_PathElement::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_Key_PathElement_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void Key_PathElement::clear_id_type() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.Key.PathElement) switch (id_type_case()) { case kId: { // No need to clear break; } case kName: { id_type_.name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); break; } case ID_TYPE_NOT_SET: { break; } } _oneof_case_[0] = ID_TYPE_NOT_SET; } void Key_PathElement::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.Key.PathElement) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; kind_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_id_type(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* Key_PathElement::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<Key_PathElement*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string kind = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.Key.PathElement.kind"); object = msg->mutable_kind(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // int64 id = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual; msg->set_id(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } // string name = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.Key.PathElement.name"); object = msg->mutable_name(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool Key_PathElement::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.Key.PathElement) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string kind = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_kind())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->kind().data(), static_cast<int>(this->kind().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.Key.PathElement.kind")); } else { goto handle_unusual; } break; } // int64 id = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) { clear_id_type(); DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &id_type_.id_))); set_has_id(); } else { goto handle_unusual; } break; } // string name = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.Key.PathElement.name")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.Key.PathElement) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.Key.PathElement) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void Key_PathElement::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.Key.PathElement) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string kind = 1; if (this->kind().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->kind().data(), static_cast<int>(this->kind().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.Key.PathElement.kind"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->kind(), output); } // int64 id = 2; if (has_id()) { ::google::protobuf::internal::WireFormatLite::WriteInt64(2, this->id(), output); } // string name = 3; if (has_name()) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.Key.PathElement.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->name(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.Key.PathElement) } ::google::protobuf::uint8* Key_PathElement::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.Key.PathElement) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string kind = 1; if (this->kind().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->kind().data(), static_cast<int>(this->kind().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.Key.PathElement.kind"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->kind(), target); } // int64 id = 2; if (has_id()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(2, this->id(), target); } // string name = 3; if (has_name()) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->name().data(), static_cast<int>(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.Key.PathElement.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->name(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.Key.PathElement) return target; } size_t Key_PathElement::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.Key.PathElement) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string kind = 1; if (this->kind().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->kind()); } switch (id_type_case()) { // int64 id = 2; case kId: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->id()); break; } // string name = 3; case kName: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); break; } case ID_TYPE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void Key_PathElement::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.Key.PathElement) GOOGLE_DCHECK_NE(&from, this); const Key_PathElement* source = ::google::protobuf::DynamicCastToGenerated<Key_PathElement>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.Key.PathElement) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.Key.PathElement) MergeFrom(*source); } } void Key_PathElement::MergeFrom(const Key_PathElement& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.Key.PathElement) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.kind().size() > 0) { kind_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.kind_); } switch (from.id_type_case()) { case kId: { set_id(from.id()); break; } case kName: { set_name(from.name()); break; } case ID_TYPE_NOT_SET: { break; } } } void Key_PathElement::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.Key.PathElement) if (&from == this) return; Clear(); MergeFrom(from); } void Key_PathElement::CopyFrom(const Key_PathElement& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.Key.PathElement) if (&from == this) return; Clear(); MergeFrom(from); } bool Key_PathElement::IsInitialized() const { return true; } void Key_PathElement::Swap(Key_PathElement* other) { if (other == this) return; InternalSwap(other); } void Key_PathElement::InternalSwap(Key_PathElement* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); kind_.Swap(&other->kind_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(id_type_, other->id_type_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata Key_PathElement::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void Key::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_Key_default_instance_._instance.get_mutable()->partition_id_ = const_cast< ::google::privacy::dlp::v2::PartitionId*>( ::google::privacy::dlp::v2::PartitionId::internal_default_instance()); } class Key::HasBitSetters { public: static const ::google::privacy::dlp::v2::PartitionId& partition_id(const Key* msg); }; const ::google::privacy::dlp::v2::PartitionId& Key::HasBitSetters::partition_id(const Key* msg) { return *msg->partition_id_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int Key::kPartitionIdFieldNumber; const int Key::kPathFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 Key::Key() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.Key) } Key::Key(const Key& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), path_(from.path_) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_partition_id()) { partition_id_ = new ::google::privacy::dlp::v2::PartitionId(*from.partition_id_); } else { partition_id_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.Key) } void Key::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); partition_id_ = nullptr; } Key::~Key() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.Key) SharedDtor(); } void Key::SharedDtor() { if (this != internal_default_instance()) delete partition_id_; } void Key::SetCachedSize(int size) const { _cached_size_.Set(size); } const Key& Key::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_Key_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void Key::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.Key) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; path_.Clear(); if (GetArenaNoVirtual() == nullptr && partition_id_ != nullptr) { delete partition_id_; } partition_id_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* Key::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<Key*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.PartitionId partition_id = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::PartitionId::_InternalParse; object = msg->mutable_partition_id(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // repeated .google.privacy.dlp.v2.Key.PathElement path = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::Key_PathElement::_InternalParse; object = msg->add_path(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 18 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool Key::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.Key) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.PartitionId partition_id = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_partition_id())); } else { goto handle_unusual; } break; } // repeated .google.privacy.dlp.v2.Key.PathElement path = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, add_path())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.Key) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.Key) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void Key::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.Key) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::partition_id(this), output); } // repeated .google.privacy.dlp.v2.Key.PathElement path = 2; for (unsigned int i = 0, n = static_cast<unsigned int>(this->path_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, this->path(static_cast<int>(i)), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.Key) } ::google::protobuf::uint8* Key::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.Key) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::partition_id(this), target); } // repeated .google.privacy.dlp.v2.Key.PathElement path = 2; for (unsigned int i = 0, n = static_cast<unsigned int>(this->path_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, this->path(static_cast<int>(i)), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.Key) return target; } size_t Key::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.Key) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .google.privacy.dlp.v2.Key.PathElement path = 2; { unsigned int count = static_cast<unsigned int>(this->path_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->path(static_cast<int>(i))); } } // .google.privacy.dlp.v2.PartitionId partition_id = 1; if (this->has_partition_id()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *partition_id_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void Key::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.Key) GOOGLE_DCHECK_NE(&from, this); const Key* source = ::google::protobuf::DynamicCastToGenerated<Key>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.Key) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.Key) MergeFrom(*source); } } void Key::MergeFrom(const Key& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.Key) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; path_.MergeFrom(from.path_); if (from.has_partition_id()) { mutable_partition_id()->::google::privacy::dlp::v2::PartitionId::MergeFrom(from.partition_id()); } } void Key::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.Key) if (&from == this) return; Clear(); MergeFrom(from); } void Key::CopyFrom(const Key& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.Key) if (&from == this) return; Clear(); MergeFrom(from); } bool Key::IsInitialized() const { return true; } void Key::Swap(Key* other) { if (other == this) return; InternalSwap(other); } void Key::InternalSwap(Key* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); CastToBase(&path_)->InternalSwap(CastToBase(&other->path_)); swap(partition_id_, other->partition_id_); } ::google::protobuf::Metadata Key::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void RecordKey::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_RecordKey_default_instance_.datastore_key_ = const_cast< ::google::privacy::dlp::v2::DatastoreKey*>( ::google::privacy::dlp::v2::DatastoreKey::internal_default_instance()); ::google::privacy::dlp::v2::_RecordKey_default_instance_.big_query_key_ = const_cast< ::google::privacy::dlp::v2::BigQueryKey*>( ::google::privacy::dlp::v2::BigQueryKey::internal_default_instance()); } class RecordKey::HasBitSetters { public: static const ::google::privacy::dlp::v2::DatastoreKey& datastore_key(const RecordKey* msg); static const ::google::privacy::dlp::v2::BigQueryKey& big_query_key(const RecordKey* msg); }; const ::google::privacy::dlp::v2::DatastoreKey& RecordKey::HasBitSetters::datastore_key(const RecordKey* msg) { return *msg->type_.datastore_key_; } const ::google::privacy::dlp::v2::BigQueryKey& RecordKey::HasBitSetters::big_query_key(const RecordKey* msg) { return *msg->type_.big_query_key_; } void RecordKey::set_allocated_datastore_key(::google::privacy::dlp::v2::DatastoreKey* datastore_key) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (datastore_key) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { datastore_key = ::google::protobuf::internal::GetOwnedMessage( message_arena, datastore_key, submessage_arena); } set_has_datastore_key(); type_.datastore_key_ = datastore_key; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.RecordKey.datastore_key) } void RecordKey::set_allocated_big_query_key(::google::privacy::dlp::v2::BigQueryKey* big_query_key) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_type(); if (big_query_key) { ::google::protobuf::Arena* submessage_arena = nullptr; if (message_arena != submessage_arena) { big_query_key = ::google::protobuf::internal::GetOwnedMessage( message_arena, big_query_key, submessage_arena); } set_has_big_query_key(); type_.big_query_key_ = big_query_key; } // @@protoc_insertion_point(field_set_allocated:google.privacy.dlp.v2.RecordKey.big_query_key) } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int RecordKey::kDatastoreKeyFieldNumber; const int RecordKey::kBigQueryKeyFieldNumber; const int RecordKey::kIdValuesFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 RecordKey::RecordKey() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.RecordKey) } RecordKey::RecordKey(const RecordKey& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), id_values_(from.id_values_) { _internal_metadata_.MergeFrom(from._internal_metadata_); clear_has_type(); switch (from.type_case()) { case kDatastoreKey: { mutable_datastore_key()->::google::privacy::dlp::v2::DatastoreKey::MergeFrom(from.datastore_key()); break; } case kBigQueryKey: { mutable_big_query_key()->::google::privacy::dlp::v2::BigQueryKey::MergeFrom(from.big_query_key()); break; } case TYPE_NOT_SET: { break; } } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.RecordKey) } void RecordKey::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_RecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); clear_has_type(); } RecordKey::~RecordKey() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.RecordKey) SharedDtor(); } void RecordKey::SharedDtor() { if (has_type()) { clear_type(); } } void RecordKey::SetCachedSize(int size) const { _cached_size_.Set(size); } const RecordKey& RecordKey::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_RecordKey_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void RecordKey::clear_type() { // @@protoc_insertion_point(one_of_clear_start:google.privacy.dlp.v2.RecordKey) switch (type_case()) { case kDatastoreKey: { delete type_.datastore_key_; break; } case kBigQueryKey: { delete type_.big_query_key_; break; } case TYPE_NOT_SET: { break; } } _oneof_case_[0] = TYPE_NOT_SET; } void RecordKey::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.RecordKey) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; id_values_.Clear(); clear_type(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* RecordKey::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<RecordKey*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.DatastoreKey datastore_key = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::DatastoreKey::_InternalParse; object = msg->mutable_datastore_key(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.BigQueryKey big_query_key = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::BigQueryKey::_InternalParse; object = msg->mutable_big_query_key(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // repeated string id_values = 5; case 5: { if (static_cast<::google::protobuf::uint8>(tag) != 42) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.RecordKey.id_values"); object = msg->add_id_values(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 42 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool RecordKey::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.RecordKey) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.DatastoreKey datastore_key = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_datastore_key())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.BigQueryKey big_query_key = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_big_query_key())); } else { goto handle_unusual; } break; } // repeated string id_values = 5; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_id_values())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->id_values(this->id_values_size() - 1).data(), static_cast<int>(this->id_values(this->id_values_size() - 1).length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.RecordKey.id_values")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.RecordKey) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.RecordKey) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void RecordKey::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.RecordKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.DatastoreKey datastore_key = 2; if (has_datastore_key()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::datastore_key(this), output); } // .google.privacy.dlp.v2.BigQueryKey big_query_key = 3; if (has_big_query_key()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::big_query_key(this), output); } // repeated string id_values = 5; for (int i = 0, n = this->id_values_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->id_values(i).data(), static_cast<int>(this->id_values(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.RecordKey.id_values"); ::google::protobuf::internal::WireFormatLite::WriteString( 5, this->id_values(i), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.RecordKey) } ::google::protobuf::uint8* RecordKey::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.RecordKey) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.DatastoreKey datastore_key = 2; if (has_datastore_key()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::datastore_key(this), target); } // .google.privacy.dlp.v2.BigQueryKey big_query_key = 3; if (has_big_query_key()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::big_query_key(this), target); } // repeated string id_values = 5; for (int i = 0, n = this->id_values_size(); i < n; i++) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->id_values(i).data(), static_cast<int>(this->id_values(i).length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.RecordKey.id_values"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(5, this->id_values(i), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.RecordKey) return target; } size_t RecordKey::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.RecordKey) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated string id_values = 5; total_size += 1 * ::google::protobuf::internal::FromIntSize(this->id_values_size()); for (int i = 0, n = this->id_values_size(); i < n; i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->id_values(i)); } switch (type_case()) { // .google.privacy.dlp.v2.DatastoreKey datastore_key = 2; case kDatastoreKey: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.datastore_key_); break; } // .google.privacy.dlp.v2.BigQueryKey big_query_key = 3; case kBigQueryKey: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *type_.big_query_key_); break; } case TYPE_NOT_SET: { break; } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void RecordKey::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.RecordKey) GOOGLE_DCHECK_NE(&from, this); const RecordKey* source = ::google::protobuf::DynamicCastToGenerated<RecordKey>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.RecordKey) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.RecordKey) MergeFrom(*source); } } void RecordKey::MergeFrom(const RecordKey& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.RecordKey) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; id_values_.MergeFrom(from.id_values_); switch (from.type_case()) { case kDatastoreKey: { mutable_datastore_key()->::google::privacy::dlp::v2::DatastoreKey::MergeFrom(from.datastore_key()); break; } case kBigQueryKey: { mutable_big_query_key()->::google::privacy::dlp::v2::BigQueryKey::MergeFrom(from.big_query_key()); break; } case TYPE_NOT_SET: { break; } } } void RecordKey::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.RecordKey) if (&from == this) return; Clear(); MergeFrom(from); } void RecordKey::CopyFrom(const RecordKey& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.RecordKey) if (&from == this) return; Clear(); MergeFrom(from); } bool RecordKey::IsInitialized() const { return true; } void RecordKey::Swap(RecordKey* other) { if (other == this) return; InternalSwap(other); } void RecordKey::InternalSwap(RecordKey* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); id_values_.InternalSwap(CastToBase(&other->id_values_)); swap(type_, other->type_); swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata RecordKey::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void BigQueryTable::InitAsDefaultInstance() { } class BigQueryTable::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int BigQueryTable::kProjectIdFieldNumber; const int BigQueryTable::kDatasetIdFieldNumber; const int BigQueryTable::kTableIdFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 BigQueryTable::BigQueryTable() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.BigQueryTable) } BigQueryTable::BigQueryTable(const BigQueryTable& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); project_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.project_id().size() > 0) { project_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.project_id_); } dataset_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.dataset_id().size() > 0) { dataset_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.dataset_id_); } table_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.table_id().size() > 0) { table_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.table_id_); } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.BigQueryTable) } void BigQueryTable::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); project_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); dataset_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); table_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } BigQueryTable::~BigQueryTable() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.BigQueryTable) SharedDtor(); } void BigQueryTable::SharedDtor() { project_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); dataset_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); table_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } void BigQueryTable::SetCachedSize(int size) const { _cached_size_.Set(size); } const BigQueryTable& BigQueryTable::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_BigQueryTable_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void BigQueryTable::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.BigQueryTable) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; project_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); dataset_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); table_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* BigQueryTable::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<BigQueryTable*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // string project_id = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.BigQueryTable.project_id"); object = msg->mutable_project_id(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // string dataset_id = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.BigQueryTable.dataset_id"); object = msg->mutable_dataset_id(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } // string table_id = 3; case 3: { if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("google.privacy.dlp.v2.BigQueryTable.table_id"); object = msg->mutable_table_id(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; goto string_till_end; } GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); ptr += size; break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; string_till_end: static_cast<::std::string*>(object)->clear(); static_cast<::std::string*>(object)->reserve(size); goto len_delim_till_end; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool BigQueryTable::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.BigQueryTable) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // string project_id = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_project_id())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.BigQueryTable.project_id")); } else { goto handle_unusual; } break; } // string dataset_id = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_dataset_id())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dataset_id().data(), static_cast<int>(this->dataset_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.BigQueryTable.dataset_id")); } else { goto handle_unusual; } break; } // string table_id = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_table_id())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->table_id().data(), static_cast<int>(this->table_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, "google.privacy.dlp.v2.BigQueryTable.table_id")); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.BigQueryTable) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.BigQueryTable) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void BigQueryTable::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.BigQueryTable) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string project_id = 1; if (this->project_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.project_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->project_id(), output); } // string dataset_id = 2; if (this->dataset_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dataset_id().data(), static_cast<int>(this->dataset_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.dataset_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->dataset_id(), output); } // string table_id = 3; if (this->table_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->table_id().data(), static_cast<int>(this->table_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.table_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->table_id(), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.BigQueryTable) } ::google::protobuf::uint8* BigQueryTable::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.BigQueryTable) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // string project_id = 1; if (this->project_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->project_id().data(), static_cast<int>(this->project_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.project_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->project_id(), target); } // string dataset_id = 2; if (this->dataset_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->dataset_id().data(), static_cast<int>(this->dataset_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.dataset_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->dataset_id(), target); } // string table_id = 3; if (this->table_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->table_id().data(), static_cast<int>(this->table_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "google.privacy.dlp.v2.BigQueryTable.table_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->table_id(), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.BigQueryTable) return target; } size_t BigQueryTable::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.BigQueryTable) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // string project_id = 1; if (this->project_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->project_id()); } // string dataset_id = 2; if (this->dataset_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->dataset_id()); } // string table_id = 3; if (this->table_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->table_id()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void BigQueryTable::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.BigQueryTable) GOOGLE_DCHECK_NE(&from, this); const BigQueryTable* source = ::google::protobuf::DynamicCastToGenerated<BigQueryTable>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.BigQueryTable) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.BigQueryTable) MergeFrom(*source); } } void BigQueryTable::MergeFrom(const BigQueryTable& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.BigQueryTable) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.project_id().size() > 0) { project_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.project_id_); } if (from.dataset_id().size() > 0) { dataset_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.dataset_id_); } if (from.table_id().size() > 0) { table_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.table_id_); } } void BigQueryTable::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.BigQueryTable) if (&from == this) return; Clear(); MergeFrom(from); } void BigQueryTable::CopyFrom(const BigQueryTable& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.BigQueryTable) if (&from == this) return; Clear(); MergeFrom(from); } bool BigQueryTable::IsInitialized() const { return true; } void BigQueryTable::Swap(BigQueryTable* other) { if (other == this) return; InternalSwap(other); } void BigQueryTable::InternalSwap(BigQueryTable* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); project_id_.Swap(&other->project_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); dataset_id_.Swap(&other->dataset_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); table_id_.Swap(&other->table_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); } ::google::protobuf::Metadata BigQueryTable::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void BigQueryField::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_BigQueryField_default_instance_._instance.get_mutable()->table_ = const_cast< ::google::privacy::dlp::v2::BigQueryTable*>( ::google::privacy::dlp::v2::BigQueryTable::internal_default_instance()); ::google::privacy::dlp::v2::_BigQueryField_default_instance_._instance.get_mutable()->field_ = const_cast< ::google::privacy::dlp::v2::FieldId*>( ::google::privacy::dlp::v2::FieldId::internal_default_instance()); } class BigQueryField::HasBitSetters { public: static const ::google::privacy::dlp::v2::BigQueryTable& table(const BigQueryField* msg); static const ::google::privacy::dlp::v2::FieldId& field(const BigQueryField* msg); }; const ::google::privacy::dlp::v2::BigQueryTable& BigQueryField::HasBitSetters::table(const BigQueryField* msg) { return *msg->table_; } const ::google::privacy::dlp::v2::FieldId& BigQueryField::HasBitSetters::field(const BigQueryField* msg) { return *msg->field_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int BigQueryField::kTableFieldNumber; const int BigQueryField::kFieldFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 BigQueryField::BigQueryField() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.BigQueryField) } BigQueryField::BigQueryField(const BigQueryField& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_table()) { table_ = new ::google::privacy::dlp::v2::BigQueryTable(*from.table_); } else { table_ = nullptr; } if (from.has_field()) { field_ = new ::google::privacy::dlp::v2::FieldId(*from.field_); } else { field_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.BigQueryField) } void BigQueryField::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_BigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); ::memset(&table_, 0, static_cast<size_t>( reinterpret_cast<char*>(&field_) - reinterpret_cast<char*>(&table_)) + sizeof(field_)); } BigQueryField::~BigQueryField() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.BigQueryField) SharedDtor(); } void BigQueryField::SharedDtor() { if (this != internal_default_instance()) delete table_; if (this != internal_default_instance()) delete field_; } void BigQueryField::SetCachedSize(int size) const { _cached_size_.Set(size); } const BigQueryField& BigQueryField::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_BigQueryField_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void BigQueryField::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.BigQueryField) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && table_ != nullptr) { delete table_; } table_ = nullptr; if (GetArenaNoVirtual() == nullptr && field_ != nullptr) { delete field_; } field_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* BigQueryField::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<BigQueryField*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.BigQueryTable table = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::BigQueryTable::_InternalParse; object = msg->mutable_table(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } // .google.privacy.dlp.v2.FieldId field = 2; case 2: { if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->mutable_field(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool BigQueryField::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.BigQueryField) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.BigQueryTable table = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_table())); } else { goto handle_unusual; } break; } // .google.privacy.dlp.v2.FieldId field = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_field())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.BigQueryField) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.BigQueryField) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void BigQueryField::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.BigQueryField) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table = 1; if (this->has_table()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::table(this), output); } // .google.privacy.dlp.v2.FieldId field = 2; if (this->has_field()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, HasBitSetters::field(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.BigQueryField) } ::google::protobuf::uint8* BigQueryField::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.BigQueryField) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table = 1; if (this->has_table()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::table(this), target); } // .google.privacy.dlp.v2.FieldId field = 2; if (this->has_field()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 2, HasBitSetters::field(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.BigQueryField) return target; } size_t BigQueryField::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.BigQueryField) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.BigQueryTable table = 1; if (this->has_table()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *table_); } // .google.privacy.dlp.v2.FieldId field = 2; if (this->has_field()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *field_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void BigQueryField::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.BigQueryField) GOOGLE_DCHECK_NE(&from, this); const BigQueryField* source = ::google::protobuf::DynamicCastToGenerated<BigQueryField>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.BigQueryField) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.BigQueryField) MergeFrom(*source); } } void BigQueryField::MergeFrom(const BigQueryField& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.BigQueryField) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_table()) { mutable_table()->::google::privacy::dlp::v2::BigQueryTable::MergeFrom(from.table()); } if (from.has_field()) { mutable_field()->::google::privacy::dlp::v2::FieldId::MergeFrom(from.field()); } } void BigQueryField::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.BigQueryField) if (&from == this) return; Clear(); MergeFrom(from); } void BigQueryField::CopyFrom(const BigQueryField& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.BigQueryField) if (&from == this) return; Clear(); MergeFrom(from); } bool BigQueryField::IsInitialized() const { return true; } void BigQueryField::Swap(BigQueryField* other) { if (other == this) return; InternalSwap(other); } void BigQueryField::InternalSwap(BigQueryField* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(table_, other->table_); swap(field_, other->field_); } ::google::protobuf::Metadata BigQueryField::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void EntityId::InitAsDefaultInstance() { ::google::privacy::dlp::v2::_EntityId_default_instance_._instance.get_mutable()->field_ = const_cast< ::google::privacy::dlp::v2::FieldId*>( ::google::privacy::dlp::v2::FieldId::internal_default_instance()); } class EntityId::HasBitSetters { public: static const ::google::privacy::dlp::v2::FieldId& field(const EntityId* msg); }; const ::google::privacy::dlp::v2::FieldId& EntityId::HasBitSetters::field(const EntityId* msg) { return *msg->field_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int EntityId::kFieldFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 EntityId::EntityId() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.EntityId) } EntityId::EntityId(const EntityId& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); if (from.has_field()) { field_ = new ::google::privacy::dlp::v2::FieldId(*from.field_); } else { field_ = nullptr; } // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.EntityId) } void EntityId::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_EntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); field_ = nullptr; } EntityId::~EntityId() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.EntityId) SharedDtor(); } void EntityId::SharedDtor() { if (this != internal_default_instance()) delete field_; } void EntityId::SetCachedSize(int size) const { _cached_size_.Set(size); } const EntityId& EntityId::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_EntityId_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void EntityId::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.EntityId) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; if (GetArenaNoVirtual() == nullptr && field_ != nullptr) { delete field_; } field_ = nullptr; _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* EntityId::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<EntityId*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // .google.privacy.dlp.v2.FieldId field = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->mutable_field(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool EntityId::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.EntityId) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // .google.privacy.dlp.v2.FieldId field = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_field())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.EntityId) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.EntityId) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void EntityId::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.EntityId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.FieldId field = 1; if (this->has_field()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, HasBitSetters::field(this), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.EntityId) } ::google::protobuf::uint8* EntityId::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.EntityId) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .google.privacy.dlp.v2.FieldId field = 1; if (this->has_field()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, HasBitSetters::field(this), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.EntityId) return target; } size_t EntityId::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.EntityId) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // .google.privacy.dlp.v2.FieldId field = 1; if (this->has_field()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *field_); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void EntityId::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.EntityId) GOOGLE_DCHECK_NE(&from, this); const EntityId* source = ::google::protobuf::DynamicCastToGenerated<EntityId>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.EntityId) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.EntityId) MergeFrom(*source); } } void EntityId::MergeFrom(const EntityId& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.EntityId) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.has_field()) { mutable_field()->::google::privacy::dlp::v2::FieldId::MergeFrom(from.field()); } } void EntityId::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.EntityId) if (&from == this) return; Clear(); MergeFrom(from); } void EntityId::CopyFrom(const EntityId& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.EntityId) if (&from == this) return; Clear(); MergeFrom(from); } bool EntityId::IsInitialized() const { return true; } void EntityId::Swap(EntityId* other) { if (other == this) return; InternalSwap(other); } void EntityId::InternalSwap(EntityId* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); swap(field_, other->field_); } ::google::protobuf::Metadata EntityId::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // =================================================================== void TableOptions::InitAsDefaultInstance() { } class TableOptions::HasBitSetters { public: }; #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int TableOptions::kIdentifyingFieldsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TableOptions::TableOptions() : ::google::protobuf::Message(), _internal_metadata_(nullptr) { SharedCtor(); // @@protoc_insertion_point(constructor:google.privacy.dlp.v2.TableOptions) } TableOptions::TableOptions(const TableOptions& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr), identifying_fields_(from.identifying_fields_) { _internal_metadata_.MergeFrom(from._internal_metadata_); // @@protoc_insertion_point(copy_constructor:google.privacy.dlp.v2.TableOptions) } void TableOptions::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); } TableOptions::~TableOptions() { // @@protoc_insertion_point(destructor:google.privacy.dlp.v2.TableOptions) SharedDtor(); } void TableOptions::SharedDtor() { } void TableOptions::SetCachedSize(int size) const { _cached_size_.Set(size); } const TableOptions& TableOptions::default_instance() { ::google::protobuf::internal::InitSCC(&::scc_info_TableOptions_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto.base); return *internal_default_instance(); } void TableOptions::Clear() { // @@protoc_insertion_point(message_clear_start:google.privacy.dlp.v2.TableOptions) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; identifying_fields_.Clear(); _internal_metadata_.Clear(); } #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER const char* TableOptions::_InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx) { auto msg = static_cast<TableOptions*>(object); ::google::protobuf::int32 size; (void)size; int depth; (void)depth; ::google::protobuf::uint32 tag; ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; auto ptr = begin; while (ptr < end) { ptr = ::google::protobuf::io::Parse32(ptr, &tag); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); switch (tag >> 3) { // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 1; case 1: { if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; do { ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::google::privacy::dlp::v2::FieldId::_InternalParse; object = msg->add_identifying_fields(); if (size > end - ptr) goto len_delim_till_end; ptr += size; GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( {parser_till_end, object}, ptr - size, ptr)); if (ptr >= end) break; } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 10 && (ptr += 1)); break; } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { ctx->EndGroup(tag); return ptr; } auto res = UnknownFieldParse(tag, {_InternalParse, msg}, ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); ptr = res.first; GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); if (res.second) return ptr; } } // switch } // while return ptr; len_delim_till_end: return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool TableOptions::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:google.privacy.dlp.v2.TableOptions) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, add_identifying_fields())); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:google.privacy.dlp.v2.TableOptions) return true; failure: // @@protoc_insertion_point(parse_failure:google.privacy.dlp.v2.TableOptions) return false; #undef DO_ } #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER void TableOptions::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:google.privacy.dlp.v2.TableOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 1; for (unsigned int i = 0, n = static_cast<unsigned int>(this->identifying_fields_size()); i < n; i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, this->identifying_fields(static_cast<int>(i)), output); } if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:google.privacy.dlp.v2.TableOptions) } ::google::protobuf::uint8* TableOptions::InternalSerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:google.privacy.dlp.v2.TableOptions) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 1; for (unsigned int i = 0, n = static_cast<unsigned int>(this->identifying_fields_size()); i < n; i++) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 1, this->identifying_fields(static_cast<int>(i)), target); } if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:google.privacy.dlp.v2.TableOptions) return target; } size_t TableOptions::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:google.privacy.dlp.v2.TableOptions) size_t total_size = 0; if (_internal_metadata_.have_unknown_fields()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( _internal_metadata_.unknown_fields()); } ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .google.privacy.dlp.v2.FieldId identifying_fields = 1; { unsigned int count = static_cast<unsigned int>(this->identifying_fields_size()); total_size += 1UL * count; for (unsigned int i = 0; i < count; i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSize( this->identifying_fields(static_cast<int>(i))); } } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } void TableOptions::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:google.privacy.dlp.v2.TableOptions) GOOGLE_DCHECK_NE(&from, this); const TableOptions* source = ::google::protobuf::DynamicCastToGenerated<TableOptions>( &from); if (source == nullptr) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:google.privacy.dlp.v2.TableOptions) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:google.privacy.dlp.v2.TableOptions) MergeFrom(*source); } } void TableOptions::MergeFrom(const TableOptions& from) { // @@protoc_insertion_point(class_specific_merge_from_start:google.privacy.dlp.v2.TableOptions) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; identifying_fields_.MergeFrom(from.identifying_fields_); } void TableOptions::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:google.privacy.dlp.v2.TableOptions) if (&from == this) return; Clear(); MergeFrom(from); } void TableOptions::CopyFrom(const TableOptions& from) { // @@protoc_insertion_point(class_specific_copy_from_start:google.privacy.dlp.v2.TableOptions) if (&from == this) return; Clear(); MergeFrom(from); } bool TableOptions::IsInitialized() const { return true; } void TableOptions::Swap(TableOptions* other) { if (other == this) return; InternalSwap(other); } void TableOptions::InternalSwap(TableOptions* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); CastToBase(&identifying_fields_)->InternalSwap(CastToBase(&other->identifying_fields_)); } ::google::protobuf::Metadata TableOptions::GetMetadata() const { ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto); return ::file_level_metadata_google_2fprivacy_2fdlp_2fv2_2fstorage_2eproto[kIndexInFileMessages]; } // @@protoc_insertion_point(namespace_scope) } // namespace v2 } // namespace dlp } // namespace privacy } // namespace google namespace google { namespace protobuf { template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::InfoType* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::InfoType >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::InfoType >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::StoredType* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::StoredType >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::StoredType >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_Dictionary_WordList >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_Dictionary* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_Dictionary >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_Dictionary >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_Regex* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_Regex >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_Regex >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_SurrogateType* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_SurrogateType >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_SurrogateType >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_Proximity >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_LikelihoodAdjustment >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule_HotwordRule >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType_DetectionRule* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType_DetectionRule >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CustomInfoType* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CustomInfoType >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CustomInfoType >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::FieldId* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::FieldId >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::FieldId >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::PartitionId* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::PartitionId >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::PartitionId >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::KindExpression* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::KindExpression >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::KindExpression >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::DatastoreOptions* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::DatastoreOptions >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::DatastoreOptions >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CloudStorageRegexFileSet* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CloudStorageRegexFileSet >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CloudStorageRegexFileSet >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CloudStorageOptions_FileSet* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CloudStorageOptions_FileSet >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CloudStorageOptions_FileSet >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CloudStorageOptions* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CloudStorageOptions >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CloudStorageOptions >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CloudStorageFileSet* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CloudStorageFileSet >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CloudStorageFileSet >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::CloudStoragePath* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::CloudStoragePath >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::CloudStoragePath >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::BigQueryOptions* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::BigQueryOptions >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::BigQueryOptions >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::StorageConfig_TimespanConfig* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::StorageConfig_TimespanConfig >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::StorageConfig_TimespanConfig >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::StorageConfig* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::StorageConfig >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::StorageConfig >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::HybridOptions_LabelsEntry_DoNotUse >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::HybridOptions* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::HybridOptions >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::HybridOptions >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::BigQueryKey* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::BigQueryKey >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::BigQueryKey >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::DatastoreKey* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::DatastoreKey >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::DatastoreKey >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::Key_PathElement* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::Key_PathElement >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::Key_PathElement >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::Key* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::Key >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::Key >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::RecordKey* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::RecordKey >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::RecordKey >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::BigQueryTable* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::BigQueryTable >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::BigQueryTable >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::BigQueryField* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::BigQueryField >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::BigQueryField >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::EntityId* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::EntityId >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::EntityId >(arena); } template<> PROTOBUF_NOINLINE ::google::privacy::dlp::v2::TableOptions* Arena::CreateMaybeMessage< ::google::privacy::dlp::v2::TableOptions >(Arena* arena) { return Arena::CreateInternal< ::google::privacy::dlp::v2::TableOptions >(arena); } } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) #include <google/protobuf/port_undef.inc>
e441f9ca16a5caf417834767b9793ca501fccde0
c5f1a804dbd1f5de123469dd5432633633e80597
/PicturePuzzle/LayoutSwapper.h
211949cdeca5f5822991c70a64894b600d82b86b
[]
no_license
brosell/HTS-Games
2d03a8988adc5c613dba1e249a7e0b409593ff11
3c7c1cc2ec4fe0ba7865f6eec5cec905faab5a3f
refs/heads/master
2021-01-22T21:23:38.681074
2020-01-12T15:41:47
2020-01-12T15:41:47
85,423,760
0
0
null
null
null
null
UTF-8
C++
false
false
987
h
LayoutSwapper.h
/* **************************************************************************** * * LayoutSwapper.h * Created by Bert Rosell, on Sun Nov 16 2003, 19:30:27 Eastern Standard Time * * Copyright (c) 2003, Bert Rosell * * * * File Contents: Interface and documentation of the LayoutSwapper component. * *************************************************************************** */ #ifdef WIN32 #pragma warning (disable : 4786) // disable MSVC's useless template length warning #endif // WIN32 #ifndef ATC__LAYOUTSWAPPER_H #define ATC__LAYOUTSWAPPER_H #include "Layout.h" #include "GameDialog.h" /** Purpose: impliments the swapper style layout */ class LayoutSwapper: public Layout { public: /// Constructor. LayoutSwapper(); virtual ~LayoutSwapper(); virtual void onMouseClick(MouseClickEvent* event); virtual void setPicture(Picture* picture); virtual void paint(Display* display); private: Point m_click1; }; #endif // #ifndef ATC__LAYOUTSWAPPER_H
5301b974f7a970cf6466de2be0e4c07c648041c4
78d79a4d975dd5692334b24a8b514dee4c03dade
/include/SPTS.h
f6180075ee46e07e8ea2d7f5460cd8dc0621518d
[]
no_license
sjneph/Automated-Power-Test-Station
47c9c311dc5f7f55b3cdaa4642d57138da48fe62
c755abe7c93ad2d0e946a80cc925a43fad390d37
refs/heads/master
2022-08-15T07:05:37.978483
2020-02-03T17:24:35
2020-02-03T17:24:35
238,019,551
0
0
null
null
null
null
UTF-8
C++
false
false
17,093
h
SPTS.h
// Macro Guard #ifndef SPTS_InstrumentRack_H #define SPTS_InstrumentRack_H // Files included #include "Converter.h" #include "ConverterOutput.h" #include "InstrumentTypes.h" #include "NoCopy.h" #include "ProgramTypes.h" #include "SingletonType.h" #include "StandardFiles.h" #include "StandardStationFiles.h" #include "Switch.h" // Instrument-related files #include "AuxSupply.h" #include "AuxSupplyTraits.h" #include "ControlMatrix.h" #include "CurrentProbe.h" #include "DMM.h" #include "FilterSelects.h" #include "FunctionGenerator.h" #include "Load.h" #include "MainSupply.h" #include "Oscilloscope.h" #include "OScopeParameters.h" #include "SwitchMatrix.h" #include "TemperatureController.h" //=====================================================================================// //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Changes <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<// //=====================================================================================// /* ============== 11/14/05, sjn, ============== Added SetIinLimitProtection(Switch = ON/OFF) for the main power supply. ============== 10/26/05, sjn, ============== Added GetScopeVertScale(). ============== 05/10/05, sjn, ============== Added ResetAllMiscIO() to public interface. Removed CurrentProbeAutoRescale(), SetProbeScale(), rescaler() and OScopeAutoRescale(). Removed member variables: powerPath_, scopeRescale_ and cpRescale_. This is in relation to station re-layout and current probe instrument change. Removed enumerations: PowerPath and RescaleType. See SPTS.cpp for more details. ============== 10/05/04, sjn, ============== Added private member function, newDUTSetup(). Added #include for Switch.h. Made all member function formal parameters start with a lowercase letter. Added public member function, GetTemperatureSetpoint(). Added second parameter (w/default value) to EmergencyShutdown(). Removed ConflictingPaths() --> not needed with new layout. Removed FilterBanks structure --> not neede with new layout. Removed FilterBanks::Banks parameter from selectFilterPath(). Removed OScopeChannels::Channel Convert2ScopeChannel(LoadTraits::Channels); Removed LOWIMPEDANCE and HIGHIMPEDANCE from ExplicitScope::ExplicitParms --> not applicable to new station layout. Added StartScope() and StopScope() to the public interface. */ //=====================================================================================// //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Changes <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<// //=====================================================================================// /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ namespace SpacePowerTestStation { /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ struct APS { enum Channel { PRIMARY = AuxSupplyTraits::OUTPUT3, SECONDARY = AuxSupplyTraits::OUTPUT4, SYSTEM12V = AuxSupplyTraits::OUTPUT2, SYSTEM5V = AuxSupplyTraits::OUTPUT1 }; enum StandardVoltValue { FIVE = 5, TWELVE = 12 }; enum SetType { CURRENT, VOLTS }; enum Max { MAX }; protected: ~APS() {} }; /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ struct ACPathTypes { enum ExplicitPaths { IINPARD, LOADTRANS1, LOADTRANS2, LOADTRANS3, LOADTRANS4, LOADTRANS5, LOADTRIGGER, PRIMARYINHIBIT, SYNCCHECK, SYNCIN, SYNCOUT, VINRISE, VOUTPARD1, VOUTPARD2, VOUTPARD3, VOUTPARD4, VOUTPARD5 }; // ExplicitPaths enum ImplicitPaths { LOADTRANSIENT = VOUTPARD5 + 1, SHORTCKTOVERSHOOT, STARTUPDELAY, STARTUPOVERSHOOT, VOUTPARD }; // ImplicitPaths protected: ~ACPathTypes() {} }; /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ struct ExplicitScope { enum ExplicitParms { HORZMEMORY, HORZSCALE, OFFSET, TRIGSOURCE, VERTSCALE }; }; /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ struct SPTS : public FilterSelects, public ACPathTypes, private NoCopy { //================= // Public Typedefs //================= typedef ProgramTypes::MType MType; typedef ProgramTypes::SetType SetType; typedef ProgramTypes::MTypeContainer MTypeContainer; typedef ProgramTypes::SetTypeContainer SetTypeContainer; typedef std::vector<LoadTraits::Channels> LoadChannels; //======================== // Start Public Interface //======================== ConverterOutput::Output Convert2ConverterOutput(LoadTraits::Channels fromChannel); ACPathTypes::ExplicitPaths Convert2ExplicitPath(ACPathTypes::ImplicitPaths imp, ConverterOutput::Output output); LoadTraits::Channels Convert2LoadChannel(ConverterOutput::Output fromChannel); void EmergencyShutdown(bool resetTemp = true, const SetType& = 0); MType GetCurrentProbeScale(); std::pair< SwitchMatrixTraits::RelayTypes::DCRelay, std::pair<StationFile::IinDCBoard, StationFile::IinShunt> > GetInputShuntInfo(); const LoadChannels& GetLoadChannels() const; std::vector< std::pair<Switch, SetType> > GetLoadValues() const; OScopeChannels::Channel GetScopeChannel(ACPathTypes::ImplicitPaths impPath, LoadTraits::Channels chan) const; OScopeChannels::Channel GetScopeChannel(ACPathTypes::ExplicitPaths path) const; SetType GetScopeVertScale(OScopeChannels::Channel chan) const; SetType GetTemperatureSetpoint() const; SetType GetVin() const; void Initialize(bool resetTemp = true); bool IsError(); void LoadTransientOff(); void LoadTransientTrigger(); LoadTraits::Types LoadType(); MType MeasureAPSVolts(APS::Channel channel); MType MeasureBaseTemp(); MType MeasureDCV(); MType MeasureDUTTemperature(); MType MeasureLoadCurrent(LoadTraits::Channels chan); MType MeasureLoadVolts(LoadTraits::Channels chan); MType MeasureOhms(); MType MeasureScope(OScopeMeasurements::MeasurementType mType, OScopeChannels::Channel chan, bool toPause = true, bool toRescale = true); MType MeasureScope(OScopeMeasurements::MeasurementType type, OScopeChannels::Channel chan1, OScopeChannels::Channel chan2, const ProgramTypes::PlusMinusPercentType& percChan1, const ProgramTypes::PlusMinusPercentType& percChan2, OScopeParameters::SlopeType slope1, OScopeParameters::SlopeType slope2, bool toPause); MType MeasureScope(OScopeMeasurements::MeasurementType type, OScopeChannels::Channel chan1, OScopeChannels::Channel chan2, const ProgramTypes::SetType& level1, const ProgramTypes::SetType& level2, OScopeParameters::SlopeType slope1, OScopeParameters::SlopeType slope2, bool toPause); std::string Name() const; bool NeedsDegauss(); void NewDUTSetup(); long NumberScopeVertDvns(); void PowerDown(); void PowerUp(); void ProbeDegauss(); void RescaleScope(OScopeChannels::Channel chan); bool Reset(bool resetController = true); void ResetAllMiscIO(); void ResetPath(ACPathTypes::ImplicitPaths impPath, ConverterOutput::Output output, FilterSelects::FilterType bw); void ResetPath(ACPathTypes::ExplicitPaths exPath, FilterSelects::FilterType bw); void ResetPath(ControlMatrixTraits::RelayTypes::MiscRelay relay); void ResetPath(ControlMatrixTraits::RelayTypes::InputRelay relay); void ResetPath(ControlMatrixTraits::RelayTypes::OutputRelay relay); void ResetPath(const std::vector<ControlMatrixTraits::RelayTypes::MiscRelay>& relays); void ResetPath(const std::vector<ControlMatrixTraits::RelayTypes::InputRelay>& relays); void ResetPath(const std::vector<ControlMatrixTraits::RelayTypes::OutputRelay>& relays); void ResetPath(SwitchMatrixTraits::RelayTypes::DCRelay relay); void ResetPath(SwitchMatrixTraits::RelayTypes::FilterRelay relay); void ResetPath(SwitchMatrixTraits::RelayTypes::RFRelay relay); void ResetPath(); void ResetSync(); void SafeInhibit(Switch type); void SetAPS(APS::Channel channel, APS::SetType type, const SetType& value); void SetAPS(APS::Channel channel, APS::StandardVoltValue v); void SetAPS(APS::Channel channel, APS::SetType type, APS::Max max); void SetAPS(APS::Channel channel, Switch state); void SetDMM(const ProgramTypes::SetType& range = SPTSInstrument::DMM::AUTO, SPTSInstrument::DMM::Mode mode = SPTSInstrument::DMM::DCV); void SetIinLimit(const SetType& limit); void SetIinLimitMax(); void SetIinLimitProtection(Switch state); bool SetIinShunt(StationFile::IinShunt newShunt); void SetLoad(LoadTraits::Channels chan, const SetType& loadValue); void SetLoad(const SetTypeContainer& loadValues); void SetLoad(LoadTraits::Channels chan, Switch state); void SetLoad(LoadTraits::AllChannels all, Switch state); void SetLoadModes(LoadTraits::Modes mode); void SetLoadTransient(LoadTraits::Channels chan, const SetType& fromVal, const SetType& toVal, const SetType& slew = -1); void SetPath(ACPathTypes::ImplicitPaths impPath, ConverterOutput::Output output, FilterSelects::FilterType bw = FilterSelects::PASSTHRU); void SetPath(ACPathTypes::ExplicitPaths exPath, FilterSelects::FilterType bw = FilterSelects::PASSTHRU); void SetPath(ControlMatrixTraits::RelayTypes::MiscRelay relay); void SetPath(ControlMatrixTraits::RelayTypes::InputRelay relay); void SetPath(ControlMatrixTraits::RelayTypes::OutputRelay relay); void SetPath(const std::vector<ControlMatrixTraits::RelayTypes::InputRelay>& relays); void SetPath(const std::vector<ControlMatrixTraits::RelayTypes::OutputRelay>& relays); void SetPath(const std::vector<ControlMatrixTraits::RelayTypes::MiscRelay>& relays); void SetPath(SwitchMatrixTraits::RelayTypes::DCRelay relay); void SetPath(SwitchMatrixTraits::RelayTypes::RFRelay relay); void SetPath(SwitchMatrixTraits::RelayTypes::FilterRelay relay); void SetScope(OScopeChannels::Channel chan, Switch state); std::set<OScopeSetupFile::Parameters> SetScope(const std::string& testName, OScopeChannels::Channel chan); void SetScopeExplicit(OScopeChannels::Channel c, ExplicitScope::ExplicitParms parm); void SetScopeExplicit(OScopeChannels::Channel chan, ExplicitScope::ExplicitParms parm, const SetType& value); void SetScopeExplicit(ExplicitScope::ExplicitParms p, const SetType& value); void SetScopeExplicit(OScopeParameters::TriggerMode tm); void SetSync(const ProgramTypes::SetType& freq, const ProgramTypes::SetType& ampl, const ProgramTypes::PercentType& dc, const ProgramTypes::SetType& offset); void SetTemperatureBase(const SetType& value); void SetVin(const SetType& vinValue, bool canCheckWithDMM = true); void StartScope(); void StopScope(); void StrongInhibit(Switch type); void WaitOnScope(); std::pair<SPTSInstrument::InstrumentTypes::Types, std::string> WhatError(); MainSupplyTraits::Supply WhichSupply(); //====================== // End Public Interface //====================== private: // Construction and destruction friend class SingletonType<SPTS>; SPTS(); ~SPTS(); private: // Private Helpers void customResets(); bool dmmMeasurementCounter(); LoadChannels getLoads(Switch state); void measureScopePause(); void newDUTSetup(); void partSpecific(); void resetMemberVariables(); std::pair<SwitchMatrixTraits::RelayTypes::FilterRelay, SwitchMatrixTraits::RelayTypes::FilterRelay> selectFilterPath(FilterSelects::FilterType bw); void setLoadAllExcept(Switch state, const std::vector<LoadTraits::Channels>& c); void setLoadMode(LoadTraits::Channels chan, LoadTraits::Modes mode); void setPath(ACPathTypes::ImplicitPaths impPath, ConverterOutput::Output chan, FilterSelects::FilterType bw); void setPathPause(); void setTemperatureBaseLimits(); void temporaryPreloadDUT(); private: typedef VariablesFile::MapDut2Load MapDut2Load; private: // Instrument Member Variables std::auto_ptr<SPTSInstrument::AuxSupply> auxSupply_; std::auto_ptr<SPTSInstrument::CurrentProbe> currentProbe_; std::auto_ptr<SPTSInstrument::DMM> dMM_; std::auto_ptr<SPTSInstrument::FunctionGenerator> funcGen_; std::auto_ptr<SPTSInstrument::ControlMatrix::InputRelayControl> inputRelays_; std::auto_ptr<SPTSInstrument::Load> load_; std::auto_ptr<SPTSInstrument::MainSupply> mainSupply_; std::auto_ptr<SPTSInstrument::ControlMatrix::Misc> miscLines_; std::auto_ptr<SPTSInstrument::ControlMatrix::OutputRelayControl> outputRelays_; std::auto_ptr<SPTSInstrument::Oscilloscope> scope_; std::auto_ptr<SPTSInstrument::SwitchMatrix> switchMatrix_; std::auto_ptr<SPTSInstrument::TemperatureController> tempControl_; LoadChannels activeLoadChannels_; MapDut2Load dut2Load_; bool pathOpen_; bool setShort_; bool locked_; bool customReset_; bool pSpec_; bool poweredDown_; bool noReset_; bool alwaysReset_; StationFile::IinShunt iinShunt_; MainSupplyTraits::Supply psIsolation_; SetType lastVin_; std::string whatError_; Converter* dut_; SPTSInstrument::InstrumentTypes::Types errorInstr_; std::string name_; }; /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ } // namespace SpacePowerTestStation #endif // SPTS_InstrumentRack_H /***************************************************************************************/ ////////////////////////////////////CRANE INTERPOINT///////////////////////////////////// //////////////////////////////////SPACE-POWER DIVISION/////////////////////////////////// /***************************************************************************************/ /*---------------------------------------------------------// "Hardcoded types are to generic code what magic constants are to regular code" - Andrei Alexandrescu //---------------------------------------------------------*/
1d04e0e64efed7d17856634cbf33f17eece2ece5
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/chrome/browser/ash/input_method/longpress_suggester.cc
7191d02c6e52b7bdd4a6e187413162b8fa2e9c95
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
1,284
cc
longpress_suggester.cc
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ash/input_method/longpress_suggester.h" #include "chrome/browser/ash/input_method/suggestion_handler_interface.h" #include "third_party/abseil-cpp/absl/types/optional.h" namespace ash::input_method { LongpressSuggester::LongpressSuggester( SuggestionHandlerInterface* suggestion_handler) : suggestion_handler_(suggestion_handler) {} LongpressSuggester::~LongpressSuggester() = default; void LongpressSuggester::OnFocus(int context_id) { Reset(); focused_context_id_ = context_id; } void LongpressSuggester::OnBlur() { focused_context_id_ = absl::nullopt; Reset(); } void LongpressSuggester::OnExternalSuggestionsUpdated( const std::vector<ime::AssistiveSuggestion>& suggestions, const absl::optional<ime::SuggestionsTextContext>& context) { // Clipboard history updates are handled elsewhere, and diacritics suggestions // are not updated externally. return; } bool LongpressSuggester::HasSuggestions() { // Unused. return false; } std::vector<ime::AssistiveSuggestion> LongpressSuggester::GetSuggestions() { // Unused. return {}; } } // namespace ash::input_method
e54c1b31b0028077b907fc2a09321234b7777a62
fa1ad2e2ac7e376fc7cb3b3a6e1bb88eed3e80be
/olap/doris/be/src/vec/exec/scan/new_olap_scanner.h
28adc4d5fe488e1884faca1f101b40ba24cd89c9
[ "OpenSSL", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-facebook-patent-rights-2", "PSF-2.0", "dtoa", "MIT", "GPL-2.0-only", "LicenseRef-scancode-public-domain" ]
permissive
alldatacenter/alldata
7bc7713c9f1d56ad6b8e59ea03206d1073b7e047
8d5f9a2d49ab8f9e85ccf058cb02c2fda287afc6
refs/heads/master
2023-08-05T07:32:25.442740
2023-08-03T13:17:24
2023-08-03T13:17:24
213,321,771
774
250
Apache-2.0
2023-09-06T17:35:32
2019-10-07T07:36:18
null
UTF-8
C++
false
false
3,641
h
new_olap_scanner.h
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. #pragma once #include <gen_cpp/PaloInternalService_types.h> #include <stdint.h> #include <memory> #include <string> #include <unordered_set> #include <utility> #include <vector> #include "common/factory_creator.h" #include "common/status.h" #include "olap/data_dir.h" #include "olap/reader.h" #include "olap/rowset/rowset_reader.h" #include "olap/tablet.h" #include "olap/tablet_schema.h" #include "vec/exec/scan/vscanner.h" namespace doris { struct OlapScanRange; class FunctionFilter; class RuntimeProfile; class RuntimeState; class TPaloScanRange; namespace vectorized { class NewOlapScanNode; struct FilterPredicates; class Block; class NewOlapScanner : public VScanner { ENABLE_FACTORY_CREATOR(NewOlapScanner); public: NewOlapScanner(RuntimeState* state, NewOlapScanNode* parent, int64_t limit, bool aggregation, const TPaloScanRange& scan_range, const std::vector<OlapScanRange*>& key_ranges, const std::vector<RowsetReaderSharedPtr>& rs_readers, const std::vector<std::pair<int, int>>& rs_reader_seg_offsets, bool need_agg_finalize, RuntimeProfile* profile); Status init() override; Status open(RuntimeState* state) override; Status close(RuntimeState* state) override; Status prepare(RuntimeState* state, const VExprContextSPtrs& conjuncts); const std::string& scan_disk() const { return _tablet->data_dir()->path(); } void set_compound_filters(const std::vector<TCondition>& compound_filters); doris::TabletStorageType get_storage_type() override; protected: Status _get_block_impl(RuntimeState* state, Block* block, bool* eos) override; void _update_counters_before_close() override; private: void _update_realtime_counters(); Status _init_tablet_reader_params(const std::vector<OlapScanRange*>& key_ranges, const std::vector<TCondition>& filters, const FilterPredicates& filter_predicates, const std::vector<FunctionFilter>& function_filters); Status _init_return_columns(); bool _aggregation; bool _need_agg_finalize; TabletSchemaSPtr _tablet_schema; TabletSharedPtr _tablet; int64_t _version; const TPaloScanRange& _scan_range; std::vector<OlapScanRange*> _key_ranges; TabletReader::ReaderParams _tablet_reader_params; std::unique_ptr<TabletReader> _tablet_reader; std::vector<uint32_t> _return_columns; std::unordered_set<uint32_t> _tablet_columns_convert_to_null_set; std::vector<TCondition> _compound_filters; // ========= profiles ========== int64_t _compressed_bytes_read = 0; int64_t _raw_rows_read = 0; bool _profile_updated = false; }; } // namespace vectorized } // namespace doris
0e05b73354b20eecff90b291e509da81ce23b401
9c9cc2acbd290b3d4f2c1c1e5af7280b25c69eaa
/SOB1/SOB1/GenerateFile.h
8710ac21561dd085eb8970f4a2355a2a019600e9
[]
no_license
fudalejt/AssertionCpp
0cd7171c50031763e27b5fe1bf7123f1c94bdeaa
6370944047493f37eff88f2c35f6f3f32d14405a
refs/heads/master
2021-01-20T07:32:07.421926
2017-05-02T10:48:25
2017-05-02T10:48:25
90,011,085
0
0
null
null
null
null
UTF-8
C++
false
false
1,304
h
GenerateFile.h
#pragma once #include <string> #include <fstream> #include <time.h> #include <cstdlib> #include <cassert> using namespace std; template<typename Type> class GenerateFile { public: GenerateFile(std::string path, int min, int max, int count); virtual ~GenerateFile(); void generateFile(string path); void setMinMax(int min, int max); private: std::string path; int min, max; int count; }; template<typename Type> GenerateFile<Type>::GenerateFile(std::string path, int min, int max, int count) { assert(min < max); assert(count > 0); this->min = min; this->max = max; this->count = count; } template<typename Type> GenerateFile<Type>::~GenerateFile() { } template<typename Type> void GenerateFile<Type>::generateFile(string path) { srand(time(NULL)); std::ofstream file(path); assert(file.good()); if (is_integral<Type>::value) { for (int i = 0; i < count; i++) { file << rand() % (max - min) + min << endl; } } else if (is_floating_point<Type>::value) { for (int i = 0; i < count; i++) { file << (static_cast <float> (rand()) / static_cast <float> (RAND_MAX)) * (max - min) + min << endl; } } else assert(false); file.close(); } template<typename Type> void GenerateFile<Type>::setMinMax(int min, int max) { assert(min < max); min = min; max = max; }
085e98bf6bd1d67087f65a9b75cb8310e175646a
adeb2c3b7506c5f96d3a65267e8d463bf5039a77
/SpatialGDK/Source/SpatialGDK/Public/Interop/SpatialOutputDevice.h
5421bde591c31a4215530ac907c7b6080d6556f3
[ "LicenseRef-scancode-generic-cla", "LicenseRef-scancode-proprietary-license", "MIT" ]
permissive
spatialos/UnrealGDK
e09debdf2588cefa6f9c6d4e8216cb629d3f294d
884b06543c9216e9ac57b62d4d7bbc1eaf83ce27
refs/heads/0.11.0
2023-09-02T13:54:10.491925
2020-09-03T11:19:49
2020-09-03T11:19:49
109,980,189
421
173
MIT
2022-01-24T18:53:24
2017-11-08T13:35:16
C++
UTF-8
C++
false
false
939
h
SpatialOutputDevice.h
// Copyright (c) Improbable Worlds Ltd, All Rights Reserved #pragma once #include "CoreMinimal.h" #include "Misc/OutputDevice.h" #include <WorkerSDK/improbable/c_worker.h> class USpatialWorkerConnection; class SPATIALGDK_API FSpatialOutputDevice : public FOutputDevice { public: FSpatialOutputDevice(USpatialWorkerConnection* InConnection, FName LoggerName, int32 InPIEIndex); ~FSpatialOutputDevice(); void AddRedirectCategory(const FName& Category); void RemoveRedirectCategory(const FName& Category); void SetVerbosityFilterLevel(ELogVerbosity::Type Verbosity); void Serialize(const TCHAR* InData, ELogVerbosity::Type Verbosity, const FName& Category) override; static Worker_LogLevel ConvertLogLevelToSpatial(ELogVerbosity::Type Verbosity); protected: ELogVerbosity::Type FilterLevel; TSet<FName> CategoriesToRedirect; USpatialWorkerConnection* Connection; FName LoggerName; int32 PIEIndex; bool bLogToSpatial; };
c236670e48ef9bb79a06dd6c8bbcf6d57f40bdf5
b603d09df55027fc25067d799c1dec2ff9d1acc9
/waypointnavigation.cpp
8c75088c42c8cce4c784769e3c885c0467a03a30
[]
no_license
Zeltnervonbank/Sem5ProjControl
d25d42bb3c30006fd9a2694ce9bccb17a1dbeb85
faa476c26be36d63a2525f16ea7112dfd68fefe8
refs/heads/master
2020-03-31T08:34:06.560105
2018-12-14T00:41:19
2018-12-14T00:41:19
152,063,187
1
0
null
null
null
null
UTF-8
C++
false
false
2,934
cpp
waypointnavigation.cpp
#include "waypointnavigation.h" WaypointNavigation::WaypointNavigation() { } void WaypointNavigation::NavigateToNextWaypoint() { // If the robot is close to the active waypoint and there are more waypoints in queue if(Globals::GetDistanceToWaypoint() < 0.1 && Globals::waypoints.size() > 0) { // Get the next waypoint from queue, and stop robot Globals::currentWaypoint = Globals::waypoints.front(); Globals::waypoints.pop(); Movement::Move(0.0, 0.0); } // Stop the robot if close to waypoint, and there are no more waypoints in queue else if (Globals::GetDistanceToWaypoint() < 0.05 && Globals::waypoints.size() == 0) { Movement::Move(0.0, 0.0); } // If far from waypoint, move towards it else { MoveTowardWaypoint(); } } void WaypointNavigation::MoveTowardWaypoint() { /// Determine direction to next waypoint // Get the latest position RobotPosition position = Globals::lastPosition; // Calculate the yaw of the robot double yaw = fmod(2.0 * atan2(position.rotW, position.rotZ) + 3.0 * M_PI, 2.0 * M_PI); // Get X and Y components of the robot's yaw vector double yawX = cos(yaw); double yawY = sin(yaw); // Get displacement of waypoint in comparison to robot position double xDisplacement = Globals::currentWaypoint.x - position.posX; double yDisplacement = position.posY - Globals::currentWaypoint.y; // Get dot product of vectors double dot = yawX * xDisplacement + yawY * yDisplacement; // Get cross product of vectors double cross = yawX * yDisplacement - yawY * xDisplacement; // Get the distance to the waypoint (magnitude of second vector) double distance = Globals::GetDistanceToWaypoint(); // Calculate angle between vectors double difference = cross < 0 ? -acos(dot / distance) : acos(dot / distance); std::cout << "\033[2J\033[1;1H"; // Print some data std::cout << "Current waypoint: " << Globals::currentWaypoint.x << ", " << Globals::currentWaypoint.y << std::endl; std::cout << "Current position: " << position.posX << ", " << position.posY << std::endl; std::cout << "Rotation offset: " << difference << " Distance: " << Globals::GetDistanceToWaypoint() << " Cross: " << cross << std::endl; std::cout << "Remaining waypoints: " << Globals::waypoints.size() << std::endl; //try //{ /// Output movement // Set rotation depending on sign of angle to waypoint double rotation = (double) difference; // Set speed if not very close to waypoint and pointing in correct direction, else stop //double speed = Globals::GetDistanceToWaypoint() > 0.05 && abs(difference) < 0.1 ? 1.2 : 0; // Send movement //Movement::Move(speed, rotation); //} //catch(std::exception e) //{ // std::cout << e.what() << std::endl; Movement::Move(0.0, 0.0); //} }
ca8967580f83ee7a64388b177a81681945d60a4b
a648fcbc90606b5ac2ac3e9ee53c4a8fffcf14e4
/BattleTankOnline/BattleCity/BattleCity/Tank.cpp
0e1d6dadd7790f8bf2e1aaf963ef87448931058d
[]
no_license
vanhoaile95/OOAD-SVN
35e61569180367dbd9652e6e86a667f4bc6f174e
282fec76ce3a4baf46539e11e44343ea8b2d4036
refs/heads/master
2020-06-18T01:22:06.103481
2017-01-04T15:43:54
2017-01-04T15:43:54
74,960,984
2
0
null
null
null
null
UTF-8
C++
false
false
10,515
cpp
Tank.cpp
#include "Tank.h" #include "Global.h" #include "GameScore.h" Tank::Tank(P pos, BObjectName Name,int tankid) :DynamicObject(pos,Name) { ShieldSprite = TextureRectManager::GetInstance()->GetRECTWithName(BObjectName::TANK_SHIELD); CurrentTankColor = (Color) (int) ObjectName; Type = TypeBoxCollision::TankBox; enableCollision = true; TankID = tankid; Bullet = new TankBullet(pos,CurrentDirection,tankid,0); ChangeType((TankType) 0); InitPoint = pos; Bullet->InitSprite(); Mission* mission = (Mission*) Global::Instance()->MissionManager->CurrentScene; mission->_listBullets.push_back(Bullet); } void Tank::Start() { ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::INIT_SHIELD_TIME); } void Tank::Fire() { string msg = "1+#dir+#x+#y"; Helper::Replace(msg, "#dir",to_string((int) CurrentDirection)); Helper::Replace(msg, "#dir", to_string(Position.X)); Helper::Replace(msg, "#dir", to_string(Position.Y)); Bullet->Controll(msg); } void Tank::Draw() { Bullet->Draw(); DynamicObject::Draw(); if (ShieldTime > 0) { if ((ShieldTime / 200) % 2 == 0) { Sprite->Draw(ShieldSprite[0], Position + P(Size.X/2,Size.Y/2) - P(32,32)); } else { Sprite->Draw(ShieldSprite[1], Position + P(Size.X / 2, Size.Y / 2) - P(32, 32)); } } } void Tank::InitRect() { SpriteRect = TextureRectManager::GetInstance()->GetTankRECT(CurrentTankType, CurrentTankColor); Size = P(52,52); } RECT Tank::TankRECT() { return SpriteRect[6]; } void Tank::Update() { Collide.Reset(); DynamicObject::Update(); if (Bullet->State != BulletState::Idle) { Bullet->Update(); } if (ShieldTime > 0) { ShieldTime -= ClientTimeManager::Instance()->DeltaTime; } } void Tank::LateUpdate() { DynamicObject::LateUpdate(); if (CollisionTime.X < 1.0f) { ObjectVelocity.X = 0; FrameVelocity.X = 0; } if (CollisionTime.Y < 1.0f) { ObjectVelocity.Y = 0; FrameVelocity.Y = 0; } int timeadd = (Collide.Direction != CollisionDirection::CollideNone) ? 0 : (int)FrameVelocity.GetMagnitude(); RECTTime += timeadd; if (RECTTime >= 20) RECTTime = 0; int index = (RECTTime < 10) ? 0 : 1; RECTIndex = (int) CurrentDirection * 2 + index; if (Bullet->State != BulletState::Idle) { Bullet->LateUpdate(); } } bool Tank::HandlerCollision(Collision collision) { string command = ""; if (collision.Collider == TypeBoxCollision::TreeBox || collision.Collider == TypeBoxCollision::NoCollision) { return true; } Collide = collision; switch (collision.Direction) { case CollisionDirection::CollideAbove: if (FrameVelocity.Y > 0) CollisionTime.Y = Collide.CollisionTime; command = "0|0"; break; case CollisionDirection::CollideLeft: if (FrameVelocity.X < 0) CollisionTime.X = Collide.CollisionTime; command = "0|1"; break; case CollisionDirection::CollideBelow: if (FrameVelocity.Y < 0) CollisionTime.Y = Collide.CollisionTime; command = "0|2"; break; case CollisionDirection::CollideRight: if (FrameVelocity.X > 0) CollisionTime.X = Collide.CollisionTime; command = "0|3"; break; default: break; } if (command != "") { Controll(command); } return true; } bool Tank::HandlerBulletCollision(Collision collision, int tankid, int tanktype) { if (ShieldTime > 0) return false; if ((tankid + TankID) % 2 != 0) { if (Helper::Offline()) { Mission* Current = (Mission*) Global::Instance()->MissionManager->CurrentScene; HP -= Current->Tanks[tankid]->Bullet->Damage; ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::DAMAGE_SHIELD_TIME); if (HP <= 0) { GameScore::Instance()->SinglePlayerInfo->Kill[tanktype] += 1; Position = InitPoint; Mission* Current = (Mission*) Global::Instance()->MissionManager->CurrentScene; Current->Tanks[tankid]->Exp += Bounty; Current->Tanks[tankid]->CheckAndUpgrade(); ChangeType(CurrentTankType); if (tankid < Helper::MaxClient()) { GameScore::Instance()->MulTiplayerInfo[tankid]->Kill += 1; Current->MultiplayerHud->TankInfo[tankid]->Kill->UpdateValue(GameScore::Instance()->MulTiplayerInfo[tankid]->Kill); } if (TankID < Helper::MaxClient()) { GameScore::Instance()->MulTiplayerInfo[TankID]->Death += 1; Current->MultiplayerHud->TankInfo[TankID]->Death->UpdateValue(GameScore::Instance()->MulTiplayerInfo[TankID]->Death); } ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::INIT_SHIELD_TIME); } } else { } } return true; } int Tank::Controll(P pos,string msg, int ping) { Position = pos; Direction dir = Direction::Left; vector<string> decode = StringHelper::split(msg, "|"); if (!decode[0].compare("1")) // Move { dir = (Direction) atoi(decode[1].c_str()); switch (dir) { case Up: ObjectVelocity = P(0.0f, MaxSpeed); break; case Left: ObjectVelocity = P(-MaxSpeed, 0.0f); break; case Down: ObjectVelocity = P(0.0f, -MaxSpeed); break; case Right: ObjectVelocity = P(MaxSpeed, 0.0f); break; default: break; } CurrentDirection = dir; pos += (ObjectVelocity * ping); } else if (!decode[0].compare("0")) // stop { pos += (ObjectVelocity * ping); dir = (Direction) atoi(decode[1].c_str()); switch (dir) { case Up: if (ObjectVelocity.Y > 0) ObjectVelocity.Y = 0; break; case Down: if (ObjectVelocity.Y < 0) ObjectVelocity.Y = 0; break; case Left: if (ObjectVelocity.X < 0) ObjectVelocity.X = 0; break; case Right: if (ObjectVelocity.X > 0) ObjectVelocity.X = 0; break; default: ObjectVelocity = 0; break; } } else if (!decode[0].compare("3")) // fire { pos += (ObjectVelocity * ping); P center = P(Position.X + Size.X / 2, Position.Y + Size.Y / 2); string command = "#command+#dir+#x+#y"; Helper::Replace(command, "#command", "3"); Helper::Replace(command, "#dir", to_string((int) CurrentDirection)); Helper::Replace(command, "#x", to_string(center.X)); Helper::Replace(command, "#y", to_string(center.Y)); Bullet->Controll(command); } else if (!decode[0].compare("4")) //getDamage { Bullet->Controll("4"); } else if (!decode[0].compare("5")) //getDamage { int bulletid = Helper::GetIntFromString(decode[1]) - 1; Mission* Current = (Mission*) Global::Instance()->MissionManager->CurrentScene; Current->Tanks[bulletid]->Bullet->Controll("4"); HP -= Current->Tanks[bulletid]->Bullet->Damage; ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::DAMAGE_SHIELD_TIME); } else if (!decode[0].compare("6")) // Die { Mission* Current = (Mission*) Global::Instance()->MissionManager->CurrentScene; int killerid = Helper::GetIntFromString(decode[1]) - 1; Current->Tanks[killerid]->Exp += Bounty; Current->Tanks[killerid]->CheckAndUpgrade(); Current->Tanks[killerid]->Bullet->Controll("4"); ChangeType(CurrentTankType); if (killerid < Helper::MaxClient()) { GameScore::Instance()->MulTiplayerInfo[killerid]->Kill += 1; Current->MultiplayerHud->TankInfo[killerid]->Kill->UpdateValue(GameScore::Instance()->MulTiplayerInfo[killerid]->Kill); } if (TankID < Helper::MaxClient()) { GameScore::Instance()->MulTiplayerInfo[TankID]->Death += 1; Current->MultiplayerHud->TankInfo[TankID]->Death->UpdateValue(GameScore::Instance()->MulTiplayerInfo[TankID]->Death); } ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::INIT_SHIELD_TIME); //Position = InitPoint; } return 1; } void Tank::UpdateTankRECT() { if ( TankID == -1 || TankID >= Helper::MaxClient()) return; Mission* Current = (Mission*) Global::Instance()->MissionManager->CurrentScene; Current->MultiplayerHud->TankInfo[TankID]->TankRect = SpriteRect[6]; } int Tank::Controll(string msg) { Direction dir = Direction::Left; vector<string> decode = StringHelper::split(msg, "|"); if (!decode[0].compare("1")) // Move { //if (Helper::GetPing() < 200) if (Helper::Offline()) { dir = (Direction) atoi(decode[1].c_str()); switch (dir) { case Up: ObjectVelocity = P(0.0f, MaxSpeed); break; case Left: ObjectVelocity = P(-MaxSpeed, 0.0f); break; case Down: ObjectVelocity = P(0.0f, -MaxSpeed); break; case Right: ObjectVelocity = P(MaxSpeed, 0.0f); break; default: break; } CurrentDirection = dir; } } else if (!decode[0].compare("0")) // stop { //if (Helper::GetPing() < 200) if (Helper::Offline()) { dir = (Direction) atoi(decode[1].c_str()); switch (dir) { case Up: if (ObjectVelocity.Y > 0) ObjectVelocity.Y = 0; break; case Down: if (ObjectVelocity.Y < 0) ObjectVelocity.Y = 0; break; case Left: if (ObjectVelocity.X < 0) ObjectVelocity.X = 0; break; case Right: if (ObjectVelocity.X > 0) ObjectVelocity.X = 0; break; default: ObjectVelocity = 0; break; } } } else if (!decode[0].compare("3")) // stop { P center = P(Position.X + Size.X / 2, Position.Y + Size.Y / 2); if (Bullet->State == BulletState::Idle) { string command = "#command+#dir+#x+#y"; Helper::Replace(command, "#command", "3"); Helper::Replace(command, "#dir", to_string((int) CurrentDirection)); Helper::Replace(command, "#x", to_string(center.X)); Helper::Replace(command, "#y", to_string(center.Y)); if (Helper::Offline()) { Bullet->Controll(command); } else { Helper::SEND_Controll(msg); } } else return 0; } return 1; } void Tank::CheckAndUpgrade() { if (Exp >= ExpToUpgrade && ExpToUpgrade > 0) { ChangeType((TankType) ((int) CurrentTankType + 1)); } } void Tank::ChangeType(TankType type) { CurrentTankType = type; Exp = 0; HP = ConfigsManager::Instance()->GetTankConfig(type, TankConfigName::HP); MaxSpeed = ConfigsManager::Instance()->GetTankConfig(type, TankConfigName::MaxSpeed); Bounty = ConfigsManager::Instance()->GetTankConfig(type, TankConfigName::Bounty); ExpToUpgrade = ConfigsManager::Instance()->GetTankConfig(type, TankConfigName::ExpToUpgrade); Bullet->ChangeType(type); InitRect(); ShieldTime = ConfigsManager::Instance()->GetIntConfig(ConfigName::INIT_SHIELD_TIME); UpdateTankRECT(); }
d7881de55bcf4b4718352ed054ec1bef9fa6416d
35e63f581563115d937daeb5be3b7604c46d093c
/123r.cpp
5ffd1122374f3364a90616b9db6a9e70f1b29acf
[]
no_license
MattSi/uva
a72338acd9b69951dff5617af5416e504d31b694
2627451ecb25d8ff0086d1161470fe2a2e9622b9
refs/heads/master
2020-04-28T21:11:01.030263
2019-08-27T00:04:03
2019-08-27T00:04:03
18,387,534
0
0
null
null
null
null
GB18030
C++
false
false
1,890
cpp
123r.cpp
#include <iostream> #include <algorithm> #include <string> #include <map> #include <sstream> #include <vector> #include <cmath> #include <cstring> #include <cstdlib> #include <cstdio> using namespace std; struct ok { map<int,int> record; //记录那句话,有几个重复的 }; ok a[10001]; int main() { int i,j,k,l,n,m,num; string hold,temp; map<string,int> key; map<string,int> ignore; vector<string> lines; while(cin>>hold&&hold!="::") ignore[hold]++; int count=0,label=0; //句子标号,关键词所映射的标号 getchar(); while(getline(cin,hold)) { for(i=0;i<hold.size();i++) hold[i]=tolower(hold[i]); lines.push_back(hold); istringstream in(hold); while(in>>temp) { if(ignore.find(temp)==ignore.end()) { if(key.find(temp)==key.end()) key[temp]=label++; a[key[temp]].record[count]++; } } count++; } map<string,int>::iterator ii; map<int,int>::iterator jj; for(ii=key.begin();ii!=key.end();ii++) { for(jj=a[ii->second].record.begin();jj!=a[ii->second].record.end();jj++) { for(i=1;i<=jj->second;i++) { hold=lines[jj->first]; int exist=0; istringstream in(hold); string ans=""; while(in>>temp) { if(temp==ii->first) { exist++; if(exist==i) for(k=0;k<temp.size();k++) temp[k]=toupper(temp[k]); } if(ans!="") ans+=" "; ans+=temp; } cout<<ans<<"\n"; } } } }
d5dd18d5af912ea67264fa2bdeab3b6c07679ee7
dd4cc2393da9b60173a8522cda5a9f625cfe07ba
/nwerc2007/test.cpp
bfe7845296179bf514ef20f5fff562a108dee576
[]
no_license
andrei-alpha/acm
5d764ea38f13c9522fca40ad3ad2e543175d1bc8
0dae07b09053c3f1b0eee316cab2c6fb8edc4fad
refs/heads/master
2020-04-25T20:56:18.783588
2014-11-24T09:01:52
2014-11-24T09:06:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
389
cpp
test.cpp
#include <cstdio> #include <cstdlib> int test(const int b[10000]) { int sum = 0; for (int i = 1; i <= 10; ++i) sum += b[rand() % 9999]; if (sum < 3) printf("ok baby!"); } int main() { int a[10000]; for (int i = 1; i < 10000; ++i) a[i] = i; for (int j = 1; j < 100000; ++j) test(a); for (int i = 1; i <= 10; ++i) printf("%d ", a[i]); return 0; }
d25492a8db6e9599fb94ad57a03563c458624363
051d53e30186222eca76d82dec20ba50614aed0a
/basebench/main.cpp
168ed683970510bba58c024927aa2b0cb251bff8
[]
no_license
jjzhang166/benchUI
32e84a35e3a4716497252497e1aa593e94192f00
338ad3071d3e304121dd8dca1557890689084be7
refs/heads/master
2023-04-14T07:46:47.353414
2020-07-31T06:13:59
2020-07-31T06:13:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
240
cpp
main.cpp
#include "main.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); infoPage = new info_Page; infoPage->show(); int ret = a.exec(); qDebug() << "App exec result: " << ret << endl; delete infoPage; }
09d3158570cbee470f3e26ea1a6e515bf0d8136e
d0d0ae6bb5a300fe15b075b6857834def9435a89
/Edit Distance/main.cpp
3423e014c51ad37a7a2cb4dd3f85e5c3ba5bff99
[]
no_license
gagan86nagpal/Interview-prep
4664eaaea3ac3e00215d3d7ac4945c25050785eb
0548575edf81e9de3b7324fcf16c8b52ccb0ec71
refs/heads/master
2021-01-16T18:17:56.974517
2017-11-04T02:08:39
2017-11-04T02:08:39
100,056,019
4
1
null
null
null
null
UTF-8
C++
false
false
1,059
cpp
main.cpp
#include <iostream> using namespace std; // Taking all the cases and choosing the minimum among them int editDistance(string &a , string &b,unsigned i,unsigned j) { if(i==a.size()) // a is exhausted , so cost includes either deleting b characters or inserting characters in a { return b.size()-j; } if(j==b.size()) // b is exhausyde, cost is either inserting characters in a or deleting in b { return a.size()-i; } if(a[i]==b[j]) // if index is equal , then why to cost an operation on it return editDistance(a,b,i+1,j+1); else { int x,y,z; x=editDistance(a,b,i+1,j+1)+1; // Replace cost y=editDistance(a,b,i+1,j)+1; // Inserting in string a or we can say deleting in string b z=editDistance(a,b,i,j+1)+1; // Inserting in string b or we can sat deleting in string a return min(x, min(y,z) ); // Taking minimum of three } } int main() { string a,b; cin>>a>>b; int ans=editDistance(a,b,0,0); cout<<ans<<"\n"; return 0; }
855b9e7220e41991adcc06e0c6a30e3bc4a6bdf7
326c5d924956c1837704d23b498772a2d8efd187
/Examples/Display/SineScroll/Sources/sinescroll.cpp
204e38852e8b8290d55c3b0899dc97054e667f5e
[ "Zlib" ]
permissive
sanikoyes/ClanLib
c4eb8004eb6a10ed4429f15b63f3ba0d2835a930
4f9e7f5dd2edb12e55ec713f6299c874709524e9
refs/heads/master
2021-01-22T17:28:25.241676
2015-04-11T23:46:24
2015-04-11T23:46:24
33,925,347
3
1
null
2015-04-14T10:22:33
2015-04-14T10:22:33
null
UTF-8
C++
false
false
3,917
cpp
sinescroll.cpp
/* ** ClanLib SDK ** Copyright (c) 1997-2015 The ClanLib Team ** ** This software is provided 'as-is', without any express or implied ** warranty. In no event will the authors be held liable for any damages ** arising from the use of this software. ** ** Permission is granted to anyone to use this software for any purpose, ** including commercial applications, and to alter it and redistribute it ** freely, subject to the following restrictions: ** ** 1. The origin of this software must not be misrepresented; you must not ** claim that you wrote the original software. If you use this software ** in a product, an acknowledgment in the product documentation would be ** appreciated but is not required. ** 2. Altered source versions must be plainly marked as such, and must not be ** misrepresented as being the original software. ** 3. This notice may not be removed or altered from any source distribution. ** ** Note: Some of the libraries ClanLib may link to may have additional ** requirements or restrictions. ** ** File Author(s): ** ** Magnus Norddahl ** Mark Page */ #include "precomp.h" #include "sinescroll.h" clan::ApplicationInstance<SineScroll> clanapp; SineScroll::SineScroll() { // We support all display targets, in order listed here clan::D3DTarget::enable(); clan::OpenGLTarget::enable(); // Set the window clan::DisplayWindowDescription desc; desc.set_title("ClanLib SineScroll Example"); desc.set_size(clan::Size(800, 700), true); desc.set_allow_resize(true); window = clan::DisplayWindow(desc); // Connect the Window close event sc.connect(window.sig_window_close(), clan::bind_member(this, &SineScroll::on_window_close)); // Connect a keyboard handler to on_key_up() sc.connect(window.get_ic().get_keyboard().sig_key_up(), clan::bind_member(this, &SineScroll::on_input_up)); canvas = clan::Canvas(window); texture = clan::Texture2D(canvas, "../../Display/Path/Resources/lobby_background2.png"); game_time.reset(); } bool SineScroll::update() { game_time.update(); canvas.clear(clan::Colorf(0.0f,0.0f,0.2f)); draw_demo(canvas, game_time.get_time_elapsed_ms()); window.flip(1); return !quit; } // A key was pressed void SineScroll::on_input_up(const clan::InputEvent &key) { if(key.id == clan::keycode_escape) { quit = true; } } // The window was closed void SineScroll::on_window_close() { quit = true; } void SineScroll::draw_demo(clan::Canvas &canvas, int delta_ms) { clan::Rectf rect(0.0f, 0.0f, clan::Sizef(300.0f, 300.0f)); clan::Rectf texture_unit1_coords(0.0f, 0.0f, 1.0f, 1.0f); std::vector<clan::Vec2f> dest_position; std::vector<clan::Vec2f> texture_position; int dest_width = canvas.get_width(); if (dest_width <=0) return; int dest_xoffset = 0; int gc_height = canvas.get_height(); int dest_height = 128; int dest_start_y = (gc_height - dest_height) / 2; float texture_y_start = 0.15f; // Set to 0.0f for start and 1.0f for end to use the entire texture float texture_y_end = 0.5f; dest_position.reserve(dest_width * 2); texture_position.reserve(dest_width * 2); float sin_amplitude = ( (float) gc_height / 4.0f); if (delta_ms > 1000) // Limit to 1 second to frame delta_ms = 1000; sin_offset += ((float) delta_ms / 1000.0f); if (sin_offset > (2.0f * clan::PI)) sin_offset -= clan::PI * 2.0f; for (int cnt=0; cnt < dest_width; cnt++) { float y_offset = sin_amplitude * sin( sin_offset + (float) cnt / 100.0f ) ; dest_position.push_back( clan::Vec2f( cnt, dest_start_y + y_offset ) ); dest_position.push_back( clan::Vec2f( cnt, dest_start_y + dest_height + y_offset) ); texture_position.push_back( clan::Vec2f( (float) cnt / dest_width, texture_y_start ) ); texture_position.push_back( clan::Vec2f( (float) cnt / dest_width, texture_y_end ) ); } canvas.draw_lines(&dest_position[0], &texture_position[0], dest_position.size(), texture); }
2b298d194a68a8b5494b04219188e628acd53247
85b400473900b29f851692be59af07bee2fb7fde
/lab2/polybius/main.cpp
e9276eed05c21a271061867a923c3b55036bda67
[]
no_license
kartytko/jimp-exercises
447aac6ab8eaa027aa0d44a604e6c86fa7e0b0ee
1833b68b1e8efdee2513b561bcac6167682b2b61
refs/heads/master
2021-01-17T15:04:04.368002
2017-03-16T08:49:42
2017-03-16T08:49:42
84,104,163
0
0
null
2017-06-06T10:27:31
2017-03-06T17:59:47
C++
UTF-8
C++
false
false
1,613
cpp
main.cpp
// // Created by kartytko on 09.03.17. // #include <iostream> #include <fstream> #include "Polybius.h" int main(int argc, char** argv){ if(argc!=4){ std::cout<<"Niepoprawna ilość argumentów"; return 0; } if(*argv[3]=='1'){ char line[256]; std::string str_encrypted; std::ifstream file (argv[1]); std::ofstream encryptedfile (argv[2], std::ios_base::in | std::ios_base::app); if(!file) std::cout<<"Bład w otwarciu pierwszego pliku"; if(!encryptedfile) std::cout<<"Bład w otwarciu drugiego pliku"; while(!file.eof()){ file.getline(line, 256); str_encrypted = PolybiusCrypt(line); encryptedfile << str_encrypted; } file.close(); encryptedfile.close(); } if(*argv[3]=='0') { char line[256]; std::string str_line; std::ifstream file (argv[1]); std::ofstream decryptedfile (argv[2], std::ios_base::in | std::ios_base::app); if(!file){ std::cout<<"Nie można otworzyć pliku pierwszego"; } if(!decryptedfile){ std::cout<<"Nie można otworzyć pliku drugiego"; } while(!file.eof()){ file.getline(line, 256); str_line = PolybiusDecrypt(line); decryptedfile << str_line; } decryptedfile.close(); file.close(); } // std::cout<<"Niepoprawna wartość czwartego argumentu." <<std::endl << "(1) - szyfrowanie " << std::endl << "(2) - odszyfrowywanie"; return 0; }
e739a94b1e21240507357ca80a2b7d145089735d
7a1df4d5cc0afcb2dd15b8d4569242d676353933
/binary search/Sqrt(x).cpp
de9165b3cb4781e7d3aae68e793c0c72d8027790
[]
no_license
jeevita06/LeetCode
52d9f13fd930a43c064d91ca40baf7013a587a2a
5a6226b77483f2f288b433f991ed6b90bd1482ce
refs/heads/master
2022-03-28T14:35:51.775538
2019-10-12T10:41:41
2019-10-12T10:41:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
455
cpp
Sqrt(x).cpp
/* https://leetcode.com/problems/sqrtx/ Runtime: 12 ms */ class Solution { public: int mySqrt(int x) { int left=1; int right=x; if(x==0) return 0; while(true){ int mid=left+(right-left)/2; if(mid>x/mid){ right=mid-1; } else{ if(mid+1>x/(mid+1)) return mid; left=mid+1; } } } };
0cb8718fa44d7c94eaf7e877ca1398a9b6fe0284
2f07af42f60c5b7b6e365b7aa75ec0ef52a86ffc
/CodeForces/342A - Xenia and Divisors.cc
453f3dd5d0585148d64391425d6b5039bd514330
[ "MIT" ]
permissive
MrSiz/Coding
d1cff5f47a0b4b3530bdc0db641b23f55bd8e2ae
6e3454c9143563748b98f192102c3b6ff4c3be4f
refs/heads/master
2021-01-19T06:47:43.503988
2018-06-18T02:26:02
2018-06-18T02:26:02
87,500,519
0
0
null
null
null
null
UTF-8
C++
false
false
1,046
cc
342A - Xenia and Divisors.cc
#include <set> #include <queue> #include <string> #include <vector> #include <cstdio> #include <cstdlib> #include <cstring> #include <climits> #include <iostream> #include <map> #include <cmath> #include <algorithm> #include <unordered_map> using namespace std; #define pr(x) (cout << #x << ' ' << x << ' ') #define prln(x) (cout << #x << ' ' << x << endl) #define ll long long void file() { freopen("in.txt", "r", stdin); } int main() { int n; unordered_map<int, int> mm; int temp; scanf("%d", &n); bool flag = true; for (int i = 1; i <= n; ++i){ scanf("%d", &temp); mm[temp]++; if (temp == 5 || temp == 7) flag = false; } if (flag == false || mm[1] != (n / 3) || mm[6] < mm[3] || (mm[2] + mm[3]) != (mm[6] + mm[4])) return puts("-1\n"); for (int i = 1; i <= mm[4]; ++i) printf("1 2 4\n"); for (int i = 1; i <= mm[2] - mm[4]; ++i) printf("1 2 6\n"); for (int i = 1; i <= mm[3]; ++i) printf("1 3 6\n"); return 0; }
bac042da4fb0e5676caa497113adc002e72abbb9
88fa9b45d0b0e7871e6b79702f80d6d6f1adfc61
/src/SyntaxTree.h
4b6e36ecfef583633406f0410247120e4991774e
[]
no_license
leidegre/parc
b5a42192af0169a54f8981f1de63965e452c7648
e03044940c69957baacf77d6d1fcecdc0aefb0a1
refs/heads/master
2021-01-21T21:47:51.078813
2015-06-07T15:13:26
2015-06-07T15:13:26
6,849,612
0
0
null
null
null
null
UTF-8
C++
false
false
1,524
h
SyntaxTree.h
#pragma once #include "Slice.h" #include "Token.h" #include <cassert> #include <string> #include <vector> namespace parc { class SyntaxTree { public: enum { kNone, kToken, kSyntax, }; SyntaxTree(int type) : type_(type) {} int GetType() const { return type_; } virtual void DebugString(std::string* s, size_t indent = (size_t)-1) = 0; virtual ~SyntaxTree() {} private: int type_; }; class TokenNode : public SyntaxTree { public: TokenNode() : SyntaxTree(kToken), token_() {} TokenNode(const Token& token) : SyntaxTree(kToken), token_(token) {} virtual void DebugString(std::string* s, size_t indent) override; const Token& GetToken() const { return token_; } private: Token token_; }; class SyntaxNode : public SyntaxTree { public: SyntaxNode(const Slice& label) : SyntaxTree(kSyntax), label_(label) {} virtual void DebugString(std::string* s, size_t indent) override; void Add(SyntaxTree* syntax) { assert(syntax); tree_.push_back(syntax); } private: Slice label_; std::vector<SyntaxTree*> tree_; }; // user syntax tree class FileSyntax : public SyntaxNode { public: FileSyntax() : SyntaxNode("file") {} }; class PackageSyntax : public SyntaxNode { public: PackageSyntax() : SyntaxNode("package") {} }; class TokenDefinitionSyntax : public SyntaxNode { public: TokenDefinitionSyntax() : SyntaxNode("token-definition") {} }; class TokenLiteralSyntax : public SyntaxNode { public: TokenLiteralSyntax() : SyntaxNode("token-literal") {} }; }
b350b742bec62dcecb2ba280d0e37e017dbf821d
4f3664d4212e49f214561b5e4104765c3d03e0b1
/ex03.cpp
cd1c9012e4bf2ac6f06e554239ba3b4ecca41241
[]
no_license
xochitlsosa/functions2
017f654700efa9b614e793c4d3be9c5612bff4a5
7dacd4260d898de6bb6b5ab0b34ca008e1b10b83
refs/heads/main
2023-03-28T02:01:58.980615
2021-03-18T05:24:40
2021-03-18T05:24:40
348,931,341
0
0
null
null
null
null
UTF-8
C++
false
false
358
cpp
ex03.cpp
#include<iostream> using namespace std; int main () { int arr[10], n, i, pro = 1; cout << "enter the amount of elements : "; cin >> n; cout << "\nenter the numbers: "; for (i = 0; i < n; i++) cin >> arr[i]; for (i = 0; i < n; i++) { pro *= arr[i]; } cout << "\nproduct of the numbers: " << pro; return 0; }
89fda6124f6d81dc21cf48ec0169effb16f51466
bfaa444b559921f0504d974ecb5b83f1bedb61ae
/inordertree/main.cpp
31f8aa59523956bcc1341280205b81e125e2269d
[]
no_license
xc1129/Algorithm-learning
4605b52aebb33a1e861d6fbe054bd09b09572506
04f9f1d74ea61f43e5004589bf53feaf7db84ebe
refs/heads/master
2020-05-17T10:58:12.981320
2012-06-01T08:37:00
2012-06-01T08:37:00
4,319,087
1
0
null
null
null
null
UTF-8
C++
false
false
90
cpp
main.cpp
/* * Author: Spirit_xc * Description: * * * */ int main() { return 0; }
f26bd206f0e371727b77083eab5d34d244a63ecc
6a42841765f2356da99d9844cab8f3f3353eaebf
/Game/开发库/Include/D3DFont.h
8e110b45560cb8acabed8773a32261df38abe41a
[]
no_license
Ivanhan2018/wh6602_zhuque
d904e1d7136ed7db6cd9b46d65ab33797f400a74
b0e7e574786eac927d109967618ba2a3af5bbee3
refs/heads/master
2020-04-05T17:28:14.739789
2018-12-24T07:36:47
2018-12-24T07:36:47
157,062,380
2
8
null
null
null
null
GB18030
C++
false
false
2,493
h
D3DFont.h
#ifndef D3D_FOUNT_HEAD_FILE #define D3D_FOUNT_HEAD_FILE #include "D3DDevice.h" #include "D3DTexture.h" #include "D3DEngineHead.h" ////////////////////////////////////////////////////////////////////////// //常量定义 #define MAX_GRAY_LEVEL 3 //灰度等级 #define MAX_BUFFER_COUNT 512 //缓冲数目 ////////////////////////////////////////////////////////////////////////// //字体子项 struct tagFontItem { //字符信息 UINT uChar; //字体编码 CD3DTexture D3DTexture; //字体纹理 //输出位置 CSize SizeCell; //单元大小 CSize SizeFont; //字体大小 CPoint PointOrigin; //原点位置 }; //类型定义 typedef CArrayTemplate<tagFontItem *> CFontItemPtrArray; //字体数组 typedef CMap<UINT,UINT,tagFontItem *,tagFontItem *> CFontItemPtrMap; //字体索引 ////////////////////////////////////////////////////////////////////////// //字体管理 class D3D_ENGINE_CLASS CD3DFont { //配置变量 protected: UINT m_uGrayLevel; //灰度等级 UINT m_uMaxBufferCount; //缓冲数目 //字体对象 protected: CFont m_Font; //字体对象 TEXTMETRIC m_TextMetric; //字体属性 //内核对象 protected: CFontItemPtrMap m_FontItemPtrMap; //字体索引 CFontItemPtrArray m_FontItemPtrActive; //字体数组 //函数定义 public: //构造函数 CD3DFont(); //析构函数 virtual ~CD3DFont(); //缓冲数目 public: //缓冲数目 UINT GetMaxBufferCount() { return m_uMaxBufferCount; } //缓冲数目 VOID SetMaxBufferCount(UINT uMaxBufferCount) { m_uMaxBufferCount=uMaxBufferCount; } //创建函数 public: //删除字体 bool DeleteFont(); //创建字体 bool CreateFont(LOGFONT & LogFont, UINT uGrayLevel); //创建字体 bool CreateFont(INT nPointSize, LPCTSTR lpszFaceName, UINT uGrayLevel); //输出字体 public: //输出字体 bool DrawText(CD3DDevice * pD3DDevice, LPCTSTR pszString, CRect rcDraw,UINT uFormat, D3DCOLOR D3DColor); //输出字体 bool DrawText(CD3DDevice * pD3DDevice, LPCTSTR pszString, INT nXPos, INT nYPos, UINT uFormat, D3DCOLOR D3DColor); //字体管理 private: //创建字体 tagFontItem * ActiveFontItem(CD3DDevice * pD3DDevice, UINT uChar); //计算位置 CSize CalePostion(CD3DDevice * pD3DDevice, LPCTSTR pszString, UINT uFormat, INT nAreaWidth); }; ////////////////////////////////////////////////////////////////////////// #endif
72706d63411be513039be8760af9c618251f0637
fc0a2b5796862dbb93ae43080354ccc2c5d6d4ee
/libsets/Var1/Rnr/GL/Extendio_GL_Rnr.h
646e3bfcdec0ed3d5208de7bca6c319479082fca
[]
no_license
osschar/gled-all
d95f0e0a839f8af7eff3b11ae3a2108d6459fdf5
82c1399ff12438fd1faccf3d5f2503ebbad78183
refs/heads/master
2021-04-09T10:53:22.500357
2015-03-09T22:48:46
2015-03-09T22:48:46
125,408,699
0
0
null
null
null
null
UTF-8
C++
false
false
759
h
Extendio_GL_Rnr.h
// $Id$ // Copyright (C) 1999-2008, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #ifndef Var1_Extendio_GL_RNR_H #define Var1_Extendio_GL_RNR_H #include <Glasses/Extendio.h> #include <Rnr/GL/ZGlass_GL_Rnr.h> class Extendio_GL_Rnr : public ZGlass_GL_Rnr { private: void _init(); protected: Extendio* mExtendio; Bool_t bRnrBBoxes; public: Extendio_GL_Rnr(Extendio* idol); virtual ~Extendio_GL_Rnr(); virtual void PreDraw(RnrDriver* rd); virtual void Draw(RnrDriver* rd); virtual void Render(RnrDriver* rd); virtual void PostDraw(RnrDriver* rd); }; // endclass Extendio_GL_Rnr #endif
303863ba949210c8f44e36769ed79863c08fc54d
34be623e83725b726966bdb967dd4e8501a1efde
/MapHelper.h
e160dbcbd36e4445aa5270b627586e2b63ebe04d
[]
no_license
wangdamu/aoimap
2c0d4049f3a9d2ab4a723463a6b54e9264b0c2ec
d17b0605dda11f03f7ce002b0afeabec43ca6edc
refs/heads/master
2020-05-17T22:22:31.237227
2015-07-10T09:27:40
2015-07-10T09:27:40
38,872,438
0
0
null
null
null
null
UTF-8
C++
false
false
161
h
MapHelper.h
#pragma once class MapHelper { public: inline static int getCellKey(unsigned int cellX, unsigned int cellY){ return (cellX << 16) | cellY; } };
f8743ae1835c7ad7250f1ac28f89241abf01d7f1
8e3bed8a6cdd5f979840b205f9cedbe297769f13
/Source/DataServer/src/LogProc.cpp
07e51bf1ea5a37d0efd51a09cc99e47792c5ea40
[ "MIT" ]
permissive
vuonglequoc/ServerSimulator
93cd48edf1cd5bec77e9c823b930bf35f26c7111
12bd6f24fcf957c657864a81da3dfb0467b48c2b
refs/heads/master
2023-02-03T05:55:40.232793
2020-12-19T22:27:34
2020-12-19T22:27:34
35,360,781
2
0
null
null
null
null
UTF-8
C++
false
false
9,495
cpp
LogProc.cpp
#include "StdAfx.H" #include "LogProc.H" LogClass CLog; TCOLORS TColor; // ------------------------------------------------------------------------------------------------------------------------------------------------------- LogClass::LogClass() { PrepareClass(); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- LogClass::~LogClass() { DeleteObject(m_LogFont.Font); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Initialize(HWND szhWnd) { CLog.ghWnd = szhWnd; } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::PrepareClass() { GetCurrentDate(&m_Start_SysTime); GetCurrentDate(&m_Prev_SysTime); // ----- m_LogFont.Width = 6; m_LogFont.Height = 15; // ----- sprintf(m_szFolderPath, "LOG\0"); sprintf(m_szFilePath, "LOG_%02d.%02d.%04d[%s].log\0", m_Start_SysTime.wDay, m_Start_SysTime.wMonth, m_Start_SysTime.wYear, SOFT_NAME); // ----- // ----- m_iTextLengthKeep = 0; m_iCurrentLine = 0; m_xPos = 5; // ----- memset(m_LogBuffFile, 0, sizeof(m_LogBuffFile)); memset(m_Log, 0, sizeof(m_Log)); // ----- SetFolderPath("LOG"); // ----- CreateDirectory(m_szFolderPath, NULL); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::RunWindow() { if( !(IsWindowVisible(ghWnd)) || (IsIconic(ghWnd)) ) return; // ---- this->PaintLog(); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::PaintLog() { m_hDC = GetDC(ghWnd); // ---- GetClientRect(ghWnd, & m_Rect); // ---- m_Rect.top = 1; // ---- HBRUSH hPaintLogBrush = CreateSolidBrush (RGB(0,0,0)); // ---- FillRect(m_hDC, &m_Rect, hPaintLogBrush); // ---- m_LinesPerSize = m_Rect.bottom - m_Rect.top; // ---- m_yPos = m_Rect.bottom - (m_LinesPerSize % m_LogFont.Height) - m_LogFont.Height; // ---- m_LinesPerSize /= m_LogFont.Height; // ---- i = m_iCurrentLine - 1; // ---- LOG_INFO * lpInfo; // ---- for(j = 0; j < m_LinesPerSize; j++, i--) { if(i < 0) { i = LOG_LINE_COUNT - 1; } // ---- lpInfo = & m_Log[i]; // ---- if(lpInfo->Len <= 0) { break; } // ---- SetBkMode(m_hDC, TRANSPARENT); SelectObject(m_hDC, m_LogFont.Font); SetTextColor(m_hDC, RGB(GetBValue(lpInfo->Color), GetGValue(lpInfo->Color), GetRValue(lpInfo->Color))); // ---- TextOut(m_hDC, m_xPos, m_yPos, lpInfo->Text, lpInfo->Len); // ---- m_yPos -= m_LogFont.Height; // Write to above current log line } // ---- ReleaseDC(ghWnd, m_hDC); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::LogTextAdd(COLORREF color, char * text, int len) { if(m_iCurrentLine == LOG_LINE_COUNT) { m_iCurrentLine = 0; } // ---- LOG_INFO * lpInfo = & m_Log[m_iCurrentLine]; // ---- lpInfo->Color = color; // ---- memset(lpInfo->Text, 0, sizeof(lpInfo->Text)); memcpy(lpInfo->Text, text, len); // ---- lpInfo->Len = len; // ---- m_iCurrentLine++; } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::LogAddStr(COLORREF colorText, LPCCH pText) { static int count = 0; GetCurrentDate(&m_SysTime); // ----- m_iTextLength = sprintf(m_LogBuff, "[%04d] [%02d:%02d:%02d] %s\0", count, m_SysTime.wHour, m_SysTime.wMinute, m_SysTime.wSecond, pText); count++; // ----- LogTextAdd(colorText, m_LogBuff, m_iTextLength); // ----- if ( CheckDate(&m_SysTime, &m_Prev_SysTime) == false ) { sprintf(m_szFilePath, "LOG_%02d.%02d.%04d[%s].log\0", m_SysTime.wDay, m_SysTime.wMonth, m_SysTime.wYear, SOFT_NAME); // ----- GetCurrentDate(&m_Prev_SysTime); // ----- WriteDataInFile(m_LogBuffFile, m_iTextLengthKeep); // ----- memset(m_LogBuffFile, 0, sizeof(m_LogBuffFile)); m_iTextLengthKeep = 0; } else { if( m_iTextLengthKeep + m_iTextLength >= LOG_TEXT_FILE_LENGTH ) { sprintf(m_szFilePath, "LOG_%02d.%02d.%04d[%s].log\0", m_Prev_SysTime.wDay, m_Prev_SysTime.wMonth, m_Prev_SysTime.wYear, SOFT_NAME); // ----- WriteDataInFile(m_LogBuffFile, m_iTextLengthKeep); // ----- memset(m_LogBuffFile, 0, sizeof(m_LogBuffFile)); m_iTextLengthKeep = 0; } } // ---- memcpy(& m_LogBuffFile[m_iTextLengthKeep], m_LogBuff, m_iTextLength); // ---- m_iTextLengthKeep += m_iTextLength; // ---- sprintf(& m_LogBuffFile[m_iTextLengthKeep], "\n"); // ---- m_iTextLengthKeep += 1; } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::VLogAddFormat(COLORREF colorText, LPCCH& AddressOfFmt) { PrepareLogBuff(); // ----- VA_START ( m_pArguments, AddressOfFmt ); vsprintf ( &m_LogTempBuff[0], AddressOfFmt, m_pArguments ); VA_END ( m_pArguments ); // ----- LogAddStr(colorText, m_LogTempBuff); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- bool LogClass::CheckDate(LPSYSTEMTIME CurrTime, LPSYSTEMTIME PrevTime) { if ( ( CurrTime->wDay != PrevTime->wDay) || ( CurrTime->wMonth != PrevTime->wMonth) || ( CurrTime->wYear != PrevTime->wYear) ) return true; // ----- return false; } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::WriteDataInFile(LPCCH szBuf, const int iSize) { if( strlen(m_szFilePath) < 1 ) return; // ---- sprintf(m_szFullPath, "%s\\%s\0", m_szFolderPath, m_szFilePath); // ---- m_fHandle = fopen(m_szFullPath, "a"); // ---- if( m_fHandle != NULL ) { fwrite(szBuf, iSize, 1, m_fHandle); // ---- fclose(m_fHandle); } } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Error(LPCCH Message, ...) { this->VLogAddFormat(TColor.Red(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Info(LPCCH Message, ...) { this->VLogAddFormat(TColor.Gold(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Load(LPCCH Message, ...) { this->VLogAddFormat(TColor.Azure(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Connect(LPCCH Message, ...) { this->VLogAddFormat(TColor.Cyan(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Disconnect(LPCCH Message, ...) { this->VLogAddFormat(TColor.CadetBlue(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::LogIn(LPCCH Message, ...) { this->VLogAddFormat(TColor.Coral(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::LogOut(LPCCH Message, ...) { this->VLogAddFormat(TColor.Orange(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Query(LPCCH Message, ...) { this->VLogAddFormat(TColor.Violet(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::Debug(LPCCH Message, ...) { this->VLogAddFormat(TColor.Blue(), Message); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::MsgBox(const char* Caption, LPCCH Message, ...) { VA_START ( m_pArguments, Message ); vsprintf ( &szTemp[0], Message, m_pArguments ); VA_END ( m_pArguments ); // ----- MessageBoxA(NULL, szTemp, Caption, MB_OK | MB_APPLMODAL); } // ------------------------------------------------------------------------------------------------------------------------------------------------------- void LogClass::MsgBoxError(LPCCH Message, ...) { VA_START ( m_pArguments, Message ); vsprintf ( &szTemp[0], Message, m_pArguments ); VA_END ( m_pArguments ); // ----- MessageBoxA(NULL, szTemp, ErrorMSGCaption, MB_OK|MB_ICONERROR); } // -------------------------------------------------------------------------------------------------------------------------------------------------------
b8d4e892926ed9d84c7d7882ee67e4c982cf2222
d954b6d44056558ccb1351d6c8e74e5f12c95b3e
/Main/world.cpp
a00abf09ea0b2755be9a53394fbf2dc260a20972
[]
no_license
CrapStudio/X1918
e75d2d415cc3e4cc1ce285843ff75d586ed55c1a
fe512dace5c92223ff38a144a066dd62b9871fec
refs/heads/master
2021-01-25T12:07:24.304809
2014-12-31T13:28:54
2014-12-31T13:28:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
622
cpp
world.cpp
#include "world.h" #include <ctime> #include <math.h> #include <windows.h> world::world() { x=0; y=0; typ=0; czy=0; event=0; } void world::worldgen() { srand(time(0)); for(int i;i<10;i++) { int x=i; for(int j;j<10;j++) { world z; int y=j; int typ=rand()%3; int czy=0; int event=rand()%2; } } } world::world(int x, int y, int typ, int czy, int event) { x=x; y=y; typ=typ; czy=czy; event=event; }
6db98a6d1ea3f513aa523207812dd2a034fe85d0
600e5ac0cc6abcd0a22412cee1e207be6a4dedb7
/Projects/Sorting/Sorting/Insertion.cpp
8e7384efd7768eb58abcc1e7eb16c87253321721
[]
no_license
raokartikkumar24/TAS
7192e5c5893f5d7ade065fb1d951dccf2a9aab5c
f042c3825b598144486242f707619bc23d7742f4
refs/heads/master
2021-01-10T22:10:31.099221
2015-08-08T15:08:44
2015-08-08T15:08:44
40,229,260
1
0
null
null
null
null
UTF-8
C++
false
false
1,720
cpp
Insertion.cpp
#include "stdafx.h" #include "Insertion.h" #include "DataSet.h" #include <fstream> #include <iostream> #include <algorithm> CInsertion::CInsertion() { } CInsertion::~CInsertion() { } void CInsertion::FileToSort(std::string filepath) { m_sFileToSort = filepath; } void CInsertion::Sort() { CLogger::Log(__LINE__, __FILE__, "Enter Sort()"); if (listofnumbers.size() > 0) { int num = listofnumbers.size(); int insertedElement, i, j; for (i = 1; i < num; i++) { insertedElement = listofnumbers[i]; j = i-1; if (j == num) break; while ((j >= 0) && (listofnumbers[j] > insertedElement)) { //keep on moving the element until we find the correct position for that element. listofnumbers[j+1] = listofnumbers[j]; j = j - 1; } listofnumbers[j+1] = insertedElement; } } else { CLogger::Log(__LINE__, __FILE__, "Error . The List is empty"); } CLogger::Log(__LINE__, __FILE__, "Leave Sort()"); } void CInsertion::Parse() { CLogger::Log(__LINE__, __FILE__, "Enter Parse()"); std::ifstream input_file; input_file.open(m_sFileToSort); while (!input_file.eof()) { std::string s; std::getline(input_file, s); int x = atoi(s.c_str()); listofnumbers.push_back(x); } input_file.close(); CLogger::Log(__LINE__, __FILE__, "Leave Parse()"); } void CInsertion::WriteSortedListToFile(std::string filepath) { CLogger::Log(__LINE__, __FILE__, "Enter WriteSortedListToFile()"); std::ofstream sorted(filepath); for (int i = 0; i < (int)listofnumbers.size(); ++i) { sorted << listofnumbers[i] << std::endl; } CLogger::Log(__LINE__, __FILE__, "Leave WriteSortedListToFile()"); }
2116ea00881c362e53be29277be37ff8a46568fb
c045e031ac453124043f649eefbe6c23e35ccdda
/windows/ccsdrvTest/ccsdrvTestDlg.h
2d23970ddfda2db5b7b41f402e4e494b5c7499ac
[ "MIT" ]
permissive
grodansparadis/vscpl1drv-ccs
bbc6a5a16bc34f8b7452fd320ac8b662292888e0
f4ae8c6a9f124459197e429cbdef86ea70f1fa40
refs/heads/master
2020-08-27T10:02:47.976859
2020-01-14T10:18:54
2020-01-14T10:18:54
217,326,625
1
0
null
null
null
null
UTF-8
C++
false
false
2,074
h
ccsdrvTestDlg.h
// ccsdrvTestDlg.h : header file // // Copyright (C) 2000-2020 // Ake Hedman, Grodans Paradis AB, <akhe@grodansparadis.com> #if !defined(AFX_CCSDRVTESTDLG_H__DB07F138_0A91_4C67_9915_A72470AD5FED__INCLUDED_) #define AFX_CCSDRVTESTDLG_H__DB07F138_0A91_4C67_9915_A72470AD5FED__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "../../common/ccsobj.h" ///////////////////////////////////////////////////////////////////////////// // CCcsdrvTestDlg dialog class CCcsdrvTestDlg : public CDialog { // Construction public: CCcsdrvTestDlg(CWnd* pParent = NULL); // standard constructor CCSObj m_drvobj; // Dialog Data //{{AFX_DATA(CCcsdrvTestDlg) enum { IDD = IDD_CCSDRVTEST_DIALOG }; // NOTE: the ClassWizard will add data members here CString m_strStatus; CString m_strMask; CString m_strCode; CString m_strData0; CString m_strData1; CString m_strData2; CString m_strData3; CString m_strData4; CString m_strData5; CString m_strData6; CString m_strData7; CString m_strDLC; CString m_strCANID; BOOL m_bExteded; CString m_strOpenArg; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CCcsdrvTestDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: HICON m_hIcon; // Generated message map functions //{{AFX_MSG(CCcsdrvTestDlg) virtual BOOL OnInitDialog(); afx_msg void OnSysCommand(UINT nID, LPARAM lParam); afx_msg void OnPaint(); afx_msg HCURSOR OnQueryDragIcon(); afx_msg void OnButtonOpen(); afx_msg void OnButtonClose(); afx_msg void OnButtonSend(); afx_msg void OnButtonPoll(); afx_msg void OnButtonFilter(); virtual void OnOK(); virtual void OnCancel(); afx_msg void OnButtonStatus(); afx_msg void OnButtonCheckData(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_CCSDRVTESTDLG_H__DB07F138_0A91_4C67_9915_A72470AD5FED__INCLUDED_)
5d8f1c8e7038e57af58bdf243a2f50a96037a1c8
31c248110683fa84f42a36985dbe3bfeef79b004
/uva11951/uva11951.cpp
92cdc4464fa4485dad4d0b85de6b90d8b2fd48e0
[]
no_license
shailesh1001/uva-solutions-1
803a6fcc1f5a0bad650e6b5c02972345c915194f
3c839ccdf1b05eb4086fb404990556e693c932a9
refs/heads/master
2021-01-14T12:05:52.082640
2015-10-04T10:49:10
2015-10-04T10:49:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,912
cpp
uva11951.cpp
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <map> #include <sstream> #include <set> #include <iomanip> #include <list> #include <stack> #include <queue> #include <bitset> #include <numeric> #include <cstdio> #include <cmath> #include <climits> #include <cstring> #include <cctype> #include <cstdlib> #include <stdio.h> using namespace std; typedef vector<int> vi; typedef set<int> si; int main(int argc, char* argv[]) { #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); #endif int T; cin>>T; for (int t=1;t<=T;++t) { int N,M; long long K; cin>>N>>M>>K; long long P[N][M]; for (int i=0;i<N;++i) for (int j=0;j<M;++j) { long long p; cin>>p; P[i][j]=p; if (i>0) P[i][j]+=P[i-1][j]; if (j>0) P[i][j]+=P[i][j-1]; if (i>0 && j>0) P[i][j]-=P[i-1][j-1]; } long long min_p=0; int max_s=0; for (int i1=0;i1<N;++i1) { int max_height = N-i1; if (max_height*M<max_s) break; for (int j1=0;j1<M;++j1) { int max_width = M-j1; if (max_height*max_width<max_s) break; for (int i2=i1;i2<N;++i2) { int height = (i2-i1+1); if (height*max_width<max_s) continue; for (int j2=j1;j2<M;++j2) { int width = (j2-j1+1); int s = height*width; if (s<max_s) continue; long long p = P[i2][j2]; if (i1>0) p-=P[i1-1][j2]; if (j1>0) p-=P[i2][j1-1]; if (i1>0 && j1>0) p+=P[i1-1][j1-1]; if (p>K) break; if (s>max_s) { max_s = s; min_p = p; } else if (s==max_s && p<min_p) { min_p = p; } } } } } cout<<"Case #"<<t<<": "<<max_s<<" "<<min_p<<endl; } return 0; }
f4f67ac5175cf96cea4d886f2c3044c10c451679
36d37de677ccf25b0ee33ca8d5ba897c887eae55
/Ex_09/main.cpp
d4ea4c398b31fe3bf1d8f1c5b8a2692e511e1c2d
[]
no_license
CostanzaPaternoster/LSN
6e033cad13d77c4663fc0f18ad9dafefe6945b99
98770a8683563ee89c47116488cd9e38ea7bc095
refs/heads/master
2022-04-16T06:34:23.119040
2020-04-18T17:08:00
2020-04-18T17:08:00
255,619,668
0
0
null
null
null
null
UTF-8
C++
false
false
2,730
cpp
main.cpp
#include <iostream> #include <iomanip> #include <fstream> #include <string> #include <cmath> #include <stdlib.h> #include "funzioni.h" #include "costanti.h" using namespace std; int main(){ // Carica parametri da file di input parameters.dat Input(); // Crea la mappa delle città (geometry = 1 -> città su circonferenza, geometry = 0 -> città nel quadrato [0,1]x[0,1]) /*CityMap mappa(ncities,geometry); mappa.GenerateCityMap(rnd); // crea la mappa mappa.SaveCityMap(); // Salva la mappa su file mappa.PrintCityMap(); // Stampa a video la mappa */ // Dichiara oggetto GAmethods che implementa gli operatori di mutazione genetica e crossover GAmethods GA(init_shuffle,selection_exp,pmutation,pcrossover); // Genera la popolazione a partire dalla mappa (se non esiste, la crea) Population popolazione(dim_population,ncities,geometry); popolazione.GeneratePopulation(GA); // Genera la popolazione popolazione.CheckPopulation(); // Verifica che ciascun individuo soddisifi i vincoli popolazione.SortPopulation(); // Riordina la popolazione in base alla fitness di ciascun individuo (per selezione) popolazione.AveFitness(); // Calcola la fitness mediata sulla metà migliore della popolazione popolazione.ShowBest(); // Stampa a video l'individuo migliore popolazione.ShowAveFitness(); // Stampa a video la fitness media popolazione.Print(0); // Stampa su file l'individuo migliore e la fitness media // Fai evolvere la popolazione nstep volte for(int i=1; i<=nstep; i++){ popolazione.EvolvePopulation(GA); // Fai evolvere la popolazione favorendo la selezione di individui con fitness più alta (funzione costo più bassa) popolazione.CheckPopulation(); popolazione.SortPopulation(); cout << "-----------------------" << endl << "Generation n° " << i << endl; popolazione.ShowBest(); popolazione.ShowAveFitness(); popolazione.Print(i); // Stampa su file "Circle(Square)/Circle(Square)Path.i.final" l'individuo migliore della generazione i-esima, stampa su file "Circle(Square)/fitness.dat" la fitness media } //GA.SaveSeed(); return 0; } void Input(){ ifstream input; input.open("parameters.dat"); if(input){ input >> geometry; input >> ncities; input >> init_shuffle; input >> selection_exp; input >> pmutation; input >> pcrossover; input >> nstep; input >> dim_population; input.close(); }else cout << "Unable to open file parameters.dat ! "; input.close(); return; }
b294c6288c8a36534e9fed50b0a9a754766c4276
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_old_hunk_7019.cpp
f7854dcc9d0a4568e233be98b134c14cf3377e0f
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
541
cpp
httpd_old_hunk_7019.cpp
case token_or: #ifdef DEBUG_INCLUDE ap_rputs(" Evaluate and/or\n", r); #endif if (current->left == (struct parse_node *) NULL || current->right == (struct parse_node *) NULL) { ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r->server, "Invalid expression \"%s\" in file %s", expr, r->filename); ap_rputs(error, r); goto RETURN; } if (!current->left->done) {
59261fc6b4549510a3ac243c530a236fb807300f
b0ee03926ee77ebe1bbfe0e619a56eeae837bde1
/Online-Judge-Solutions/UVA/10938 - Flea circus.cpp
fdc7e07b9bd2e586b0c92191cf85202f9b11f935
[]
no_license
artugal28373/CompetitveProgramming
6457a44f03cf3b62c2cdb832dcd7ee4c95d272a3
e41e1b7ea46ab4088ef487bf00ab0aad7dc06ef9
refs/heads/master
2022-04-10T11:15:19.804675
2019-09-30T20:35:03
2019-09-30T20:35:03
476,767,051
1
0
null
2022-04-01T15:07:20
2022-04-01T15:07:19
null
UTF-8
C++
false
false
5,267
cpp
10938 - Flea circus.cpp
#include <bits/stdc++.h> #define pii pair <int,int> #define pll pair <long long,long long> #define sc scanf #define pf printf #define Pi 2*acos(0.0) #define ms(a,b) memset(a, b, sizeof(a)) #define pb(a) push_back(a) #define MP make_pair #define db double #define ll long long #define EPS 10E-10 #define ff first #define ss second #define sqr(x) (x)*(x) #define D(x) cout<<#x " = "<<(x)<<endl #define VI vector <int> #define DBG pf("Hi\n") #define MOD 1000000007 #define CIN ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define SZ(a) (int)a.size() #define sf(a) scanf("%d",&a) #define sfl(a) scanf("%lld",&a) #define sff(a,b) scanf("%d %d",&a,&b) #define sffl(a,b) scanf("%lld %lld",&a,&b) #define sfff(a,b,c) scanf("%d %d %d",&a,&b,&c) #define sfffl(a,b,c) scanf("%lld %lld %lld",&a,&b,&c) #define stlloop(v) for(__typeof(v.begin()) it=v.begin();it!=v.end();it++) #define loop(i,n) for(int i=0;i<n;i++) #define loop1(i,n) for(int i=1;i<=n;i++) #define REP(i,a,b) for(int i=a;i<b;i++) #define RREP(i,a,b) for(int i=a;i>=b;i--) #define TEST_CASE(t) for(int z=1;z<=t;z++) #define PRINT_CASE printf("Case %d: ",z) #define LINE_PRINT_CASE printf("Case %d:\n",z) #define CASE_PRINT cout<<"Case "<<z<<": " #define all(a) a.begin(),a.end() #define intlim 2147483648 #define infinity (1<<28) #define ull unsigned long long #define gcd(a, b) __gcd(a, b) #define lcm(a, b) ((a)*((b)/gcd(a,b))) using namespace std; /*----------------------Graph Moves----------------*/ //const int fx[]={+1,-1,+0,+0}; //const int fy[]={+0,+0,+1,-1}; //const int fx[]={+0,+0,+1,-1,-1,+1,-1,+1}; // Kings Move //const int fy[]={-1,+1,+0,+0,+1,+1,-1,-1}; // Kings Move //const int fx[]={-2, -2, -1, -1, 1, 1, 2, 2}; // Knights Move //const int fy[]={-1, 1, -2, 2, -2, 2, -1, 1}; // Knights Move /*------------------------------------------------*/ /*-----------------------Bitmask------------------*/ //int Set(int N,int pos){return N=N | (1<<pos);} //int reset(int N,int pos){return N= N & ~(1<<pos);} //bool check(int N,int pos){return (bool)(N & (1<<pos));} /*------------------------------------------------*/ #define mx 5005 int n,q; vector<int>g1[mx],g2[mx]; int sparse_par[mx][14],sparse_dis[mx][14]; int level[mx],par[mx]; void dfs(int u, int cnt, int from) { par[u]=from; level[u]=cnt; g2[u].pb(from); for(int i=0;i<SZ(g1[u]);i++) { int v=g1[u][i]; if(v!=from) { dfs(v,cnt+1,u); } } } void build_talbe() { for(int i=1;i<=n;i++) { sparse_par[i][0]=par[i]; sparse_dis[i][0]=1; } sparse_dis[1][0]=0; for(int j=1; 1<<j<=n;j++) { for(int i=1;i<=n;i++) { sparse_par[i][j]=sparse_par[sparse_par[i][j-1]][j-1]; sparse_dis[i][j]=sparse_dis[i][j-1]+sparse_dis[sparse_par[i][j-1]][j-1]; } } } int LCA; int query(int p, int q) { if(level[p]<=level[q]) swap(p,q); int log=log2(level[p]); int ret=0; for(int i=log;i>=0;i--) { if(level[p]-(1<<i)>=level[q]) { ret+=sparse_dis[p][i]; p=sparse_par[p][i]; } } if(p==q){LCA=p; return ret;} for(int i=log;i>=0;i--) { if(sparse_par[p][i]!=sparse_par[q][i]) { ret+=sparse_dis[p][i]; ret+=sparse_dis[q][i]; p=sparse_par[p][i]; q=sparse_par[q][i]; } } ret+=2; LCA=par[p]; return ret; } vector<int>temp; int dfs1(int u, int cnt) { if(u==LCA) return u; temp.pb(u); if(cnt==0) return u; for(int i=0;i<SZ(g2[u]);i++) return dfs1(g2[u][i],cnt-1); } int main() { // freopen("in.txt","r",stdin); // freopen("out.txt","w",stdout); while(sf(n) && n) { loop(i,n-1) { int a,b; sff(a,b); g1[a].pb(b); g1[b].pb(a); } dfs(1,0,1); build_talbe(); sf(q); while(q--) { int a,b; sff(a,b); int dis=query(a,b)+1; if(dis%2==0) { temp.clear(); dfs1(a,n); temp.pb(LCA); int x=SZ(temp); dfs1(b,n); reverse(temp.begin()+x,temp.end()); int aa=temp[(dis/2)-1]; int bb=temp[dis/2]; pf("The fleas jump forever between %d and %d.\n",min(aa,bb),max(aa,bb)); } else { int p; if(level[a]>level[b]) p=a; else p=b; pf("The fleas meet at %d.\n",dfs1(p,dis/2)); } } for(int i=0;i<=n;i++) { g1[i].clear(); g2[i].clear(); } } return 0; }
f2f5d1cb3af81c2532c154b7f87854fc61ba2225
c1ef7d20c5ee8c324d1c77d436c91d7b5076442a
/算法与数据结构/cpp_leetcode/152 乘积最大子数组/main.cpp
916271ec2a246921bdc520962174413c96d5e53d
[]
no_license
Daibingh/MyAlgoLearning
3cf91e763decbd24211e4bdb1ffd6eb36c57b345
0c49bfdc55eb7f325a10a1aff1c7936cc353cc43
refs/heads/master
2023-07-08T21:08:00.301218
2021-08-15T02:39:59
2021-08-15T02:39:59
294,886,010
0
0
null
null
null
null
UTF-8
C++
false
false
1,258
cpp
main.cpp
#include "utils.hpp" using namespace std; /* 给你一个整数数组 nums ,请你找出数组中乘积最大的连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。 */ // 动态规划解法,dp[i][j] 以 i **结尾**的子数组的最值 (最大值和最小值都要保存) // 状态转移过程中,要考虑到当前数的 符号, 负数使得 过去的 最大值与最小值发生颠倒, // 总之,最值在 有两种情况:1) 与上一个数构成一个子数组 2) 单独构成一个子数组 。 取两种情况的最大值 class Solution { public: int maxProduct(vector<int>& nums) { int n = nums.size(); vector<vector<int>> dp(n, vector<int>(2, 0)); dp[0][0] =dp[0][1] = nums[0]; int res = nums[0]; for (int i=1;i<n;++i) { if (nums[i]>0) { dp[i][0] = max( nums[i]*dp[i-1][0], nums[i] ); dp[i][1] = min( nums[i]*dp[i-1][1], nums[i] ); } else { dp[i][0] = max( nums[i]*dp[i-1][1], nums[i] ); dp[i][1] = min( nums[i]*dp[i-1][0], nums[i] ); } res = max(res, dp[i][0]); } return res; } };
cf474df2607b99243d091587c3a8c57032b37b0e
bb0715a749b421a257e9b7081a4f69c4f3fad586
/gicp/src/gicp.cpp
5475502b38b5b3a4c856197d46d82c9fab21c372
[]
no_license
lev2cu/research
ca2b2fecf134bb5e65f7e4cf01e32c1832a054eb
e05a1047399d42241d91e59c14019abf733d79ab
refs/heads/master
2021-01-22T04:49:13.006639
2014-11-04T19:46:34
2014-11-04T19:46:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,367
cpp
gicp.cpp
/************************************************************* Generalized-ICP Copyright (c) 2009 Aleksandr Segal. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************/ #include "ccny_gicp/gicp.h" using namespace std;//TODO: remove namespace ccny_gicp { GICPPointSet::GICPPointSet(): debug_(false), gicp_epsilon_(1e-3), nn_normal_count_(20) { cloud_ = boost::shared_ptr<PointCloudGICP> (new PointCloudGICP()); } GICPPointSet::~GICPPointSet() { } void GICPPointSet::Clear(void) { cloud_->points.clear(); } void GICPPointSet::computeMatrices() { int n = NumPoints(); IntVector nn_indices; FloatVector nn_distances_sq; nn_indices.resize(nn_normal_count_); nn_distances_sq.resize(nn_normal_count_); for(int index = 0; index < n; ++index) computeMatrix(index, nn_indices, nn_distances_sq); } void GICPPointSet::computeMatrix(int index) { IntVector nn_indices; FloatVector nn_distances_sq; nn_indices.resize(nn_normal_count_); nn_distances_sq.resize(nn_normal_count_); computeMatrix(index, nn_indices, nn_distances_sq); } void GICPPointSet::computeMatrix(int index, IntVector& nn_indices, FloatVector& nn_distances_sq) { double mean[3]; gsl_vector *work = gsl_vector_alloc(3); gsl_vector *gsl_singulars = gsl_vector_alloc(3); gsl_matrix *gsl_v_mat = gsl_matrix_alloc(3, 3); gicp_mat_t &cov = cloud_->points[index].C; // zero out the cov and mean for(int k = 0; k < 3; k++) { mean[k] = 0.; for(int l = 0; l < 3; l++) { cov[k][l] = 0.; } } int n_found = getNN(cloud_->points[index], nn_normal_count_, nn_indices, nn_distances_sq); assert(n_found != 0); // find the covariance matrix for(int j = 0; j < n_found; j++) { PointGICP &pt = cloud_->points[nn_indices[j]]; mean[0] += pt.x; mean[1] += pt.y; mean[2] += pt.z; cov[0][0] += pt.x*pt.x; cov[1][0] += pt.y*pt.x; cov[1][1] += pt.y*pt.y; cov[2][0] += pt.z*pt.x; cov[2][1] += pt.z*pt.y; cov[2][2] += pt.z*pt.z; } mean[0] /= (double)n_found; mean[1] /= (double)n_found; mean[2] /= (double)n_found; // get the actual covariance for(int k = 0; k < 3; k++) { for(int l = 0; l <= k; l++) { cov[k][l] /= (double)n_found; cov[k][l] -= mean[k]*mean[l]; cov[l][k] = cov[k][l]; } } // compute the SVD gsl_matrix_view gsl_cov = gsl_matrix_view_array(&cov[0][0], 3, 3); gsl_linalg_SV_decomp(&gsl_cov.matrix, gsl_v_mat, gsl_singulars, work); // zero out the cov matrix, since we know U = V since C is symmetric for(int k = 0; k < 3; k++) for(int l = 0; l < 3; l++) cov[k][l] = 0; // reconstitute the covariance matrix with modified singular values using the column vectors in V. for(int k = 0; k < 3; k++) { gsl_vector_view col = gsl_matrix_column(gsl_v_mat, k); double v = 1.; // biggest 2 singular values replaced by 1 if(k == 2) // smallest singular value replaced by gicp_epsilon v = gicp_epsilon_; gsl_blas_dger(v, &col.vector, &col.vector, &gsl_cov.matrix); } gsl_matrix_free(gsl_v_mat); gsl_vector_free(gsl_singulars); gsl_vector_free(work); } void GICPPointSet::SavePoints(const char *filename) { ofstream out(filename); if(out) { int n = NumPoints(); for(int i = 0; i < n; i++) out << cloud_->points[i].x << "\t" << cloud_->points[i].y << "\t" << cloud_->points[i].z << endl; } out.close(); } void GICPPointSet::SaveMatrices(const char *filename) { ofstream out(filename); if(out) { int n = NumPoints(); for(int i = 0; i < n; i++) { for(int k = 0; k < 3; k++) { for(int l = 0; l < 3; l++) { out << cloud_->points[i].C[k][l] << "\t"; } } out << endl; } } out.close(); } } //namespace ccny_gicp
ca3302c5f76557931db8c22f20a2f323eb2812f6
1c57689889ffd8868db878e225ab2dcfed5eda7d
/inc/Shape.h
7b03ab311939703dd3c59d38139d11fd15eff54f
[]
no_license
ioDiken/cmpe180a
57b6b96ba11a0ab0a7d185273ab4ff339bd41fbf
804b95c972ed26f274680f988ac1d348d73358a5
refs/heads/master
2023-04-09T11:04:24.359261
2021-04-20T06:11:25
2021-04-20T06:11:25
336,892,242
0
0
null
null
null
null
UTF-8
C++
false
false
857
h
Shape.h
/** * @file Shape.h * @brief Shape Classes * @sjsuid 011280893 * @author Nicolas Diken */ #ifndef Shape_h #define Shape_h #include "XYPoint.h" class Shape { public: virtual double area() = 0; }; class Circle : public Shape { public: Circle(const XYPoint& c, double r) : centre(c), radius(r){} double area(); private: XYPoint centre; double radius; }; class Triangle : public Shape { public: Triangle(const XYPoint& x, const XYPoint& y, const XYPoint& z) : a(x), b(y), c(z){} double area(); private: XYPoint a; XYPoint b; XYPoint c; }; class Rectangle : public Shape { public: Rectangle(const XYPoint& w, const XYPoint& x, const XYPoint& y, const XYPoint& z) : a(w), b(x), c(y), d(z) {} double area(); private: XYPoint a; XYPoint b; XYPoint c; XYPoint d; }; #endif
93d91fb29dffcc3d6a8b500cd1ec68aa444b07ba
7396ebd54ae4b391bc71ae5132d3d4961c0871fa
/kattis/icpcteamselection.cpp
41ed6b01c2afda493ee54aeec14f195892d00b85
[]
no_license
luis201420/competitiveProgramming
41db36ea165bfe089ef20ce7c3dbd32abc7eda54
930ddfe54dd5c4bb2e9f7c28921d3159177dd0c1
refs/heads/master
2020-09-20T18:03:01.659246
2019-11-28T03:43:06
2019-11-28T03:43:06
224,554,177
0
0
null
null
null
null
UTF-8
C++
false
false
368
cpp
icpcteamselection.cpp
#include <bits/stdc++.h> using namespace std; int main(){ int t,n,res,aux; cin >> t; vector<int> ns; while(t--){ cin >> n; ns.resize(3*n); for(int i=0;i<(3*n);i++) cin >> ns[i]; sort(ns.begin(),ns.end(),greater<int>()); res=0;aux=n; for(int i=1;i<(3*n)-1&&aux;i+=2){ res+=ns[i]; aux--; } cout << res << endl; } return 0; }
647d6f10dd979146582f4be754e6d7ffec204a9a
464aa9d7d6c4906b083e6c3da12341504b626404
/src/lib/moo/image_texture.ipp
057d843b9c735c2d73c07d2ee02e9021e413019a
[]
no_license
v2v3v4/BigWorld-Engine-2.0.1
3a6fdbb7e08a3e09bcf1fd82f06c1d3f29b84f7d
481e69a837a9f6d63f298a4f24d423b6329226c6
refs/heads/master
2023-01-13T03:49:54.244109
2022-12-25T14:21:30
2022-12-25T14:21:30
163,719,991
182
167
null
null
null
null
UTF-8
C++
false
false
5,174
ipp
image_texture.ipp
/****************************************************************************** BigWorld Technology Copyright BigWorld Pty, Ltd. All Rights Reserved. Commercial in confidence. WARNING: This computer program is protected by copyright law and international treaties. Unauthorized use, reproduction or distribution of this program, or any portion of this program, may result in the imposition of civil and criminal penalties as provided by law. ******************************************************************************/ /** * This creates an ImageTexture. * * @param width Width of the texture. * @param height Height of the texture. * @param format Format of the texture. * @param mipLevels Number of mip-map levels. */ template<typename PIXELTYPE> inline Moo::ImageTexture<PIXELTYPE>::ImageTexture ( uint32 width, uint32 height, D3DFORMAT format /*= recommendedFormat()*/, uint32 mipLevels /*= 0*/ ): BaseTexture(), width_(width), height_(height), format_(format), textureMemoryUsed_(0), lockCount_(0), lockLevel_(0) { BW_GUARD; DX::Device *device = Moo::rc().device(); HRESULT hr = device->CreateTexture ( width, height, mipLevels, 0, // usage format, D3DPOOL_MANAGED, &texture_, NULL // shared handle ); MF_ASSERT_DEV(SUCCEEDED(hr)); if (texture_ != NULL) textureMemoryUsed_ = BaseTexture::textureMemoryUsed(texture_.pComObject()); } /** * This is the ImageTexture destructor. */ template<typename PIXELTYPE> inline Moo::ImageTexture<PIXELTYPE>::~ImageTexture() { } /** * This function gets the underlying D3D texture. * * @returns The underlying D3D texture. */ template<typename PIXELTYPE> inline DX::BaseTexture *Moo::ImageTexture<PIXELTYPE>::pTexture() { return texture_.pComObject(); } /** * This function gets the width of the texture. * * @returns The width of the texture. */ template<typename PIXELTYPE> inline uint32 Moo::ImageTexture<PIXELTYPE>::width() const { return width_; } /** * This function gets the height of the texture. * * @returns The height of the texture. */ template<typename PIXELTYPE> inline uint32 Moo::ImageTexture<PIXELTYPE>::height() const { return height_; } /** * This function gets the format of the texture. * * @returns The format of the texture. */ template<typename PIXELTYPE> inline D3DFORMAT Moo::ImageTexture<PIXELTYPE>::format() const { return format_; } /** * This function returns the size of the texture in memory. * * @returns The size of the texture in memory. */ template<typename PIXELTYPE> inline uint32 Moo::ImageTexture<PIXELTYPE>::textureMemoryUsed() { return textureMemoryUsed_; } /** * This function locks the specified mip-map level for reading/writing. * You should only lock one level at a time. * * @param level The level to lock. */ template<typename PIXELTYPE> inline void Moo::ImageTexture<PIXELTYPE>::lock(uint32 level /*= 0*/) { BW_GUARD; if (lockCount_++ == 0) { D3DLOCKED_RECT lockedRect; HRESULT hr = texture_->LockRect(level, &lockedRect, NULL, 0); MF_ASSERT_DEV(SUCCEEDED(hr)); if( SUCCEEDED(hr) ) { PixelType *pixels = reinterpret_cast<PixelType *>(lockedRect.pBits); image_.resize(width_, height_, pixels, false, lockedRect.Pitch); } lockLevel_ = level; } MF_ASSERT_DEV(lockLevel_ == level); } /** * This gets the texture's pixels as an image. This should be called between * calls to lock/unlock. * * @returns The texture's pixels as an image. */ template<typename PIXELTYPE> inline typename Moo::ImageTexture<PIXELTYPE>::ImageType & Moo::ImageTexture<PIXELTYPE>::image() { return image_; } /** * This gets the texture's pixels as an image. This should be called between * calls to lock/unlock. * * @returns The texture's pixels as an image. */ template<typename PIXELTYPE> inline typename Moo::ImageTexture<PIXELTYPE>::ImageType const & Moo::ImageTexture<PIXELTYPE>::image() const { return image_; } /** * This unlocks the texture after being written. */ template<typename PIXELTYPE> inline void Moo::ImageTexture<PIXELTYPE>::unlock() { BW_GUARD; if (--lockCount_ == 0) { HRESULT hr = texture_->UnlockRect(lockLevel_); MF_ASSERT_DEV(SUCCEEDED(hr)); if( SUCCEEDED(hr) ) image_.clear(); } } /** * This function gets the recommended format for the texture. * * @returns D3DFMT_X8R8G8B8. */ template<typename PIXELTYPE> /*static*/ inline D3DFORMAT Moo::ImageTexture<PIXELTYPE>::recommendedFormat() { return D3DFMT_A8R8G8B8; } /** * This function gets the recommended texture format for ARGB image textures. * * @returns D3DFMT_A8R8G8B8 */ /*static*/ inline D3DFORMAT Moo::ImageTextureARGB::recommendedFormat() { return D3DFMT_A8R8G8B8; } /** * This function gets the recommended texture format for uint8 image textures. * * @returns D3DFMT_L8 */ /*static*/ inline D3DFORMAT Moo::ImageTexture8::recommendedFormat() { return D3DFMT_L8; } /** * This function gets the recommended texture format for uint16 image textures. * * @returns D3DFMT_L16 */ /*static*/ inline D3DFORMAT Moo::ImageTexture16::recommendedFormat() { return D3DFMT_L16; }
4622018a0bd817163126a0c1bf12bdf766e65f3f
75066c5b728ea31ec3f4c1edcd8a0edb3aab606e
/angry_ghosts/enemy.cpp
8cbb484059dbc10695d91ec3df20f38fb89dba09
[]
no_license
ravg95/GUI_Programming_IFE
8cbb9d389f87bd58d841b5207804558b22e8498c
e6d7a53539cb643ba40782617126c048d4cec352
refs/heads/master
2021-01-22T03:22:46.731722
2017-02-07T03:32:28
2017-02-07T03:32:28
81,118,750
0
0
null
null
null
null
UTF-8
C++
false
false
9,360
cpp
enemy.cpp
#include "enemy.h" #include <QGraphicsScene> #include <QKeyEvent> #include <QTimer> #include <cstdlib> #include <time.h> Enemy::Enemy(QGraphicsItem *parent,QGraphicsScene * scene, int enemynumber, Player * player): QObject(), QGraphicsPixmapItem(parent){ this->enemynumber = enemynumber; this->player = player; if(this->enemynumber == 1){ setPos(45+12*705/13,49); this->x_pos = 12; this->y_pos = 0; this->player->themap->enemiescoords[enemynumber-1][0] = this->x_pos; this->player->themap->enemiescoords[enemynumber-1][1] = this->y_pos; } else if(this->enemynumber == 2){ setPos(45,49+12*705/13); this->x_pos = 0; this->y_pos = 12; this->player->themap->enemiescoords[enemynumber-1][0] = this->x_pos; this->player->themap->enemiescoords[enemynumber-1][1] = this->y_pos; } else if (this->enemynumber == 3){ setPos(45+12*705/13,49+12*705/13); this->x_pos = 12; this->y_pos = 12; this->player->themap->enemiescoords[enemynumber-1][0] = this->x_pos; this->player->themap->enemiescoords[enemynumber-1][1] = this->y_pos; } this->timer2 = new QTimer(this); connect(timer2,SIGNAL(timeout()),this,SLOT(animate())); timer2->start(120); this->timer1 = new QTimer(this); connect(timer1,SIGNAL(timeout()),this,SLOT(move())); timer1->start(10); this->scene = scene; srand (time(NULL)); } void Enemy::attachtomap(Map *map){ this->themap = map; } void Enemy::attachscene(QGraphicsScene *scene) { this->scene = scene; } bool Enemy::candown(){ if(this->y_pos == 12){ return false; } if(this->themap->current_map[this->y_pos+1][this->x_pos] != 0){ return false; } return true; } bool Enemy::canup(){ if(this->y_pos == 0){ return false; } if(this->themap->current_map[this->y_pos-1][this->x_pos] != 0){ return false; } return true; } bool Enemy::canright(){ if(this->x_pos == 12){ return false; } if(this->themap->current_map[this->y_pos][this->x_pos+1] != 0){ return false; } return true; } bool Enemy::canleft(){ if(this->x_pos == 0){ return false; } if(this->themap->current_map[this->y_pos][this->x_pos-1] != 0){ return false; } return true; } void Enemy::goup(){ this->isgoing = true; this->setPos(this->x(),this->y()-2); this->currentdirection = 1; this->smallsteps+=2; if ( this->smallsteps == 28){ this->y_pos-=1; } if (this->smallsteps == 54){ this->smallsteps = 0; this->isgoing = false; } } void Enemy::godown(){ this->isgoing = true; this->setPos(this->x(),this->y()+2); this->currentdirection = 2; this->smallsteps+=2; if (this->smallsteps == 28){ this->y_pos+=1; } if (this->smallsteps == 54){ this->smallsteps = 0; this->isgoing = false; } } void Enemy::goleft(){ this->isgoing = true; this->setPos(this->x()-2,this->y()); this->currentdirection = 3; this->smallsteps+=2; if(this->smallsteps == 28){ this->x_pos-=1; } if (this->smallsteps == 54){ this->smallsteps = 0; this->isgoing = false; } } void Enemy::goright(){ this->isgoing = true; this->setPos(this->x()+2,this->y()); this->currentdirection = 4; this->smallsteps+=2; if(this->smallsteps == 28){ this->x_pos+=1; } if (this->smallsteps == 54){ this->smallsteps = 0; this->isgoing = false; } } void Enemy::theend(){ this->scene->removeItem(this); delete this; } void Enemy::move(){ int whichdirection = rand() %16 + 1; if(this->themap->isexplo(this->x_pos,this->y_pos)){ this->player->end = true; theend(); } else if(this->isgoing){ if(this->currentdirection == 1){ this->goup(); } else if (this->currentdirection == 2){ this->godown(); } else if (this->currentdirection == 3){ this->goleft(); } else if (this->currentdirection == 4){ this->goright(); } } else if(whichdirection <= 4 ){ if(this->canup()){ this->goup(); } } else if(whichdirection > 4 && whichdirection <= 8 ){ if(this->candown()){ this->godown(); } } else if(whichdirection > 8 && whichdirection <= 12 ){ if(this->canleft()){ this->goleft(); } } else if(whichdirection > 12 && whichdirection <=16 ){ if(this->canright()){ this->goright(); } } } void Enemy::animate() { if(this->enemynumber == 1){ this->player->themap->enemiescoords[0][0] = this->x_pos; this->player->themap->enemiescoords[0][1] = this->y_pos; if(this->animationcounter == 1 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostuporange1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdownorange1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleftorange1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostrightorange1.png")); } else if(this->animationcounter == 2 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostuporange2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdownorange2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleftorange2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostrightorange2.png")); } } if(this->enemynumber == 2){ this->player->themap->enemiescoords[1][0] = this->x_pos; this->player->themap->enemiescoords[1][1] = this->y_pos; if(this->animationcounter == 1 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostupred1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdownred1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleftred1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostrightred1.png")); } else if(this->animationcounter == 2 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostupred2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdownred2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleftred2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostrightred2.png")); } } if(this->enemynumber == 3){ this->player->themap->enemiescoords[2][0] = this->x_pos; this->player->themap->enemiescoords[2][1] = this->y_pos; if(this->animationcounter == 1 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostup1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdown1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleft1.png")); } else if(this->animationcounter == 1 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostright1.png")); } else if(this->animationcounter == 2 && this->currentdirection == 1){ this->setPixmap(QPixmap(":/images/ghostup2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 2){ this->setPixmap(QPixmap(":/images/ghostdown2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 3){ this->setPixmap(QPixmap(":/images/ghostleft2.png")); } else if(this->animationcounter == 2 && this->currentdirection == 4){ this->setPixmap(QPixmap(":/images/ghostright2.png")); } } this->animationcounter++; if(this->animationcounter == 3){ this->animationcounter = 1; } }
78b75f25414841a6413732704fc5122eaf4c40a1
05f0cab2f3c7426a0ae3bbe38e42e261c03ca49b
/application/sdk_server/unittest/mdcmem/mdcmem.cpp
e4d510182a2d488cd150f34d74a79e36af52916d
[]
no_license
JammyWei/ver30
199719eb7904db0b5d764a413e0ea6b7e8a26f6f
2e1fe0eeb6cef5c6e35a16e30226874a14b86f7d
refs/heads/master
2020-04-03T13:01:17.982783
2014-03-05T09:38:58
2014-03-05T09:38:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,968
cpp
mdcmem.cpp
#include <ipc_media_data_dispatch/ipc_media_data_client.h> #include <ipc_fw_v3.x_resource.h> #include <ipc_media_data_dispatch/ipc_media_data_dispatch.h> #include <media/gmi_media_ctrl.h> #define ERROR_INFO(...) do{fprintf(stderr,"%s:%s:%d[%ld]\t",__FILE__,__FUNCTION__,__LINE__,time(NULL));fprintf(stderr,__VA_ARGS__);}while(0) #define DEBUG_INFO(...) do{fprintf(stderr,"%s:%s:%d[%ld]\t",__FILE__,__FUNCTION__,__LINE__,time(NULL));fprintf(stderr,__VA_ARGS__);}while(0) int GetClientStream(IPC_MediaDataClient* pClient,int streamid,int *pRunningBits) { void* pBuffer=NULL; int bufsize=(1<<21); uint32_t buflen = 0; int serverport = GMI_STREAMING_MEDIA_SERVER_ENCODE_VIDEO1; int clientport = GMI_STREAMING_MEDIA_SDK_ENCODE_VIDEO1; unsigned int i; GMI_RESULT gmiret; int initialized=0; int registered=0; int ret; unsigned int exbuf[1024]; int exbufsize=1024; uint32_t exbuflen; struct timeval tmval; serverport += streamid; for(i=0; i<100; i++) { gmiret = pClient->Initialize(clientport,GM_STREAM_APPLICATION_ID); if(gmiret == GMI_SUCCESS) { break; } clientport += 1; } if(gmiret != GMI_SUCCESS) { ret = -errno ? -errno : -1; ERROR_INFO("could not initialize clientport %d error(%d)gmiret(0x%lx)\n",clientport,ret,gmiret); goto out; } initialized = 1; gmiret = pClient->Register(serverport,MEDIA_VIDEO_H264,streamid,true,NULL,NULL); if (gmiret != GMI_SUCCESS) { ret = -errno ? -errno : -1; ERROR_INFO("could not register port %d type %d streamid %d pullmode error(%d) gmiret(0x%lx)\n", serverport,MEDIA_VIDEO_H264,streamid,ret,gmiret); goto out; } registered = 1; pBuffer = malloc(bufsize); if (pBuffer == NULL) { ret = -errno ? -errno : -1; goto out; } while( pRunningBits && *pRunningBits ) { exbuflen = exbufsize; buflen = bufsize; gmiret = pClient->Read(pBuffer,&buflen,&tmval,exbuf,&exbuflen); if (gmiret == GMI_SUCCESS) { ExtMediaEncInfo* pInfo=(ExtMediaEncInfo*)exbuf; if ((pInfo->s_FrameNum % 200)==0) { DEBUG_INFO("[%d] type %d frameidx %d size %d\n", streamid,pInfo->s_FrameType,pInfo->s_FrameNum, pInfo->s_Length); } } else { usleep(40000); } } ret = 0; out: if (pBuffer) { free(pBuffer); } pBuffer = NULL; if (registered) { pClient->Unregister(); } registered = 0; if (initialized) { pClient->Deinitialize(); } initialized = 0; return ret; } static int st_RunLoop=1; void SigHandler(int signo) { if (signo == SIGINT || signo == SIGTERM) { st_RunLoop = 0; } } int main(int argc,char* argv[]) { int streamid=0; IPC_MediaDataClient *pClient=NULL; int ret; if (argc > 1) { streamid = atoi(argv[1]); } signal(SIGINT,SigHandler); signal(SIGTERM,SigHandler); pClient = new IPC_MediaDataClient(); ret = GetClientStream(pClient,streamid,&st_RunLoop); delete pClient; return ret; }