blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905 values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22 values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 3 10.4M | extension stringclasses 115 values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6dc46a01f4efc119dccf10f43ade042fb9f10b77 | 934b88d9a7c06b1e389c98adfa6e4b491f073604 | /Problem/Problem/1759.cpp | 552f9503a77c539a13a0637635fca91ccfa92f05 | [] | no_license | flash1117/Algorithm | cf7ac89588bd3c9fb03b7964559b6b16130e83d7 | 1331972e573aa6e6661cb37ff291c258a8ed456a | refs/heads/master | 2023-02-10T21:32:47.088851 | 2021-01-05T14:02:31 | 2021-01-05T14:02:31 | 152,283,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
int L, C;
char arr[16];
char pick[16];
bool isCollection(char ch) {
if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u') return true;
return false;
}
void makePassword(int depth, int cnt, int collectionCnt, int consonantCnt)
{
if (cnt == L && collectionCnt > 0 && consonantCnt > 1) {
for (int i = 0; i < L; i++)
cout << pick[i];
cout << "\n";
return;
}
else if (cnt == L) return;
if (depth >= C) return;
if (isCollection(arr[depth]))
{
pick[cnt] = arr[depth];
makePassword(depth + 1, cnt + 1, collectionCnt + 1, consonantCnt);
makePassword(depth + 1, cnt, collectionCnt, consonantCnt);
}
else {
pick[cnt] = arr[depth];
makePassword(depth + 1, cnt + 1, collectionCnt, consonantCnt + 1);
makePassword(depth + 1, cnt, collectionCnt, consonantCnt);
}
return;
}
int main() {
cin >> L >> C;
for (int i = 0; i < C; i++) {
cin >> arr[i];
}
sort(arr, arr + C);
makePassword(0, 0, 0, 0);
return 0;
} | [
"flash1117@naver.com"
] | flash1117@naver.com |
7c399f0c15c536c4ba1543cc0f1d6e58994a0c58 | 3567ccb566cc447302fae872048dbf4d887fdc05 | /1170.3.cpp | 4bded59f46fac25861f36739d82eb4e46012e6b8 | [] | no_license | jiezuowhu/WOJ-learn | 20fd2cb4aa92f19c2ed244114a20595d05a2e3e9 | 2f54defbe589b68c5ca5ae50edd1450ecc27a29f | refs/heads/master | 2021-01-15T22:04:29.721968 | 2013-03-18T14:33:42 | 2013-03-18T14:33:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | cpp | #include<iostream>
#include<algorithm>
#include<list>
using namespace std;
int main()
{
list<unsigned int> data;
while(1)
{
unsigned int a;
scanf("%d",&a);
if(a==0) break;
data.push_back(a);
}
data.sort();
list<unsigned int>::iterator end=unique(data.begin(),data.end());
list<unsigned int>::itrator pointer=data.begin();
for(;pointer!=end;pointer++) printf("%u ",*pointer);
printf("\n");
return 0;
} | [
"1069700995@qq.com"
] | 1069700995@qq.com |
971a1c1fd84c5f11449833c0ac8846250142868e | 69dd66ade564a4e011d5769870e195f584462c7a | /debugger/src/libdbg64g/services/exec/cmd/cmd_exit.cpp | 50aceb59773d67ae1e49dabb0f2443f3e11a6c36 | [
"Apache-2.0"
] | permissive | sergeykhbr/riscv_vhdl | 649c2414eb02ea7e6f69e67e7bfc3fde662299d9 | 462e8aac451265734f19d10fba700e58b304029f | refs/heads/master | 2023-08-26T05:48:11.325719 | 2023-08-25T11:02:27 | 2023-08-25T11:02:27 | 45,797,714 | 553 | 122 | Apache-2.0 | 2022-11-01T20:57:33 | 2015-11-08T20:30:57 | C++ | UTF-8 | C++ | false | false | 1,271 | cpp | /*
* Copyright 2023 Sergey Khabarov, sergeykhbr@gmail.com
*
* 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 "cmd_exit.h"
namespace debugger {
CmdExit::CmdExit(IService *parent, IJtag *ijtag)
: ICommandRiscv(parent, "exit", ijtag) {
briefDescr_.make_string("Exit and close application");
detailedDescr_.make_string(
"Description:\n"
" Immediate close the application and exit.\n"
"Example:\n"
" exit\n");
}
int CmdExit::isValid(AttributeType *args) {
if (!cmdName_.is_equal((*args)[0u].to_string())) {
return CMD_INVALID;
}
return CMD_VALID;
}
void CmdExit::exec(AttributeType *args, AttributeType *res) {
RISCV_break_simulation();
}
} // namespace debugger
| [
"sergeykhbr@gmail.com"
] | sergeykhbr@gmail.com |
7954fcacdd95b086f17bd355fe1cbc2fdf2591f1 | f3c8d78b4f8af9a5a0d047fbae32a5c2fca0edab | /Qt/mega_git_tests/Test_QGraphicsScene/other/graphicsscene/scene.cpp | ef9f957f2e1c788655cde98451d668ff5605d552 | [] | no_license | RinatB2017/mega_GIT | 7ddaa3ff258afee1a89503e42b6719fb57a3cc32 | f322e460a1a5029385843646ead7d6874479861e | refs/heads/master | 2023-09-02T03:44:33.869767 | 2023-08-21T08:20:14 | 2023-08-21T08:20:14 | 97,226,298 | 5 | 2 | null | 2022-12-09T10:31:43 | 2017-07-14T11:17:39 | C++ | UTF-8 | C++ | false | false | 590 | cpp | #include "scene.h"
#include "figures/rectfigure.h"
#include "figures/rhombfigure.h"
#include <QGraphicsSceneMouseEvent>
Scene::Scene(QObject *parent) : QGraphicsScene(parent), m_figureType(None) { }
void Scene::mousePressEvent(QGraphicsSceneMouseEvent *event) {
if (None == m_figureType) return;
QGraphicsItem *item;
switch (m_figureType) {
case Rect:
item = new RectFigure();
break;
case Rhomb:
item = new RhombFigure();
break;
}
item->setPos(event->scenePos());
addItem(item);
}
void Scene::on_tool_changed(FigureType type) { m_figureType = type; }
| [
"tux4096@gmail.com"
] | tux4096@gmail.com |
714d04f4538b0bf7f83b3ff4748caf8284aa3204 | d043caf3425cf6e4de3d589aaa40d2fd8735cfd4 | /include/viperfish_stats_window.hpp | eecea54379c003f8fa11b8a98ea2b3581617ca66 | [
"MIT"
] | permissive | microwerx/viperfish | b3aa4ebeda42e4345d375502017870351d7f38af | 3592242c31c59fef9c6e02584738147d8e999ec9 | refs/heads/master | 2021-07-05T21:03:13.877475 | 2020-11-29T06:49:08 | 2020-11-29T06:49:08 | 128,976,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,029 | hpp | #ifndef VIPERFISH_STATS_WINDOW_HPP
#define VIPERFISH_STATS_WINDOW_HPP
#include <viperfish_window.hpp>
namespace Vf {
class FloatStat {
public:
FloatStat(int max_samples = 100, float metric_low = FLT_MIN, float metric_high = FLT_MAX);
void push(float value);
inline void push(double value) { push((float)value); }
void push_difference(float value);
inline void push_difference(double value) { push_difference((float)value); }
void push_difference_inverse(float value);
inline void push_difference_inverse(double value) { push_difference_inverse((float)value); }
void plotLines(const char* label);
inline void plotLines(const std::string& label) { plotLines(label.c_str()); }
float get(int idx) const;
void set(int idx, float x);
bool visible = true;
float height = 0.0f;
private:
std::vector<float> metric{ 0.0f };
int metric_pl_start = 0;
int metric_pl_size = 0;
int metric_idx = 0;
int metric_len = 100;
int metric_max_len = 1000;
float metric_init_value = 0.0f;
float metric_last_value = 0.0f;
float metric_min_value = 0.0f;// FLT_MIN;
float metric_max_value = 1.0f;// FLT_MAX;
};
class StatsWindow : public Window {
public:
StatsWindow(const std::string& name);
virtual ~StatsWindow() override;
void OnUpdate(double timeStamp) override;
void OnRenderDearImGui() override;
std::string msg;
private:
std::string popupId;
static constexpr int MAX_SAMPLES = 256;
std::map<std::string, FloatStat> float_stats{
{ "et", { MAX_SAMPLES, 0.0f, 0.5f } },
{ "dt", { MAX_SAMPLES, 0.0f, 0.5f } },
{ "fps", { MAX_SAMPLES, 0.0f, 100.0f } },
{ "sin", { MAX_SAMPLES, -1.0f, 1.0f } },
{ "1noise", { MAX_SAMPLES, 0.0f, 1.0f } },
{ "2snoise", { MAX_SAMPLES, -1.0f, 1.0f } },
{ "3frac", { MAX_SAMPLES, -1.0f, 1.0f } },
{ "4turb", { MAX_SAMPLES, -1.0f, 1.0f } },
};
float min_freq = 1.0f;
float max_freq = 8.0f;
bool pause = false;
};
using StatsWindowPtr = std::shared_ptr<StatsWindow>;
}
#endif | [
"jmetzgar@outlook.com"
] | jmetzgar@outlook.com |
d9c70e6d3bfcabbd63f51c4cff98af71146d03cb | ceb404855b515145ac929d148679b1cbcec68025 | /Offer/41_ContinuesSquenceWithSum.cpp | a77db84747768231b94d4d64ff3261966a39b469 | [] | no_license | yananfan/CodeTest | a9e777ccb55c9725a398059a899a0da0b6a329a7 | 2c24348c7fd1854cfab7f364b9620aadba81e143 | refs/heads/master | 2020-04-24T22:10:57.272246 | 2019-12-15T10:00:53 | 2019-12-15T10:00:53 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 913 | cpp | //#define _ContinuesSquenceWithSum_
#ifdef _ContinuesSquenceWithSum_
#include<iostream>
using namespace std;
void PrintContinuousSequence(int small, int big);
void FindContinuousSequence(int sum);
int main()
{
int sum = 1;
while (sum) {
cout << "输入一个正数:" << endl;
cin >> sum;
FindContinuousSequence(sum);
}
return 0;
}
void PrintContinuousSequence(int small, int big) {
for (int i = small;i <= big;i++)
cout << i << " ";
cout << endl;
}
void FindContinuousSequence(int sum) {
if (sum < 3) {
cout << sum << " < 3." << endl;
return;
}
int p1 = 1, p2 = 2;
int mid = (1 + sum) / 2;
int tempSum = p1 + p2;
while (p1 < mid) {
if (tempSum == sum)
PrintContinuousSequence(p1, p2);
while (tempSum > sum && p1 < mid) {
tempSum -= p1;
p1++;
if (tempSum == sum)
PrintContinuousSequence(p1, p2);
}
p2++;
tempSum += p2;
}
}
#endif // _ContinuesSquenceWithSum_ | [
"ynfanstudy@sina.com"
] | ynfanstudy@sina.com |
ffefb7ad5bae7ad89576874080103b2e78b35f5c | c75a6d975a721c18222fdf2f53ca854a137eb557 | /lib/lib.cpp | f3573fc43c11badf881ceed5338f81e73b1d19af | [] | no_license | JackShieh529/TOMGRO.TokairinLab_2019 | 4c857125bbb76b9edf50f9765cbd1fded6d643b2 | 9ed574f9c903240f9ed5f467d53ffecb6c778ef1 | refs/heads/master | 2021-01-02T15:44:33.120589 | 2019-06-21T09:20:24 | 2019-06-21T09:20:24 | 239,688,524 | 1 | 0 | null | 2020-02-11T06:02:56 | 2020-02-11T06:02:55 | null | UTF-8 | C++ | false | false | 1,194 | cpp | #include "lib.hpp"
#include <iostream>
#include <vector>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/foreach.hpp>
#include <boost/optional.hpp>
namespace tomgro{
//PRIVATE FUNCTION
private std::vector<std::string> split(std::string& input, char delimiter){
std::istringstream stream(input);
std::string field;
std::vector<std::string> result;
while (getline(stream, field, delimiter)) {
result.push_back(field);
}
return result;
}
private fixIndex(std::string &replacedStr){
}
void FileIO::test(){
std::cout << "Hello World!" << std::endl;
}
std::unordered_map<std::string, double> FileIO::inputData(std::string fileName){
std::ifstream ifs(fileName);
if(!ifs.is_open()){
std::unordered_map<std::string, double> fault{{"Error", -1}};
return fault;
}
while (!ifs.eof()){
std::string buffer;
ifs >> buffer;
std::cout << buffer << std::endl;
}
}
//std::unordered_map<std::string, double> FileIO::initialCondition(std::string fileName);
//std::unordered_map<std::string, double> FileIO::inputWeather(std::string fileName);
} | [
"shota.y2011@gmail.com"
] | shota.y2011@gmail.com |
6a4c0c02653063e928f11a612261c679565a9008 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /components/offline_pages/core/background/pending_state_updater.cc | bf2e70acc0960085da5cd8197169bfd9e929d387 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 2,327 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/offline_pages/core/background/pending_state_updater.h"
#include "components/offline_items_collection/core/pending_state.h"
#include "components/offline_pages/core/background/request_coordinator.h"
namespace offline_pages {
PendingStateUpdater::PendingStateUpdater(
RequestCoordinator* request_coordinator)
: request_coordinator_(request_coordinator),
requests_pending_another_download_(false),
weak_ptr_factory_(this) {}
PendingStateUpdater::~PendingStateUpdater() {}
void PendingStateUpdater::UpdateRequestsOnLossOfNetwork() {
requests_pending_another_download_ = false;
request_coordinator_->GetAllRequests(
base::BindOnce(&PendingStateUpdater::NotifyChangedPendingStates,
weak_ptr_factory_.GetWeakPtr()));
}
void PendingStateUpdater::UpdateRequestsOnRequestPicked(
const int64_t picked_request_id,
std::unique_ptr<std::vector<SavePageRequest>> available_requests) {
// Requests do not need to be updated.
if (requests_pending_another_download_)
return;
// All available requests expect for the picked request changed to waiting
// for another download to complete.
for (auto& request : *available_requests) {
if (request.request_id() != picked_request_id) {
request.set_pending_state(PendingState::PENDING_ANOTHER_DOWNLOAD);
request_coordinator_->NotifyChanged(request);
}
}
requests_pending_another_download_ = true;
}
void PendingStateUpdater::SetPendingState(SavePageRequest& request) {
if (request.request_state() == SavePageRequest::RequestState::AVAILABLE) {
if (request_coordinator_->state() ==
RequestCoordinator::RequestCoordinatorState::OFFLINING) {
request.set_pending_state(PendingState::PENDING_ANOTHER_DOWNLOAD);
} else {
requests_pending_another_download_ = false;
request.set_pending_state(PendingState::PENDING_NETWORK);
}
}
}
void PendingStateUpdater::NotifyChangedPendingStates(
std::vector<std::unique_ptr<SavePageRequest>> requests) {
for (const auto& request : requests) {
request_coordinator_->NotifyChanged(*request);
}
}
} // namespace offline_pages
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
9aa62ebafc106f50b84b10ef6d9a84afbd65a1e4 | c7d4d31e26e4ee4a13f21050fc8a96005b1a2a24 | /ABC090/C.cpp | 1a46d1701dac7c8aa35d1042593c573433933843 | [] | no_license | motacapla/ProgrammingContest-Atcoder-etc- | c26840bf435159ed46c44b3ec37f0ad6e4a722e5 | a647b9656b1656ce7da73f8e66a54d353765717b | refs/heads/master | 2021-10-28T06:25:40.276550 | 2021-10-23T11:29:37 | 2021-10-23T11:29:37 | 141,571,371 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
const int e = 1e9;
int
main(void){
int n, m;
cin>>n>>m;
long long count = 0L;
int one = 1;
if(n == 1 && m == 1){cout << one << endl;}
else if(n == 1 && m > 1){cout << m-2 << endl;}
else if(m == 1 && n > 1){cout << n-2 << endl;}
else{
cout << (m-2)*(n-2) << endl;
}
return 0;
}
| [
"tikeda@IN6-MAC-tikeda.local"
] | tikeda@IN6-MAC-tikeda.local |
9ed35c42330197e6bdc96587d3543dc3ecec5232 | dd71975e17363cd4fff13a8979ebd81f360058a4 | /Source/ToolCore/Assets/SceneImporter.h | 947743ae30bbf3903c4456e611ebf82c33cf8a6c | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | honigbeutler123/AtomicGameEngine | 95403fa3db60553270716d7fe9811ba9b4403070 | 2393fd70315120a3879d2db5f1e955dba75a898c | refs/heads/master | 2023-05-07T11:53:58.631217 | 2023-04-14T09:20:38 | 2023-04-14T09:20:38 | 53,612,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,282 | h | //
// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
// LICENSE: Atomic Game Engine Editor and Tools EULA
// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
//
#pragma once
#include "AssetImporter.h"
namespace ToolCore
{
class SceneImporter : public AssetImporter
{
OBJECT(SceneImporter);
public:
/// Construct.
SceneImporter(Context* context, Asset *asset);
virtual ~SceneImporter();
virtual void SetDefaults();
/// Set the scene camera's rotation
void SetSceneCamRotation(const Quaternion& rotation) { sceneCamRotation_ = rotation; }
/// Set the scene camera's position
void SetSceneCamPosition(const Vector3& position) { sceneCamPosition_ = position; }
/// Get the scene camera's rotation
const Quaternion& GetSceneCamRotation() const { return sceneCamRotation_; }
/// Get the scene camera's position
const Vector3& GetSceneCamPosition() const { return sceneCamPosition_; }
protected:
bool Import();
virtual bool LoadSettingsInternal(JSONValue& jsonRoot);
virtual bool SaveSettingsInternal(JSONValue& jsonRoot);
Quaternion sceneCamRotation_;
Vector3 sceneCamPosition_;
};
}
| [
"josh@galaxyfarfaraway.com"
] | josh@galaxyfarfaraway.com |
c26b2bbc67c79d15b24c142a5abb0ea8ba57fbdb | 0767c3aa243d2f5525c30431babee96c2afe8fa0 | /src/main.cpp | 4e0991c5d661a3ae26dc092a2f27a8dc9b2de49a | [] | no_license | agdang/modu | 240f7df20fbb242b9aeea58bd3a04a1957e90a1e | a28ecc67d07cee56b50fa549dd41f69892b473c0 | refs/heads/master | 2021-01-21T17:37:17.196748 | 2017-07-18T21:18:37 | 2017-07-18T21:18:37 | 91,260,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,655 | cpp | #include <cmath>
#include "app.h"
#include "tile.h"
#include "map.h"
#include "draw.h"
#include "gameworld.h"
#include "gamewindow.h"
int main(int argc, char* argv[])
{
App::Init();
App::Cycle();
App::Close();
/*int WINDOW_WIDTH = (32 * TILE_SIZE) + TILE_SIZE; int WINDOW_HEIGHT = WINDOW_WIDTH;
GameWindow* gameWindow = new GameWindow(WINDOW_WIDTH, WINDOW_HEIGHT);
GameWorld* gameWorld = new GameWorld;
map* m = new map(20, 20);
gameWorld->AddMap(m);
map& currentMap = gameWorld->LoadMap(m);
unsigned short int viewRadius = 15;
unsigned short int viewH;
bool running = true;
while (running)
{
int worldOffsetX = (gameWindow->width / 2) - (TILE_SIZE / 2);
int worldOffsetY = (gameWindow->height / 2) - (TILE_SIZE / 2);
int playerUpTileY = currentMap.offsetY - 1; int playerUpTileX = currentMap.offsetX;
int playerDownTileY = currentMap.offsetY + 1; int playerDownTileX = currentMap.offsetX;
int playerLeftTileY = currentMap.offsetY; int playerLeftTileX = currentMap.offsetX - 1;
int playerRightTileY= currentMap.offsetY; int playerRightTileX= currentMap.offsetX + 1;
SDL_Event event;
if (SDL_WaitEvent(&event))
{
switch (event.type)
{
case SDL_QUIT: running = false; break;
case SDL_KEYDOWN:
switch (event.key.keysym.sym)
{
case SDLK_UP: case SDLK_KP_8:
if (playerUpTileY >= 0
&& currentMap.GetTile(playerUpTileX, playerUpTileY)->solid != true)
{
currentMap.offsetY--;
}
break;
case SDLK_DOWN: case SDLK_KP_2:
if (playerDownTileY < currentMap.height
&& currentMap.GetTile(playerDownTileX, playerDownTileY)->solid != true)
{
currentMap.offsetY++;
}
break;
case SDLK_LEFT: case SDLK_KP_4:
if (playerLeftTileX >= 0
&& currentMap.GetTile(playerLeftTileX, playerLeftTileY)->solid != true)
{
currentMap.offsetX--;
}
break;
case SDLK_RIGHT: case SDLK_KP_6:
if (playerRightTileX < currentMap.width
&& currentMap.GetTile(playerRightTileX, playerRightTileY)->solid != true)
{
currentMap.offsetX++;
}
break;
case SDLK_KP_7:
if (playerUpTileY >= 0
&& playerLeftTileX >= 0
&& currentMap.GetTile(playerUpTileX - 1, playerUpTileY)->solid != true)
{
currentMap.offsetY--;
currentMap.offsetX--;
}
break;
case SDLK_KP_9:
if (playerUpTileY >= 0
&& playerRightTileX < currentMap.width
&& currentMap.GetTile(playerUpTileX + 1, playerUpTileY)->solid != true)
{
currentMap.offsetY--;
currentMap.offsetX++;
}
break;
case SDLK_KP_1:
if (playerDownTileY < currentMap.height
&& playerLeftTileX >= 0
&& currentMap.GetTile(playerDownTileX - 1, playerDownTileY)->solid != true)
{
currentMap.offsetY++;
currentMap.offsetX--;
}
break;
case SDLK_KP_3:
if (playerDownTileY < currentMap.height
&& playerRightTileX < currentMap.width
&& currentMap.GetTile(playerDownTileX + 1, playerDownTileY)->solid != true)
{
currentMap.offsetY++;
currentMap.offsetX++;
}
break;
case SDLK_q: running = false; break;
case SDLK_EQUALS: viewRadius += 1; break;
case SDLK_MINUS: if (viewRadius > 0) viewRadius -= 1; break;
case SDLK_1: currentMap = gameWorld->LoadMap(m); break;
}
break;
}
}
SDL_SetRenderDrawColor(gameWindow->renderer, 0, 0, 0, 255);
gameWindow->Clear();
for (int i = -viewRadius; i < viewRadius + 1; i++)
{
viewH = static_cast<unsigned int> (sqrt(viewRadius * viewRadius - i * i));
for (int j = -viewH; j < viewH + 1; j++)
{
int tileMapIndexX = i + currentMap.offsetX;
int tileMapIndexY = j + currentMap.offsetY;
int tileScreenPosX = worldOffsetX + i*TILE_SIZE;
int tileScreenPosY = worldOffsetY + j*TILE_SIZE;
if (tileScreenPosX >= 0
&& tileScreenPosX < WINDOW_WIDTH
&& tileScreenPosY >= 0
&& tileScreenPosY < WINDOW_HEIGHT)
{
if (tileMapIndexY >= 0
&& tileMapIndexY < currentMap.height
&& tileMapIndexX >= 0 && tileMapIndexX < currentMap.width)
Draw(gameWindow->renderer,
*currentMap.GetTile(tileMapIndexX, tileMapIndexY),
currentMap.offsetX,
currentMap.offsetY,
worldOffsetX, worldOffsetY);
}
}
}
SDL_SetRenderDrawColor(gameWindow->renderer, 40, 40, 255, 255);
static SDL_Rect player = { worldOffsetX, worldOffsetY, TILE_SIZE, TILE_SIZE };
SDL_RenderFillRect(gameWindow->renderer, &player);
gameWindow->Update();
}
delete gameWorld;
delete gameWindow;
SDL_Quit();
*/
return 0;
}
| [
"magicalsm@protonmail.com"
] | magicalsm@protonmail.com |
e326c79d4c1b17627cdbe46b5982b74db5114922 | 757f737bc70aed0293b61a8d4e6c397a077de025 | /ocr_2/predict.h | ebd63e60e04a490094c58021de1e1382389118a1 | [] | no_license | zgsxwsdxg/ocr3 | f4085f1460703ae7f37185641dae52b0ae257127 | fb3a994b0703daebcd71cd6b24b0297eebf2b29f | refs/heads/master | 2021-01-20T12:21:28.974680 | 2016-01-07T01:22:37 | 2016-01-07T01:22:37 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 779 | h |
#ifndef _PREDICT_H_
#define _PREDICT_H_
#include<vector>
#include<opencv2\opencv.hpp>
//实现特征提取并预测的函数
/*
*输入 resultpath 结果路径
*输入 vvM 二维字块数组
*返回值 0,代表正常
*/
int predict(const char* resultpath, const std::vector<std::vector<cv::Mat>>& vvM);
/*
*输入 vvM 二维字块数组
*输出 vvi 根据vvM字块预测的结果(汉字在字典的标号,用int 类型表示),二维数组
*返回值 0,代表正常 ,负值代表异常
*/
int predict(const std::vector<cv::Mat>& vM, std::vector<int>& vi);
//备用接口,暂时不用管
/*
*输入 charMat 分割好的字符
*
*返回值 汉字在字典的标号,用int 类型表示, 负值代表异常
*/
int predict(const cv::Mat& charMat);
#endif | [
"1099905725@qq.com"
] | 1099905725@qq.com |
a99b61294f8b1401ae6c0da838c9ecf35822e60d | 07c43092ac87907bdaeecff136b125b4f77182c2 | /third_party/LLVM/include/llvm/ExecutionEngine/Interpreter.h | 7425cdbcfda821dfda614e83ce5d35d1515d647a | [
"NCSA",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ddrmax/swiftshader-ex | 9cd436f2a0e8bc9e0966de148e5a60f974c4b144 | 2d975b5090e778857143c09c21aa24255f41e598 | refs/heads/master | 2021-04-27T15:14:22.444686 | 2018-03-15T10:12:49 | 2018-03-15T10:12:49 | 122,465,205 | 7 | 0 | Apache-2.0 | 2018-03-15T10:12:50 | 2018-02-22T10:40:03 | C++ | UTF-8 | C++ | false | false | 1,221 | h | //===-- Interpreter.h - Abstract Execution Engine Interface -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file forces the interpreter to link in on certain operating systems.
// (Windows).
//
//===----------------------------------------------------------------------===//
#ifndef EXECUTION_ENGINE_INTERPRETER_H
#define EXECUTION_ENGINE_INTERPRETER_H
#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include <cstdlib>
extern "C" void LLVMLinkInInterpreter();
namespace {
struct ForceInterpreterLinking {
ForceInterpreterLinking() {
// We must reference the passes in such a way that compilers will not
// delete it all as dead code, even with whole program optimization,
// yet is effectively a NO-OP. As the compiler isn't smart enough
// to know that getenv() never returns -1, this will do the job.
if (std::getenv("bar") != (char*) -1)
return;
LLVMLinkInInterpreter();
}
} ForceInterpreterLinking;
}
#endif
| [
"capn@google.com"
] | capn@google.com |
6136ef1b0f588b6f342ddb189ed25ac8a5f5f083 | 31287dccda1fa0be67d87c61175fc7e9206134e8 | /QtBook/Paint/Base/ArcChordPieWidget.cpp | 2924e9e4a181e7e1851c5d6daa6e55f8a51ae5f1 | [] | no_license | xtuer/Qt | 83c9407f92cef8f0d1b702083bb51ea29d69f18a | 01d3862353f88a64e3c4ea76d4ecdd1d98ab1806 | refs/heads/master | 2022-06-02T02:32:56.694458 | 2022-05-29T13:06:48 | 2022-05-29T13:06:48 | 55,279,709 | 15 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 1,297 | cpp | #include "ArcChordPieWidget.h"
#include "ui_ArcChordPieWidget.h"
#include <QPainter>
ArcChordPieWidget::ArcChordPieWidget(QWidget *parent) : QWidget(parent), ui(new Ui::ArcChordPieWidget) {
ui->setupUi(this);
}
ArcChordPieWidget::~ArcChordPieWidget() {
delete ui;
}
void ArcChordPieWidget::paintEvent(QPaintEvent *) {
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
static int startAngle = 45 * 16; // 开始角度是 45 度
static int spanAngle = 130 * 16; // 覆盖角度为 130 度
static QRectF boundingRect(0, 0, 150, 150); // 包围矩形
painter.translate(30, 30);
painter.setBrush(Qt::NoBrush);
painter.drawRect(boundingRect); // 绘制包围矩形
painter.setBrush(Qt::lightGray);
painter.drawArc(boundingRect, startAngle, spanAngle); // 画弧
painter.translate(180, 0);
painter.setBrush(Qt::NoBrush);
painter.drawRect(boundingRect); // 绘制包围矩形
painter.setBrush(Qt::lightGray);
painter.drawChord(boundingRect, startAngle, spanAngle); // 画弦
painter.translate(180, 0);
painter.setBrush(Qt::NoBrush);
painter.drawRect(boundingRect); // 绘制包围矩形
painter.setBrush(Qt::lightGray);
painter.drawPie(boundingRect, startAngle, spanAngle); // 画饼图
}
| [
"biao.mac@icloud.com"
] | biao.mac@icloud.com |
8b7f5e596d50409267eac55fd0bdeb06e5994bbe | ba55358fd3311f51921b1f306d49ac703e8d5245 | /app/linAdvEuler/0/rho_Ref | ef8ba7c407ca9cd31b1ec3f827a5e25bbcd143b0 | [
"BSD-3-Clause",
"MPL-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | vachan-potluri/MEANDG | c90548fbf69032ab0c81dcbb599714f7e9c18ff9 | a4a22653b5d71b186e179519b0d26a21d3faf1b5 | refs/heads/master | 2020-06-05T16:11:51.118808 | 2019-06-25T06:52:31 | 2019-06-25T06:52:31 | 192,481,019 | 0 | 0 | BSD-3-Clause | 2019-06-18T06:40:10 | 2019-06-18T06:40:09 | null | UTF-8 | C++ | false | false | 3,404 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object rho;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField nonuniform List<scalar>
270
(
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.58072
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
0.116144
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
outlet
{
type zeroGradient;
}
sides
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"smjoshi07@gmail.com"
] | smjoshi07@gmail.com | |
14d44edb1edc904a95e7fe64e71bf5535eae2d8a | b2109a078a2fc321f98b7a96c9f06927b60a2a7c | /ftnoir_filter_ewma2/ftnoir_filter_ewma2.h | f3422a71325cb15410240e5efb146b803c7d7fbe | [] | no_license | dbaarda/facetracknoir-posix | bfdf33198d251d7594fff0ae8ab224828260afdb | 4609f66b337d064462208c304461f00d7525f092 | refs/heads/master | 2016-09-05T15:16:48.133356 | 2013-02-25T04:23:35 | 2013-02-25T04:23:35 | 8,289,382 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,441 | h | /********************************************************************************
* FaceTrackNoIR This program is a private project of some enthusiastic *
* gamers from Holland, who don't like to pay much for *
* head-tracking. *
* *
* Copyright (C) 2012 Wim Vriend (Developing) *
* Ron Hendriks (Researching and Testing) *
* *
* Homepage *
* *
* 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 INCLUDED_FTN_FILTER_H
#define INCLUDED_FTN_FILTER_H
#include "ftnoir_filter_base/ftnoir_filter_base.h"
#include "facetracknoir/global-settings.h"
#include "ui_ftnoir_ewma_filtercontrols.h"
#include <QWidget>
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// EWMA Filter: Exponentially Weighted Moving Average filter with dynamic smoothing parameter
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class FTNoIR_Filter : public IFilter
{
public:
FTNoIR_Filter();
~FTNoIR_Filter();
void Initialize();
void FilterHeadPoseData(THeadPoseData *current_camera_position, THeadPoseData *target_camera_position, THeadPoseData *new_camera_position, bool newTarget);
private:
void loadSettings(); // Load the settings from the INI-file
THeadPoseData newHeadPose; // Structure with new headpose
bool first_run;
float smoothing_frames_range;
float alpha_smoothing;
float prev_alpha[6];
float alpha[6];
float smoothed_alpha[6];
float kMinSmoothing;
float kMaxSmoothing;
float kSmoothingScaleCurve;
};
//*******************************************************************************************************
// FaceTrackNoIR Filter Settings-dialog.
//*******************************************************************************************************
// Widget that has controls for FTNoIR protocol filter-settings.
class FilterControls: public QWidget, Ui::UICFilterControls, public IFilterDialog
{
Q_OBJECT
public:
explicit FilterControls();
virtual ~FilterControls();
void showEvent ( QShowEvent * event );
void Release(); // Member functions which are accessible from outside the DLL
void Initialize(QWidget *parent, IFilter* ptr);
private:
Ui::UICFilterControls ui;
void loadSettings();
void save();
/** helper **/
bool settingsDirty;
IFilter* pFilter; // If the filter was active when the dialog was opened, this will hold a pointer to the Filter instance
private slots:
void doOK();
void doCancel();
void settingChanged() { settingsDirty = true; };
void settingChanged( int ) { settingsDirty = true; };
};
//*******************************************************************************************************
// FaceTrackNoIR Filter DLL. Functions used to get general info on the Filter
//*******************************************************************************************************
class FTNoIR_FilterDll : public Metadata
{
public:
FTNoIR_FilterDll();
~FTNoIR_FilterDll();
void Release();
void Initialize();
void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("EWMA Filter Mk2"); };
void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("EWMA"); };
void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("Exponentially Weighted Moving Average filter with dynamic smoothing parameter"); };
void getIcon(QIcon *icon){ *icon = QIcon(":/images/filter-16.png"); };
};
#endif //INCLUDED_FTN_FILTER_H
//END
| [
"sthalik@misaki.pl"
] | sthalik@misaki.pl |
5bba02381de9435fbfe50a578cc072de02236109 | 9c079c10fb9f90ff15181b3bdd50ea0435fbc0cd | /Codeforces/978A.cpp | 6afdce50c01a6d5bda2b4d4d9d1e2ba91e6e8ff1 | [] | no_license | shihab122/Competitive-Programming | 73d5bd89a97f28c8358796367277c9234caaa9a4 | 37b94d267fa03edf02110fd930fb9d80fbbe6552 | refs/heads/master | 2023-04-02T20:57:50.685625 | 2023-03-25T09:47:13 | 2023-03-25T09:47:13 | 148,019,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 489 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
int n;
scanf("%d",&n);
map<int,int>mp;
int cnt=0;
vector<int>vc;
int arr[n+1];
for(int i=0;i<n;i++){
scanf("%d",&arr[i]);
mp[arr[i]]++;
}
for(int i=0;i<n;i++){
mp[arr[i]]--;
if(mp[arr[i]]==0) cnt++,vc.push_back(arr[i]);
}
printf("%d\n",cnt);
for(int i=0;i<vc.size();i++) printf("%d ",vc[i]);
printf("\n");
return 0;
}
| [
"shihabhossain611@gmail.com"
] | shihabhossain611@gmail.com |
dde0d1b19398202ad76e48a83e6898b75b573190 | b1b734ab75a6fe114733d3c0b8ca5046d54b407d | /third_party/ComputeLibrary/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp | 52880a378f3b071133422c522286790f6ba1b58e | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause",
"Apache-2.0",
"MIT"
] | permissive | waybarrios/video_nonlocal_net_caffe2 | 754fea2b96318d677144f16faadf59cb6b00189b | b19c2ac3ddc1836d90d7d0fccb60d710c017253e | refs/heads/master | 2020-04-20T03:15:12.286080 | 2019-01-31T20:44:01 | 2019-01-31T20:44:01 | 168,593,110 | 0 | 0 | Apache-2.0 | 2019-01-31T20:40:40 | 2019-01-31T20:40:39 | null | UTF-8 | C++ | false | false | 18,274 | cpp | /*
* Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* 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 OR COPYRIGHT HOLDERS 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.
*/
#include "arm_compute/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.h"
#include "arm_compute/core/AccessWindowStatic.h"
#include "arm_compute/core/Error.h"
#include "arm_compute/core/Helpers.h"
#include "arm_compute/core/ITensor.h"
#include "arm_compute/core/NEON/NEAsymm.h"
#include "arm_compute/core/NEON/NEFixedPoint.h"
#include "arm_compute/core/Types.h"
#include "arm_compute/core/Validate.h"
#include "arm_compute/core/Window.h"
#include <arm_neon.h>
#include <cstddef>
#include <cstdint>
using namespace arm_compute;
namespace
{
Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output)
{
ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QASYMM8,
DataType::QS16, DataType::F16,
DataType::QS32, DataType::S32, DataType::F32);
if(bias != nullptr)
{
ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::QS32, DataType::S32, DataType::F32);
if(is_data_type_fixed_point(input->data_type()))
{
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS8 && bias->data_type() != DataType::QS8, "Wrong data type for bias");
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS16 && bias->data_type() != DataType::QS8, "Wrong data type for bias");
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS32 && bias->data_type() != DataType::QS16, "Wrong data type for bias");
ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT_POSITION(input, bias);
}
else
{
ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
}
ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
}
else
{
ARM_COMPUTE_RETURN_ERROR_ON_MSG(!is_data_type_quantized(input->data_type()), "Calling output stage kernel with floating point arguments");
}
// Checks performed when output is configured
if((output != nullptr) && (output->total_size() != 0))
{
ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QS8, DataType::QASYMM8, DataType::QS16, DataType::F32);
if(is_data_type_fixed_point(input->data_type()))
{
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS8 && output->data_type() != DataType::QS8, "Wrong data type for output");
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS16 && output->data_type() != DataType::QS8, "Wrong data type for output");
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::QS32 && output->data_type() != DataType::QS16, "Wrong data type for output");
ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT_POSITION(input, output);
}
else if(is_data_type_quantized_asymmetric(output->data_type()))
{
ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_type() == DataType::S32 && output->data_type() != DataType::QASYMM8, "Wrong data type for bias");
}
else
{
ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
}
}
return Status{};
}
std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
{
bool window_changed = false;
unsigned int num_elems_processed_per_iteration = 16 / element_size_from_data_type(input->data_type());
// Update processed elements when input is S32 (comes from quantization input)
if(input->data_type() == DataType::S32)
{
num_elems_processed_per_iteration = 16;
}
// Configure kernel window
Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
if(output != nullptr && (output->total_size() != 0))
{
AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
if(bias == nullptr)
{
window_changed = update_window_and_padding(win, input_access, output_access);
}
else
{
AccessWindowStatic bias_access(bias, 0, 0, bias->dimension(0), bias->dimension(1));
window_changed = update_window_and_padding(win, input_access, output_access, bias_access);
}
output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
}
else
{
if(bias == nullptr)
{
window_changed = update_window_and_padding(win, input_access);
}
else
{
AccessWindowStatic bias_access(bias, 0, 0, bias->dimension(0), bias->dimension(1));
window_changed = update_window_and_padding(win, input_access, bias_access);
}
input_access.set_valid_region(win, ValidRegion(Coordinates(), input->tensor_shape()));
}
Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
return std::make_pair(err, win);
}
// Internal load
inline float32x4_t internal_vld1q(const float *in)
{
return vld1q_f32(in);
}
inline qint8x16_t internal_vld1q(const qint8_t *in)
{
return vld1q_qs8(in);
}
inline qint16x8_t internal_vld1q(const qint16_t *in)
{
return vld1q_qs16(in);
}
inline qint32x4_t internal_vld1q(const qint32_t *in)
{
return vld1q_s32(in);
}
// Internal store
inline void internal_vst1q(float *p, const float32x4_t &v)
{
vst1q_f32(p, v);
}
inline void internal_vst1q(qint8_t *p, const qint8x16_t &v)
{
vst1q_qs8(p, v);
}
inline void internal_vst1q(qint8_t *p, const qint16x8_t &v)
{
vst1_qs8(p, vqmovn_s16(v));
}
inline void internal_vst1q(qint16_t *p, const qint16x8_t &v)
{
vst1q_qs16(p, v);
}
inline void internal_vst1q(qint32_t *p, const qint32x4_t &v)
{
vst1q_s32(p, v);
}
inline void internal_vst1q(qint16_t *p, const qint32x4_t &v)
{
vst1_qs16(p, vqmovn_qs32(v));
}
// Internal vdup
inline float32x4_t internal_vdupq_n(float v)
{
return vdupq_n_f32(v);
}
inline qint8x16_t internal_vdupq_n(qint8_t v)
{
return vdupq_n_qs8(v);
}
inline qint16x8_t internal_vdupq_n(qint16_t v)
{
return vdupq_n_qs16(v);
}
inline qint32x4_t internal_vdupq_n(qint32_t v)
{
return vdupq_n_qs32(v);
}
// Internal vadd
inline float32x4_t internal_vqaddq(const float32x4_t &x, const float32x4_t &y)
{
return vaddq_f32(x, y);
}
inline qint8x16_t internal_vqaddq(const qint8x16_t &x, const qint8x16_t &y)
{
return vqaddq_qs8(x, y);
}
inline qint16x8_t internal_vqaddq(const qint16x8_t &x, const qint16x8_t &y)
{
return vqaddq_qs16(x, y);
}
inline qint32x4_t internal_vqaddq(const qint32x4_t &x, const qint32x4_t &y)
{
return vqaddq_qs32(x, y);
}
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
inline float16x8_t internal_vld1q(const float16_t *in)
{
return vld1q_f16(in);
}
inline void internal_vst1q(float16_t *p, const float16x8_t &v)
{
vst1q_f16(p, v);
}
inline float16x8_t internal_vdupq_n(float16_t v)
{
return vdupq_n_f16(v);
}
inline float16x8_t internal_vqaddq(const float16x8_t &x, const float16x8_t &y)
{
return vaddq_f16(x, y);
}
#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
template <typename T1, typename T2, bool in_place, bool has_bias>
void output_stage(ITensor *input, const ITensor *bias, const Window &window, ITensor *output,
int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift)
{
ARM_COMPUTE_UNUSED(result_fixedpoint_multiplier);
ARM_COMPUTE_UNUSED(result_shift);
ARM_COMPUTE_UNUSED(result_offset_after_shift);
Iterator in(input, window);
if(in_place) // In place accumulate
{
execute_window_loop(window, [&](const Coordinates & id)
{
// Get bias and pointer to input
const auto in_ptr = reinterpret_cast<T1 *>(in.ptr());
// Accumulate bias
if(has_bias)
{
const auto vb = internal_vdupq_n(static_cast<T1>(*reinterpret_cast<const T2 *>(bias->ptr_to_element(Coordinates(id.z())))));
internal_vst1q(in_ptr, internal_vqaddq(internal_vld1q(in_ptr), vb));
}
else
{
internal_vst1q(in_ptr, internal_vld1q(in_ptr));
}
},
in);
}
else // Out of place accumulate
{
Iterator out(output, window);
execute_window_loop(window, [&](const Coordinates & id)
{
// Get bias and pointer to input
const auto in_ptr = reinterpret_cast<const T1 *>(in.ptr());
const auto out_ptr = reinterpret_cast<T2 *>(out.ptr());
// Accumulate bias
if(has_bias)
{
const auto vb = internal_vdupq_n(static_cast<T1>(*reinterpret_cast<const T2 *>(bias->ptr_to_element(Coordinates(id.z())))));
internal_vst1q(out_ptr, internal_vqaddq(internal_vld1q(in_ptr), vb));
}
else
{
internal_vst1q(out_ptr, internal_vld1q(in_ptr));
}
},
in, out);
}
}
// QASYMM8 specializations
template <>
void output_stage<int32_t, uint8_t, false, true>(ITensor *input, const ITensor *bias, const Window &window, ITensor *output,
int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift)
{
const int32x4_t result_offset_after_shift_s32 = vdupq_n_s32(result_offset_after_shift);
uint8x16_t min = vdupq_n_u8(0);
uint8x16_t max = vdupq_n_u8(255);
Iterator in(input, window);
Iterator out(output, window);
execute_window_loop(window, [&](const Coordinates & id)
{
// Get bias and pointer to input
const auto in_ptr = reinterpret_cast<int32_t *>(in.ptr());
int32x4x4_t v_in =
{
{
vld1q_s32(in_ptr),
vld1q_s32(in_ptr + 4),
vld1q_s32(in_ptr + 8),
vld1q_s32(in_ptr + 12)
}
};
// Accumulate bias
const auto vb = vdupq_n_s32(*reinterpret_cast<const int32_t *>(bias->ptr_to_element(Coordinates(id.z()))));
v_in =
{
{
vaddq_s32(v_in.val[0], vb),
vaddq_s32(v_in.val[1], vb),
vaddq_s32(v_in.val[2], vb),
vaddq_s32(v_in.val[3], vb)
}
};
const auto out_ptr = reinterpret_cast<uint8_t *>(out.ptr());
vst1q_u8(out_ptr, finalize_quantization<false>(v_in, result_fixedpoint_multiplier, result_shift, result_offset_after_shift_s32, min, max));
},
in, out);
}
template <>
void output_stage<int32_t, uint8_t, false, false>(ITensor *input, const ITensor *bias, const Window &window, ITensor *output,
int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift)
{
ARM_COMPUTE_UNUSED(bias);
const int32x4_t result_offset_after_shift_s32 = vdupq_n_s32(result_offset_after_shift);
uint8x16_t min = vdupq_n_u8(0);
uint8x16_t max = vdupq_n_u8(255);
Iterator in(input, window);
Iterator out(output, window);
execute_window_loop(window, [&](const Coordinates & id)
{
// Get bias and pointer to input
const auto in_ptr = reinterpret_cast<int32_t *>(in.ptr());
int32x4x4_t v_in =
{
{
vld1q_s32(in_ptr),
vld1q_s32(in_ptr + 4),
vld1q_s32(in_ptr + 8),
vld1q_s32(in_ptr + 12)
}
};
const auto out_ptr = reinterpret_cast<uint8_t *>(out.ptr());
vst1q_u8(out_ptr, finalize_quantization<false>(v_in, result_fixedpoint_multiplier, result_shift, result_offset_after_shift_s32, min, max));
},
in, out);
}
} // namespace
NEDirectConvolutionLayerOutputStageKernel::NEDirectConvolutionLayerOutputStageKernel()
: _func(nullptr), _input(nullptr), _bias(nullptr), _output(nullptr), _result_fixedpoint_multiplier(0), _result_shift(0), _result_offset_after_shift(0)
{
}
void NEDirectConvolutionLayerOutputStageKernel::configure(ITensor *input, const ITensor *bias, ITensor *output,
int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift)
{
ARM_COMPUTE_ERROR_ON_NULLPTR(input);
// Auto-initialize output output if required
if(output != nullptr)
{
// Work out expected output data type
const DataType output_dt = (input->info()->data_type() == DataType::S32) ? DataType::QASYMM8 : input->info()->data_type();
// Output tensor auto initialization if not yet initialized
auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(output_dt));
}
// Perform validation step
ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias == nullptr) ? nullptr : bias->info(), (output == nullptr) ? nullptr : output->info()));
_func = nullptr;
_bias = bias;
_input = input;
_output = output;
_result_fixedpoint_multiplier = result_fixedpoint_multiplier;
_result_shift = result_shift;
_result_offset_after_shift = result_offset_after_shift;
// Configure kernel window
auto win_config = validate_and_configure_window(input->info(), (bias == nullptr) ? nullptr : bias->info(), (output == nullptr) ? nullptr : output->info());
ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
INEKernel::configure(win_config.second);
// Set appropriate function
switch(input->info()->data_type())
{
case DataType::QS8:
{
if(bias == nullptr)
{
_func = (output == nullptr) ? &output_stage<qint8_t, qint8_t, true, false> : &output_stage<qint8_t, qint8_t, false, false>;
}
else
{
_func = (output == nullptr) ? &output_stage<qint8_t, qint8_t, true, true> : &output_stage<qint8_t, qint8_t, false, true>;
}
break;
}
case DataType::QS16:
{
if(bias != nullptr && bias->info()->data_type() == DataType::QS8)
{
_func = (output == nullptr) ? &output_stage<qint16_t, qint8_t, true, true> : &output_stage<qint16_t, qint8_t, false, true>;
}
else if(bias == nullptr)
{
_func = (output == nullptr) ? &output_stage<qint16_t, qint8_t, true, false> : &output_stage<qint16_t, qint8_t, false, false>;
}
else
{
ARM_COMPUTE_ERROR("Not implemented");
}
break;
}
case DataType::QS32:
{
_func = (output == nullptr) ? &output_stage<qint32_t, qint16_t, true, true> : &output_stage<qint32_t, qint16_t, false, true>;
break;
}
case DataType::S32:
_func = (bias == nullptr) ? &output_stage<int32_t, uint8_t, false, false> : &output_stage<int32_t, uint8_t, false, true>;
break;
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
case DataType::F16:
{
_func = (output == nullptr) ? &output_stage<float16_t, float16_t, true, true> : &output_stage<float16_t, float16_t, false, true>;
break;
}
#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
case DataType::F32:
{
_func = (output == nullptr) ? &output_stage<float, float, true, true> : &output_stage<float, float, false, true>;
break;
}
default:
{
ARM_COMPUTE_ERROR("Unsupported combination of types among the inputs.");
}
}
}
Status NEDirectConvolutionLayerOutputStageKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output)
{
ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output));
ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), bias->clone().get(), output == nullptr ? nullptr : output->clone().get()).first);
return Status{};
}
void NEDirectConvolutionLayerOutputStageKernel::run(const Window &window, const ThreadInfo &info)
{
ARM_COMPUTE_UNUSED(info);
ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
ARM_COMPUTE_ERROR_ON(_func == nullptr);
(*_func)(_input, _bias, window, _output, _result_fixedpoint_multiplier, _result_shift, _result_offset_after_shift);
}
| [
"gemfield@civilnet.cn"
] | gemfield@civilnet.cn |
f16673bb1da55e1f406eb25a7f51957c17e2d142 | 822e3d662b4cc83ba807c39a5ed48eb244746edf | /Neural_Network-M/Initializator.cpp | 7bb50991c47bb1ab771ad97c27ae7c5ed5bf2e7c | [] | no_license | PrincePelican/Neural_Network-M | 881d612629705fdba38f2b4b1948e0800e25f726 | 767bca7684f8ff16afd91a562ee1c788d7773442 | refs/heads/master | 2023-07-08T14:41:12.250961 | 2021-08-07T11:25:40 | 2021-08-07T11:25:40 | 367,180,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 237 | cpp | #include "Initializator.h"
float Initializator::He_ini(unsigned numberInputs)
{
return 2.0f / numberInputs;
}
float Initializator::Xavier_ini(unsigned numberInputs, unsigned numberOutput)
{
return 1.0f/(numberInputs+numberOutput);
}
| [
"unconfigured@null.spigotmc.org"
] | unconfigured@null.spigotmc.org |
8dacf060124eff06083c8c01c7ffed31274d8e4a | 97d2e759c2d3ca77421e68ca18ac84c66a941214 | /Source/BuildingEscape/OpenDoor.h | 059531741e5b4e585830d28e3116b5c397c33f3f | [] | no_license | radhaashok/BuildingEscape | bdb4eecc74d3668e63e87741c947a9c3dcce35d8 | 4574d0e303ac5e39c96fedd160e9c7a29df50681 | refs/heads/master | 2021-07-14T23:04:39.236306 | 2017-10-20T13:09:44 | 2017-10-20T13:09:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,099 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "Engine/TriggerVolume.h"
#include "OpenDoor.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class BUILDINGESCAPE_API UOpenDoor : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UOpenDoor();
protected:
// Called when the game starts
virtual void BeginPlay() override;
void OpenDoor();
void CloseDoor();
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
private:
UPROPERTY(EditAnywhere)
float OpenAngle = 20.0f;
UPROPERTY(EditAnywhere)
float CloseAngle = 90.0f;
UPROPERTY(EditAnywhere)
ATriggerVolume* PressurePlate;
UPROPERTY(EditAnywhere)
float DoorCloseDelay = 0.2f;
float LastDoorOpenTime = -1.f;
//UPROPERTY(EditAnywhere)
AActor* ActorThatOpens; //Remember pawn inherits from actor
AActor* Owner; //
};
| [
"gowtham.kudupudi@tmeic.in"
] | gowtham.kudupudi@tmeic.in |
be447e7adb945e4c684d38a085ea925ac66b3655 | 4e8d0a92f6058f0635610fa8bf390f29bbe7c9a4 | /Game/Game/PauseScreen.h | 86ca5e0b7223bbd20e29b3286f9e2b9629783b05 | [] | no_license | anasawad/The_Invaders | 5e69f3854a67eaa2c25665e955778088a95abd55 | ed9ec9439a8952aa578a532d3f6febbc4296093a | refs/heads/master | 2021-01-02T08:19:30.126292 | 2012-07-17T03:48:30 | 2012-07-17T03:48:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,158 | h | #ifndef PAUSESCREEN_H_
#define PAUSESCREEN_H_
#include "AllIncludes.h"
class PauseScreen:public Screen, public IDrawable
{
private:
struct MenuItems
{
Screen* _ptrScreen;
char* title;
};
static const bool is2D = true;
static const int SIZE = 4;
int select_index ;
SaveAndLoad *s;
MenuItems menuItemsArray[SIZE];
void DrawCanvase()
{
glBegin(GL_QUADS);
glTexCoord2d(0.0,0.0);
glVertex2f(-10.f, -10.f);
glTexCoord2d(1.0,0.0);
glVertex2f(10.f, -10.f);
glTexCoord2d(1.0,1.0);
glVertex2f(10.f, 10.f);
glTexCoord2d(0.0,1.0);
glVertex2f(-10.f, 10.f);
glEnd();
}
public:
PauseScreen(int texture,SaveAndLoad &sa)
{
this->texture = texture;
s = &sa;
}
PauseScreen(int texture)
{
this->texture = texture;
}
bool Is2D(){return this->is2D;}
void Initialize()
{
select_index = 0;
menuItemsArray[0]._ptrScreen = NULL;
menuItemsArray[0].title = "Continue";
menuItemsArray[1]._ptrScreen = new LoadScreen();
menuItemsArray[1].title = "Load";
menuItemsArray[2]._ptrScreen = new SaveScreen(*s);
menuItemsArray[2].title = "Save";
menuItemsArray[3]._ptrScreen= new ExitScreen();
menuItemsArray[3].title = "Exit";
}
void Draw()
{
glEnable(GL_TEXTURE_1D);
glDisable(GL_LIGHTING);
glBindTexture(GL_TEXTURE_2D,texture);
glClearColor(1,1,1,1);
glScalef(10, 10, 10);
DrawCanvase();
int yPos = 2;
for ( int i = 0 ; i < SIZE ; i ++ )
{
if ( select_index == i )
glColor3f(0,.5,1);
else
glColor3f(1,1,1);
TextHelper::DrawString(-2,yPos-3-i, GLUT_BITMAP_TIMES_ROMAN_24, menuItemsArray[i].title);
}
glColor3f(1,1,1);
glEnable(GL_LIGHTING);
}
void Update()
{
}
void GetSpecialDownPress(int key)
{
if ( key == GLUT_KEY_DOWN )
select_index = min(SIZE-1, select_index+1);
else if ( key == GLUT_KEY_UP )
select_index = max(0, select_index-1);
}
void GetKeyboardDownPress(int key)
{
if(key == 27)
ScreenManager::RemoveScreen();
if ( key == '\r' )
{
if(menuItemsArray[select_index].title == "Continue")
ScreenManager::RemoveScreen();
else
{
ScreenManager::AddScreen(menuItemsArray[select_index]._ptrScreen);
}
}
}
};
#endif | [
"eng.anas.awad@gmail.com"
] | eng.anas.awad@gmail.com |
df85248b089d46d763c33a3f47981d9189fa6fc7 | e790253b47ad12bbc12f98a933de4dd788aada34 | /2018/0525_topological_sorting/1516_GAME_MINJUN.cpp | dfa85727ba763cad7f160051fe278f4492b68292 | [] | no_license | lilykju/algostudy | 393ab42bc5f8f5ee450839c8a76d460e3ddd15cc | 82f0100b42668894b15093c74bf806aeb95ee0a1 | refs/heads/master | 2021-05-15T05:16:51.889121 | 2019-01-10T10:17:55 | 2019-01-10T10:17:55 | 116,847,208 | 0 | 2 | null | 2018-12-26T15:19:43 | 2018-01-09T17:20:38 | C++ | UTF-8 | C++ | false | false | 851 | cpp | #include<iostream>
#include<vector>
#include<algorithm>
#include<string.h>
#include<queue>
using namespace std;
int in[1002];
int main()
{
int N;
scanf("%d",&N);
vector<int> arr(N+1);
vector<int> topol[N+1];
for(int i=1;i<=N;i++){
scanf("%d",&arr[i]);
while(1){
int a;
scanf("%d",&a);
if(a==-1)
break;
topol[a].push_back(i);
in[i]++;
}
}
queue<int> qu;
vector<int> dist(N+1,0);
for(int i=1;i<=N;i++){
if(in[i]==0)
qu.push(i);
dist[i]=arr[i];
}
vector<int> ans;
for(int i=1;i<=N;i++){
int start=qu.front();
qu.pop();
ans.push_back(start);
for(int j=0;j<topol[start].size();j++){
int next=topol[start][j];
if(dist[next] < dist[start] + arr[next])
dist[next]=dist[start]+arr[next];
if(--in[next]==0)
qu.push(next);
}
}
for(int i=1;i<=N;i++){
cout<<dist[i]<<endl;
}
}
| [
"starkim06@naver.com"
] | starkim06@naver.com |
95f8793266aaf3ad42648e3393bb48ea1bf49c26 | 0d0e78c6262417fb1dff53901c6087b29fe260a0 | /bmlb/src/v20180625/model/BindTrafficMirrorReceiversRequest.cpp | ef7a9e2f3d6bbb0448f09870e2e3a8126908c81d | [
"Apache-2.0"
] | permissive | li5ch/tencentcloud-sdk-cpp | ae35ffb0c36773fd28e1b1a58d11755682ade2ee | 12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4 | refs/heads/master | 2022-12-04T15:33:08.729850 | 2020-07-20T00:52:24 | 2020-07-20T00:52:24 | 281,135,686 | 1 | 0 | Apache-2.0 | 2020-07-20T14:14:47 | 2020-07-20T14:14:46 | null | UTF-8 | C++ | false | false | 3,014 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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 <tencentcloud/bmlb/v20180625/model/BindTrafficMirrorReceiversRequest.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using namespace TencentCloud::Bmlb::V20180625::Model;
using namespace rapidjson;
using namespace std;
BindTrafficMirrorReceiversRequest::BindTrafficMirrorReceiversRequest() :
m_trafficMirrorIdHasBeenSet(false),
m_receiverSetHasBeenSet(false)
{
}
string BindTrafficMirrorReceiversRequest::ToJsonString() const
{
Document d;
d.SetObject();
Document::AllocatorType& allocator = d.GetAllocator();
if (m_trafficMirrorIdHasBeenSet)
{
Value iKey(kStringType);
string key = "TrafficMirrorId";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, Value(m_trafficMirrorId.c_str(), allocator).Move(), allocator);
}
if (m_receiverSetHasBeenSet)
{
Value iKey(kStringType);
string key = "ReceiverSet";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, Value(kArrayType).Move(), allocator);
int i=0;
for (auto itr = m_receiverSet.begin(); itr != m_receiverSet.end(); ++itr, ++i)
{
d[key.c_str()].PushBack(Value(kObjectType).Move(), allocator);
(*itr).ToJsonObject(d[key.c_str()][i], allocator);
}
}
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
d.Accept(writer);
return buffer.GetString();
}
string BindTrafficMirrorReceiversRequest::GetTrafficMirrorId() const
{
return m_trafficMirrorId;
}
void BindTrafficMirrorReceiversRequest::SetTrafficMirrorId(const string& _trafficMirrorId)
{
m_trafficMirrorId = _trafficMirrorId;
m_trafficMirrorIdHasBeenSet = true;
}
bool BindTrafficMirrorReceiversRequest::TrafficMirrorIdHasBeenSet() const
{
return m_trafficMirrorIdHasBeenSet;
}
vector<BindTrafficMirrorReceiver> BindTrafficMirrorReceiversRequest::GetReceiverSet() const
{
return m_receiverSet;
}
void BindTrafficMirrorReceiversRequest::SetReceiverSet(const vector<BindTrafficMirrorReceiver>& _receiverSet)
{
m_receiverSet = _receiverSet;
m_receiverSetHasBeenSet = true;
}
bool BindTrafficMirrorReceiversRequest::ReceiverSetHasBeenSet() const
{
return m_receiverSetHasBeenSet;
}
| [
"jimmyzhuang@tencent.com"
] | jimmyzhuang@tencent.com |
2ac591ea1e5f084a7901ed04008cc896f274f27c | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /media/gpu/v4l2/v4l2_image_processor.h | 509e564995ed4395008a75b0226d4423372ebec6 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 9,315 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_GPU_V4L2_V4L2_IMAGE_PROCESSOR_H_
#define MEDIA_GPU_V4L2_V4L2_IMAGE_PROCESSOR_H_
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/containers/queue.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread.h"
#include "media/base/video_frame.h"
#include "media/gpu/media_gpu_export.h"
#include "media/gpu/v4l2/v4l2_device.h"
namespace media {
// Handles image processing accelerators that expose a V4L2 memory-to-memory
// interface. The threading model of this class is the same as for other V4L2
// hardware accelerators (see V4L2VideoDecodeAccelerator) for more details.
class MEDIA_GPU_EXPORT V4L2ImageProcessor {
public:
explicit V4L2ImageProcessor(const scoped_refptr<V4L2Device>& device);
virtual ~V4L2ImageProcessor();
// Initializes the processor to convert from |input_format| to |output_format|
// and/or scale from |input_visible_size| to |output_visible_size|.
// Request the input buffers to be of at least |input_allocated_size| and the
// output buffers to be of at least |output_allocated_size|. The number of
// input buffers and output buffers will be |num_buffers|. Provided |error_cb|
// will be called if an error occurs. Return true if the requested
// configuration is supported.
bool Initialize(VideoPixelFormat input_format,
VideoPixelFormat output_format,
v4l2_memory input_memory_type,
v4l2_memory output_memory_type,
gfx::Size input_visible_size,
gfx::Size input_allocated_size,
gfx::Size output_visible_size,
gfx::Size output_allocated_size,
int num_buffers,
const base::Closure& error_cb);
// Returns a vector of dmabuf file descriptors, exported for V4L2 output
// buffer with |index|. The size of vector will be the number of planes of the
// buffer. Return an empty vector on failure.
std::vector<base::ScopedFD> GetDmabufsForOutputBuffer(
int output_buffer_index);
// Returns true if image processing is supported on this platform.
static bool IsSupported();
// Returns a vector of supported input formats in fourcc.
static std::vector<uint32_t> GetSupportedInputFormats();
// Returns a vector of supported output formats in fourcc.
static std::vector<uint32_t> GetSupportedOutputFormats();
// Gets output allocated size and number of planes required by the device
// for conversion from |input_pixelformat| to |output_pixelformat|, for
// visible size |size|. Returns true on success. Adjusted coded size will be
// stored in |size| and the number of planes will be stored in |num_planes|.
static bool TryOutputFormat(uint32_t input_pixelformat,
uint32_t output_pixelformat,
gfx::Size* size,
size_t* num_planes);
// Returns input allocated size required by the processor to be fed with.
gfx::Size input_allocated_size() const { return input_allocated_size_; }
// Returns output allocated size required by the processor.
gfx::Size output_allocated_size() const { return output_allocated_size_; }
// Callback to be used to return the index of a processed image to the
// client. After the client is done with the frame, call Process with the
// index to return the output buffer to the image processor.
typedef base::Callback<void(int output_buffer_index)> FrameReadyCB;
// Called by client to process |frame|. The resulting processed frame will be
// stored in |output_buffer_index| output buffer and notified via |cb|. The
// processor will drop all its references to |frame| after it finishes
// accessing it. If |output_memory_type_| is V4L2_MEMORY_DMABUF, the caller
// should pass non-empty |output_dmabuf_fds| and the processed frame will be
// stored in those buffers. If the number of |output_dmabuf_fds| is not
// expected, this function will return false.
bool Process(const scoped_refptr<VideoFrame>& frame,
int output_buffer_index,
std::vector<base::ScopedFD> output_dmabuf_fds,
const FrameReadyCB& cb);
// Reset all processing frames. After this method returns, no more callbacks
// will be invoked. V4L2ImageProcessor is ready to process more frames.
bool Reset();
// Stop all processing and clean up. After this method returns no more
// callbacks will be invoked. Deletes |this| unconditionally, so make sure
// to drop all pointers to it!
void Destroy();
private:
// Record for input buffers.
struct InputRecord {
InputRecord();
InputRecord(const V4L2ImageProcessor::InputRecord&);
~InputRecord();
scoped_refptr<VideoFrame> frame;
bool at_device;
};
// Record for output buffers.
struct OutputRecord {
OutputRecord();
OutputRecord(OutputRecord&&);
~OutputRecord();
bool at_device;
// The processed frame will be stored in these buffers if
// |output_memory_type_| is V4L2_MEMORY_DMABUF
std::vector<base::ScopedFD> dmabuf_fds;
};
// Job record. Jobs are processed in a FIFO order. This is separate from
// InputRecord, because an InputRecord may be returned before we dequeue
// the corresponding output buffer. The processed frame will be stored in
// |output_buffer_index| output buffer. If |output_memory_type_| is
// V4L2_MEMORY_DMABUF, the processed frame will be stored in
// |output_dmabuf_fds|.
struct JobRecord {
JobRecord();
~JobRecord();
scoped_refptr<VideoFrame> frame;
int output_buffer_index;
std::vector<base::ScopedFD> output_dmabuf_fds;
FrameReadyCB ready_cb;
};
void EnqueueInput();
void EnqueueOutput(int index);
void Dequeue();
bool EnqueueInputRecord();
bool EnqueueOutputRecord(int index);
bool CreateInputBuffers();
bool CreateOutputBuffers();
void DestroyInputBuffers();
void DestroyOutputBuffers();
void NotifyError();
void NotifyErrorOnChildThread(const base::Closure& error_cb);
void ProcessTask(std::unique_ptr<JobRecord> job_record);
void ServiceDeviceTask();
// Attempt to start/stop device_poll_thread_.
void StartDevicePoll();
void StopDevicePoll();
// Ran on device_poll_thread_ to wait for device events.
void DevicePollTask(bool poll_device);
// A processed frame is ready.
void FrameReady(const FrameReadyCB& cb, int output_buffer_index);
// Size and format-related members remain constant after initialization.
// The visible/allocated sizes of the input frame.
gfx::Size input_visible_size_;
gfx::Size input_allocated_size_;
// The visible/allocated sizes of the destination frame.
gfx::Size output_visible_size_;
gfx::Size output_allocated_size_;
VideoPixelFormat input_format_;
VideoPixelFormat output_format_;
v4l2_memory input_memory_type_;
v4l2_memory output_memory_type_;
uint32_t input_format_fourcc_;
uint32_t output_format_fourcc_;
size_t input_planes_count_;
size_t output_planes_count_;
// Our original calling task runner for the child thread.
const scoped_refptr<base::SingleThreadTaskRunner> child_task_runner_;
// V4L2 device in use.
scoped_refptr<V4L2Device> device_;
// Thread to communicate with the device on.
base::Thread device_thread_;
// Thread used to poll the V4L2 for events only.
base::Thread device_poll_thread_;
// All the below members are to be accessed from device_thread_ only
// (if it's running).
base::queue<std::unique_ptr<JobRecord>> input_queue_;
base::queue<std::unique_ptr<JobRecord>> running_jobs_;
// Input queue state.
bool input_streamon_;
// Number of input buffers enqueued to the device.
int input_buffer_queued_count_;
// Input buffers ready to use; LIFO since we don't care about ordering.
std::vector<int> free_input_buffers_;
// Mapping of int index to an input buffer record.
std::vector<InputRecord> input_buffer_map_;
// Output queue state.
bool output_streamon_;
// Number of output buffers enqueued to the device.
int output_buffer_queued_count_;
// Mapping of int index to an output buffer record.
std::vector<OutputRecord> output_buffer_map_;
// The number of input or output buffers.
int num_buffers_;
// Error callback to the client.
base::Closure error_cb_;
// WeakPtr<> pointing to |this| for use in posting tasks from the device
// worker threads back to the child thread. Because the worker threads
// are members of this class, any task running on those threads is guaranteed
// that this object is still alive. As a result, tasks posted from the child
// thread to the device thread should use base::Unretained(this),
// and tasks posted the other way should use |weak_this_|.
base::WeakPtr<V4L2ImageProcessor> weak_this_;
// Weak factory for producing weak pointers on the child thread.
base::WeakPtrFactory<V4L2ImageProcessor> weak_this_factory_;
DISALLOW_COPY_AND_ASSIGN(V4L2ImageProcessor);
};
} // namespace media
#endif // MEDIA_GPU_V4L2_V4L2_IMAGE_PROCESSOR_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
8d5f26299ab0d8d13ad664f38b8072447122dafd | 69c22e17117c2233064e15f234e20c769e2b3c1a | /qmdzmodfiy/Classes/SelfClub.cpp | e3993baec1658ab77a4d43f49b01a44169df9176 | [] | no_license | windtrack/onlinedezhou | 85d8c83464c3d54f80db89fdee74810e5555e509 | 33faae8436cda80479f69edea51b24b4a9fabaa7 | refs/heads/master | 2021-01-17T11:37:50.672166 | 2016-06-13T05:16:13 | 2016-06-13T05:16:13 | 61,009,396 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 15,369 | cpp | #include "SelfClub.h"
#include "Tools.h"
#include "Util.h"
#include "GlobalUserData.h"
#include "HttpSprite.h"
#include "external/ConvertUTF/ConvertUTF.h"
#include "GameHall.h"
#include "GameFrame.h"
#include "FrameSpriteButton.h"
#include "FrameSprite.h"
#include "GrabTouch.h"
#include "EditFamilyRole.h"
#include "FrameScale9SpriteButton.h"
#include "AllotFund.h"
USING_NS_CC ;
enum
{
RankScrollW = 816,
RankScrollH = 461
};
enum BgItem
{
ListBgItemW = 806,
ListBgItemH = 112
};
bool SelfClub::init()
{
if(!GameDialog::init("dialog/bg.png",true))
{
return false;
}
Size sz = this->getContentSize() ;
s_uiroot = CSLoader::createNode("res/ui/club_myclub.csb");
s_uiroot->ignoreAnchorPointForPosition(false);
s_uiroot->setAnchorPoint(Point(0.5,0.5));
s_uiroot->setPosition(sz.width/2,sz.height/2) ;
this->addChild(s_uiroot,1);
s_dataLoading = nullptr;
m_img_edit = static_cast<ImageView*>(Tools::getWidgetByName(s_uiroot,"Image_6")) ;
m_text_clubNotice = static_cast<Text*>(Tools::getWidgetByName(s_uiroot,"Text_1")) ;
ImageView* m_img_noticeBg= static_cast<ImageView*>(Tools::getWidgetByName(s_uiroot,"Image_5")) ;
Size szCount = m_img_noticeBg->getContentSize();
m_editBox_Notice = CreateNode2AndPosAddTo<ui::EditBox>(Size(szCount.width, szCount.height), ui::Scale9Sprite::create("res/ui/bgedit.png") , szCount.width/2, szCount.height/2, m_img_noticeBg, 0);
m_editBox_Notice->setFont("fzlt.ttf", 24);
m_editBox_Notice->setFontColor(Color3B::BLACK);
m_editBox_Notice->setInputMode(ui::EditBox::InputMode::SINGLE_LINE);
m_editBox_Notice->setReturnType(ui::EditBox::KeyboardReturnType::DONE);
m_editBox_Notice->setDelegate(this);
// 头像
m_bt_editIcon = static_cast<Button*>(Tools::getWidgetByName(s_uiroot,"Button_editIcon")) ;
m_bt_editIcon->addTouchEventListener(CC_CALLBACK_2(SelfClub::OnMenuItemSelect, this));
auto pClipMask = Sprite::create("family/club_iconmask.png");
pClipMask->setPosition(m_bt_editIcon->getContentSize().width/2,m_bt_editIcon->getContentSize().height/2);
pClipMask->retain();
cocos2d::ClippingNode *m_pClipTouXiang = CreateNodeAndPosAddTo<ClippingNode>(0,0, m_bt_editIcon, 0);
m_pClipTouXiang->setContentSize(Size(195, 195));
m_httpSprite_clubIcon = CreateNode2AndPosAddTo<HttpSprite>("family/defaulticon.png", Size(188, 188), 0, 0, m_pClipTouXiang, 0);
m_httpSprite_clubIcon->ignoreAnchorPointForPosition(false);
m_httpSprite_clubIcon->setAnchorPoint(Point(0.5,0.5));
m_httpSprite_clubIcon->setPosition(m_bt_editIcon->getContentSize().width/2,m_bt_editIcon->getContentSize().height/2);
m_pClipTouXiang->setStencil(pClipMask);
m_pClipTouXiang->setAlphaThreshold(0.5);
g_globalMyFamilyInfo.WaitChange( std::bind(&SelfClub::updateIcon, this));
m_text_clubName = static_cast<Text*>(Tools::getWidgetByName(s_uiroot,"Text_clubname")) ;
m_text_clubFund = static_cast<Text*>(Tools::getWidgetByName(s_uiroot,"Text_money")) ;
m_bt_FundInfo = static_cast<Button*>(Tools::getWidgetByName(s_uiroot,"Button_fundinfo")) ;
m_bt_FundInfo->addTouchEventListener(CC_CALLBACK_2(SelfClub::OnMenuItemSelect, this));
m_bt_QuitClub = static_cast<Button*>(Tools::getWidgetByName(s_uiroot,"Button_quite")) ;
m_bt_QuitClub->addTouchEventListener(CC_CALLBACK_2(SelfClub::OnMenuItemSelect, this));
m_bt_invateRole = static_cast<Button*>(Tools::getWidgetByName(s_uiroot,"Button_invate")) ;
m_bt_invateRole->addTouchEventListener(CC_CALLBACK_2(SelfClub::OnMenuItemSelect, this));
m_imgNoRoleTips = static_cast<ImageView*>(Tools::getWidgetByName(s_uiroot,"Image_noplayer")) ;
m_text_curRole = static_cast<Text*>(Tools::getWidgetByName(s_uiroot,"Text_playernum")) ;
m_text_maxRole = static_cast<Text*>(Tools::getWidgetByName(s_uiroot,"Text_playernum")) ;
m_img_editIcon = static_cast<ImageView*>(Tools::getWidgetByName(s_uiroot,"Image_8")) ;
Layout* m_allRole = static_cast<Layout*>(Tools::getWidgetByName(s_uiroot,"Panel_playershow")) ;
sizeListView.width = m_allRole->getContentSize().width;
sizeListView.height = m_allRole->getContentSize().height;
m_pScrollView = CreateNode1AndPosAddTo<extension::ScrollView>(sizeListView,-10,4,m_allRole,0);
m_pScrollView->setContentSize(sizeListView);
m_pScrollView->setBounceable(true);
m_pScrollView->setSwallowsTouches(false) ;
m_pScrollView->setDirection(extension::ScrollView::Direction::VERTICAL);
m_pScrollView->setVisible(true);
return true ;
}
void SelfClub::setVisible(bool bVisible)
{
if (bVisible)
{
callShowAction() ;
}
else
{
callHideAction() ;
}
}
void SelfClub::updateSelfClubInfo()
{
//g_globaSelfJoinClub
//g_globalMyFamilyInfo.get
if (g_globalMyFamilyInfo.m_isOwner)
{
m_imgNoRoleTips->setVisible(g_globalMyFamilyInfo.m_allTopRank.size()<=0) ;
}
else
{
m_imgNoRoleTips->setVisible(false) ;
}
updateIcon();
char buff[64];
setUITextString(m_text_clubName,g_globalMyFamilyInfo.m_familyName.c_str());
setUITextString(m_text_clubFund,FormatCash(g_globalMyFamilyInfo.m_fund).c_str());
m_str_notice = g_globalMyFamilyInfo.m_familyNotice.c_str();
setUITextString(m_text_clubNotice,g_globalMyFamilyInfo.m_familyNotice.c_str());
sprintf(buff,"(%d/%d)",g_globalMyFamilyInfo.m_curRoleCount,g_globalMyFamilyInfo.m_maxRoleCount) ;
setUITextString(m_text_curRole,buff);
m_img_editIcon->setVisible(g_globalMyFamilyInfo.m_isOwner);
m_img_edit->setVisible(g_globalMyFamilyInfo.m_isOwner);
m_bt_editIcon->setEnabled(g_globalMyFamilyInfo.m_isOwner) ;
m_bt_invateRole->setVisible(g_globalMyFamilyInfo.m_isOwner) ;
m_editBox_Notice->setEnabled(g_globalMyFamilyInfo.m_isOwner);
updateAllRoleView() ;
}
void SelfClub::OnMenuItemSelect(cocos2d::Ref *pSend, cocos2d::ui::Button::TouchEventType type)
{
if (type == Button::TouchEventType::ENDED)
{
if (pSend == m_bt_FundInfo)
{
g_pGameFrame->showSelfFundLayer(true,1) ;
}
else if (pSend == m_bt_invateRole)
{
auto pHall = dynamic_cast<GameHall*>(getParent());
pHall->showInviteFriends(true) ;
}
else if (pSend == m_bt_QuitClub)
{
if (g_globalMyFamilyInfo.m_isOwner)
{
PopTipWithBt1("您需要转让俱乐部后才能退出!", "确定", nullptr);
}
else
{
PopTipWithBt2("是否确定退出俱乐部!","退出","取消",[](unsigned ubt)
{
if(ubt == 0)
{
Json::Value param;
param["user_id"] = g_globalMyData.m_iUserId;
param["group_id"] = g_globalMyFamilyInfo.m_familyID;
SendClientRequest(ClientRequest::kPushOutFamily, param);
}
});
}
}
else if (pSend == m_bt_editIcon)
{
if (!g_globalMyFamilyInfo.m_isOwner)
{
return ;
}
auto pHall = dynamic_cast<GameHall*>(getParent());
pHall->showChooseFamilyIcon(true);
}
}
}
void SelfClub::editBoxEditingDidBegin(EditBox* editBox)
{
if (editBox == m_editBox_Notice)
{
editBox->setText(m_str_notice.c_str()) ;
}
}
void SelfClub::editBoxReturn(cocos2d::ui::EditBox* editBox)
{
if (editBox == m_editBox_Notice)
{
m_editBox_Notice->setVisible(true) ;
std::string s_gonggao = editBox->getText();
auto pStr = s_gonggao.c_str();
const UTF8*pUtf8Str = (const UTF8*)pStr;
const UTF8*pUtf8End = (const UTF8*)(pStr + strlen(pStr));
unsigned uL = getUTF8StringLength(pUtf8Str);
if (uL>30)
{
setUITextString(m_text_clubNotice,m_str_notice.c_str());
editBox->setText("") ;
PopTipWithBt1("公告字数过度,请输入小于30个字","确定",nullptr);
return ;
}
setUITextString(m_text_clubNotice,s_gonggao);
m_str_notice = s_gonggao ;
editBox->setText("") ;
//修改俱乐部公告EditFamliyNotice
Json::Value msg;
msg["fnotice"] = s_gonggao;
msg["ufamilyid"] = g_globalMyFamilyInfo.m_familyID;
SendClientRequest(ClientRequest::kEditFamliyNotice,msg);
}
}
void SelfClub::updateIcon()
{
if (g_globalMyData.GetFamilySkin(g_globalMyFamilyInfo.getFamilyIconID()).m_strIconUrl!="")
{
SetFamilyIconUrl(m_httpSprite_clubIcon, g_globalMyData.GetFamilySkin(g_globalMyFamilyInfo.getFamilyIconID()).m_strIconUrl);
}
else
{
m_httpSprite_clubIcon->ResetToLocalSprite("family/defaulticon.png");
}
}
void SelfClub::updateAllRoleView()
{
//log("update view %d", uType);
for(auto item:m_vecFollowListInfoNew)
{
item->m_pSpriteBgItem->setVisible(false);
m_vecFollowListInfoOld.push_back(item);
}
m_vecFollowListInfoNew.clear();
unsigned uCount = g_globalMyFamilyInfo.m_allTopRank.size();
unsigned ListBgItemH = 686;
unsigned uItemH = 112;
unsigned fRealH = uCount * uItemH;
if(fRealH < sizeListView.height)
{
fRealH = sizeListView.height;
}
float fX = sizeListView.width / 2+10;
float fY = fRealH - uItemH / 2 ;
for(auto& followList:g_globalMyFamilyInfo.m_allTopRank)
{
auto item = GetFamilyListItem(followList);
UpdateItem(item, followList);
item->m_pSpriteBgItem->setPosition(fX, fY);
item->m_pSpriteBgItem->setVisible(true);
m_vecFollowListInfoNew.push_back(item);
fY -= uItemH;
}
float temp = fRealH - sizeListView.height;
//每次都显示滚动框的最上面
m_pScrollView->setContentOffset(Vec2(0,-temp), false);
m_pScrollView->setContentSize(Size(sizeListView.width,fRealH));
m_pScrollView->setViewSize(sizeListView);
setShowDataLoading(false) ;
}
SelfClub::RankRoleItem *SelfClub::GetFamilyListItem(FamilyRoleBaseInfo baseInfo)
{
RankRoleItem *item = nullptr;
Scale9Sprite *bgItem = Scale9Sprite::create("family/club_itembg.png",Rect(0,0,164,110),Rect(46,25,160-46*2,110-67));
bgItem->setPreferredSize(Size(584,110)) ;
m_pScrollView->addChild(bgItem) ;
unsigned m_uid = baseInfo.m_uid ;
auto btDetail = LayerButton::create(false, true);
bgItem->addChild(btDetail);
auto pClipMask = Sprite::create("family/iconclipmask.png");
auto sz = pClipMask->getContentSize();
pClipMask->setPosition(sz.width / 2, sz.height / 2);
pClipMask->retain();
auto pClip = CreateNodeAndPosAddTo<ClippingNode>(18,10, bgItem, 0);
pClip->setContentSize(sz);
auto m_pHettpSpriteIcon = CreateNode2AndPosAddTo<HttpSprite>("defaulticon.png", sz, 0, 0, pClip, 0);
auto m_pSpriteNormalIcon = CreateNode1AndPosAddTo<Sprite>("family/gf_family_icon.png", 18 + sz.width / 2,10 + sz.height / 2, bgItem, 0);
auto m_pSpriteOwnerIcon = CreateNode1AndPosAddTo<Sprite>("family/club_ownericon.png", 18 + sz.width / 2,10 + sz.height / 2, bgItem, 0);
pClip->setStencil(pClipMask);
pClip->setAlphaThreshold(0.5);
//人物名称
auto labelName = CreateLabelMSYHAndAnchorPosClrAddTo(26,"",Vec2(0,0.5),123,78,Color4B(0xff,0xd2,0x00,0xff),bgItem,0);
//已分配
auto hasFengpei = CreateLabelMSYHAndAnchorPosClrAddTo(22,"已分配",Vec2(0,0.5),123,17,Color4B(0x79,0xdc,0x98,0xff),bgItem,0);
auto label_owner = CreateLabelMSYHAndAnchorPosClrAddTo(20,"俱乐部所有者",Vec2(0,0.5),123,47,Color4B(0x50,0xbd,0x2e,0xff),bgItem,0);
//加入按钮
auto JiaRuBg = FrameScale9SpriteButton::createWithScale9Sprite(1, Size(132, 54),false,true);
auto labeljiaru = CreateLabelMSYHBDAndAnchorPosClrAddTo(30,"分配",Vec2(0.5,0.5),0,0,Color4B::WHITE,JiaRuBg,0);
JiaRuBg->setPosition(477+15,110/2);
bgItem->addChild(JiaRuBg);
auto pItem = new RankRoleItem;
pItem->m_pSpriteBgItem = bgItem;
pItem->m_pBtDetail = btDetail;
pItem->m_pHttpSpriteIcon = m_pHettpSpriteIcon;
pItem->m_pSpriteNormalIcon = m_pSpriteNormalIcon ;
pItem->m_pSpriteOwnerIcon = m_pSpriteOwnerIcon ;
pItem->m_familyName = labelName;
pItem->m_uid = m_uid ;
pItem->m_pBtCon = JiaRuBg ;
pItem->m_hasCash = hasFengpei ;
pItem->m_Owner = label_owner ;
item = pItem;
//背景回调
item->m_pBtDetail->setContentSize(Size(RankScrollW,106));
return item;
}
void SelfClub::UpdateItem(SelfClub::RankRoleItem *item, const FamilyRoleBaseInfo& followInfo)
{
item->m_uid = followInfo.m_uid ;
char s_buf[64] ;
//头像
SetIconUrl(item->m_pHttpSpriteIcon, followInfo.m_iconUrl);
item->m_pSpriteOwnerIcon->setVisible(followInfo.m_isOwnner) ;
item->m_pSpriteNormalIcon->setVisible(!followInfo.m_isOwnner) ;
//名称
SetLabelString(item->m_familyName,followInfo.m_uname.c_str());
sprintf(s_buf,"已分配:%s",FormatCash(followInfo.m_hasCash).c_str()) ;
//排名
SetLabelString(item->m_hasCash,s_buf);
item->m_pBtDetail->setContentSize(Size(415,95));
item->m_pBtDetail->SetHitCB(std::bind(&SelfClub::menuClickBgItem, this,followInfo));
item->m_pBtCon->SetHitCB(std::bind(&SelfClub::doAllotFund, this,followInfo));
item->m_pBtCon->setVisible(g_globalMyFamilyInfo.m_isOwner) ;
item->m_hasCash->setVisible(g_globalMyFamilyInfo.m_isOwner);
item->m_Owner->setVisible(followInfo.m_isOwnner) ;
}
void SelfClub::doAllotFund(FamilyRoleBaseInfo baseInfo)
{
auto pHall = dynamic_cast<GameHall*>(getParent());
pHall->showAllotFund(true,g_globalMyFamilyInfo.m_familyID,baseInfo.m_uid,g_globalMyData.m_iUserId,baseInfo.m_uname) ;
}
void SelfClub::menuClickBgItem(FamilyRoleBaseInfo baseInfo)
{
auto pHall = dynamic_cast<GameHall*>(getParent());
if (!g_globalMyFamilyInfo.m_isOwner)
{
Json::Value param;
param["tid"] = baseInfo.m_uid;
SendClientRequest(ClientRequest::kPopUserDetailInfo, param);
return ;
}
//点的自己
if (g_globalMyData.m_iUserId==baseInfo.m_uid)
{
Json::Value param;
param["tid"] = baseInfo.m_uid;
SendClientRequest(ClientRequest::kPopUserDetailInfo, param);
return ;
}
if (g_globalMyFamilyInfo.m_isOwner)
{
pHall->showEditFamilyRole(true,baseInfo.m_uid,baseInfo.m_uname,(Edit_LookInf0|Edit_To_EditFund|Edit_ChangeShaikh|Edit_Push));
}
}
void SelfClub::setShowDataLoading(bool flag)
{
if (s_dataLoading == nullptr)
{
s_dataLoading = Tools::creatDataLoading(this,587, 266,99) ;
}
s_dataLoading->setVisible(flag) ;
}
void SelfClub::updateRoleFund(double clubFund,unsigned uid,double uFund)
{
g_globalMyFamilyInfo.m_fund = clubFund ;
setUITextString(m_text_clubFund,FormatCash(clubFund).c_str());
for (auto &role:g_globalMyFamilyInfo.m_allTopRank)
{
if (role.m_uid == uid)
{
role.m_hasCash = uFund ;
for(auto item:m_vecFollowListInfoNew)
{
if (item->m_uid == uid)
{
UpdateItem(item,role);
}
}
}
}
}
void SelfClub::updateNotice(std::string notice)
{
m_str_notice = notice;
g_globalMyFamilyInfo.m_familyNotice = notice ;
setUITextString(m_text_clubNotice,m_str_notice.c_str());
}
void SelfClub::updateRoleItem(const FamilyRoleBaseInfo& baseInfo)
{
for(auto item:m_vecFollowListInfoNew)
{
if (item->m_uid == baseInfo.m_uid)
{
UpdateItem(item,baseInfo);
}
}
}
void SelfClub::removeRole(unsigned uid)
{
for(int i=0; i<m_vecFollowListInfoNew.size(); i++)
{
if(m_vecFollowListInfoNew[i]->m_uid == uid)
{
unsigned uItemH = ListBgItemH;
m_vecFollowListInfoNew[i]->m_pSpriteBgItem->setVisible(false);
m_vecFollowListInfoNew.erase(m_vecFollowListInfoNew.begin() + i);
unsigned uCount = m_vecFollowListInfoNew.size();
unsigned fRealH = uCount * uItemH;
if(fRealH < sizeListView.height)
{
fRealH = sizeListView.height;
}
float fX = sizeListView.width / 2+10;
float fY = fRealH - uItemH / 2 ;
for(auto& followList:m_vecFollowListInfoNew)
{
followList->m_pSpriteBgItem->setPosition(fX, fY);
followList->m_pSpriteBgItem->setVisible(true);
fY -= uItemH;
}
float temp = fRealH - sizeListView.height;
//每次都显示滚动框的最上面
m_pScrollView->setContentOffset(Vec2(0,-temp), false);
m_pScrollView->setContentSize(Size(sizeListView.width,fRealH));
}
}
} | [
"vergilsun@sina.com"
] | vergilsun@sina.com |
7ea3da0376decb7f024fbaf4f0c1a4ff01422512 | 879681c994f1ca9c8d2c905a4e5064997ad25a27 | /root-2.3.0/run/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/1.2/k.air | bace42882af31add1d01a90e6d69153440e49dbf | [] | no_license | MizuhaWatanabe/OpenFOAM-2.3.0-with-Ubuntu | 3828272d989d45fb020e83f8426b849e75560c62 | daeb870be81275e8a81f5cbac4ca1906a9bc69c0 | refs/heads/master | 2020-05-17T16:36:41.848261 | 2015-04-18T09:29:48 | 2015-04-18T09:29:48 | 34,159,882 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54,170 | air | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.2";
object k.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
6000
(
0.820832
0.906884
0.931012
0.947406
0.968798
0.994505
1.01544
1.02807
1.03818
1.03853
1.02774
1.01494
1.00544
0.999945
0.994835
0.987978
0.979237
0.971966
0.965347
0.960966
0.961305
0.970367
0.979769
0.977589
0.965687
0.947944
0.934302
0.92173
0.904959
0.820093
0.569828
0.865803
0.948221
0.99239
1.04836
1.12902
1.22929
1.27869
1.27693
1.25461
1.21801
1.17153
1.13222
1.10609
1.09175
1.0795
1.05922
1.03711
1.02037
1.01351
1.01773
1.02711
1.03736
1.05316
1.04943
1.00741
0.975789
0.947342
0.868561
0.582757
0.414924
0.762409
0.904039
0.996669
1.07945
1.15027
1.23171
1.26995
1.25739
1.23009
1.1925
1.14753
1.10799
1.08187
1.067
1.05693
1.04738
1.03768
1.02862
1.01835
1.00905
1.00617
1.00695
1.01053
1.00543
0.979306
0.948108
0.894675
0.766912
0.429319
0.359893
0.693579
0.847176
0.959446
1.06339
1.16523
1.24901
1.27309
1.25483
1.2205
1.17344
1.12071
1.07837
1.05192
1.03589
1.02492
1.0184
1.01105
1.00068
0.989593
0.978541
0.973389
0.9713
0.968376
0.960424
0.934689
0.894206
0.834002
0.703735
0.371664
0.316027
0.627452
0.783688
0.913756
1.04404
1.18367
1.24868
1.26427
1.24483
1.20703
1.14771
1.09107
1.05133
1.02681
1.00944
0.99756
0.988488
0.976277
0.962713
0.950303
0.940575
0.934655
0.931889
0.924199
0.911046
0.881205
0.829955
0.768042
0.646558
0.345323
0.27222
0.558111
0.7285
0.898276
1.05089
1.20362
1.23965
1.23929
1.21439
1.17444
1.11626
1.06631
1.03557
1.0135
0.994134
0.982211
0.97435
0.964324
0.950968
0.934388
0.914549
0.899303
0.888242
0.875822
0.85754
0.817702
0.757087
0.686386
0.573409
0.313592
0.230338
0.49471
0.701847
0.909997
1.07908
1.21728
1.22192
1.20507
1.17055
1.13354
1.09159
1.05305
1.03128
1.01237
0.996699
0.994452
0.995079
0.984337
0.965444
0.943582
0.916473
0.886765
0.863822
0.845335
0.8192
0.776163
0.711806
0.62477
0.489595
0.262504
0.198841
0.469883
0.72328
0.947803
1.11663
1.22029
1.20662
1.16966
1.13451
1.10813
1.0779
1.05564
1.04108
1.02931
1.02457
1.03932
1.05007
1.03393
1.00269
0.97319
0.942654
0.907218
0.876061
0.85279
0.821293
0.767831
0.69373
0.593075
0.422681
0.214181
0.203629
0.513807
0.805024
0.983294
1.125
1.2283
1.21534
1.15471
1.12318
1.10478
1.09059
1.07851
1.07332
1.07309
1.08154
1.10416
1.12855
1.11624
1.07831
1.03675
1.00154
0.969426
0.945109
0.924478
0.88422
0.810479
0.722623
0.613942
0.424198
0.201458
0.240011
0.642546
0.953447
1.02902
1.14619
1.25679
1.2414
1.17786
1.15784
1.14302
1.13375
1.12878
1.13777
1.16037
1.19447
1.2409
1.2836
1.28424
1.23472
1.17128
1.12196
1.09242
1.07645
1.05258
0.994444
0.898181
0.792957
0.678091
0.480597
0.221471
0.322169
0.80823
1.12658
1.12967
1.21407
1.28841
1.29448
1.2634
1.25944
1.24412
1.2378
1.24359
1.26037
1.28265
1.30939
1.34206
1.37772
1.39736
1.34239
1.25523
1.19215
1.158
1.14162
1.11386
1.03912
0.924286
0.811833
0.691059
0.519473
0.254637
0.398587
0.948863
1.18185
1.25234
1.29322
1.35444
1.36658
1.3724
1.36749
1.33645
1.31947
1.31903
1.3221
1.31978
1.31853
1.3246
1.3345
1.33614
1.29156
1.22179
1.17657
1.14554
1.12001
1.07269
0.977002
0.864446
0.770677
0.663449
0.505998
0.247763
0.432044
1.00423
1.19074
1.26791
1.35255
1.35116
1.37655
1.40139
1.37524
1.34341
1.32037
1.30484
1.28922
1.27611
1.26954
1.26681
1.2644
1.25484
1.21954
1.16997
1.14295
1.10776
1.0563
0.979239
0.880543
0.779709
0.691879
0.600027
0.464299
0.231159
0.450611
1.01688
1.1667
1.22504
1.27702
1.28972
1.31649
1.33441
1.32406
1.30068
1.27817
1.25768
1.23954
1.22717
1.2213
1.21761
1.21143
1.19681
1.17193
1.12677
1.09759
1.05308
0.985017
0.902888
0.81289
0.718097
0.623026
0.525442
0.397336
0.197534
0.458707
1.02021
1.12997
1.15729
1.19066
1.21025
1.23171
1.24648
1.24794
1.24021
1.22771
1.21265
1.19674
1.1859
1.18129
1.17793
1.17088
1.15688
1.14074
1.09467
1.05505
1.00215
0.930001
0.85263
0.770714
0.679566
0.578194
0.466985
0.330885
0.158527
0.4608
1.01444
1.08306
1.09359
1.11857
1.14061
1.1614
1.1769
1.18451
1.18572
1.18193
1.17386
1.16232
1.15437
1.15161
1.1489
1.14253
1.13301
1.12077
1.06994
1.02122
0.963011
0.892589
0.821028
0.744706
0.657441
0.556297
0.439699
0.296262
0.134351
0.463193
0.984643
1.02224
1.03696
1.06033
1.08399
1.10536
1.12258
1.1347
1.14172
1.14473
1.14371
1.13701
1.13267
1.13236
1.13056
1.12632
1.12259
1.10741
1.04939
0.996354
0.93655
0.869794
0.802027
0.729066
0.646067
0.549794
0.437088
0.296845
0.131687
0.480976
0.918979
0.962705
0.989777
1.01471
1.03949
1.06219
1.08142
1.09686
1.10811
1.11626
1.12032
1.11908
1.11813
1.12081
1.12117
1.12005
1.11946
1.09166
1.03148
0.979208
0.920855
0.857546
0.792047
0.721431
0.642428
0.551843
0.445329
0.312022
0.137294
0.469733
0.854179
0.918342
0.954205
0.981458
1.00717
1.03052
1.05134
1.06888
1.08264
1.09359
1.10007
1.10522
1.10558
1.11359
1.11937
1.12006
1.11202
1.06907
1.01523
0.966698
0.911608
0.851711
0.788586
0.720591
0.645203
0.560051
0.461253
0.337263
0.152747
0.439169
0.78968
0.878776
0.927412
0.959936
0.986029
1.00891
1.02978
1.04747
1.062
1.0734
1.08108
1.09151
1.0925
1.10517
1.11833
1.11571
1.09115
1.04315
0.999262
0.955477
0.905374
0.850172
0.790666
0.725931
0.654408
0.57388
0.480208
0.361112
0.167159
0.386551
0.718866
0.836795
0.907065
0.949271
0.974862
0.996044
1.01451
1.03013
1.04388
1.05548
1.06414
1.07609
1.07828
1.09064
1.10485
1.09478
1.05743
1.01766
0.983061
0.946071
0.902755
0.853512
0.798992
0.73862
0.670876
0.593543
0.502368
0.383993
0.179707
0.343208
0.659161
0.803138
0.893203
0.946443
0.973905
0.991162
1.00408
1.01556
1.02816
1.04049
1.05098
1.0594
1.06086
1.06917
1.0764
1.0572
1.02491
0.99713
0.972164
0.942817
0.906559
0.863912
0.815089
0.759185
0.69482
0.619713
0.529166
0.408411
0.192429
0.335518
0.645396
0.805203
0.89981
0.949674
0.978483
0.99176
0.997144
1.00373
1.01531
1.03013
1.04137
1.0432
1.04088
1.04323
1.04198
1.02606
1.00556
0.989051
0.971556
0.948563
0.919106
0.883034
0.83973
0.78828
0.727054
0.653439
0.562148
0.436914
0.206761
0.334441
0.644814
0.796796
0.906627
0.956113
0.981385
0.994188
0.993919
0.995259
1.00686
1.02487
1.03312
1.02691
1.02052
1.01789
1.01658
1.01055
1.00252
0.993415
0.981615
0.964861
0.94174
0.911635
0.873789
0.826824
0.768624
0.696028
0.602945
0.471406
0.22366
0.323341
0.618468
0.745925
0.869171
0.952127
0.973797
0.993153
0.989904
0.988323
1.00342
1.02024
1.01888
1.00809
1.00218
1.00071
1.00474
1.01061
1.01142
1.00937
1.0036
0.992278
0.974768
0.950552
0.918357
0.876103
0.821066
0.74946
0.654089
0.514464
0.244365
0.291481
0.552544
0.68461
0.823075
0.933161
0.951886
0.97461
0.974353
0.979961
0.996408
1.0017
0.996089
0.99326
0.994923
0.999458
1.01278
1.02516
1.03336
1.03801
1.03735
1.03095
1.01853
0.999705
0.973575
0.936511
0.885229
0.815706
0.719157
0.570959
0.271371
0.245432
0.466356
0.650656
0.818184
0.932078
0.92926
0.933696
0.947649
0.961214
0.969697
0.976986
0.987806
0.999881
1.01219
1.02656
1.04372
1.05875
1.07152
1.08016
1.08337
1.08018
1.07194
1.05842
1.03712
1.00559
0.960749
0.897053
0.803025
0.646008
0.305252
0.206156
0.415334
0.645264
0.839752
0.943896
0.925842
0.907664
0.913018
0.932049
0.959472
0.989341
1.01854
1.04667
1.0693
1.08672
1.10109
1.11432
1.12725
1.13723
1.14112
1.13935
1.13309
1.12326
1.10819
1.08566
1.05202
1.00024
0.916551
0.758381
0.374567
0.185119
0.405203
0.649898
0.856727
0.95524
0.931075
0.897932
0.909316
0.953192
1.00339
1.05028
1.09416
1.13384
1.16077
1.17363
1.18245
1.19141
1.20141
1.20961
1.21207
1.20946
1.20539
1.2025
1.19868
1.18947
1.1703
1.13539
1.07108
0.928146
0.469619
0.174828
0.410768
0.66441
0.873246
0.966124
0.940498
0.920636
0.955357
1.02949
1.09843
1.15372
1.20201
1.24379
1.27182
1.2816
1.28474
1.288
1.29371
1.29864
1.29944
1.29745
1.29933
1.30673
1.31627
1.323
1.3224
1.3094
1.2694
1.14238
0.629701
0.174874
0.430078
0.705739
0.926243
1.01222
0.984474
0.996682
1.05715
1.14107
1.22219
1.28681
1.33726
1.37613
1.40076
1.40737
1.4049
1.40224
1.40336
1.40514
1.40578
1.40743
1.41773
1.43758
1.46312
1.48704
1.50825
1.51212
1.48139
1.35655
0.764234
0.182931
0.478518
0.799984
1.05521
1.13694
1.09702
1.12378
1.18966
1.27639
1.37318
1.45121
1.50207
1.53332
1.54875
1.54847
1.53971
1.53137
1.52832
1.52836
1.53003
1.539
1.56115
1.59518
1.63707
1.6796
1.70912
1.71598
1.67702
1.45199
0.758081
0.21055
0.555131
0.939041
1.24714
1.33838
1.26479
1.28467
1.34835
1.43881
1.55251
1.64801
1.696
1.71284
1.71275
1.70117
1.6845
1.67118
1.6651
1.66452
1.66967
1.69051
1.72948
1.78117
1.83279
1.87362
1.89803
1.88553
1.77967
1.47045
0.74014
0.263661
0.673467
1.12819
1.43689
1.47904
1.43906
1.44193
1.50525
1.60596
1.73296
1.86009
1.91255
1.90497
1.88245
1.85602
1.83189
1.81563
1.80912
1.81033
1.82284
1.85603
1.9036
1.96087
2.01747
2.01051
1.99135
1.9634
1.85247
1.53079
0.75476
0.35892
0.875283
1.29403
1.51105
1.49977
1.50737
1.55141
1.63408
1.75119
1.89478
2.04331
2.11545
2.09297
2.04093
2.00027
1.97054
1.95681
1.9554
1.95642
1.9748
2.01931
2.06748
2.07903
2.06063
2.03602
2.03776
2.02836
1.91466
1.59039
0.795255
0.459715
1.05981
1.45412
1.4957
1.51426
1.54292
1.59408
1.689
1.82104
1.97932
2.15507
2.26091
2.23898
2.16634
2.11555
2.08733
2.07765
2.07083
2.08093
2.08539
2.08669
2.09444
2.08
2.04955
2.04644
2.07167
2.05745
1.92933
1.60357
0.822738
0.531601
1.17521
1.50624
1.47807
1.49747
1.54263
1.61691
1.72565
1.8674
2.03893
2.22222
2.33181
2.30603
2.23882
2.18993
2.17059
2.14974
2.14048
2.11262
2.09507
2.0803
2.06044
2.03647
2.02467
2.04812
2.08851
2.06403
1.92211
1.59452
0.829102
0.565251
1.23084
1.51052
1.46832
1.48488
1.54357
1.63548
1.75937
1.91537
2.10394
2.30946
2.40513
2.34418
2.27382
2.22919
2.20583
2.18556
2.1391
2.08921
2.05445
2.03025
2.00951
1.99347
2.00006
2.0468
2.09963
2.06647
1.90749
1.57229
0.826218
0.575078
1.24867
1.51026
1.46142
1.48396
1.55216
1.65539
1.78957
1.95545
2.15649
2.37397
2.44031
2.35641
2.27616
2.24445
2.20216
2.16649
2.10099
2.04254
2.00322
1.97791
1.95975
1.95211
1.97454
2.04353
2.10799
2.06808
1.89279
1.54651
0.817937
0.577286
1.24859
1.49856
1.45618
1.48798
1.56469
1.67466
1.81426
1.98483
2.19103
2.41152
2.43775
2.33061
2.2402
2.19756
2.16268
2.1144
2.04656
1.98753
1.94841
1.92367
1.90835
1.909
1.94617
2.03476
2.1092
2.0659
1.87772
1.52155
0.805853
0.572019
1.23621
1.47332
1.44923
1.49303
1.57659
1.69045
1.83119
2.00124
2.20481
2.4117
2.3976
2.2699
2.17412
2.11217
2.08857
2.04322
1.97673
1.92288
1.88707
1.86458
1.85304
1.86144
1.91225
2.01675
2.10073
2.05735
1.86103
1.49751
0.794133
0.564979
1.22374
1.44122
1.43952
1.49569
1.58497
1.70071
1.83997
2.00488
2.19804
2.37831
2.33537
2.18901
2.09051
2.01859
2.00015
1.96076
1.8987
1.85037
1.8188
1.79965
1.79256
1.80826
1.87085
1.98697
2.07818
2.03852
1.84062
1.47379
0.782992
0.566163
1.21791
1.40742
1.42785
1.4949
1.58851
1.70387
1.83978
1.99797
2.17609
2.32052
2.25957
2.10747
1.99784
1.92767
1.90791
1.87378
1.81684
1.77279
1.74468
1.72898
1.72647
1.74882
1.82076
1.94393
2.04022
2.00806
1.81484
1.44901
0.771916
0.574524
1.21408
1.37687
1.41477
1.49022
1.58625
1.7
1.8308
1.97951
2.14044
2.24694
2.16895
2.0248
1.91065
1.84327
1.81646
1.78576
1.73319
1.69201
1.66624
1.65341
1.65497
1.68318
1.76191
1.88809
1.98801
1.96608
1.78264
1.4222
0.760457
0.57392
1.20063
1.34164
1.39767
1.47957
1.57671
1.68695
1.81021
1.94717
2.08593
2.15193
2.06472
1.93286
1.82753
1.75978
1.72662
1.6979
1.64859
1.60925
1.58499
1.57432
1.57919
1.61227
1.69503
1.82055
1.92267
1.91253
1.74235
1.39216
0.748314
0.5597
1.16566
1.29715
1.37501
1.46195
1.55806
1.66305
1.77767
1.90044
2.01139
2.03641
1.94835
1.83396
1.74116
1.67526
1.63795
1.60878
1.56299
1.52558
1.50254
1.49333
1.50062
1.53713
1.62108
1.74321
1.84582
1.84786
1.69323
1.35771
0.733797
0.576455
1.1249
1.25358
1.3483
1.43744
1.53093
1.62988
1.73481
1.84011
1.91564
1.90485
1.82727
1.735
1.65589
1.59417
1.55223
1.51991
1.47796
1.44252
1.42044
1.41197
1.42062
1.45892
1.54151
1.65827
1.75893
1.77212
1.63578
1.31899
0.717964
0.583124
1.08185
1.21804
1.31693
1.40585
1.49586
1.58854
1.68311
1.76733
1.8023
1.77267
1.71183
1.64245
1.57729
1.52033
1.47406
1.43619
1.39587
1.36187
1.34012
1.33153
1.34034
1.37861
1.45774
1.56742
1.66436
1.68641
1.56936
1.27415
0.698187
0.562859
1.0276
1.17601
1.27765
1.36708
1.45382
1.54019
1.62265
1.67831
1.67997
1.65016
1.60864
1.56003
1.50778
1.45564
1.40575
1.36043
1.31901
1.28526
1.26267
1.25289
1.26056
1.29715
1.37122
1.47268
1.56461
1.59286
1.49442
1.22015
0.674345
0.522041
0.962679
1.12437
1.23157
1.3221
1.40553
1.48443
1.54754
1.57195
1.56271
1.54294
1.51902
1.48778
1.44708
1.39969
1.34742
1.29516
1.2494
1.21392
1.18928
1.17697
1.18205
1.21539
1.28322
1.37591
1.46193
1.49354
1.41198
1.15729
0.647711
0.480138
0.900639
1.07017
1.1808
1.2713
1.35077
1.41761
1.45516
1.4625
1.45865
1.45191
1.44163
1.42334
1.39224
1.3497
1.29698
1.23982
1.18821
1.14835
1.11999
1.10389
1.10531
1.13394
1.19469
1.27851
1.35806
1.39041
1.32254
1.08469
0.616915
0.445289
0.846225
1.01449
1.12562
1.21511
1.28674
1.33333
1.35356
1.3634
1.3707
1.37518
1.37398
1.36376
1.33987
1.30222
1.2514
1.19256
1.13603
1.08971
1.05525
1.03395
1.03046
1.05303
1.10627
1.18136
1.25402
1.28507
1.22756
1.00429
0.581533
0.421747
0.796457
0.957063
1.06648
1.15049
1.20651
1.23755
1.25936
1.27959
1.29742
1.30957
1.31343
1.30759
1.28883
1.25535
1.20857
1.15156
1.09253
1.03978
0.997224
0.968206
0.958673
0.973914
1.01867
1.08516
1.15074
1.17924
1.12938
0.921178
0.54343
0.400715
0.744845
0.89634
0.997824
1.06829
1.1125
1.14623
1.17894
1.20996
1.2353
1.25177
1.25819
1.25461
1.23931
1.20972
1.16786
1.11522
1.05676
0.999417
0.948406
0.908842
0.890836
0.897191
0.932506
0.990345
1.04889
1.07423
1.02964
0.837145
0.503825
0.378439
0.685193
0.823568
0.907821
0.969684
1.02005
1.06707
1.11171
1.15048
1.18003
1.19889
1.2071
1.20517
1.19229
1.16662
1.12969
1.0823
1.0269
0.967957
0.910188
0.859154
0.828183
0.823955
0.848263
0.897232
0.949238
0.971551
0.930315
0.753227
0.463397
0.342546
0.608078
0.723835
0.801738
0.874385
0.940927
1.00155
1.05458
1.09762
1.12953
1.15036
1.16057
1.16053
1.14988
1.1279
1.09528
1.0526
1.00116
0.94328
0.881769
0.821336
0.773443
0.755058
0.766511
0.804848
0.85164
0.872273
0.83459
0.671296
0.422913
0.290099
0.493631
0.603707
0.704317
0.798821
0.881053
0.950476
1.0076
1.05275
1.0864
1.10909
1.12127
1.12317
1.1147
1.09572
1.06648
1.02746
0.979446
0.92365
0.861199
0.794444
0.731358
0.692286
0.687416
0.713562
0.75543
0.776075
0.744154
0.593162
0.383251
0.225827
0.352025
0.500448
0.636925
0.749788
0.840263
0.913235
0.972045
1.01845
1.05343
1.07762
1.09139
1.09494
1.08832
1.07156
1.04483
1.00847
0.963019
0.90909
0.847105
0.777535
0.704123
0.64142
0.614548
0.62378
0.659403
0.682652
0.659639
0.521081
0.344691
0.168801
0.259287
0.450459
0.605521
0.72328
0.815147
0.888779
0.948168
0.995315
1.03126
1.05656
1.07154
1.07637
1.07113
1.05594
1.03097
0.996501
0.952876
0.9004
0.839149
0.768916
0.69038
0.610256
0.55412
0.540412
0.564406
0.589799
0.581682
0.458088
0.308846
0.136565
0.251321
0.450696
0.600703
0.714013
0.803479
0.876171
0.935474
0.983048
1.01971
1.04587
1.06176
1.0675
1.06322
1.04905
1.02519
0.991901
0.94945
0.897996
0.83746
0.767428
0.687389
0.598931
0.51407
0.471207
0.472294
0.500919
0.506343
0.403993
0.276329
0.134543
0.274591
0.467619
0.608771
0.716546
0.803065
0.874431
0.933507
0.981443
1.01872
1.04555
1.06205
1.06833
1.06453
1.0508
1.02738
0.994524
0.952497
0.901434
0.841238
0.771464
0.69133
0.600407
0.501551
0.420337
0.393538
0.411338
0.431221
0.355255
0.246875
0.145078
0.329454
0.502246
0.628468
0.728229
0.811283
0.881735
0.940929
0.989395
1.02732
1.05478
1.07182
1.07847
1.07489
1.06124
1.03778
1.00484
0.962713
0.911585
0.851422
0.781812
0.701836
0.610113
0.506885
0.400096
0.332664
0.32324
0.344605
0.317261
0.221992
0.17334
0.384961
0.539192
0.654292
0.748776
0.829924
0.900095
0.959799
1.00904
1.04773
1.0758
1.09319
1.09991
1.09609
1.08195
1.05779
1.02402
0.981024
0.929134
0.868449
0.798694
0.719053
0.628059
0.523916
0.408561
0.30019
0.253303
0.255932
0.267496
0.198764
0.206048
0.435692
0.575043
0.683855
0.776542
0.858132
0.929349
0.99015
1.04038
1.07985
1.1084
1.12593
1.13237
1.1279
1.11275
1.0873
1.05206
1.00756
0.954302
0.892632
0.822536
0.743453
0.654082
0.552279
0.435334
0.306956
0.20925
0.184125
0.18971
0.170555
0.23472
0.476653
0.610029
0.71788
0.812415
0.896212
0.969398
1.03186
1.08343
1.1239
1.153
1.17057
1.17652
1.17103
1.15439
1.12709
1.08976
1.04314
0.987964
0.924849
0.854147
0.775707
0.688592
0.590672
0.47784
0.342877
0.204708
0.13901
0.131421
0.139627
0.254287
0.503257
0.643697
0.757695
0.857116
0.944513
1.02053
1.08531
1.13874
1.18054
1.21038
1.22798
1.23327
1.22643
1.20783
1.1781
1.13806
1.08868
1.03097
0.965891
0.89417
0.816098
0.731203
0.637634
0.531002
0.401281
0.230215
0.126625
0.103989
0.117684
0.258221
0.519916
0.679622
0.804669
0.910937
1.00315
1.08298
1.15095
1.20695
1.25062
1.2815
1.29924
1.30375
1.29523
1.27418
1.24139
1.19793
1.14505
1.0841
1.01639
0.94302
0.864717
0.781505
0.692178
0.592672
0.471356
0.299393
0.140942
0.0954109
0.0996629
0.260058
0.542895
0.723762
0.860326
0.974282
1.07241
1.15723
1.22946
1.28896
1.3352
1.36758
1.38564
1.38928
1.37874
1.35466
1.31808
1.27036
1.21313
1.14808
1.07689
1.00103
0.921592
0.839045
0.752798
0.659651
0.547188
0.387917
0.203262
0.103298
0.0871169
0.268388
0.579211
0.777765
0.925286
1.04762
1.15287
1.24401
1.32179
1.38589
1.43557
1.47004
1.48869
1.49139
1.47841
1.45057
1.40925
1.35625
1.29362
1.22347
1.14783
1.06845
0.986687
0.903339
0.818317
0.729294
0.622984
0.47854
0.316983
0.154746
0.089221
0.287858
0.629379
0.841747
0.999979
1.13156
1.24528
1.34424
1.42903
1.49907
1.55326
1.59056
1.61014
1.61174
1.5957
1.56312
1.51587
1.45631
1.38703
1.31059
1.22935
1.14529
1.05988
0.974096
0.888382
0.801262
0.699722
0.571177
0.431112
0.273129
0.112672
0.316481
0.689633
0.91527
1.08464
1.22664
1.35036
1.45884
1.55238
1.62995
1.69
1.73103
1.75176
1.75196
1.73206
1.69349
1.63872
1.57099
1.49355
1.40942
1.32126
1.23118
1.14073
1.05092
0.962649
0.875805
0.779259
0.661474
0.534047
0.389281
0.174536
0.348245
0.756073
0.996958
1.17896
1.33301
1.46858
1.5886
1.69299
1.78014
1.84777
1.89344
1.9153
1.91312
1.88804
1.84194
1.77771
1.69988
1.6126
1.51931
1.4228
1.32523
1.22816
1.1327
1.03987
0.950711
0.857412
0.741559
0.614824
0.479149
0.243209
0.381266
0.826479
1.08544
1.28227
1.45046
1.60011
1.73414
1.85208
1.95145
2.02893
2.07962
2.10096
2.09365
2.06088
2.00583
1.93085
1.84123
1.74256
1.63874
1.53259
1.42608
1.32065
1.21746
1.11771
1.02236
0.928533
0.811792
0.680822
0.531197
0.284826
0.414739
0.899603
1.17958
1.39366
1.57838
1.74481
1.8961
2.03116
2.14636
2.23603
2.29024
2.30734
2.28903
2.24311
2.17791
2.09278
1.99151
1.88076
1.76551
1.64873
1.53216
1.4169
1.30371
1.19356
1.08676
0.983249
0.868089
0.735653
0.568735
0.292421
0.448342
0.974665
1.27836
1.51201
1.71583
1.90227
2.07482
2.23185
2.36824
2.46934
2.5259
2.53628
2.49897
2.42937
2.34714
2.25435
2.14539
2.024
1.89727
1.76933
1.64201
1.51608
1.39163
1.2691
1.14781
1.02664
0.908734
0.773669
0.600059
0.300515
0.481925
1.0511
1.38059
1.63585
1.86131
2.07116
2.26983
2.45585
2.61564
2.72694
2.79153
2.79769
2.73583
2.63294
2.51913
2.41442
2.2993
2.16973
2.03214
1.89294
1.75459
1.61791
1.48246
1.34773
1.21264
1.07533
0.939563
0.800796
0.623428
0.31387
0.515453
1.12837
1.48488
1.76323
2.01227
2.24859
2.47921
2.69763
2.88019
3.00344
3.09387
3.1025
3.00319
2.85905
2.7119
2.58291
2.45708
2.317
2.16899
2.01877
1.86942
1.72217
1.57684
1.4314
1.28493
1.1348
0.979316
0.818342
0.6296
0.314481
0.548957
1.20573
1.58962
1.89145
2.16497
2.43009
2.69089
2.94051
3.14116
3.2821
3.40108
3.41734
3.28382
3.09364
2.91483
2.76456
2.62134
2.46658
2.30744
2.14651
1.98632
1.82875
1.6738
1.51976
1.364
1.20368
1.03393
0.847063
0.62496
0.304153
0.582307
1.28227
1.69263
2.01745
2.31573
2.60477
2.88924
3.15665
3.3731
3.52597
3.63259
3.65163
3.51847
3.31286
3.11854
2.95229
2.78768
2.61762
2.44732
2.27602
2.10534
1.93778
1.77369
1.61151
1.44838
1.28037
1.10041
0.895803
0.633348
0.296282
0.61481
1.35669
1.79173
2.13843
2.45651
2.76658
3.07204
3.34656
3.51678
3.61299
3.68492
3.71368
3.68396
3.51209
3.31951
3.13749
2.95382
2.77011
2.5889
2.40737
2.22641
2.04918
1.87639
1.70657
1.53683
1.36274
1.17644
0.962232
0.678418
0.30705
0.646152
1.42816
1.88424
2.24613
2.5812
2.91226
3.22854
3.44644
3.53062
3.6214
3.70196
3.73922
3.7567
3.71059
3.52459
3.32314
3.12287
2.92606
2.73325
2.54087
2.34927
2.16225
1.98084
1.80353
1.62741
1.448
1.25768
1.04053
0.755804
0.344242
0.678521
1.49456
1.96177
2.33312
2.67883
3.00988
3.29506
3.42001
3.51857
3.61307
3.69326
3.73948
3.76191
3.80036
3.73019
3.52528
3.30218
3.08889
2.88186
2.67677
2.4734
2.27591
2.08544
1.90037
1.71764
1.53285
1.33875
1.11982
0.834586
0.385677
0.707213
1.54918
2.02011
2.39248
2.72603
3.04562
3.24523
3.37203
3.48246
3.57952
3.65937
3.71365
3.74301
3.77407
3.81439
3.72574
3.50169
3.26164
3.03565
2.81462
2.5976
2.3886
2.18838
1.99505
1.80526
1.61449
1.41557
1.19354
0.905778
0.421212
0.730615
1.59247
2.05832
2.42038
2.72671
2.99207
3.17352
3.31388
3.42681
3.52092
3.59873
3.65619
3.69424
3.72423
3.75956
3.79372
3.69243
3.44683
3.19332
2.95264
2.71994
2.49823
2.2876
2.08562
1.88848
1.69121
1.48621
1.25874
0.966606
0.454138
0.755649
1.62692
2.08339
2.4188
2.69171
2.92078
3.1133
3.25253
3.35912
3.44676
3.519
3.57549
3.61748
3.651
3.6805
3.71291
3.7295
3.61391
3.35456
3.08868
2.83778
2.60219
2.38072
2.17014
1.96588
1.76219
1.55056
1.31544
1.0157
0.477455
0.781011
1.64735
2.08229
2.39018
2.62754
2.8505
3.04982
3.18728
3.2835
3.36183
3.42782
3.48168
3.525
3.56055
3.58967
3.61315
3.63565
3.63654
3.49529
3.2237
2.94901
2.69758
2.46508
2.24659
2.03613
1.82686
1.60927
1.36629
1.05347
0.491302
0.7826
1.62998
2.03788
2.31577
2.53714
2.74268
2.93658
3.09686
3.19759
3.26812
3.32894
3.38101
3.42496
3.46187
3.49142
3.51314
3.53109
3.54862
3.53696
3.32595
3.04346
2.77824
2.53672
2.31254
2.09753
1.88419
1.66231
1.41339
1.08931
0.503311
0.75523
1.55639
1.94527
2.21643
2.4345
2.62652
2.79989
2.95656
3.08731
3.16952
3.22702
3.27719
3.32074
3.358
3.38805
3.41039
3.42712
3.44136
3.4515
3.36474
3.08506
2.82909
2.5891
2.36485
2.14794
1.93245
1.70833
1.45629
1.12563
0.520447
0.689421
1.46278
1.85183
2.12315
2.3396
2.52431
2.68475
2.82295
2.944
3.0488
3.12054
3.17099
3.2154
3.25269
3.28186
3.30426
3.32056
3.33089
3.33445
3.29903
3.08466
2.84828
2.62221
2.40171
2.18576
1.97003
1.74528
1.49228
1.15953
0.538113
0.640635
1.39199
1.77483
2.04107
2.25291
2.43163
2.58457
2.71307
2.8184
2.90834
2.9903
3.05705
3.10812
3.14774
3.17535
3.19519
3.2097
3.21927
3.21899
3.1938
3.05199
2.84628
2.63695
2.42374
2.21097
1.99641
1.77191
1.51866
1.18417
0.55076
0.624768
1.34317
1.71046
1.96816
2.17435
2.34789
2.49558
2.61904
2.71778
2.79488
2.86151
2.92711
2.98757
3.03509
3.06597
3.08671
3.1013
3.11047
3.1134
3.10091
2.99584
2.82542
2.63358
2.43098
2.22387
2.01197
1.78831
1.53487
1.19917
0.562085
0.614503
1.30291
1.65382
1.9032
2.10474
2.27453
2.41823
2.53774
2.63349
2.70664
2.76293
2.81411
2.86769
2.91641
2.95122
2.97601
2.9973
3.01335
3.02264
3.01197
2.92676
2.78566
2.61345
2.42384
2.22512
2.01799
1.79584
1.54203
1.20599
0.56928
0.602378
1.26285
1.60232
1.8478
2.04736
2.21456
2.35452
2.46985
2.56236
2.63412
2.68888
2.73351
2.7758
2.81677
2.84991
2.87495
2.90005
2.92537
2.9415
2.9255
2.8534
2.7327
2.57745
2.40337
2.21684
2.0169
1.79769
1.54338
1.20534
0.568674
0.586492
1.22297
1.56016
1.80666
2.00577
2.17027
2.30596
2.41654
2.50505
2.57458
2.62905
2.67343
2.71206
2.74645
2.77478
2.79781
2.82195
2.84964
2.86618
2.84707
2.78065
2.67039
2.52972
2.37137
2.19908
2.00986
1.79626
1.5427
1.20155
0.561785
0.56075
1.18925
1.53285
1.78308
1.98212
2.14294
2.27335
2.37863
2.46267
2.52923
2.58238
2.62603
2.66301
2.69428
2.71996
2.7422
2.76441
2.78677
2.79709
2.77338
2.70726
2.60476
2.477
2.33275
2.17442
1.99758
1.792
1.5413
1.19819
0.55637
0.540044
1.16825
1.5229
1.7797
1.97884
2.13448
2.25785
2.35674
2.4356
2.49841
2.54915
2.59098
2.62576
2.65432
2.67775
2.69748
2.71497
2.72821
2.72778
2.69824
2.63453
2.54136
2.4252
2.29216
2.14468
1.97896
1.78368
1.54149
1.19898
0.557726
0.537742
1.16779
1.53345
1.79631
1.99468
2.14345
2.25797
2.34903
2.42193
2.48046
2.52808
2.56714
2.59903
2.62461
2.64465
2.65992
2.67035
2.67347
2.66244
2.6283
2.56807
2.48337
2.37692
2.25245
2.1124
1.95484
1.77149
1.53954
1.2086
0.561792
0.543087
1.18999
1.57072
1.82622
2.01509
2.15972
2.26628
2.34939
2.41695
2.47201
2.51672
2.55285
2.58168
2.60401
2.62027
2.63052
2.63406
2.62849
2.60928
2.57147
2.51295
2.43364
2.334
2.2156
2.08042
1.92814
1.75309
1.53451
1.21287
0.575117
0.56493
1.24648
1.61737
1.85592
2.0294
2.16618
2.26949
2.34915
2.41517
2.46902
2.5121
2.54625
2.57281
2.59252
2.60557
2.61158
2.60966
2.59772
2.5727
2.53159
2.47287
2.39588
2.3
2.18523
2.05255
1.90245
1.73059
1.52048
1.21695
0.589063
0.615153
1.30538
1.65746
1.87167
2.03172
2.16016
2.26242
2.34482
2.41331
2.46855
2.51233
2.54659
2.5727
2.59128
2.60233
2.60548
2.59976
2.58347
2.5544
2.51042
2.45033
2.37346
2.27891
2.16581
2.03403
1.8834
1.71018
1.50049
1.20876
0.588006
0.662047
1.35764
1.68095
1.87948
2.03001
2.15289
2.25451
2.34062
2.4129
2.47156
2.51842
2.55503
2.58254
2.60158
2.61209
2.61387
2.60598
2.58706
2.55535
2.50905
2.44701
2.3688
2.27365
2.16044
2.02818
1.87559
1.69803
1.48128
1.18349
0.581223
0.684928
1.39267
1.68745
1.87815
2.02652
2.14937
2.25288
2.34115
2.41733
2.48182
2.53443
2.57587
2.60694
2.62814
2.63936
2.64059
2.63108
2.60987
2.57562
2.52686
2.46248
2.38197
2.28477
2.16977
2.03553
1.87989
1.69714
1.4708
1.15605
0.561202
0.69042
1.38908
1.67811
1.87112
2.0224
2.14846
2.25281
2.34616
2.43127
2.50462
2.56519
2.61342
2.64993
2.67499
2.68843
2.69026
2.67997
2.65691
2.62013
2.56844
2.50081
2.41667
2.31567
2.19685
2.0585
1.8977
1.70806
1.47303
1.14243
0.53773
0.678432
1.36122
1.65597
1.8581
2.01466
2.14151
2.25495
2.36341
2.46093
2.54495
2.61524
2.67212
2.71581
2.74631
2.76322
2.76648
2.75569
2.73059
2.69077
2.63542
2.56361
2.47475
2.36852
2.24414
2.09984
1.93232
1.73444
1.48888
1.14716
0.535178
0.67463
1.33282
1.63198
1.83866
1.99539
2.13747
2.27412
2.39942
2.51035
2.60687
2.68906
2.7568
2.8098
2.84755
2.86931
2.87467
2.86339
2.83549
2.79125
2.73057
2.65283
2.55755
2.44435
2.31253
2.16037
1.98446
1.77759
1.52242
1.1685
0.542002
0.67302
1.29373
1.59189
1.79822
1.98343
2.15723
2.31486
2.45624
2.58246
2.69416
2.79115
2.87267
2.93775
2.98518
3.0135
3.02166
3.00942
2.97727
2.92641
2.85782
2.77162
2.66756
2.54524
2.40393
2.24194
2.05579
1.83835
1.57259
1.20854
0.559426
0.635665
1.20594
1.52247
1.779
2.00273
2.20286
2.38064
2.5395
2.68295
2.8124
2.92724
3.02604
3.10674
3.16701
3.20417
3.21594
3.20158
3.16259
3.10163
3.02136
2.92319
2.80731
2.67332
2.52028
2.34633
2.14794
1.91791
1.63921
1.2609
0.583582
0.535383
1.07434
1.48707
1.79581
2.05606
2.28213
2.47967
2.65657
2.81865
2.96786
3.10381
3.22378
3.32435
3.40183
3.45149
3.46786
3.44894
3.3984
3.32196
3.22483
3.11013
2.97875
2.83016
2.66302
2.47512
2.26253
2.01764
1.72278
1.32506
0.611741
0.456072
1.02154
1.5006
1.85686
2.15501
2.40476
2.61902
2.81322
2.99486
3.16656
3.32694
3.4719
3.59666
3.69667
3.7647
3.78872
3.76074
3.69002
3.59047
3.46982
3.3333
3.18234
3.01612
2.83268
2.62929
2.40119
2.13947
1.82541
1.40252
0.644858
0.462033
1.06574
1.57805
1.98115
2.3059
2.56809
2.79712
3.01069
3.2153
3.41268
3.60074
3.77382
3.9258
4.05236
4.14483
4.18223
4.14253
4.03936
3.90539
3.75426
3.5907
3.41642
3.22986
3.02827
2.80857
2.565
2.28553
1.94991
1.49764
0.684314
0.504124
1.19374
1.73808
2.16472
2.49077
2.76279
3.01108
3.24926
3.4812
3.70774
3.92653
4.12997
4.31106
4.46461
4.57677
4.62743
4.58296
4.43944
4.25865
4.07145
3.87736
3.67736
3.46872
3.24759
3.01113
2.75347
2.45741
2.10027
1.61679
0.734117
0.587911
1.3824
1.96201
2.3678
2.69122
2.9825
3.25932
3.52898
3.79286
4.0515
4.30315
4.53923
4.75562
4.94281
5.06423
5.09412
5.03807
4.85832
4.63636
4.41179
4.18706
3.96086
3.73035
3.48878
3.23496
2.96303
2.65558
2.28165
1.76611
0.79895
0.69826
1.61616
2.1729
2.56083
2.90556
3.23021
3.54563
3.85287
4.15327
4.44518
4.72782
5.00083
5.26909
5.51357
5.63801
5.59016
5.46897
5.26742
5.02755
4.77086
4.51638
4.2635
4.01148
3.75089
3.48063
3.19506
2.87975
2.49975
1.95994
0.905937
0.854973
1.80954
2.33307
2.74982
3.13932
3.51073
3.87479
4.22809
4.57095
4.89768
5.20923
5.5241
5.86061
6.171
6.25704
6.11411
5.911
5.70076
5.44236
5.15659
4.86891
4.58605
4.31133
4.03426
3.74595
3.45434
3.1296
2.7492
2.21314
1.02672
0.948255
1.95376
2.4903
2.95588
3.396
3.82644
4.25008
4.66206
5.05932
5.43093
5.77924
6.12726
6.51798
6.85932
6.86481
6.68728
6.42868
6.18839
5.89614
5.57906
5.25304
4.93615
4.63629
4.33742
4.01888
3.71961
3.39082
2.97698
2.44575
1.21084
1.01195
2.10457
2.67886
3.17942
3.67954
4.1788
4.67162
5.15716
5.63019
6.07348
6.46785
6.81913
7.20725
7.51467
7.47341
7.35664
7.04982
6.71806
6.38938
6.03747
5.67494
5.31922
4.98709
4.65511
4.30064
3.95176
3.60597
3.18724
2.67373
1.41554
1.06073
2.21974
2.85958
3.41701
3.99401
4.56432
5.1314
5.71011
6.29205
6.84735
7.3068
7.60373
7.89483
8.10698
8.07617
8.07829
7.71135
7.30224
6.92961
6.54273
6.14136
5.74306
5.36733
4.9966
4.6034
4.18057
3.7334
3.26285
2.69934
1.40412
1.04306
2.28586
3.03365
3.69245
4.33722
4.96834
5.6113
6.30134
7.03741
7.79201
8.33832
8.53032
8.59458
8.66856
8.63927
8.67112
8.34061
7.94761
7.54299
7.1094
6.65836
6.21265
5.78683
5.37271
4.94878
4.4627
3.91166
3.2996
2.67517
1.35693
1.03712
2.37417
3.2689
4.01437
4.71136
5.38439
6.10089
6.89771
7.81201
8.72131
9.38302
9.51495
9.29121
9.2256
9.19363
9.10677
8.93707
8.68232
8.24589
7.74483
7.2207
6.71846
6.24436
5.80073
5.33349
4.7947
4.15115
3.37893
2.51494
1.24401
1.10992
2.60126
3.57737
4.37373
5.11596
5.83678
6.62209
7.45734
8.37778
9.34909
9.99214
10.2342
9.831
9.66639
9.61172
9.47282
9.44498
9.43283
9.04463
8.44214
7.80508
7.21065
6.67591
6.21126
5.71763
5.1439
4.44665
3.47571
2.11264
1.08743
1.33183
2.93734
3.95901
4.78002
5.53392
6.26793
7.00409
7.78286
8.65992
9.53977
10.066
10.3193
10.1006
9.87949
9.83147
9.7591
9.86885
10.0968
9.83207
9.15877
8.39487
7.64398
7.04975
6.5049
5.97502
5.39619
4.69301
3.66299
1.99462
0.911989
1.52663
3.24801
4.24368
5.04346
5.78185
6.51985
7.27686
8.02011
8.81676
9.62309
10.0438
10.1618
10.1547
9.97715
9.92336
9.93558
10.0994
10.2869
10.2563
9.63259
8.82512
8.0191
7.27305
6.63367
6.02143
5.40026
4.71023
3.75921
2.24442
0.918234
1.5232
3.30212
4.2948
5.10111
5.85628
6.60133
7.3343
8.07374
8.89447
9.67038
9.98311
9.99405
10.0601
10.0899
10.0529
10.0726
10.1326
10.2012
10.2217
9.78191
9.01136
8.17611
7.4152
6.73868
6.06662
5.39503
4.68501
3.84333
2.68306
1.16579
1.47225
3.27036
4.28238
5.10305
5.86599
6.61245
7.33375
8.08795
8.91873
9.6063
9.83343
9.84549
9.92696
10.0633
10.1264
10.11
10.057
10.0674
10.1182
9.82612
9.10561
8.25692
7.49764
6.81725
6.13037
5.43804
4.72908
3.95261
2.98487
1.41905
1.4416
3.23519
4.27161
5.10895
5.88273
6.62851
7.34368
8.11669
8.92613
9.48119
9.62274
9.66252
9.75541
9.88887
9.98001
9.97439
9.92072
9.9425
10.038
9.91061
9.25204
8.36599
7.56856
6.87221
6.18841
5.49752
4.79192
4.03569
3.12301
1.4804
1.43046
3.22228
4.28466
5.14146
5.93049
6.67306
7.39245
8.18945
8.95833
9.3551
9.40895
9.44429
9.52231
9.6203
9.70106
9.73271
9.74372
9.81796
9.96743
9.97565
9.42647
8.51537
7.6557
6.91723
6.22382
5.53309
4.82397
4.05404
3.12139
1.43483
1.44218
3.24499
4.33241
5.20792
6.01674
6.75634
7.49662
8.31806
9.01096
9.23066
9.21087
9.22075
9.27112
9.33854
9.41008
9.47502
9.54837
9.67842
9.8767
9.98647
9.58844
8.68499
7.76652
6.97852
6.2511
5.53946
4.81658
4.02359
3.05321
1.3703
1.47554
3.29578
4.40725
5.30086
6.1309
6.88349
7.66265
8.49771
9.04566
9.0945
9.02524
9.00975
9.03689
9.08543
9.15205
9.23751
9.35131
9.51938
9.74986
9.93797
9.71006
8.86287
7.90373
7.07032
6.29623
5.5475
4.79581
3.97143
2.95175
1.30167
1.51649
3.36163
4.49358
5.40745
6.25786
7.04506
7.88518
8.7011
9.02809
8.94567
8.8487
8.8159
8.82814
8.86823
8.93361
9.02834
9.16072
9.34578
9.59105
9.8356
9.78141
9.0411
8.0659
7.19487
6.38216
5.59627
4.81025
3.95612
2.89951
1.25637
1.5482
3.41787
4.57818
5.51702
6.39231
7.2319
8.14633
8.87359
8.95417
8.79208
8.68135
8.63831
8.64233
8.67988
8.7465
8.84444
8.98098
9.16765
9.41463
9.69725
9.79671
9.21158
8.24743
7.35249
6.51743
5.70985
4.90514
4.03445
2.968
1.29474
1.57201
3.46577
4.65792
5.62743
6.53274
7.44329
8.42054
8.95327
8.83861
8.63914
8.52255
8.47426
8.47459
8.51251
8.58176
8.68126
8.81538
8.99497
9.23416
9.53503
9.75881
9.36905
8.44151
7.53605
6.69453
5.88737
5.08837
4.2291
3.20378
1.47159
1.60401
3.5196
4.73694
5.73523
6.67646
7.67344
8.6569
8.92067
8.69439
8.48572
8.36938
8.3201
8.32042
8.36059
8.43345
8.53476
8.66514
8.83392
9.05847
9.35661
9.66285
9.49761
8.63902
7.73261
6.89907
6.1066
5.3282
4.5022
3.47402
1.67767
1.65404
3.59224
4.82152
5.83978
6.81772
7.88703
8.77177
8.80194
8.52837
8.32842
8.21818
8.17223
8.17578
8.21974
8.2966
8.40019
8.52746
8.68507
8.89074
9.1692
9.51156
9.56526
8.8268
7.92861
7.10979
6.33533
5.56697
4.71141
3.61723
1.60241
1.7219
3.68142
4.91425
5.94431
6.95955
8.07342
8.74117
8.61173
8.34274
8.16406
8.06542
8.027
8.03653
8.08518
8.16555
8.27072
8.39542
8.54342
8.72899
8.97626
9.30913
9.53045
8.99667
8.11851
7.30973
6.54224
5.73126
4.79389
3.5759
1.57061
1.79558
3.77776
5.01671
6.05939
7.12228
8.20544
8.58164
8.37939
8.14274
7.99111
7.90795
7.88009
7.8973
7.95105
8.03377
8.13862
8.25993
8.39959
8.56666
8.77888
9.07254
9.3711
9.12276
8.31083
7.4908
6.69756
5.83265
4.79119
3.46848
1.51051
1.86608
3.87589
5.13016
6.1864
7.28499
8.20761
8.3423
8.12773
7.93237
7.80862
7.74256
7.72651
7.75202
7.81029
7.89373
7.99573
8.11165
8.24261
8.39316
8.57293
8.81429
9.10628
9.11852
8.47381
7.64315
6.81632
5.91065
4.79379
3.37229
1.41056
1.93157
3.98446
5.26714
6.33678
7.42017
8.06631
8.05456
7.86819
7.71356
7.61568
7.56636
7.56157
7.59467
7.65615
7.73806
7.8345
7.94216
8.06225
8.19737
8.35104
8.54231
8.77287
8.89802
8.54305
7.77981
6.92505
6.00165
4.8858
3.45267
1.38082
1.99273
4.11522
5.42143
6.48738
7.451
7.81086
7.74822
7.60477
7.48702
7.41234
7.37811
7.38206
7.42077
7.48318
7.5614
7.65007
7.74699
7.8541
7.97466
8.10969
8.26322
8.42342
8.5271
8.40476
7.84572
7.04542
6.13125
5.05316
3.63222
1.46768
2.01831
4.24641
5.55513
6.57034
7.33483
7.51028
7.44071
7.33795
7.25354
7.19954
7.1787
7.18786
7.22823
7.2889
7.36173
7.44149
7.52648
7.62052
7.72889
7.85081
7.97959
8.08981
8.13687
8.05835
7.74793
7.11643
6.28358
5.26491
3.89496
1.62835
1.95056
4.29662
5.62764
6.58051
7.12837
7.19461
7.13579
7.06897
7.01505
6.98014
6.96958
6.98208
7.01963
7.07581
7.14189
7.21232
7.28592
7.36932
7.46764
7.57828
7.68702
7.76301
7.77058
7.67769
7.4431
7.02583
6.35652
5.4448
4.14272
1.78241
1.86898
4.23602
5.60201
6.51178
6.86743
6.87327
6.83508
6.80109
6.77473
6.75763
6.75523
6.77099
6.80259
6.85148
6.90928
6.97052
7.035
7.11066
7.19848
7.29522
7.3813
7.42706
7.40745
7.30116
7.08421
6.74646
6.24619
5.47712
4.28761
1.88908
1.80695
4.13978
5.49414
6.3424
6.54877
6.54932
6.54142
6.53726
6.53498
6.53425
6.53961
6.55786
6.58585
6.62493
6.67347
6.7259
6.78348
6.8509
6.926
7.00413
7.06382
7.08067
7.0387
6.92169
6.71578
6.41644
5.99981
5.36831
4.2537
1.98055
1.80653
4.13121
5.32714
6.0347
6.1862
6.22646
6.25337
6.27571
6.29424
6.30882
6.32288
6.34248
6.37084
6.40284
6.44147
6.48546
6.53618
6.59105
6.65061
6.70637
6.73885
6.73072
6.67178
6.54968
6.35545
6.08556
5.71988
5.15858
4.13136
2.0033
1.83068
4.03942
5.13012
5.64271
5.81879
5.90505
5.96418
6.01024
6.04722
6.07627
6.10028
6.12335
6.14988
6.17977
6.21167
6.24773
6.28772
6.32859
6.37044
6.4028
6.41078
6.38326
6.31268
6.19046
6.00975
5.76661
5.44094
4.92056
3.94364
1.95465
1.81958
3.78948
4.80998
5.25371
5.45858
5.58177
5.66965
5.73734
5.79081
5.83302
5.86692
5.89514
5.92039
5.94548
5.9717
6.001
6.03185
6.06121
6.08553
6.09678
6.08493
6.0425
5.96359
5.84183
5.67157
5.44787
5.14943
4.65286
3.7091
1.84353
1.62714
3.51247
4.4437
4.87435
5.10739
5.26131
5.37388
5.46023
5.5279
5.58145
5.62392
5.65728
5.68343
5.70527
5.7264
5.74969
5.77302
5.79158
5.80068
5.79492
5.76767
5.71327
5.62698
5.50349
5.33772
5.12455
4.83951
4.35058
3.44798
1.7044
1.4895
3.29385
4.10695
4.52486
4.77849
4.95442
5.08531
5.1861
5.26523
5.32808
5.3777
5.41575
5.4442
5.46564
5.48376
5.50171
5.51745
5.5258
5.52252
5.50369
5.46458
5.40059
5.30738
5.18018
5.01443
4.80472
4.52061
4.0354
3.17844
1.54849
1.43097
3.09136
3.81756
4.21942
4.48044
4.66808
4.81044
4.92141
5.00929
5.07947
5.13492
5.17729
5.20853
5.23093
5.24754
5.26107
5.26975
5.26923
5.25615
5.22738
5.17934
5.10797
5.00907
4.87828
4.71141
4.50163
4.214
3.73659
2.92653
1.39067
1.35147
2.90002
3.565
3.95024
4.21093
4.40342
4.5522
4.66984
4.76392
4.83941
4.89929
4.94536
4.97934
5.00308
5.01892
5.02903
5.03191
5.02434
5.00373
4.96759
4.913
4.83636
4.73374
4.60119
4.43445
4.22433
3.93504
3.4745
2.71392
1.25722
1.26935
2.7162
3.3358
3.70695
3.96485
4.15865
4.31056
4.4321
4.53013
4.60923
4.67228
4.72116
4.75744
4.78249
4.79802
4.80573
4.80427
4.79144
4.76534
4.72397
4.66486
4.58493
4.48074
4.34873
4.18425
3.97594
3.69
3.25388
2.54756
1.16672
1.18361
2.53918
3.12471
3.4838
3.73784
3.93106
4.08399
4.20741
4.30769
4.38903
4.4542
4.50502
4.54296
4.56898
4.58447
4.59076
4.58639
4.56989
4.54
4.49519
4.43334
4.3519
4.248
4.11841
3.95797
3.75401
3.47622
3.06697
2.4157
1.11062
1.10393
2.37273
2.92938
3.27727
3.52686
3.71835
3.87086
3.99475
4.096
4.17851
4.24489
4.29692
4.33585
4.36239
4.37789
4.38356
4.37753
4.35871
4.32645
4.27962
4.21649
4.13497
4.03266
3.90655
3.75095
3.55307
3.2862
2.90238
2.30013
1.06824
1.03348
2.21864
2.74888
3.08577
3.3302
3.51898
3.6701
3.79337
3.89454
3.9773
4.04411
4.09664
4.13598
4.16257
4.17804
4.18359
4.17686
4.15683
4.12334
4.07562
4.01231
3.93172
3.83175
3.70939
3.55872
3.36759
3.11249
2.75095
2.18763
1.02202
0.970134
2.07837
2.58355
2.90875
3.14698
3.33219
3.48107
3.60281
3.70296
3.78509
3.85155
3.90392
3.94303
3.96927
3.98465
3.99038
3.98359
3.96322
3.92938
3.88166
3.81901
3.73998
3.64267
3.52393
3.3779
3.19339
2.94949
2.60682
2.07351
0.967459
0.915162
1.95332
2.43335
2.74579
2.97674
3.15746
3.30323
3.42265
3.52099
3.60168
3.66699
3.71836
3.75654
3.7821
3.79742
3.80348
3.79709
3.777
3.74352
3.69649
3.63509
3.55804
3.46346
3.3481
3.2063
3.02792
2.79426
2.46816
1.95934
0.908051
0.866846
1.84177
2.29716
2.59615
2.81888
2.99415
3.136
3.25235
3.3482
3.42678
3.49019
3.53974
3.57618
3.60069
3.61596
3.62247
3.61682
3.59751
3.56493
3.51913
3.45942
3.38463
3.2928
3.18066
3.0428
2.87005
2.64584
2.3354
1.85031
0.850538
0.824086
1.7415
2.17315
2.45845
2.6723
2.84137
2.97857
3.09124
3.184
3.25989
3.3208
3.36787
3.40193
3.42498
3.44004
3.44704
3.44241
3.4243
3.39305
3.34889
3.29121
3.21888
3.12989
3.02099
2.88705
2.7198
2.50469
2.21009
1.75096
0.800759
0.785119
1.64982
2.05915
2.33095
2.53561
2.69796
2.82997
2.93844
3.02765
3.10036
3.15831
3.20248
3.23381
3.2551
3.26966
3.27709
3.27364
3.25703
3.22746
3.18524
3.12988
3.06022
2.97424
2.86877
2.73899
2.57746
2.37131
2.09243
1.66108
0.759327
0.748562
1.56478
1.95318
2.21191
2.40733
2.56271
2.68917
2.79306
2.87831
2.94748
3.0021
3.04311
3.07167
3.09114
3.10497
3.11267
3.11043
3.09553
3.06786
3.02782
2.97499
2.9082
2.82546
2.72368
2.59836
2.4428
2.24555
1.98154
1.57697
0.721957
0.713695
1.48469
1.85352
2.09977
2.28612
2.43447
2.55524
2.65431
2.73535
2.80071
2.85175
2.88938
2.91532
2.93322
2.94625
2.95399
2.95284
2.93974
2.91411
2.8764
2.82624
2.76248
2.68314
2.58522
2.46453
2.31502
2.12647
1.8763
1.49649
0.686686
0.679954
1.4084
1.75885
1.99327
2.17087
2.31231
2.42737
2.52155
2.59825
2.65966
2.707
2.74138
2.76504
2.78168
2.79391
2.8014
2.80109
2.78973
2.7662
2.73088
2.68346
2.62276
2.54684
2.45279
2.33674
2.19323
2.01303
1.77565
1.41846
0.653312
0.647116
1.33519
1.66827
1.89151
2.06074
2.19549
2.30496
2.3943
2.46669
2.52416
2.56795
2.59941
2.62138
2.6371
2.64854
2.65548
2.65558
2.64574
2.62424
2.59127
2.5465
2.48877
2.41614
2.32588
2.21437
2.07666
1.90434
1.67868
1.34191
0.622066
0.615171
1.2647
1.58128
1.7939
1.95516
2.08348
2.18756
2.27222
2.34043
2.39417
2.43482
2.46416
2.4851
2.50022
2.51089
2.51699
2.51695
2.50813
2.48845
2.45759
2.41525
2.36025
2.29069
2.20401
2.09684
1.96461
1.79962
1.58462
1.26597
0.590222
0.584072
1.19681
1.49766
1.70014
1.85376
1.97594
2.07487
2.15507
2.21938
2.26977
2.30798
2.33621
2.35684
2.37169
2.38166
2.38672
2.38591
2.37736
2.35904
2.32994
2.28965
2.237
2.17019
2.0868
1.98365
1.85649
1.69827
1.49299
1.19071
0.556773
0.553856
1.13146
1.41728
1.61002
1.75635
1.87267
1.96669
2.04271
2.10347
2.15116
2.18791
2.21589
2.23684
2.25178
2.26118
2.26512
2.26308
2.25397
2.2362
2.20835
2.16961
2.11887
2.05439
1.97393
1.87448
1.75199
1.6
1.40373
1.11682
0.52287
0.524242
1.06852
1.33999
1.5234
1.66275
1.77349
1.86288
1.93504
1.99281
2.0386
2.07474
2.1031
2.1248
2.14013
2.14917
2.15202
2.14858
2.13828
2.12017
2.09282
2.05498
2.00562
1.9431
1.86528
1.76926
1.65117
1.50508
1.31744
1.0453
0.489557
0.495366
1.00804
1.2657
1.44015
1.57282
1.67825
1.76332
1.83209
1.88754
1.93221
1.96827
1.99727
2.01987
2.03578
2.04468
2.04668
2.04187
2.03016
2.011
1.98321
1.94563
1.89717
1.83627
1.76088
1.66817
1.55437
1.41406
1.23486
0.977107
0.457719
0.467736
0.950043
1.19432
1.36014
1.48641
1.58682
1.66799
1.73398
1.78782
1.83191
1.86811
1.89769
1.92102
1.93741
1.9464
1.94785
1.94198
1.92891
1.90837
1.87958
1.84176
1.79379
1.73419
1.66105
1.57156
1.46201
1.32743
1.15657
0.912776
0.427702
0.440959
0.894157
1.12563
1.28316
1.40333
1.49914
1.57699
1.6409
1.69373
1.73755
1.7739
1.80373
1.827
1.84327
1.85221
1.85349
1.8471
1.83318
1.81164
1.78202
1.7438
1.69604
1.63745
1.56631
1.47993
1.37454
1.24562
1.08301
0.852758
0.399884
0.415055
0.840349
1.05941
1.20897
1.32348
1.4153
1.49056
1.55304
1.60527
1.649
1.68541
1.71492
1.73741
1.75301
1.76155
1.76279
1.75643
1.74241
1.72052
1.69051
1.65203
1.60442
1.54666
1.47728
1.39381
1.2925
1.16917
1.01467
0.79734
0.373737
0.390111
0.787655
0.995399
1.13747
1.24699
1.33559
1.40896
1.4705
1.52238
1.56605
1.60228
1.63097
1.65249
1.66721
1.67521
1.67631
1.67014
1.65635
1.63466
1.6048
1.56648
1.51921
1.46225
1.39446
1.31371
1.2164
1.09857
0.952107
0.747689
0.35084
0.366029
0.736983
0.933479
1.06887
1.17429
1.26043
1.33243
1.3933
1.44492
1.48844
1.52401
1.55168
1.57212
1.58593
1.59333
1.59421
1.58821
1.57486
1.55376
1.52457
1.48692
1.44037
1.38436
1.31809
1.23994
1.14655
1.03408
0.895729
0.704085
0.332012
0.342901
0.688369
0.873817
1.00358
1.1059
1.1902
1.26109
1.32134
1.3726
1.41564
1.4502
1.47678
1.49618
1.50914
1.51601
1.5167
1.51087
1.49802
1.47771
1.44952
1.413
1.36761
1.31283
1.24813
1.17248
1.0829
0.975704
0.845431
0.666386
0.316643
0.320231
0.63958
0.816143
0.941996
1.04219
1.125
1.19483
1.25439
1.30507
1.34709
1.3805
1.406
1.42447
1.43675
1.44327
1.44392
1.43832
1.42599
1.40653
1.37951
1.34439
1.30049
1.24721
1.18425
1.11109
1.02514
0.922659
0.79963
0.633432
0.304358
0.295351
0.586378
0.760263
0.884537
0.983304
1.06471
1.13329
1.19187
1.24158
1.28234
1.31461
1.33913
1.35681
1.36863
1.37507
1.37592
1.3707
1.35895
1.34036
1.31452
1.28082
1.23846
1.18686
1.12592
1.05538
0.972701
0.873806
0.756145
0.601319
0.291622
0.268698
0.534505
0.708412
0.831957
0.929332
1.00906
1.07598
1.13307
1.18135
1.22093
1.25222
1.27592
1.29301
1.30464
1.31133
1.31262
1.30793
1.29683
1.27909
1.25436
1.22192
1.18097
1.13114
1.07259
1.00491
0.925357
0.829534
0.715567
0.568731
0.274911
0.242201
0.488828
0.66248
0.784695
0.880122
0.957655
1.02249
1.07771
1.12441
1.16274
1.19305
1.21607
1.23282
1.24454
1.25172
1.25366
1.24961
1.23919
1.22227
1.19852
1.16714
1.12743
1.0795
1.02372
0.959268
0.883047
0.790474
0.679951
0.54026
0.260984
0.219214
0.453658
0.623602
0.742866
0.83542
0.910188
0.97263
1.02587
1.07089
1.1078
1.13702
1.15938
1.17592
1.18788
1.19567
1.19835
1.19504
1.18539
1.1693
1.14642
1.1159
1.07739
1.03153
0.97873
0.917824
0.845374
0.756286
0.64827
0.51339
0.248707
0.201701
0.42954
0.591813
0.70622
0.794902
0.866423
0.926289
0.977474
1.02073
1.05611
1.08415
1.10577
1.12207
1.13422
1.14258
1.14605
1.14364
1.13493
1.11966
1.09744
1.06765
1.03046
0.986822
0.937074
0.879802
0.811437
0.72616
0.619574
0.487478
0.23683
0.189985
0.414354
0.565996
0.674029
0.758026
0.825999
0.883187
0.932226
0.973653
1.00747
1.0343
1.05513
1.07106
1.08326
1.0921
1.09644
1.09504
1.08724
1.07256
1.05081
1.02183
0.986187
0.944869
0.898019
0.844164
0.779769
0.698614
0.593386
0.46233
0.224754
0.182854
0.404808
0.544453
0.645271
0.724022
0.788253
0.842737
0.889591
0.929158
0.961479
0.987197
1.00725
1.02271
1.03492
1.04426
1.04943
1.04874
1.04144
1.02711
1.00591
0.978028
0.944151
0.905082
0.860798
0.809847
0.748914
0.672051
0.569531
0.43782
0.212255
0.177978
0.397036
0.52553
0.619114
0.692196
0.752466
0.804192
0.848859
0.886613
0.917571
0.942345
0.96172
0.976875
0.989301
0.999186
1.00476
1.00412
0.996918
0.982954
0.962559
0.936024
0.903978
0.866975
0.824861
0.77629
0.718364
0.645848
0.548045
0.415832
0.200206
0.173582
0.389444
0.509015
0.594897
0.661912
0.718189
0.767089
0.809505
0.845511
0.87528
0.899297
0.918259
0.933493
0.946412
0.956555
0.961807
0.960824
0.953699
0.940271
0.920859
0.895771
0.8655
0.830385
0.79016
0.743635
0.688442
0.620186
0.528471
0.39745
0.189358
0.169389
0.383193
0.494333
0.571065
0.63243
0.68522
0.731413
0.771562
0.805871
0.83459
0.858047
0.876943
0.892626
0.905924
0.915692
0.920206
0.918962
0.912056
0.899262
0.880893
0.85724
0.828655
0.795314
0.7569
0.712369
0.659776
0.595546
0.510538
0.38344
0.180345
0.162573
0.371972
0.475423
0.545289
0.603116
0.653518
0.697425
0.735502
0.768265
0.796026
0.819077
0.838149
0.854219
0.867271
0.876149
0.880021
0.878671
0.872045
0.859932
0.842623
0.820357
0.793374
0.761739
0.725132
0.682675
0.632737
0.572284
0.49354
0.373572
0.173334
0.151159
0.351204
0.45028
0.518099
0.57485
0.623655
0.665738
0.702054
0.733456
0.760305
0.782976
0.80205
0.817859
0.830038
0.838034
0.841445
0.840044
0.83373
0.822315
0.806043
0.785098
0.759638
0.729661
0.694867
0.654527
0.60725
0.550335
0.477047
0.366007
0.168313
0.142537
0.332976
0.43186
0.496401
0.550404
0.596927
0.637124
0.671863
0.701925
0.727787
0.749798
0.768217
0.783093
0.794291
0.801567
0.804586
0.803158
0.79716
0.786421
0.771135
0.751434
0.72742
0.699055
0.666069
0.627843
0.583146
0.529494
0.460827
0.358066
0.165438
0.144475
0.333489
0.427089
0.484442
0.532376
0.574808
0.612256
0.645065
0.673576
0.698109
0.718875
0.736078
0.749853
0.760175
0.766808
0.769478
0.768032
0.762333
0.752225
0.73786
0.719325
0.696679
0.669868
0.638651
0.602484
0.560242
0.509585
0.444914
0.349335
0.163709
0.146161
0.332247
0.423392
0.476611
0.519316
0.556957
0.590835
0.621139
0.647648
0.67039
0.689564
0.705441
0.718178
0.727681
0.733731
0.736093
0.734631
0.729205
0.719678
0.706162
0.688712
0.667354
0.642024
0.612502
0.578295
0.538353
0.490448
0.429357
0.339832
0.162048
0.140506
0.316664
0.41145
0.46548
0.506069
0.540518
0.571299
0.598978
0.623213
0.643995
0.661601
0.676257
0.688016
0.696759
0.702282
0.704367
0.702889
0.69771
0.68871
0.675972
0.659523
0.639367
0.615431
0.587508
0.555137
0.51732
0.471932
0.414081
0.329588
0.159772
0.131541
0.298342
0.394203
0.449491
0.490172
0.523498
0.55233
0.577689
0.599714
0.618705
0.634912
0.64845
0.65931
0.667362
0.672406
0.674235
0.672735
0.667773
0.659247
0.647215
0.631683
0.612637
0.59
0.56357
0.532899
0.497032
0.453951
0.399036
0.318794
0.156731
0.126098
0.285943
0.376348
0.43182
0.473032
0.505953
0.533404
0.556833
0.577026
0.594488
0.609456
0.621988
0.632035
0.639457
0.644058
0.645642
0.644109
0.639333
0.631227
0.619827
0.605126
0.587098
0.565662
0.540616
0.511518
0.477449
0.436486
0.384237
0.307731
0.153058
0.1258
0.281634
0.361764
0.415354
0.456159
0.488375
0.514537
0.536435
0.555171
0.571356
0.585242
0.596876
0.606191
0.613035
0.617219
0.618563
0.616985
0.61236
0.604618
0.593778
0.579824
0.562724
0.54239
0.518618
0.490973
0.458561
0.419549
0.369727
0.296615
0.149014
0.128032
0.277458
0.34984
0.40056
0.439945
0.471057
0.496028
0.516672
0.534235
0.54937
0.56233
0.573169
0.58182
0.58813
0.591919
0.593028
0.591388
0.586878
0.579443
0.569092
0.555805
0.539541
0.520208
0.497597
0.471279
0.440393
0.403175
0.355576
0.285595
0.144737
0.125985
0.269837
0.337867
0.386177
0.424028
0.454074
0.478084
0.497743
0.514368
0.528648
0.540835
0.550985
0.559038
0.564855
0.568273
0.569149
0.567428
0.562994
0.55581
0.545878
0.533173
0.517649
0.499207
0.477635
0.452513
0.423007
0.387422
0.341855
0.274768
0.140376
0.119821
0.258182
0.324345
0.371439
0.408226
0.437458
0.460833
0.479838
0.49578
0.509401
0.52097
0.530545
0.538077
0.543451
0.546523
0.547165
0.545342
0.540947
0.533956
0.524367
0.512152
0.497259
0.479581
0.458905
0.434819
0.406521
0.372378
0.328634
0.264207
0.135983
0.112766
0.244261
0.30957
0.356252
0.392574
0.421409
0.444535
0.46327
0.478825
0.492
0.503112
0.512236
0.519336
0.524324
0.527077
0.527491
0.52555
0.521154
0.514297
0.504968
0.493138
0.478746
0.461679
0.44172
0.418467
0.391148
0.3582
0.316026
0.254046
0.13174
0.10462
0.229441
0.294492
0.341263
0.377652
0.406579
0.429843
0.448658
0.464121
0.477067
0.487882
0.496675
0.503436
0.508101
0.510574
0.510779
0.508713
0.504284
0.497499
0.488342
0.476777
0.462736
0.446097
0.426639
0.403966
0.377332
0.345248
0.304298
0.244413
0.127564
0.0964232
0.215783
0.281012
0.328207
0.364987
0.394319
0.41796
0.437052
0.452641
0.465549
0.476211
0.48479
0.491308
0.495724
0.497974
0.498004
0.495824
0.491342
0.484577
0.475505
0.464083
0.450236
0.43383
0.414636
0.392256
0.365966
0.334345
0.294169
0.235936
0.123803
0.0905604
0.206808
0.272346
0.319857
0.356991
0.386694
0.410671
0.430042
0.445815
0.458784
0.469409
0.477888
0.484273
0.488545
0.490661
0.490582
0.488323
0.483795
0.477018
0.467964
0.456584
0.442793
0.426448
0.407309
0.384965
0.358683
0.327054
0.286929
0.22916
0.120288
)
;
boundaryField
{
inlet
{
type fixedValue;
value uniform 1;
}
outlet
{
type inletOutlet;
phi phi.air;
inletValue uniform 1;
value nonuniform List<scalar>
30
(
0.0905604
0.206808
0.272346
0.319857
0.356991
0.386694
0.410671
0.430042
0.445815
0.458784
0.469409
0.477888
0.484273
0.488545
0.490661
0.490582
0.488323
0.483795
0.477018
0.467964
0.456584
0.442793
0.426448
0.407309
0.384965
0.358683
0.327054
0.286929
0.22916
0.120288
)
;
}
walls
{
type kqRWallFunction;
value nonuniform List<scalar>
400
(
0.820832
0.569828
0.414924
0.359893
0.316027
0.27222
0.230338
0.198841
0.203629
0.240011
0.322169
0.398587
0.432044
0.450611
0.458707
0.4608
0.463193
0.480976
0.469733
0.439169
0.386551
0.343208
0.335518
0.334441
0.323341
0.291481
0.245432
0.206156
0.185119
0.174828
0.174874
0.182931
0.21055
0.263661
0.35892
0.459715
0.531601
0.565251
0.575078
0.577286
0.572019
0.564979
0.566163
0.574524
0.57392
0.5597
0.576455
0.583124
0.562859
0.522041
0.480138
0.445289
0.421747
0.400715
0.378439
0.342546
0.290099
0.225827
0.168801
0.136565
0.134543
0.145078
0.17334
0.206048
0.23472
0.254287
0.258221
0.260058
0.268388
0.287858
0.316481
0.348245
0.381266
0.414739
0.448342
0.481925
0.515453
0.548957
0.582307
0.61481
0.646152
0.678521
0.707213
0.730615
0.755649
0.781011
0.7826
0.75523
0.689421
0.640635
0.624768
0.614503
0.602378
0.586492
0.56075
0.540044
0.537742
0.543087
0.56493
0.615153
0.662047
0.684928
0.69042
0.678432
0.67463
0.67302
0.635665
0.535383
0.456072
0.462033
0.504124
0.587911
0.69826
0.854973
0.948255
1.01195
1.06073
1.04306
1.03712
1.10992
1.33183
1.52663
1.5232
1.47225
1.4416
1.43046
1.44218
1.47554
1.51649
1.5482
1.57201
1.60401
1.65404
1.7219
1.79558
1.86608
1.93157
1.99273
2.01831
1.95056
1.86898
1.80695
1.80653
1.83068
1.81958
1.62714
1.4895
1.43097
1.35147
1.26935
1.18361
1.10393
1.03348
0.970134
0.915162
0.866846
0.824086
0.785119
0.748562
0.713695
0.679954
0.647116
0.615171
0.584072
0.553856
0.524242
0.495366
0.467736
0.440959
0.415055
0.390111
0.366029
0.342901
0.320231
0.295351
0.268698
0.242201
0.219214
0.201701
0.189985
0.182854
0.177978
0.173582
0.169389
0.162573
0.151159
0.142537
0.144475
0.146161
0.140506
0.131541
0.126098
0.1258
0.128032
0.125985
0.119821
0.112766
0.10462
0.0964232
0.0905604
0.820093
0.582757
0.429319
0.371664
0.345323
0.313592
0.262504
0.214181
0.201458
0.221471
0.254637
0.247763
0.231159
0.197534
0.158527
0.134351
0.131687
0.137294
0.152747
0.167159
0.179707
0.192429
0.206761
0.22366
0.244365
0.271371
0.305252
0.374567
0.469619
0.629701
0.764234
0.758081
0.74014
0.75476
0.795255
0.822738
0.829102
0.826218
0.817937
0.805853
0.794133
0.782992
0.771916
0.760457
0.748314
0.733797
0.717964
0.698187
0.674345
0.647711
0.616915
0.581533
0.54343
0.503825
0.463397
0.422913
0.383251
0.344691
0.308846
0.276329
0.246875
0.221992
0.198764
0.170555
0.139627
0.117684
0.0996629
0.0871169
0.089221
0.112672
0.174536
0.243209
0.284826
0.292421
0.300515
0.31387
0.314481
0.304153
0.296282
0.30705
0.344242
0.385677
0.421212
0.454138
0.477455
0.491302
0.503311
0.520447
0.538113
0.55076
0.562085
0.56928
0.568674
0.561785
0.55637
0.557726
0.561792
0.575117
0.589063
0.588006
0.581223
0.561202
0.53773
0.535178
0.542002
0.559426
0.583582
0.611741
0.644858
0.684314
0.734117
0.79895
0.905937
1.02672
1.21084
1.41554
1.40412
1.35693
1.24401
1.08743
0.911989
0.918234
1.16579
1.41905
1.4804
1.43483
1.3703
1.30167
1.25637
1.29474
1.47159
1.67767
1.60241
1.57061
1.51051
1.41056
1.38082
1.46768
1.62835
1.78241
1.88908
1.98055
2.0033
1.95465
1.84353
1.7044
1.54849
1.39067
1.25722
1.16672
1.11062
1.06824
1.02202
0.967459
0.908051
0.850538
0.800759
0.759327
0.721957
0.686686
0.653312
0.622066
0.590222
0.556773
0.52287
0.489557
0.457719
0.427702
0.399884
0.373737
0.35084
0.332012
0.316643
0.304358
0.291622
0.274911
0.260984
0.248707
0.23683
0.224754
0.212255
0.200206
0.189358
0.180345
0.173334
0.168313
0.165438
0.163709
0.162048
0.159772
0.156731
0.153058
0.149014
0.144737
0.140376
0.135983
0.13174
0.127564
0.123803
0.120288
)
;
}
frontAndBackPlanes
{
type empty;
}
}
// ************************************************************************* //
| [
"mizuha.watanabe@gmail.com"
] | mizuha.watanabe@gmail.com |
d00194ed8d31dade0157e905e1334374c1a27500 | fca339684dfe174fa5fb075a4a323fd32bc673ab | /Test1_Code/Import_Code/main.cpp | bb1c1f38769778d5fb369ada9315071b3a2f8256 | [] | no_license | Jwcob/BA21_MODULE_TESTS | e2e44869f44de420d64fb0fb37885d079e8b8395 | 0d8ab1551d01a59c6475c24f2717589545de5237 | refs/heads/main | 2023-05-13T01:09:50.418445 | 2021-05-25T23:28:08 | 2021-05-25T23:28:08 | 370,734,048 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 88 | cpp | import <iostream>;
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
} | [
"jacob.polanz@chello.at"
] | jacob.polanz@chello.at |
b4ae6568579aaab2b498bfb423f8fba4863c94ef | e04f82d5b50f396ae1351d40f5e44d0df096c0b2 | /2.Advanced_Class/코드(Code)/CPP/0919_ACOUNT/0918_db_test/wbdb.cpp | a2466686956f041b8e197dcc8a107658172a2a45 | [] | no_license | SIRAbae/-BIT-Class-Sangbae-Growth-Diary | de1013e5b5187d32dfeb370a03ed6db49031739f | 50e5315ccc5af70a420aeb90c65cf12029b034eb | refs/heads/master | 2022-04-08T18:44:34.606970 | 2020-03-19T11:49:44 | 2020-03-19T11:49:44 | 246,871,821 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 7,433 | cpp | //wbdb.cpp
#include "std.h"
#define DBNAME TEXT("member1")
#define ID TEXT("wb30")
#define PW TEXT("1234")
SQLHSTMT hStmt;
SQLHENV hEnv;
SQLHDBC hDbc;
BOOL wbdb_DBConnect()
{
// 연결 설정을 위한 변수들
SQLRETURN Ret;
// 1, 환경 핸들을 할당하고 버전 속성을 설정한다.(p1741)
if (SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &hEnv) != SQL_SUCCESS)
return false;
if (SQLSetEnvAttr(hEnv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER)SQL_OV_ODBC3, SQL_IS_INTEGER) != SQL_SUCCESS)
return false;
// 2. 연결 핸들을 할당하고 연결한다.
if (SQLAllocHandle(SQL_HANDLE_DBC, hEnv, &hDbc) != SQL_SUCCESS)
return false;
// 오라클 서버에 연결하기
Ret = SQLConnect(hDbc, (SQLTCHAR *)DBNAME, SQL_NTS, (SQLTCHAR *)ID, SQL_NTS, (SQLTCHAR *)PW, SQL_NTS);
if ((Ret != SQL_SUCCESS) && (Ret != SQL_SUCCESS_WITH_INFO))
return false;
// 명령 핸들을 할당한다.
if (SQLAllocHandle(SQL_HANDLE_STMT, hDbc, &hStmt) != SQL_SUCCESS)
return false;
return true;
}
BOOL wbdb_DBDConnect()
{
// 뒷정리
if (hStmt) SQLFreeHandle(SQL_HANDLE_STMT, hStmt);
if (hDbc) SQLDisconnect(hDbc);
if (hDbc) SQLFreeHandle(SQL_HANDLE_DBC, hDbc);
if (hEnv) SQLFreeHandle(SQL_HANDLE_ENV, hEnv);
return TRUE;
}
BOOL wbdb_CreateTeamTable()
{
TCHAR str[1024] = TEXT("CREATE TABLE Team (GroupId number,GroupName varchar2(20),CONSTRAINT Group_id_pk primary key(GroupId));");
return CommandSql(str);
}
BOOL wbdb_DropTeamTable()
{
TCHAR str[1024] = TEXT("DROP TABLE Team;");
return CommandSql(str);
}
BOOL wbdb_CreateMemberTable()
{
TCHAR str[1024] = TEXT("CREATE TABLE member( \
mem_ID NUMBER, \
mem_NAME VARCHAR2(20 BYTE) NOT NULL, \
mem_gen VARCHAR2(20 BYTE) \
check(mem_gen in('남성', '여성')), \
mem_phone VARCHAR2(20 BYTE), \
mem_GID NUMBER NOT NULL, \
mem_date date, \
CONSTRAINT member_PK PRIMARY KEY(mem_ID)); ");
TCHAR str1[1024] = TEXT("ALTER TABLE member \
ADD CONSTRAINT member_FK FOREIGN KEY(mem_ID) \
REFERENCES member(mem_ID); ");
return CommandSql(str1);
CommandSql(str);
}
BOOL wbdb_DropMemberTable()
{
TCHAR str[1024] = TEXT("DROP TABLE Member;");
return CommandSql(str);
}
BOOL wbdb_CreateSequence()
{
TCHAR str[1024] = TEXT("create sequence mem_ID_seq increment by 1 start with 1000; ");
return CommandSql(str);
}
BOOL wbdb_DropSequence()
{
TCHAR str[1024] = TEXT("drop sequence mem_ID_seq");
return CommandSql(str);
}
BOOL wbdb_InsertTeam(TCHAR*id)
{
TCHAR str[1024];
//wsprintf(str, TEXT("insert into customer_mgr values(%d, '%s',1321,'12/13/12','F');"),
//team_id, team_name);
wsprintf(str, TEXT("insert into account_table(acc_id, cus_id, acc_date) VALUES(acc_id_num.nextval,(select CUS_ID from CUSTOMER_MGR WHERE cus_name = '%s'),sysdate); "),id);
if (CommandSql(str) == TRUE)
{
TCHAR str[1024] = TEXT("commit");
return CommandSql(str);
}
return FALSE;
}
BOOL wbdb_UpdateTeam(int id, TCHAR* name, TCHAR*phone, TCHAR*date, TCHAR* gender)
{
TCHAR str[1024];
//wsprintf(str, TEXT("insert into customer_mgr values(%d, '%s',1321,'12/13/12','F');"),
//team_id, team_name);
wsprintf(str, TEXT("UPDATE CUSTOMER_MGR SET cus_name = '%s', cus_phone = '%s', cus_date = '%s', cus_gender = '%s' WHERE cus_id = %d; "), name, phone,date, gender,id);
if (CommandSql(str) == TRUE)
{
TCHAR str[1024] = TEXT("commit");
return CommandSql(str);
}
return FALSE;
}
BOOL wbdb_DeleteTeam(int id)
{
TCHAR str[1024];
wsprintf(str, TEXT("DELETE ACCOUNT_TABLE where acc_id = %d; "), id);
if (CommandSql(str) == TRUE)
{
TCHAR str[1024] = TEXT("commit");
return CommandSql(str);
}
return FALSE;
}
BOOL CommandSql(TCHAR *str)
{
if (SQLExecDirect(hStmt, (SQLTCHAR *)str, SQL_NTS) != SQL_SUCCESS)
{
return FALSE;
}
return TRUE;
}
BOOL wbdb_GetTeamSelectAll(vector<AccData>*teamlist)
{
int acc_id, acc_val, acc_count, cus_id;
SQLINTEGER lacc_id,lacc_val,lacc_count,lcus_id;
SQLTCHAR date[50];
SQLINTEGER ldate;
SQLBindCol(hStmt, 1, SQL_C_ULONG, &acc_id, 0, &lacc_id);
SQLBindCol(hStmt, 2, SQL_C_ULONG, &acc_val, 0, &lacc_val);
SQLBindCol(hStmt, 3, SQL_C_WCHAR, date, sizeof(date), &ldate);
SQLBindCol(hStmt, 4, SQL_C_ULONG, &acc_count, 0, &lacc_count);
SQLBindCol(hStmt, 5, SQL_C_ULONG, &cus_id, 0, &lcus_id);
TCHAR sql[256] = TEXT("select * from ACCOUNT_TABLE order by acc_id;");
if (SQLExecDirect(hStmt, (SQLTCHAR*)sql, SQL_NTS) != SQL_SUCCESS)
{
return FALSE;
}
for (int i = 0; SQLFetch(hStmt) != SQL_NO_DATA; i++)
{
AccData data;
data.acc_id = acc_id;
data.acc_val = acc_val;
data.acc_count = acc_count;
data.cus_id = cus_id;
_tcscpy_s(data.acc_date, date);
teamlist->push_back(data);
}
return true;
}
BOOL wbdb_GetMemberName(vector<AccName>* memberlist)
{
//int id;
//SQLINTEGER lteam_id;
SQLTCHAR name[50];
SQLINTEGER lname;
//SQLBindCol(hStmt, 1, SQL_C_ULONG, &id, 0, <eam_id);
SQLBindCol(hStmt, 1, SQL_C_WCHAR, name, sizeof(name), &lname);
TCHAR sql[256] = TEXT("select cus_name from customer_mgr;");
if (SQLExecDirect(hStmt, (SQLTCHAR*)sql, SQL_NTS) != SQL_SUCCESS)
{
return FALSE;
}
for (int i = 0; SQLFetch(hStmt) != SQL_NO_DATA; i++)
{
AccName data = {0};
_tcscpy_s(data.cus_name, name);
memberlist->push_back(data);
}
return TRUE;
}
BOOL wbdb_GetSearchSelectAll(vector<AccData>*teamlist, TCHAR* name)
{
int acc_id, acc_val, acc_count, cus_id;
SQLINTEGER lacc_id, lacc_val, lacc_count, lcus_id;
SQLTCHAR date[50];
SQLINTEGER ldate;
SQLBindCol(hStmt, 1, SQL_C_ULONG, &acc_id, 0, &lacc_id);
SQLBindCol(hStmt, 2, SQL_C_ULONG, &acc_val, 0, &lacc_val);
SQLBindCol(hStmt, 3, SQL_C_WCHAR, date, sizeof(date), &ldate);
SQLBindCol(hStmt, 4, SQL_C_ULONG, &acc_count, 0, &lacc_count);
SQLBindCol(hStmt, 5, SQL_C_ULONG, &cus_id, 0, &lcus_id);
TCHAR sql[256];
wsprintf(sql,TEXT("select * from ACCOUNT_TABLE where cus_id = (select CUS_ID from CUSTOMER_MGR where cus_name = '%s') order by acc_id;"), name);
if (SQLExecDirect(hStmt, (SQLTCHAR*)sql, SQL_NTS) != SQL_SUCCESS)
{
return FALSE;
}
for (int i = 0; SQLFetch(hStmt) != SQL_NO_DATA; i++)
{
AccData data;
data.acc_id = acc_id;
data.acc_val = acc_val;
data.acc_count = acc_count;
data.cus_id = cus_id;
_tcscpy_s(data.acc_date, date);
teamlist->push_back(data);
}
return true;
}
//BOOL mydb_SelectData()
//{
// SQLCHAR Name[256];
//
// SQLINTEGER lName, lSnum, lPhone, lEmail;
// int ssnum;
//
// SQLCHAR Phone[256];
// SQLCHAR Email[256];
//
// SQLBindCol(hStmt, 1, SQL_C_CHAR, Name, sizeof(Name), &lName);
// SQLBindCol(hStmt, 2, SQL_C_ULONG, &ssnum, 0, &lSnum);
// SQLBindCol(hStmt, 3, SQL_C_CHAR, Phone, sizeof(Phone), &lPhone);
// SQLBindCol(hStmt, 4, SQL_C_CHAR, Email, sizeof(Email), &lEmail);
//
// char sql[256] = "select * from sb";
//
// if (SQLExecDirect(hStmt, (SQLCHAR*)sql, SQL_NTS) != SQL_SUCCESS)
// {
// return FALSE;
// }
//
// char name[21], num[21], phoneNumber[21], email[41];
// int count = 0;
// for (int i = 0; SQLFetch(hStmt) != SQL_NO_DATA; i++)
// {
// wsprintf(name, "%s", Name);
// wsprintf(num, "%d", ssnum);
// wsprintf(phoneNumber, "%s", Phone);
// wsprintf(email, "%s", Email);
//
// control_GetData(count++, name, num, phoneNumber, email);
//
// }
// return TRUE;
//}
//
//BOOL mydb_DeleteData()
//{
// char sql[256];
//
// wsprintf(sql, "delete sb");
// if (SQLExecDirect(hStmt, (SQLCHAR *)sql, SQL_NTS) != SQL_SUCCESS)
// {
// return FALSE;
// }
// return TRUE;
//} | [
"56426302+SIRAbae@users.noreply.github.com"
] | 56426302+SIRAbae@users.noreply.github.com |
d367d051b470340b4fd975ef89f0da3523439ae0 | 50d57297975b70f9421b37dc730d8b03224323bf | /dependencies/include/OGRE/ParticleUniverse/ParticleUniverseObserverTokens.h | a21e694e9b59bf8ccc7ad5a44f965ae91b6b70c2 | [
"Apache-2.0"
] | permissive | albmarvil/The-Eternal-Sorrow | 619df0f6ea8beba1257596c3c9c8cf4626317e14 | 5b5f9d2d0c3a9c1db9393c611ae4952b7d26eedf | refs/heads/master | 2021-01-23T07:02:47.206891 | 2015-07-07T14:13:14 | 2015-07-07T14:13:14 | 38,193,036 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,413 | h | /*
-----------------------------------------------------------------------------------------------
Copyright (C) 2013 Henry van Merode. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
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 OR
COPYRIGHT HOLDERS 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.
-----------------------------------------------------------------------------------------------
*/
#ifndef __PU_OBSERVER_TOKENS_H__
#define __PU_OBSERVER_TOKENS_H__
#include "ParticleUniversePrerequisites.h"
#include "ParticleUniverseObserver.h"
#include "ParticleUniverseScriptDeserializer.h"
namespace ParticleUniverse
{
/** The ObserverTranslator parses 'Observer' tokens
*/
class _ParticleUniverseExport ObserverTranslator : public ScriptTranslator
{
protected:
ParticleObserver* mObserver;
public:
ObserverTranslator(void);
virtual ~ObserverTranslator(void){};
virtual void translate(ScriptCompiler* compiler, const AbstractNodePtr &node);
};
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
//-------------------------------------------------------------------------
/**
*/
class _ParticleUniverseExport ParticleObserverWriter : public ScriptWriter
{
public:
ParticleObserverWriter(void) {};
virtual ~ParticleObserverWriter(void) {};
/** @see
ScriptWriter::write
*/
virtual void write(ParticleScriptSerializer* serializer, const IElement* element);
};
}
#endif
| [
"tukaram92@gmail.com"
] | tukaram92@gmail.com |
003144932ae0c24d4f1edef7f74d192d04168587 | ca770a8b01e1e949bb929f8b76f473e54070d9ff | /TemplateGame/GameObject.h | edfc8404f9ee02f31c84c785445a2cd95e9080c0 | [] | no_license | maslhiro/DirectXGame_0809 | 69bdacdc9a69f88c2a45cbc6266ef12dd698995e | 773ea3dc550fd3d910d85fdc657ffa30abe92d3e | refs/heads/master | 2021-07-09T01:01:20.813533 | 2020-10-30T08:22:50 | 2020-10-30T08:22:50 | 207,265,653 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,542 | h | #pragma once
#include "define.h"
#include "Texture.h"
#include "Animation.h"
#include "DeviceManager.h"
#include "AnimationManager.h"
#include "Sound.h"
class GameObject
{
protected:
int _id;
// Chia Id de phan biet cac the loai game obj :)))
int _idType;
// Static obj : land, pillar, rope, ..
bool _isStaticObj;
// Lưu lại rect của các obj như land, rope,.. bởi vì chúng nó đéo có animation
RECT _boundingWorld;
Animation _curAnimation;
// Map state voi idAnimation tuong ung
std::unordered_map<int, Animation> _listAnimation;
// Doi tuong nao dung yen thi state = NONE
int _state;
// Lat nguoc sprite
bool _isFlip;
bool _isAnimated;
bool _isTerminated;
float _speed; // vx
float _gravity; // vy
float _dx, _dy;
Vec3 _posWorld;
Vec2 _scale;
pDeviceManager _device;
pTexture _texture;
pSound _sound;
public:
int getId();
void setId(int);
void setIsStaticObj(bool);
bool getIsStaticObj();
void setRectWorld(RECT);
int getIdType();
void setIdType(int);
void setSpeed(float);
void setGravity(float);
void setDx(float);
void setDy(float);
void setState(int);
int getState();
int getCurrentFrame();
void setPositionWorld(Vec3);
void setPositionWorld(Vec2);
void setPositionWorld(int, int);
Vec3 getPosWorld();
void setScale(Vec2);
void setScale(float, float);
void setScale(float);
void setIsFlip(bool);
void setIsAnimated(bool);
bool getIsAnimated();
void setIsTerminated(bool);
bool getIsTerminated();
// Load Animation từ Animation Manager vao map Animation
virtual void loadResource() = 0;
virtual void render() = 0;
virtual void update(float) = 0;
// bắt sự kiện phím thay dổi, đặt trước hàm update để fix pos -> dưa theo speed :rainbow:
virtual void handlerInput(float) = 0;
bool checkCollision(RECT);
float checkCollision_SweptAABB(RECT, float, float, int&);
float checkCollision_SweptAABB_(RECT, float, float, int&);
// Fix pos khi chuyển animation
void fixPosAnimation(int);
// Mac dinh fix theo bottom
float fixPosHeight(int);
// Mac dinh fix theo left
float fixPosWidth(int);
// isStatic = false => Lay RECT của Sprite đầu tiên trong Animation
// isStatic = true => lay bouding world obj
// Này dùng để fix pos
RECT getBoundingBox();
// isStatic = false => Lay RECT của Ani gốc
// isStatic = true => lay bouding world obj
// Này dùng để fix pos
RECT getCurrentBoudingBox();
GameObject();
GameObject(int);
~GameObject();
};
typedef GameObject* pGameObject; | [
"nhutvinh14@gmail.com"
] | nhutvinh14@gmail.com |
2993929fda3c4ecaa67e2405c99cd40c0f8c9a8e | 9515e3321c33709258e4686a7cd71e98a8c3a03e | /3p/VTK/ThirdParty/vtkm/vtk-m/vtkm/worklet/testing/UnitTestStreamingSine.cxx | 43aa59d48cad5143a5c813b03002b09e100fd5c8 | [
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Mason-Wmx/ViewFramework | f9bc534df86f5cf640a9dbf963b9ea17a8e93562 | d8117adc646c369ad29d64477788514c7a75a797 | refs/heads/main | 2023-06-29T04:12:37.042638 | 2021-07-28T09:26:55 | 2021-07-28T09:26:55 | 374,267,631 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,236 | cxx | //============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//
// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#include <vtkm/cont/ArrayHandleStreaming.h>
#include <vtkm/cont/DeviceAdapterAlgorithm.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/worklet/DispatcherMapField.h>
#include <vtkm/worklet/DispatcherStreamingMapField.h>
#include <vector>
namespace vtkm
{
namespace worklet
{
class SineWorklet : public vtkm::worklet::WorkletMapField
{
public:
using ControlSignature = void(FieldIn<>, FieldOut<>);
using ExecutionSignature = _2(_1, WorkIndex);
template <typename T>
VTKM_EXEC T operator()(T x, vtkm::Id& index) const
{
return (static_cast<T>(index) + vtkm::Sin(x));
}
};
}
}
// Utility method to print input, output, and reference arrays
template <class T1, class T2, class T3>
void compareArrays(T1& a1, T2& a2, T3& a3, char const* text)
{
for (vtkm::Id i = 0; i < a1.GetNumberOfValues(); ++i)
{
std::cout << a1.GetPortalConstControl().Get(i) << " " << a2.GetPortalConstControl().Get(i)
<< " " << a3.GetPortalConstControl().Get(i) << std::endl;
VTKM_TEST_ASSERT(
test_equal(a2.GetPortalConstControl().Get(i), a3.GetPortalConstControl().Get(i), 0.01f),
text);
}
}
void TestStreamingSine()
{
// Test the streaming worklet
std::cout << "Testing streaming worklet:" << std::endl;
const vtkm::Id N = 25;
const vtkm::Id NBlocks = 4;
vtkm::cont::ArrayHandle<vtkm::Float32> input, output, reference, summation;
std::vector<vtkm::Float32> data(N), test(N);
vtkm::Float32 testSum = 0.0f;
for (vtkm::UInt32 i = 0; i < N; i++)
{
data[i] = static_cast<vtkm::Float32>(i);
test[i] = static_cast<vtkm::Float32>(i) + static_cast<vtkm::Float32>(vtkm::Sin(data[i]));
testSum += test[i];
}
input = vtkm::cont::make_ArrayHandle(data);
using DeviceAlgorithms = vtkm::cont::DeviceAdapterAlgorithm<VTKM_DEFAULT_DEVICE_ADAPTER_TAG>;
vtkm::worklet::SineWorklet sineWorklet;
vtkm::worklet::DispatcherStreamingMapField<vtkm::worklet::SineWorklet> dispatcher(sineWorklet);
dispatcher.SetNumberOfBlocks(NBlocks);
dispatcher.Invoke(input, output);
reference = vtkm::cont::make_ArrayHandle(test);
compareArrays(input, output, reference, "Wrong result for streaming sine worklet");
vtkm::Float32 referenceSum, streamSum;
// Test the streaming exclusive scan
std::cout << "Testing streaming exclusive scan: " << std::endl;
referenceSum = DeviceAlgorithms::ScanExclusive(input, summation);
streamSum = DeviceAlgorithms::StreamingScanExclusive(4, input, output);
VTKM_TEST_ASSERT(test_equal(streamSum, referenceSum, 0.01f),
"Wrong sum for streaming exclusive scan");
compareArrays(input, output, summation, "Wrong result for streaming exclusive scan");
// Test the streaming exclusive scan with binary operator
std::cout << "Testing streaming exnclusive scan with binary operator: " << std::endl;
vtkm::Float32 initValue = 0.0;
referenceSum = DeviceAlgorithms::ScanExclusive(input, summation, vtkm::Maximum(), initValue);
streamSum =
DeviceAlgorithms::StreamingScanExclusive(4, input, output, vtkm::Maximum(), initValue);
VTKM_TEST_ASSERT(test_equal(streamSum, referenceSum, 0.01f),
"Wrong sum for streaming exclusive scan with binary operator");
compareArrays(
input, output, summation, "Wrong result for streaming exclusive scan with binary operator");
// Test the streaming reduce
std::cout << "Testing streaming reduce: " << std::endl;
referenceSum = DeviceAlgorithms::Reduce(input, 0.0f);
streamSum = DeviceAlgorithms::StreamingReduce(4, input, 0.0f);
std::cout << "Result: " << streamSum << " " << referenceSum << std::endl;
VTKM_TEST_ASSERT(test_equal(streamSum, referenceSum, 0.01f), "Wrong sum for streaming reduce");
// Test the streaming reduce with binary operator
std::cout << "Testing streaming reduce with binary operator: " << std::endl;
referenceSum = DeviceAlgorithms::Reduce(input, 0.0f, vtkm::Maximum());
streamSum = DeviceAlgorithms::StreamingReduce(4, input, 0.0f, vtkm::Maximum());
std::cout << "Result: " << streamSum << " " << referenceSum << std::endl;
VTKM_TEST_ASSERT(test_equal(streamSum, referenceSum, 0.01f),
"Wrong sum for streaming reduce with binary operator");
}
int UnitTestStreamingSine(int, char* [])
{
return vtkm::cont::testing::Testing::Run(TestStreamingSine);
}
| [
"mingxin.wang@peraglobal.com"
] | mingxin.wang@peraglobal.com |
d1f75fee577f435311be168377d87394adc8a654 | 13f78c34e80a52442d72e0aa609666163233e7e0 | /CSES/geometry/convexhull.cpp | bf8e228ffbf498887fe058e20fad29299dae23e9 | [] | no_license | Giantpizzahead/comp-programming | 0d16babe49064aee525d78a70641ca154927af20 | 232a19fdd06ecef7be845c92db38772240a33e41 | refs/heads/master | 2023-08-17T20:23:28.693280 | 2023-08-11T22:18:26 | 2023-08-11T22:18:26 | 252,904,746 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,628 | cpp | #include <iostream>
#include <cmath>
#include <vector>
#include <algorithm>
using namespace std;
#define rep(i, a, b) for (int i = (a); i < (b); i++)
#define sz(x) ((int) x.size())
#define all(x) x.begin(), x.end()
using ll = long long;
const int MAXN = 2e5+5;
int N;
struct Point {
int x, y;
double comp;
};
Point P[MAXN];
bool on[MAXN];
vector<Point> H;
int ccw(Point& a, Point& b, Point& c) {
ll res = (ll)(b.x-a.x)*(c.y-a.y) - (ll)(b.y-a.y)*(c.x-a.x);
if (res < 0) return -1;
else if (res > 0) return 1;
else return 0;
}
bool onSeg(Point& a, Point& b, Point& c) {
if (ccw(a, b, c) != 0) return false;
if (a.x == c.x && a.y == c.y) return true;
if (b.x == c.x && b.y == c.y) return true;
if (a.x == b.x) return ((a.y < c.y) == (c.y < b.y));
else return ((a.x < c.x) == (c.x < b.x));
}
void solve() {
cin >> N;
rep(i, 0, N) {
cin >> P[i].x >> P[i].y;
if (make_pair(P[i].y, P[i].x) < make_pair(P[0].y, P[0].x)) {
swap(P[i], P[0]);
}
}
rep(i, 1, N) P[i].comp = atan2(P[i].y-P[0].y, P[i].x-P[0].x);
sort(P+1, P+N, [](const Point& a, const Point& b) {
return a.comp < b.comp;
});
P[N].x = P[0].x;
P[N].y = P[0].y;
rep(i, 0, N+1) {
while (sz(H) >= 2) {
int res = ccw(H[sz(H)-2], H[sz(H)-1], P[i]);
if (res < 0) H.pop_back();
else if (res == 0) {
// Either don't add this one, or remove the other one
if (onSeg(H[sz(H)-2], H[sz(H)-1], P[i])) break;
else H.pop_back();
} else {
H.push_back(P[i]);
break;
}
}
if (sz(H) < 2) H.push_back(P[i]);
}
// Mark points on the hull
// cout << "hull:\n";
// for (Point& p : H) cout << p.x << ' ' << p.y << '\n';
int currSeg = 0, ans = 0;
rep(i, 0, N) {
// cout << "i " << i << " seg " << currSeg << endl;
if (H[currSeg+1].x == P[i].x && H[currSeg+1].y == P[i].y) {
// Next segment
on[i] = true;
ans++;
currSeg++;
// cout << "next\n";
} else if (onSeg(H[currSeg], H[currSeg+1], P[i]) ||
(currSeg != 0 && onSeg(H[currSeg-1], H[currSeg], P[i])) ||
(currSeg != sz(H)-2 && onSeg(H[currSeg+1], H[currSeg+2], P[i]))) {
on[i] = true;
ans++;
}
}
cout << ans << '\n';
rep(i, 0, N) if (on[i]) cout << P[i].x << ' ' << P[i].y << '\n';
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
} | [
"43867185+Giantpizzahead@users.noreply.github.com"
] | 43867185+Giantpizzahead@users.noreply.github.com |
7efb48fc81da3687c70a727a8c5bcbd1cc61a54a | dd76cb0ed67fa78d75ca7e70b3010bb2798e6c82 | /work/myredis/event2/behaviac/base/core/timer.h | 9c29c74161c2cfc468bf2ffe61a09bc38dda635c | [] | no_license | Riopho/vimrc | d91ecdef68deab1a24d80ce733e64be073211b74 | 1780e9ddc7d1cf1e6b422221e333cdcdb9be78b8 | refs/heads/master | 2021-06-08T20:07:42.666225 | 2019-11-19T13:50:36 | 2019-11-19T13:50:36 | 134,824,016 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,061 | h | #ifndef BEHAVIAC_BASE_TIMER_H_
#define BEHAVIAC_BASE_TIMER_H_
#include "config.h"
namespace behaviac
{
// Forward declaration
struct TimerInformation;
BEHAVIAC_API const TimerInformation& GetTimerInformation();
struct TimerInformation
{
int64_t cpuFrequency;
int64_t timerFrequency;
float tickInSecond;
float tickInMillisecond;
float tickInMicrosecond;
float tickInNanosecond;
float tickInCycle;
};
struct TimeSpan
{
TimeSpan() {}
BEHAVIAC_FORCEINLINE explicit TimeSpan(int64_t tick) : tick(tick) {}
BEHAVIAC_FORCEINLINE uint64_t GetTick() const
{
return tick;
}
BEHAVIAC_FORCEINLINE float GetSecond() const
{
return tick * GetTimerInformation().tickInSecond;
}
BEHAVIAC_FORCEINLINE float GetMillisecond() const
{
return tick * GetTimerInformation().tickInMillisecond;
}
BEHAVIAC_FORCEINLINE float GetMicrosecond() const
{
return tick * GetTimerInformation().tickInMicrosecond;
}
BEHAVIAC_FORCEINLINE float GetNanosecond() const
{
return tick * GetTimerInformation().tickInNanosecond;
}
BEHAVIAC_FORCEINLINE float GetCycle() const
{
return tick * GetTimerInformation().tickInCycle;
}
int64_t tick;
};
struct Tick
{
BEHAVIAC_FORCEINLINE explicit Tick(int64_t t) : tick(t) {}
friend BEHAVIAC_FORCEINLINE TimeSpan operator-(Tick end, Tick start)
{
return TimeSpan(end.tick - start.tick);
}
int64_t tick;
};
BEHAVIAC_API bool TimerStart();
BEHAVIAC_API bool TimerStop();
BEHAVIAC_API const TimerInformation& GetTimerInformation();
BEHAVIAC_API Tick GetTick();
BEHAVIAC_API int64_t ReadTSC();
} // namespace behaviac
#endif//BEHAVIAC_BASE_TIMER_H_
| [
"rio@TwGame.(none)"
] | rio@TwGame.(none) |
0815e61795b8bc251158c21e63561ae23b7dccc7 | 911f133ff3fbfde58ee6b8d57ea8e5393f971234 | /Ch5/Exercise 5.2.cpp | 14a97de065a9673cc91d700d248f98942942945f | [] | no_license | xche03/CPP-Primer-5th | 5e2ba71791a405390505264778784813c2776232 | 887c236c01891bda726ef3a23ec375b53885022d | refs/heads/master | 2021-01-09T21:52:04.924093 | 2016-02-29T15:28:32 | 2016-02-29T15:28:32 | 44,064,362 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 356 | cpp | /*Exercise 5.2: What is a block? When might you might use a block?*/
/*A compound statement, usually referred to as a block, is a (possibly empty)
sequence of statements and declarations surrounded by a pair of curly braces.*/
/*Compound statements are used when the language requires a single statement but
the logic of our program needs more than one.*/ | [
"xche03@gmail.com"
] | xche03@gmail.com |
d21868f567330b6be914e67bce29e25d86edd605 | 148b61252764fdd95aa17e52179d801bdd20ee15 | /mars/stn/src/simple_ipport_sort.cc | 4caaf20b100f83e61217dc0096d5b4213c553fba | [
"MIT",
"Zlib",
"BSD-3-Clause",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL"
] | permissive | Lynnnnnn/mars | 8c7ab4b6e193de5e83ba79668f9461fea017f9a7 | 2b87cceec445b649b5c0190c119e9cbb30e5dc85 | refs/heads/master | 2021-04-29T08:17:35.555275 | 2016-12-29T14:32:28 | 2016-12-29T14:32:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,624 | cc | // Tencent is pleased to support the open source community by making GAutomator available.
// Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
// Licensed under the MIT License (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
// http://opensource.org/licenses/MIT
// 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.
/*
* simple_ipport_sort.cc
* network
*
* Created by liucan on 14-6-16.
* Copyright (c) 2014年 Tencent. All rights reserved.
*/
#include "simple_ipport_sort.h"
#include <unistd.h>
#include <math.h>
#include <deque>
#include <algorithm>
#include "boost/filesystem.hpp"
#include "boost/bind.hpp"
#include "boost/accumulators/numeric/functional.hpp"
#include "mars/comm/time_utils.h"
#include "mars/comm/xlogger/xlogger.h"
#include "mars/comm/platform_comm.h"
#include "mars/app/app.h"
#define IPPORT_RECORDS_FILENAME "/ipportrecords2.xml"
static const time_t kRecordTimeout = 60 * 60 * 24;
static const char* const kFolderName = "host";
// const static char* const RECORDS = "records";
static const char* const kRecord = "record";
static const char* const kItem = "item";
static const char* const kTime = "time";
static const char* const kNetInfo = "netinfo";
static const char* const kIP = "ip";
static const char* const kPort = "port";
//static const char* const kSuccess = "succ";
//static const char* const kTotal = "total";
static const char* const kHistoryResult = "historyresult";
static const unsigned int kBanTime = 6 * 60 * 1000; // 6 min
static const int kBanFailCount = 3;
static const int kSuccessUpdateInterval = 10*1000;
static const int kFailUpdateInterval = 10*1000;
#define SET_BIT(SET, RECORDS) RECORDS = (((RECORDS)<<1) | (bool(SET)))
static inline
uint32_t CAL_BIT_COUNT(uint64_t RECORDS) {
uint32_t COUNT = 0;
while(RECORDS)
{
RECORDS = RECORDS & (RECORDS-1);
COUNT++;
}
return COUNT;
}
///////////////////////////////////////////////////////////////////////////////////////////
namespace mars { namespace stn {
struct BanItem {
std::string ip;
uint16_t port;
uint8_t records;
tickcount_t last_fail_time;
tickcount_t last_suc_time;
BanItem(): port(0), records(0) {}
};
}}
using namespace mars::stn;
SimpleIPPortSort::SimpleIPPortSort()
: hostpath_(mars::app::GetAppFilePath() + "/" + kFolderName) {
if (!boost::filesystem::exists(hostpath_)){
boost::filesystem::create_directory(hostpath_);
}
ScopedLock lock(mutex_);
__LoadXml();
lock.unlock();
InitHistory2BannedList(false);
}
SimpleIPPortSort::~SimpleIPPortSort() {
ScopedLock lock(mutex_);
__SaveXml();
}
void SimpleIPPortSort::__SaveXml() {
__RemoveTimeoutXml();
recordsxml_.SaveFile((hostpath_ + IPPORT_RECORDS_FILENAME).c_str());
}
void SimpleIPPortSort::__LoadXml() {
tinyxml2::XMLError error = recordsxml_.LoadFile((hostpath_ + IPPORT_RECORDS_FILENAME).c_str());
if (tinyxml2::XML_SUCCESS != error) return;
__RemoveTimeoutXml();
}
void SimpleIPPortSort::__RemoveTimeoutXml() {
std::vector<tinyxml2::XMLElement*> remove_ele_ptr_list;
for (tinyxml2::XMLElement* record = recordsxml_.FirstChildElement(kRecord);
NULL != record; record = record->NextSiblingElement(kRecord)) {
const char* lasttime_chr = record->Attribute(kTime);
if (lasttime_chr) {
struct timeval now = {0};
gettimeofday(&now, NULL);
time_t lasttime = (time_t)strtoul(lasttime_chr, NULL, 10);
if (now.tv_sec < lasttime || now.tv_sec - lasttime >= kRecordTimeout) {
remove_ele_ptr_list.push_back(record);
}
} else {
remove_ele_ptr_list.push_back(record);
}
}
for (std::vector<tinyxml2::XMLElement*>::iterator iter = remove_ele_ptr_list.begin();
iter != remove_ele_ptr_list.end(); ++iter) {
recordsxml_.DeleteChild(*iter);
}
}
void SimpleIPPortSort::InitHistory2BannedList(bool _savexml) {
ScopedLock lock(mutex_);
if (_savexml) __SaveXml();
_ban_fail_list_.clear();
std::string curr_netinfo;
if (kNoNet == getCurrNetLabel(curr_netinfo)) return;
const tinyxml2::XMLElement* record = NULL;
for (record = recordsxml_.FirstChildElement(kRecord);
NULL != record; record = record->NextSiblingElement(kRecord)) {
const char* netinfoChr = record->Attribute(kNetInfo);
if (netinfoChr && (0 == strcmp(netinfoChr, curr_netinfo.c_str()))) {
xwarn2(TSF"netinfoChr:%_, curr_netinfo.c_str():%_", netinfoChr, curr_netinfo.c_str());
break;
}
}
if (NULL == record) { return; }
for (const tinyxml2::XMLElement* item = record->FirstChildElement(kItem); NULL != item; item = item->NextSiblingElement(kItem)) {
const char* ip = item->Attribute(kIP);
uint32_t port = item->UnsignedAttribute(kPort);
uint64_t historyresult = (uint64_t)item->Int64Attribute(kHistoryResult);
struct BanItem banitem;
banitem.ip = ip;
banitem.port = port;
banitem.records = 0;
//8 in 1
for (int i = 0; i < 8; ++i) {
SET_BIT(historyresult & 0xFF, banitem.records);
historyresult >>= 8;
}
_ban_fail_list_.push_back(banitem);
}
}
void SimpleIPPortSort::RemoveBannedList(const std::string& _ip) {
ScopedLock lock(mutex_);
for (std::vector<BanItem>::iterator iter = _ban_fail_list_.begin(); iter != _ban_fail_list_.end();) {
if (iter->ip == _ip)
iter = _ban_fail_list_.erase(iter);
else
++iter;
}
}
void SimpleIPPortSort::Update(const std::string& _ip, uint16_t _port, bool _is_success) {
std::string curr_net_info;
if (kNoNet == getCurrNetLabel(curr_net_info)) return;
ScopedLock lock(mutex_);
if (!__CanUpdate(_ip, _port, _is_success)) return;
__UpdateBanList(_is_success, _ip, _port);
tinyxml2::XMLElement* record = NULL;
for (record = recordsxml_.FirstChildElement(kRecord);
NULL != record; record = record->NextSiblingElement(kRecord)) {
const char* netinfo_chr = record->Attribute(kNetInfo);
if (netinfo_chr && (0 == strcmp(netinfo_chr, curr_net_info.c_str()))) break;
}
if (NULL == record) {
struct timeval timeval = {0};
gettimeofday(&timeval, NULL);
char timebuf[128] = {0};
snprintf(timebuf, sizeof(timebuf), "%ld", timeval.tv_sec);
record = recordsxml_.NewElement(kRecord);
record->SetAttribute(kNetInfo, curr_net_info.c_str());
record->SetAttribute(kTime, timebuf);
recordsxml_.InsertEndChild(record);
}
tinyxml2::XMLElement* item = NULL;
for (item = record->FirstChildElement(kItem);
NULL != item; item = item->NextSiblingElement(kItem)) {
const char* ip = item->Attribute(kIP);
uint32_t port = item->UnsignedAttribute(kPort);
if (ip && (0 == strcmp(ip, _ip.c_str())) && port == _port) break;
}
if (NULL == item) {
item = recordsxml_.NewElement(kItem);
item->SetAttribute(kIP, _ip.c_str());
item->SetAttribute(kPort, _port);
record->InsertEndChild(item);
}
uint64_t history_result = item->Int64Attribute(kHistoryResult);
SET_BIT(!_is_success, history_result);
item->SetAttribute(kHistoryResult, (int64_t)history_result);
}
std::vector<BanItem>::iterator SimpleIPPortSort::__FindBannedIter(const std::string& _ip, unsigned short _port) const {
std::vector<BanItem>::iterator iter;
for (iter = _ban_fail_list_.begin(); iter != _ban_fail_list_.end(); ++iter) {
if (iter->ip == _ip && iter->port == _port) {
return iter;
}
}
return iter;
}
bool SimpleIPPortSort::__IsBanned(const std::string& _ip, unsigned short _port) const {
return __IsBanned(__FindBannedIter(_ip, _port));
}
bool SimpleIPPortSort::__IsBanned(std::vector<BanItem>::iterator _iter) const {
if (_iter == _ban_fail_list_.end()) return false;
bool baned = CAL_BIT_COUNT(_iter->records) >= kBanFailCount;
if (!baned) return false;
if (_iter->last_fail_time.gettickspan() < kBanTime) {
return true;
}
return false;
}
void SimpleIPPortSort::__UpdateBanList(bool _is_success, const std::string& _ip, unsigned short _port) {
for (std::vector<BanItem>::iterator iter = _ban_fail_list_.begin(); iter != _ban_fail_list_.end(); ++iter) {
if (iter->ip == _ip && iter->port == _port) {
SET_BIT(!_is_success, iter->records);
if (_is_success)
iter->last_suc_time.gettickcount();
else
iter->last_fail_time.gettickcount();
return;
}
}
BanItem item;
item.ip = _ip;
item.port = _port;
SET_BIT(!_is_success, item.records);
if (_is_success)
item.last_suc_time.gettickcount();
else
item.last_fail_time.gettickcount();
_ban_fail_list_.push_back(item);
}
bool SimpleIPPortSort::__CanUpdate(const std::string& _ip, uint16_t _port, bool _is_success) const {
for (std::vector<BanItem>::iterator iter = _ban_fail_list_.begin(); iter != _ban_fail_list_.end(); ++iter) {
if (iter->ip == _ip && iter->port == _port) {
if (_is_success) {
return kSuccessUpdateInterval < iter->last_suc_time.gettickspan() ? true:false;
}
else {
return kFailUpdateInterval < iter->last_fail_time.gettickspan() ? true:false;
}
}
}
return true;
}
void SimpleIPPortSort::__FilterbyBanned(std::vector<IPPortItem>& _items) const {
for (std::vector<IPPortItem>::iterator it = _items.begin(); it != _items.end();) {
if (__IsBanned(it->str_ip, it->port) || __IsServerBan(it->str_ip)) {
xwarn2(TSF"ip:%0, port:%1, is ban!!", it->str_ip, it->port);
it = _items.erase(it);
} else {
++it;
}
}
}
bool SimpleIPPortSort::__IsServerBan(const std::string& _ip) const {
std::map<std::string, uint64_t>::iterator iter = _server_bans_.find(_ip);
if (iter == _server_bans_.end()) return false;
uint64_t now = ::gettickcount();
xassert2(now >= iter->second, TSF"%_:%_", now, iter->second);
if (now - iter->second < kBanTime) {
xwarn2(TSF"ip %0 is ban by server, haha!", _ip.c_str());
return true;
}
_server_bans_.erase(iter);
return false;
}
void SimpleIPPortSort::__SortbyBanned(std::vector<IPPortItem>& _items) const {
srand((unsigned int)gettickcount());
//random_shuffle new and history
std::random_shuffle(_items.begin(), _items.end());
//separate new and history
std::deque<IPPortItem> items_history(_items.size());
std::deque<IPPortItem> items_new(_items.size());
auto find_lambda = [&](const IPPortItem& _v) {
for (std::vector<BanItem>::const_iterator it_banned = _ban_fail_list_.begin(); it_banned != _ban_fail_list_.end(); ++it_banned) {
if (it_banned->ip == _v.str_ip && it_banned->port == _v.port) {
return true;
}
}
return false;
};
items_history.erase(std::remove_copy_if(_items.begin(), _items.end(), items_history.begin(), !boost::bind<bool>(find_lambda, _1)), items_history.end());
items_new.erase(std::remove_copy_if(_items.begin(), _items.end(), items_new.begin(), find_lambda), items_new.end());
xassert2(_items.size() == items_history.size()+items_new.size(), TSF"_item:%_, history:%_, new:%_", _items.size(), items_history.size(), items_new.size());
//sort history
std::sort(items_history.begin(), items_history.end(),
[&](const IPPortItem& _l, const IPPortItem& _r){
auto find_lr_lambda = [](const BanItem& _v, const IPPortItem& _find) {
return _v.ip == _find.str_ip && _v.port == _find.port;
};
std::vector<BanItem>::const_iterator l = std::find_if(_ban_fail_list_.begin(), _ban_fail_list_.end(), boost::bind<bool>(find_lr_lambda, _1, _l));
std::vector<BanItem>::const_iterator r = std::find_if(_ban_fail_list_.begin(), _ban_fail_list_.end(), boost::bind<bool>(find_lr_lambda, _1, _r));
xassert2(l != _ban_fail_list_.end());
xassert2(r != _ban_fail_list_.end());
if (CAL_BIT_COUNT(l->records) != CAL_BIT_COUNT(r->records))
return CAL_BIT_COUNT(l->records) < CAL_BIT_COUNT(r->records);
if(l->last_fail_time != r->last_fail_time)
return l->last_fail_time < r->last_fail_time;
if(l->last_suc_time != r->last_suc_time)
return l->last_suc_time > r->last_suc_time;
//random by std::random_shuffle(_items.begin(), _items.end());
return false;
});
//merge
_items.clear();
while ( !items_history.empty() || !items_new.empty()) {
int ran = rand()%(items_history.size()+items_new.size());
if (0 <= ran && ran < (int)items_history.size()) {
_items.push_back(items_history.front());
items_history.pop_front();
} else if ((int)items_history.size() <= ran && ran < (int)(items_history.size()+items_new.size())) {
_items.push_back(items_new.front());
items_new.pop_front();
} else {
xassert2(false, TSF"ran:%_, history:%_, new:%_", ran, items_history.size(), items_new.size());
}
}
}
void SimpleIPPortSort::SortandFilter(std::vector<IPPortItem>& _items, int _needcount) const {
ScopedLock lock(mutex_);
__FilterbyBanned(_items);
__SortbyBanned(_items);
if (_needcount < (int)_items.size()) _items.resize(_needcount);
}
void SimpleIPPortSort::AddServerBan(const std::string& _ip) {
if (_ip.empty()) return;
ScopedLock lock(mutex_);
_server_bans_[_ip] = ::gettickcount();
}
| [
"garryyan@tencent.com"
] | garryyan@tencent.com |
3137359a51225ba4584993c497545c86313ca61f | 2e386d3d97fe1847778fa9d2116cfa2129f9976a | /Simulator.cpp | 8a7449bca4ba22862ae2c68ca8ed3aaf36522172 | [] | no_license | RyanLai7916/Tech-test | 4db3f5527406a859ebb52a854c17a1c9d66ad81f | 7813cf23c6e85c7eb601579b7c59c60554912e9f | refs/heads/main | 2023-03-23T14:06:12.796264 | 2021-03-17T10:52:42 | 2021-03-17T10:52:42 | 348,655,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,913 | cpp | // Simulator.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <fstream>
#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include "Simulation.h"
int main(int argc, char** argv)
{
if (argc < 2)
{
std::cout << "Simulator.exe <simfile> [json]" << std::endl;
std::cout << "simulation output is in circuit.jsonp" << std::endl;
exit(0);
}
bool json = (argc >= 3 && "json" == std::string(argv[2]));
std::ifstream input(argv[1], std::ios::in);
auto simulation = Simulation::FromFile(input);
if (json)
{
simulation->LayoutFromFile(input);
// probe all gates should only be executed when
// json output is on
simulation->ProbeAllGates();
}
simulation->Run();
if (json)
{
simulation->UndoProbeAllGates();
}
if (argc >= 3 && "json" == std::string(argv[2]))
{
boost::property_tree::ptree simResult = simulation->GetJson();
std::ofstream output("circuit.jsonp", std::ios::out);
output << "onJsonp(";
boost::property_tree::write_json(output, simResult);
output << ");\n";
}
if (argc >= 3 && "csv" == std::string(argv[2]))
{
std::ofstream gatesoutput("gates.csv", std::ios::out);
gatesoutput << "id,table,type,probed,inputs,outputs\n";
gatesoutput << simulation->GetGates();
gatesoutput.close();
std::ofstream tracesoutput("traces.csv", std::ios::out);
tracesoutput << "time,gate,output\n";
tracesoutput << simulation->GetTraces();
tracesoutput.close();
std::ofstream layoutoutput("layout", std::ios::out);
layoutoutput << simulation->GetLayout();
layoutoutput.close();
}
simulation->PrintProbes(std::cout);
}
| [
"ryan.lai7916@gmail.com"
] | ryan.lai7916@gmail.com |
d8dbdf729d909b2cf542b135c19bc852360e3eb7 | 76b823f0b4e0efc12075cf4802ffe0b2ca62fb2b | /aluno/solucoes/16_4.cpp | ea2c9a3ee69e6d62fe380003c12b1b32edcd23d0 | [] | no_license | jonasvm/piratas-futuro-rpg | e5c3c2c31bf6fa1b208fd00c09464db49b7192b2 | 770914f310c9fdce26e7a204883c7f7281771d8d | refs/heads/master | 2022-01-05T04:41:01.779284 | 2019-06-25T13:47:57 | 2019-06-25T13:47:57 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 782 | cpp | /*Em alto mar, você avista uma criatura gigante rara com tentáculos, mas devido a pouca visibilidade por causa da água, você
não consegue identificar se é um polvo ou uma lula. Para isso, você decide utilizar a câmera de raios-X do seu computador de
bordo para visualizar. Se a metade dos tentáculos for um número impar, será uma lula, caso contrário será um polvo. Tente
identificar, pois se você espalhar a notícia de que encontrou um animal raro desse, muitos caçadores poderão lhe recompensar
por tal informação.
10
lula*/
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int tentaculos = 10;
if((tentaculos/2)%2 == 0)
cout << "polvo";
else
cout << "lula";
return 1;
}
| [
"jonas.vbm@gmail.com"
] | jonas.vbm@gmail.com |
9ba481d8ae97d7a1e7bc2c02cffbb72b944f7130 | 483e8c3fd98536fa17f9a0a41923f60e2a79d55a | /sources/src/util/IpUtils.cpp | 3c8e8959647f455ff5dd1272bbf8312dfced1d54 | [] | no_license | Shailla/jeukitue.moteur | b9ff6f13188fb59d6b8d2ea8cde35fc7d95dd3dd | acc996f240699b5ec9c6162e56c5739f86a335a5 | refs/heads/master | 2020-05-22T04:20:33.298261 | 2014-11-20T22:20:43 | 2014-11-20T22:40:11 | 34,282,766 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 712 | cpp | /*
* IpUtils.cpp
*
* Created on: 16 août 2013
* Author: Erwin
*/
#include <sstream>
using namespace std;
#include "util/IpUtils.h"
namespace JktUtils {
IpUtils::IpUtils() {
}
IpUtils::~IpUtils() {
}
string IpUtils::translateIp(IPaddress address) {
stringstream str;
Uint8* add = (Uint8*)&address.host;
str << (int)(Uint8)(*(add+0)) << "." << (int)(Uint8)(*(add+1)) << "." << (int)(Uint8)(*(add+2)) << "." << (int)(Uint8)(*(add+3));
return str.str();
}
string IpUtils::translateAddress(IPaddress address) {
stringstream str;
str << translateIp(address) << ":" << SDLNet_Read16(&address.port);
return str.str();
}
} /* namespace JktUtils */
| [
"vogel.jeanclaude@gmail.com@cd6d7e76-efff-11de-b599-4d5b25800cad"
] | vogel.jeanclaude@gmail.com@cd6d7e76-efff-11de-b599-4d5b25800cad |
2b037a2c1cdc16ff3ef8f78c2f9511121d15d446 | bb6ebff7a7f6140903d37905c350954ff6599091 | /chrome/browser/services/gcm/gcm_profile_service_unittest.cc | 2b1e5014642e4cb160de5395474d9526bbf58e12 | [
"BSD-3-Clause"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 8,118 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/services/gcm/gcm_profile_service.h"
#include <vector>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/memory/scoped_ptr.h"
#include "base/run_loop.h"
#include "chrome/browser/services/gcm/fake_signin_manager.h"
#include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/test/base/testing_profile.h"
#include "components/gcm_driver/fake_gcm_app_handler.h"
#include "components/gcm_driver/fake_gcm_client.h"
#include "components/gcm_driver/fake_gcm_client_factory.h"
#include "components/gcm_driver/gcm_client.h"
#include "components/gcm_driver/gcm_client_factory.h"
#include "components/gcm_driver/gcm_driver.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gcm {
namespace {
const char kTestAccountID[] = "user@example.com";
const char kTestAppID[] = "TestApp";
const char kUserID[] = "user";
KeyedService* BuildGCMProfileService(content::BrowserContext* context) {
return new GCMProfileService(
Profile::FromBrowserContext(context),
scoped_ptr<GCMClientFactory>(new FakeGCMClientFactory(
FakeGCMClient::NO_DELAY_START,
content::BrowserThread::GetMessageLoopProxyForThread(
content::BrowserThread::UI),
content::BrowserThread::GetMessageLoopProxyForThread(
content::BrowserThread::IO))));
}
} // namespace
class GCMProfileServiceTest : public testing::Test {
protected:
GCMProfileServiceTest();
virtual ~GCMProfileServiceTest();
// testing::Test:
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
FakeGCMClient* GetGCMClient() const;
void CreateGCMProfileService();
void SignIn();
void RegisterAndWaitForCompletion(const std::vector<std::string>& sender_ids);
void UnregisterAndWaitForCompletion();
void SendAndWaitForCompletion(const GCMClient::OutgoingMessage& message);
void RegisterCompleted(const base::Closure& callback,
const std::string& registration_id,
GCMClient::Result result);
void UnregisterCompleted(const base::Closure& callback,
GCMClient::Result result);
void SendCompleted(const base::Closure& callback,
const std::string& message_id,
GCMClient::Result result);
GCMDriver* driver() const { return gcm_profile_service_->driver(); }
std::string registration_id() const { return registration_id_; }
GCMClient::Result registration_result() const { return registration_result_; }
GCMClient::Result unregistration_result() const {
return unregistration_result_;
}
std::string send_message_id() const { return send_message_id_; }
GCMClient::Result send_result() const { return send_result_; }
private:
content::TestBrowserThreadBundle thread_bundle_;
scoped_ptr<TestingProfile> profile_;
GCMProfileService* gcm_profile_service_;
scoped_ptr<FakeGCMAppHandler> gcm_app_handler_;
std::string registration_id_;
GCMClient::Result registration_result_;
GCMClient::Result unregistration_result_;
std::string send_message_id_;
GCMClient::Result send_result_;
DISALLOW_COPY_AND_ASSIGN(GCMProfileServiceTest);
};
GCMProfileServiceTest::GCMProfileServiceTest()
: gcm_profile_service_(NULL),
gcm_app_handler_(new FakeGCMAppHandler),
registration_result_(GCMClient::UNKNOWN_ERROR),
send_result_(GCMClient::UNKNOWN_ERROR) {
}
GCMProfileServiceTest::~GCMProfileServiceTest() {
}
FakeGCMClient* GCMProfileServiceTest::GetGCMClient() const {
return static_cast<FakeGCMClient*>(
gcm_profile_service_->driver()->GetGCMClientForTesting());
}
void GCMProfileServiceTest::SetUp() {
TestingProfile::Builder builder;
builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
FakeSigninManager::Build);
profile_ = builder.Build();
}
void GCMProfileServiceTest::TearDown() {
gcm_profile_service_->driver()->RemoveAppHandler(kTestAppID);
}
void GCMProfileServiceTest::CreateGCMProfileService() {
gcm_profile_service_ = static_cast<GCMProfileService*>(
GCMProfileServiceFactory::GetInstance()->SetTestingFactoryAndUse(
profile_.get(),
&BuildGCMProfileService));
gcm_profile_service_->driver()->AddAppHandler(
kTestAppID, gcm_app_handler_.get());
}
void GCMProfileServiceTest::SignIn() {
FakeSigninManager* signin_manager = static_cast<FakeSigninManager*>(
SigninManagerFactory::GetInstance()->GetForProfile(profile_.get()));
signin_manager->SignIn(kTestAccountID);
base::RunLoop().RunUntilIdle();
}
void GCMProfileServiceTest::RegisterAndWaitForCompletion(
const std::vector<std::string>& sender_ids) {
base::RunLoop run_loop;
gcm_profile_service_->driver()->Register(
kTestAppID,
sender_ids,
base::Bind(&GCMProfileServiceTest::RegisterCompleted,
base::Unretained(this),
run_loop.QuitClosure()));
run_loop.Run();
}
void GCMProfileServiceTest::UnregisterAndWaitForCompletion() {
base::RunLoop run_loop;
gcm_profile_service_->driver()->Unregister(
kTestAppID,
base::Bind(&GCMProfileServiceTest::UnregisterCompleted,
base::Unretained(this),
run_loop.QuitClosure()));
run_loop.Run();
}
void GCMProfileServiceTest::SendAndWaitForCompletion(
const GCMClient::OutgoingMessage& message) {
base::RunLoop run_loop;
gcm_profile_service_->driver()->Send(
kTestAppID,
kUserID,
message,
base::Bind(&GCMProfileServiceTest::SendCompleted,
base::Unretained(this),
run_loop.QuitClosure()));
run_loop.Run();
}
void GCMProfileServiceTest::RegisterCompleted(
const base::Closure& callback,
const std::string& registration_id,
GCMClient::Result result) {
registration_id_ = registration_id;
registration_result_ = result;
callback.Run();
}
void GCMProfileServiceTest::UnregisterCompleted(
const base::Closure& callback,
GCMClient::Result result) {
unregistration_result_ = result;
callback.Run();
}
void GCMProfileServiceTest::SendCompleted(
const base::Closure& callback,
const std::string& message_id,
GCMClient::Result result) {
send_message_id_ = message_id;
send_result_ = result;
callback.Run();
}
TEST_F(GCMProfileServiceTest, CreateGCMProfileServiceBeforeSignIn) {
CreateGCMProfileService();
EXPECT_FALSE(driver()->IsStarted());
SignIn();
EXPECT_TRUE(driver()->IsStarted());
}
TEST_F(GCMProfileServiceTest, CreateGCMProfileServiceAfterSignIn) {
SignIn();
// Note that we can't check if GCM is started or not since the
// GCMProfileService that hosts the GCMDriver is not created yet.
CreateGCMProfileService();
EXPECT_TRUE(driver()->IsStarted());
}
TEST_F(GCMProfileServiceTest, RegisterAndUnregister) {
CreateGCMProfileService();
SignIn();
std::vector<std::string> sender_ids;
sender_ids.push_back("sender");
RegisterAndWaitForCompletion(sender_ids);
std::string expected_registration_id =
FakeGCMClient::GetRegistrationIdFromSenderIds(sender_ids);
EXPECT_EQ(expected_registration_id, registration_id());
EXPECT_EQ(GCMClient::SUCCESS, registration_result());
UnregisterAndWaitForCompletion();
EXPECT_EQ(GCMClient::SUCCESS, unregistration_result());
}
TEST_F(GCMProfileServiceTest, Send) {
CreateGCMProfileService();
SignIn();
GCMClient::OutgoingMessage message;
message.id = "1";
message.data["key1"] = "value1";
SendAndWaitForCompletion( message);
EXPECT_EQ(message.id, send_message_id());
EXPECT_EQ(GCMClient::SUCCESS, send_result());
}
} // namespace gcm
| [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
de68eb590dff9ac5036863e3580df15f5c8de4f3 | 51e3a836068b7762d2078a380953f17c5fd20b85 | /Source/Logger/Logger.cpp | e1b8420451b92f7d7f301b2d2ab5a28d7c51df3a | [
"Apache-2.0"
] | permissive | igorlev91/DemoEngine | 82874d8db69ae54ffcdbf9aa74a38ffbafed9cfa | 8aaef0d3504826c9dcabe0a826a54613fca81c87 | refs/heads/master | 2022-07-17T16:22:43.151378 | 2020-05-20T21:26:57 | 2020-05-20T21:26:57 | 208,259,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,483 | cpp | #include "Precompiled.hpp"
#include "Logger/Logger.hpp"
#include "Logger/Output.hpp"
#include "Logger/Sink.hpp"
namespace
{
// Default logger sink.
Logger::Sink sink;
// Default logger outputs.
Logger::FileOutput fileOutput;
Logger::ConsoleOutput consoleOutput;
Logger::DebuggerOutput debuggerOutput;
// Initialization state.
bool initialized = false;
}
void Logger::Initialize()
{
// Make sure not to initialize twice.
if(initialized)
return;
// Add the file output.
if(fileOutput.Open("Log.txt"))
{
sink.AddOutput(&fileOutput);
}
// Add the console output.
sink.AddOutput(&consoleOutput);
// Add the debugger output.
sink.AddOutput(&debuggerOutput);
// Set initialization state.
initialized = true;
}
void Logger::Write(const Logger::Message& message)
{
if(!initialized)
{
std::cerr << "Default logger has not been initialized yet!";
DEBUG_BREAKPOINT();
}
sink.Write(message);
}
int Logger::AdvanceFrameReference()
{
if (!initialized)
{
std::cerr << "Default logger has not been initialized yet!";
DEBUG_BREAKPOINT();
}
return sink.AdvanceFrameReference();
}
bool Logger::IsInitialized()
{
return initialized;
}
Logger::Sink& Logger::GetGlobalSink()
{
if (!initialized)
{
std::cerr << "Default logger has not been initialized yet!";
DEBUG_BREAKPOINT();
}
return sink;
}
| [
"lev-118@gmail.com"
] | lev-118@gmail.com |
1a82f39c369fe445c99531e4cb451a1a2e029845 | b0dd7779c225971e71ae12c1093dc75ed9889921 | /boost/fusion/view/single_view/detail/at_impl.hpp | bf955274bc9f63854b88d5893b8f9c3dcaf03703 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSL-1.0"
] | permissive | blackberry/Boost | 6e653cd91a7806855a162347a5aeebd2a8c055a2 | fc90c3fde129c62565c023f091eddc4a7ed9902b | refs/heads/1_48_0-gnu | 2021-01-15T14:31:33.706351 | 2013-06-25T16:02:41 | 2013-06-25T16:02:41 | 2,599,411 | 244 | 154 | BSL-1.0 | 2018-10-13T18:35:09 | 2011-10-18T14:25:18 | C++ | UTF-8 | C++ | false | false | 1,246 | hpp | /*=============================================================================
Copyright (c) 2011 Eric Niebler
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(BOOST_FUSION_SINGLE_VIEW_AT_IMPL_JUL_07_2011_1348PM)
#define BOOST_FUSION_SINGLE_VIEW_AT_IMPL_JUL_07_2011_1348PM
#include <boost/mpl/int.hpp>
#include <boost/mpl/assert.hpp>
#include <boost/mpl/equal_to.hpp>
namespace boost { namespace fusion
{
struct single_view_tag;
namespace extension
{
template<typename Tag>
struct at_impl;
template<>
struct at_impl<single_view_tag>
{
template<typename Sequence, typename N>
struct apply
{
BOOST_MPL_ASSERT((mpl::equal_to<N, mpl::int_<0> >));
typedef typename Sequence::value_type type;
static type
call(Sequence& seq)
{
return seq.val;
}
};
};
}
}}
#endif
| [
"tvaneerd@rim.com"
] | tvaneerd@rim.com |
fe7c8495eabe7f7cb855f68a653e988b349dc4e5 | 76c95168b5004a8b6519143f1215b3509491d9a8 | /InfernalEditor/GeneratedFiles/ui_InfernalEditor.h | 4ca3cc2aeac5c7d79d69cb7fc8bcec78fbd1fda7 | [] | no_license | mi7flat5/Infernal_Engine | 8e3a08d558813a4e191b4d3ab4bd2f426d479157 | 321b628ba3f302b2d1c14a5ab64a04da0dec0b86 | refs/heads/master | 2020-04-17T08:01:24.118810 | 2017-03-20T09:17:01 | 2017-03-20T09:17:01 | 67,696,032 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,739 | h | /********************************************************************************
** Form generated from reading UI file 'InfernalEditor.ui'
**
** Created by: Qt User Interface Compiler version 5.7.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_INFERNALEDITOR_H
#define UI_INFERNALEDITOR_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QDoubleSpinBox>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QMenuBar>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QStatusBar>
#include <QtWidgets/QTabWidget>
#include <QtWidgets/QTextBrowser>
#include <QtWidgets/QToolBar>
#include <QtWidgets/QToolBox>
#include <QtWidgets/QTreeView>
#include <QtWidgets/QWidget>
#include "EditWindow.h"
QT_BEGIN_NAMESPACE
class Ui_InfernalEditorClass
{
public:
QAction *action_Open;
QAction *actionOpen;
QAction *action_Open_2;
QWidget *centralWidget;
QGridLayout *gridLayout_6;
QGridLayout *gridLayout;
EditWindow *openGLWidget;
QTabWidget *tabWidget;
QWidget *tab;
QGridLayout *gridLayout_2;
QTreeView *treeView;
QWidget *tab_2;
QGridLayout *gridLayout_4;
QTextBrowser *textBrowser;
QWidget *tab_3;
QGridLayout *gridLayout_7;
QToolBox *toolBox;
QWidget *page;
QGridLayout *gridLayout_8;
QGridLayout *gridLayout_5;
QLabel *label_4;
QLabel *label_5;
QLabel *label_6;
QLabel *label;
QDoubleSpinBox *pX;
QDoubleSpinBox *pY;
QDoubleSpinBox *pZ;
QLabel *label_2;
QDoubleSpinBox *rX;
QDoubleSpinBox *rY;
QDoubleSpinBox *rZ;
QLabel *label_3;
QDoubleSpinBox *sX;
QDoubleSpinBox *sY;
QDoubleSpinBox *sZ;
QSpacerItem *verticalSpacer;
QSpacerItem *horizontalSpacer;
QWidget *page_2;
QMenuBar *menuBar;
QToolBar *mainToolBar;
QStatusBar *statusBar;
void setupUi(QMainWindow *InfernalEditorClass)
{
if (InfernalEditorClass->objectName().isEmpty())
InfernalEditorClass->setObjectName(QStringLiteral("InfernalEditorClass"));
InfernalEditorClass->resize(819, 711);
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(InfernalEditorClass->sizePolicy().hasHeightForWidth());
InfernalEditorClass->setSizePolicy(sizePolicy);
InfernalEditorClass->setMouseTracking(true);
InfernalEditorClass->setFocusPolicy(Qt::StrongFocus);
InfernalEditorClass->setAutoFillBackground(true);
action_Open = new QAction(InfernalEditorClass);
action_Open->setObjectName(QStringLiteral("action_Open"));
actionOpen = new QAction(InfernalEditorClass);
actionOpen->setObjectName(QStringLiteral("actionOpen"));
action_Open_2 = new QAction(InfernalEditorClass);
action_Open_2->setObjectName(QStringLiteral("action_Open_2"));
centralWidget = new QWidget(InfernalEditorClass);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
sizePolicy.setHeightForWidth(centralWidget->sizePolicy().hasHeightForWidth());
centralWidget->setSizePolicy(sizePolicy);
gridLayout_6 = new QGridLayout(centralWidget);
gridLayout_6->setSpacing(6);
gridLayout_6->setContentsMargins(11, 11, 11, 11);
gridLayout_6->setObjectName(QStringLiteral("gridLayout_6"));
gridLayout = new QGridLayout();
gridLayout->setSpacing(6);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
openGLWidget = new EditWindow(centralWidget);
openGLWidget->setObjectName(QStringLiteral("openGLWidget"));
sizePolicy.setHeightForWidth(openGLWidget->sizePolicy().hasHeightForWidth());
openGLWidget->setSizePolicy(sizePolicy);
openGLWidget->setMinimumSize(QSize(16, 9));
openGLWidget->setSizeIncrement(QSize(16, 10));
openGLWidget->setBaseSize(QSize(16, 10));
openGLWidget->setCursor(QCursor(Qt::CrossCursor));
openGLWidget->setMouseTracking(true);
openGLWidget->setFocusPolicy(Qt::StrongFocus);
openGLWidget->setContextMenuPolicy(Qt::PreventContextMenu);
openGLWidget->setAcceptDrops(true);
openGLWidget->setAutoFillBackground(true);
openGLWidget->setInputMethodHints(Qt::ImhHiddenText);
gridLayout->addWidget(openGLWidget, 0, 0, 1, 1);
tabWidget = new QTabWidget(centralWidget);
tabWidget->setObjectName(QStringLiteral("tabWidget"));
tabWidget->setContextMenuPolicy(Qt::NoContextMenu);
tabWidget->setTabShape(QTabWidget::Triangular);
tab = new QWidget();
tab->setObjectName(QStringLiteral("tab"));
gridLayout_2 = new QGridLayout(tab);
gridLayout_2->setSpacing(6);
gridLayout_2->setContentsMargins(11, 11, 11, 11);
gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
treeView = new QTreeView(tab);
treeView->setObjectName(QStringLiteral("treeView"));
sizePolicy.setHeightForWidth(treeView->sizePolicy().hasHeightForWidth());
treeView->setSizePolicy(sizePolicy);
gridLayout_2->addWidget(treeView, 0, 0, 1, 1);
tabWidget->addTab(tab, QString());
tab_2 = new QWidget();
tab_2->setObjectName(QStringLiteral("tab_2"));
gridLayout_4 = new QGridLayout(tab_2);
gridLayout_4->setSpacing(6);
gridLayout_4->setContentsMargins(11, 11, 11, 11);
gridLayout_4->setObjectName(QStringLiteral("gridLayout_4"));
textBrowser = new QTextBrowser(tab_2);
textBrowser->setObjectName(QStringLiteral("textBrowser"));
sizePolicy.setHeightForWidth(textBrowser->sizePolicy().hasHeightForWidth());
textBrowser->setSizePolicy(sizePolicy);
textBrowser->setMinimumSize(QSize(0, 10));
textBrowser->setMaximumSize(QSize(16777215, 1677215));
textBrowser->setReadOnly(false);
gridLayout_4->addWidget(textBrowser, 0, 0, 1, 1);
tabWidget->addTab(tab_2, QString());
tab_3 = new QWidget();
tab_3->setObjectName(QStringLiteral("tab_3"));
gridLayout_7 = new QGridLayout(tab_3);
gridLayout_7->setSpacing(6);
gridLayout_7->setContentsMargins(11, 11, 11, 11);
gridLayout_7->setObjectName(QStringLiteral("gridLayout_7"));
toolBox = new QToolBox(tab_3);
toolBox->setObjectName(QStringLiteral("toolBox"));
toolBox->setContextMenuPolicy(Qt::NoContextMenu);
page = new QWidget();
page->setObjectName(QStringLiteral("page"));
page->setGeometry(QRect(0, 0, 286, 117));
gridLayout_8 = new QGridLayout(page);
gridLayout_8->setSpacing(6);
gridLayout_8->setContentsMargins(11, 11, 11, 11);
gridLayout_8->setObjectName(QStringLiteral("gridLayout_8"));
gridLayout_5 = new QGridLayout();
gridLayout_5->setSpacing(6);
gridLayout_5->setObjectName(QStringLiteral("gridLayout_5"));
label_4 = new QLabel(page);
label_4->setObjectName(QStringLiteral("label_4"));
QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(label_4->sizePolicy().hasHeightForWidth());
label_4->setSizePolicy(sizePolicy1);
gridLayout_5->addWidget(label_4, 0, 1, 1, 1);
label_5 = new QLabel(page);
label_5->setObjectName(QStringLiteral("label_5"));
sizePolicy1.setHeightForWidth(label_5->sizePolicy().hasHeightForWidth());
label_5->setSizePolicy(sizePolicy1);
gridLayout_5->addWidget(label_5, 0, 2, 1, 1);
label_6 = new QLabel(page);
label_6->setObjectName(QStringLiteral("label_6"));
sizePolicy1.setHeightForWidth(label_6->sizePolicy().hasHeightForWidth());
label_6->setSizePolicy(sizePolicy1);
gridLayout_5->addWidget(label_6, 0, 3, 1, 1);
label = new QLabel(page);
label->setObjectName(QStringLiteral("label"));
label->setMaximumSize(QSize(50, 16777215));
gridLayout_5->addWidget(label, 1, 0, 1, 1);
pX = new QDoubleSpinBox(page);
pX->setObjectName(QStringLiteral("pX"));
QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Fixed);
sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0);
sizePolicy2.setHeightForWidth(pX->sizePolicy().hasHeightForWidth());
pX->setSizePolicy(sizePolicy2);
pX->setMinimumSize(QSize(20, 0));
pX->setMinimum(-2048);
pX->setMaximum(2048);
gridLayout_5->addWidget(pX, 1, 1, 1, 1);
pY = new QDoubleSpinBox(page);
pY->setObjectName(QStringLiteral("pY"));
pY->setMinimum(-2048);
pY->setMaximum(2048);
gridLayout_5->addWidget(pY, 1, 2, 1, 1);
pZ = new QDoubleSpinBox(page);
pZ->setObjectName(QStringLiteral("pZ"));
pZ->setMinimum(-2048);
pZ->setMaximum(2048);
gridLayout_5->addWidget(pZ, 1, 3, 1, 1);
label_2 = new QLabel(page);
label_2->setObjectName(QStringLiteral("label_2"));
gridLayout_5->addWidget(label_2, 2, 0, 1, 1);
rX = new QDoubleSpinBox(page);
rX->setObjectName(QStringLiteral("rX"));
rX->setMinimum(-180);
rX->setMaximum(180);
gridLayout_5->addWidget(rX, 2, 1, 1, 1);
rY = new QDoubleSpinBox(page);
rY->setObjectName(QStringLiteral("rY"));
rY->setMinimum(-180);
rY->setMaximum(180);
gridLayout_5->addWidget(rY, 2, 2, 1, 1);
rZ = new QDoubleSpinBox(page);
rZ->setObjectName(QStringLiteral("rZ"));
rZ->setMinimum(-180);
rZ->setMaximum(180);
gridLayout_5->addWidget(rZ, 2, 3, 1, 1);
label_3 = new QLabel(page);
label_3->setObjectName(QStringLiteral("label_3"));
gridLayout_5->addWidget(label_3, 3, 0, 1, 1);
sX = new QDoubleSpinBox(page);
sX->setObjectName(QStringLiteral("sX"));
sX->setDecimals(3);
sX->setMinimum(0.001);
sX->setMaximum(20);
sX->setSingleStep(0.01);
gridLayout_5->addWidget(sX, 3, 1, 1, 1);
sY = new QDoubleSpinBox(page);
sY->setObjectName(QStringLiteral("sY"));
sY->setDecimals(3);
sY->setMinimum(0.001);
sY->setMaximum(20);
sY->setSingleStep(0.01);
gridLayout_5->addWidget(sY, 3, 2, 1, 1);
sZ = new QDoubleSpinBox(page);
sZ->setObjectName(QStringLiteral("sZ"));
sZ->setDecimals(3);
sZ->setMinimum(0.001);
sZ->setMaximum(20);
sZ->setSingleStep(0.01);
gridLayout_5->addWidget(sZ, 3, 3, 1, 1);
gridLayout_8->addLayout(gridLayout_5, 0, 0, 1, 1);
verticalSpacer = new QSpacerItem(20, 438, QSizePolicy::Minimum, QSizePolicy::Expanding);
gridLayout_8->addItem(verticalSpacer, 1, 0, 1, 1);
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
gridLayout_8->addItem(horizontalSpacer, 0, 1, 1, 1);
toolBox->addItem(page, QStringLiteral("Transform"));
page_2 = new QWidget();
page_2->setObjectName(QStringLiteral("page_2"));
page_2->setGeometry(QRect(0, 0, 98, 28));
toolBox->addItem(page_2, QStringLiteral("Page 2"));
gridLayout_7->addWidget(toolBox, 0, 0, 1, 1);
tabWidget->addTab(tab_3, QString());
gridLayout->addWidget(tabWidget, 0, 1, 1, 1);
gridLayout_6->addLayout(gridLayout, 0, 0, 1, 1);
InfernalEditorClass->setCentralWidget(centralWidget);
menuBar = new QMenuBar(InfernalEditorClass);
menuBar->setObjectName(QStringLiteral("menuBar"));
menuBar->setGeometry(QRect(0, 0, 819, 21));
InfernalEditorClass->setMenuBar(menuBar);
mainToolBar = new QToolBar(InfernalEditorClass);
mainToolBar->setObjectName(QStringLiteral("mainToolBar"));
mainToolBar->setContextMenuPolicy(Qt::NoContextMenu);
InfernalEditorClass->addToolBar(Qt::TopToolBarArea, mainToolBar);
statusBar = new QStatusBar(InfernalEditorClass);
statusBar->setObjectName(QStringLiteral("statusBar"));
InfernalEditorClass->setStatusBar(statusBar);
retranslateUi(InfernalEditorClass);
tabWidget->setCurrentIndex(1);
toolBox->setCurrentIndex(0);
toolBox->layout()->setSpacing(0);
QMetaObject::connectSlotsByName(InfernalEditorClass);
} // setupUi
void retranslateUi(QMainWindow *InfernalEditorClass)
{
InfernalEditorClass->setWindowTitle(QApplication::translate("InfernalEditorClass", "InfernalEditor", Q_NULLPTR));
action_Open->setText(QApplication::translate("InfernalEditorClass", "&Open", Q_NULLPTR));
actionOpen->setText(QApplication::translate("InfernalEditorClass", "Open", Q_NULLPTR));
action_Open_2->setText(QApplication::translate("InfernalEditorClass", "&Open", Q_NULLPTR));
tabWidget->setTabText(tabWidget->indexOf(tab), QApplication::translate("InfernalEditorClass", "Scene", Q_NULLPTR));
tabWidget->setTabText(tabWidget->indexOf(tab_2), QApplication::translate("InfernalEditorClass", "Log", Q_NULLPTR));
label_4->setText(QApplication::translate("InfernalEditorClass", "X", Q_NULLPTR));
label_5->setText(QApplication::translate("InfernalEditorClass", "Y", Q_NULLPTR));
label_6->setText(QApplication::translate("InfernalEditorClass", "Z", Q_NULLPTR));
label->setText(QApplication::translate("InfernalEditorClass", "Position", Q_NULLPTR));
label_2->setText(QApplication::translate("InfernalEditorClass", "Rotation", Q_NULLPTR));
label_3->setText(QApplication::translate("InfernalEditorClass", "Scale", Q_NULLPTR));
toolBox->setItemText(toolBox->indexOf(page), QApplication::translate("InfernalEditorClass", "Transform", Q_NULLPTR));
toolBox->setItemText(toolBox->indexOf(page_2), QApplication::translate("InfernalEditorClass", "Page 2", Q_NULLPTR));
tabWidget->setTabText(tabWidget->indexOf(tab_3), QApplication::translate("InfernalEditorClass", "Page", Q_NULLPTR));
} // retranslateUi
};
namespace Ui {
class InfernalEditorClass: public Ui_InfernalEditorClass {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_INFERNALEDITOR_H
| [
"mi7flat5@gmail.com"
] | mi7flat5@gmail.com |
89e162b36f49577f45fa395f053717f8ce10c99d | f4bc78d304fcebd766a7a7d161e6b72d61e10d9a | /test/data_requirements/stencil/stencil_1d/pyramid/pyramid.cpp | b8a133bb9f2203c8e4eae3c310bbbb03bc24d899 | [] | no_license | allscale/allscale_compiler | 6a02d655e1a101a9a6afa0c79df7e772fc8abcd6 | 12e5dada431e574b025c572ae5f8819047be12aa | refs/heads/master | 2021-01-12T06:53:34.553070 | 2019-03-19T12:43:15 | 2019-03-19T12:43:15 | 76,847,596 | 5 | 1 | null | 2017-12-01T11:39:58 | 2016-12-19T09:26:03 | C++ | UTF-8 | C++ | false | false | 129 | cpp | #include "../test.h"
int main() {
// just run the generic test
return run_test<implementation::parallel_recursive>();
}
| [
"herbert@dps.uibk.ac.at"
] | herbert@dps.uibk.ac.at |
5558924d44988e3b18c736c724124666ac67632f | c2c6d5279358779026282efb1ce750ef839ac8db | /NetCmd/ServoDriverComDll/NetCom/src/Packet.cpp | 4cc25e32422ab96b4b8d2c553706f3688cdfcf0c | [] | no_license | tiangaomingjing/MyServo | 0f4f374028bff1772c34c316a2466ed46bd3db01 | 0aee56bebeaa8213de31443c8c38fb99e2e156db | refs/heads/master | 2021-01-01T15:49:41.291053 | 2017-07-19T11:56:57 | 2017-07-19T11:56:57 | 97,711,825 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,914 | cpp | //////////////////////////////////////////////////////////////////////////////////////////
// summary : Communicaiton Packet Define //
// file : Packet.cpp //
// Description : use for pc and fpga communicaiton //
// lib : none //
// //
//======================================================================================//
// programmer: | date: | Corporation: | copyright(C): //
//--------------------------------------------------------------------------------------//
// wang.bin(1420) | 2016/1/20 | googoltech | 2016 - 2019 //
//--------------------------------------------------------------------------------------//
//////////////////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Packet.h"
#include "BaseReturn_def.h"
CPacket::CPacket(void)
{
pTx = new PACKET_FORMAT;
pRx = new PACKET_FORMAT;
bHaveMac = false;
init_pack();
}
CPacket::~CPacket(void)
{
if (NULL != pTx)
delete pTx;
if (NULL != pRx)
delete pRx;
}
void CPacket::init_pack()
{
//0xff,0xff,0xff,0xff,0xff,0xff,//dmac 6
for (int i = 0; i < MAC_ADDR_BYTE_LENTH;i++)
{
pTx->dmac[i] = 0xff;
}
// 0x3c,0x97,0x0e,0x30,0xe6,0x1e,//smac 6 12
pTx->smac[0] = 0x28;
pTx->smac[1] = 0xd2;
pTx->smac[2] = 0x44;
pTx->smac[3] = 0xdc;
pTx->smac[4] = 0x2a;
pTx->smac[5] = 0xf6;
pTx->type0 = 0x88;
pTx->type1 = 0xa4;
pTx->lengthbit7_0 = 0x12;
pTx->lengthbit9_8 = 0x10;
m_tx_index = 0xff;
m_rx_index = m_tx_index;
tx_length = PACKET_HEADER_LENTH;
rx_length = 0;
}
Uint8 CPacket::get_tx_index()
{
return m_tx_index;
}
bool CPacket::decoder_return_flag(int16 mode)
{
if (rx_length < MIN_PACKET_LEN)
return false;
if ((pRx->type0 != pTx->type0) || (pRx->type1 != pTx->type1))
return false;
if (mode == PACKET_MODE_READ_FPGA) //FPGA读模式
{
int16 data = 0;
memcpy_s(&data, sizeof(int16), &(pRx->dataSection[0]), sizeof(int16));
return (((data & RETURN_REQUEST_MASK) != 0) ? true : false);//判断bit1位是否为1,如果为1,那么说明指令已经返回,可以读取返回值,如果为0,那么说明指令没有返回。
}
else
{
return true;
}
}
int16 CPacket::decoder_dsp_packet(Uint8 index, int16* pData, int16 &dma_num)
{
if (rx_length < MIN_PACKET_LEN)
return Net_Rt_Receive_DLenth_short;
if ((pRx->type0 != pTx->type0) || (pRx->type1 != pTx->type1))
return Net_Rt_Receive_Unknow_Data;
if (pRx->index != index)
return Net_Rt_Index_Unmatch;
//读取包长度
int16 data = 0;
memcpy_s(&data, sizeof(int16), &(pRx->lengthbit7_0), sizeof(int16));
int16 lenth = (LENTH_MASK & data);
//读取数据长度
memcpy_s(&data, sizeof(int16), &pRx->dma_numbit7_0, sizeof(int16));
dma_num = (DMA_NUMBER_MASK & data);
//查询返回信息是否正确
switch (pRx->dataSection[4])
{
case NET_COM_EXECUTE_FAIL:
return Net_Rt_Execute_Fail;
case NET_COM_EXECUTE_SUCCESS:
break;
case NET_COM_PARAMETER_INVALID:
return Net_Rt_Parameter_invalid;
case NET_COM_INSTRUCTION_INVALID:
return Net_Rt_Instruction_invalid;
default:
return Net_Rt_Other_Error;
}
memcpy_s(pData, dma_num * sizeof(int16), &(pRx->dataSection[6]), dma_num * sizeof(int16));
return Rt_Success;
}
int16 CPacket::decoder_fpga_packet(Uint8 index, int16* pData, int16 &dma_num)
{
if (rx_length < MIN_PACKET_LEN)
return Net_Rt_Receive_DLenth_short;
if (pRx->type0 != pTx->type0 || pRx->type1 != pTx->type1)
return Net_Rt_Receive_Unknow_Data;
if (pRx->index != index)
return Net_Rt_Index_Unmatch;
//读取包长度
int16 data = 0;
memcpy_s(&data, sizeof(int16), &(pRx->lengthbit7_0), sizeof(int16));
int16 lenth = (LENTH_MASK & data);
//读取数据长度
memcpy_s(&data, sizeof(int16), &pRx->dma_numbit7_0, sizeof(int16));
dma_num = (DMA_NUMBER_MASK & data);
memcpy_s(pData, dma_num * sizeof(short), &(pRx->dataSection[0]), dma_num * sizeof(short));
return Rt_Success;
}
static int32 getLocalMac(Uint8 *mac, const int8* adapterName) //获取本机MAC址
{
//PIP_ADAPTER_INFO结构体指针存储本机网卡信息
PIP_ADAPTER_INFO pIpAdapterInfo = new IP_ADAPTER_INFO();
//得到结构体大小,用于GetAdaptersInfo参数
Uint32 stSize = sizeof(IP_ADAPTER_INFO);
//调用GetAdaptersInfo函数,填充pIpAdapterInfo指针变量;其中stSize参数既是一个输入量也是一个输出量
int32 nRel = GetAdaptersInfo(pIpAdapterInfo, &stSize);
//记录网卡数量
int32 netCardNum = 0;
//记录每张网卡上的IP地址数量
int32 IPnumPerNetCard = 0;
if (ERROR_BUFFER_OVERFLOW == nRel)
{
//如果函数返回的是ERROR_BUFFER_OVERFLOW
//则说明GetAdaptersInfo参数传递的内存空间不够,同时其传出stSize,表示需要的空间大小
//这也是说明为什么stSize既是一个输入量也是一个输出量
//释放原来的内存空间
delete pIpAdapterInfo;
//重新申请内存空间用来存储所有网卡信息
pIpAdapterInfo = (PIP_ADAPTER_INFO)new BYTE[stSize];
//再次调用GetAdaptersInfo函数,填充pIpAdapterInfo指针变量
nRel = GetAdaptersInfo(pIpAdapterInfo, &stSize);
}
int32 iCount = 0;
while (pIpAdapterInfo)//遍历每一张网卡
{
// pIpAdapterInfo->Address MAC址
if (strstr(adapterName, pIpAdapterInfo->AdapterName) != NULL)
{
for (int32 i = 0; i < (int32)pIpAdapterInfo->AddressLength; i++)
{
mac[iCount++] = pIpAdapterInfo->Address[i];
}
}
pIpAdapterInfo = pIpAdapterInfo->Next;
}
return iCount;
}
void CPacket::get_local_mac(const int8* adapterName)
{
if (!bHaveMac)
{
if (getLocalMac(mac, adapterName) > 0)
{
int32 i;
for (i = 0; i < MAC_ADDR_BYTE_LENTH; ++i) //Source mac
{
pTx->smac[i] = (mac[i]);
}
bHaveMac = true;
}
}
}
void CPacket::fillPacket(int16 dma_addr, int16* pData, int16 dma_num, int16 FPGAmode)
{
int32 i,j;
tx_length = PACKET_HEADER_LENTH;
int16 length = dma_num * 2 + LENTH_INCLUDE;
int16 iAddZero = MIN_SEND_PKT_LEN - LENTH_BEFORE - length;
if (iAddZero > 0)
length = MIN_SEND_PKT_LEN - LENTH_BEFORE;
length |= LENTH_MASK_ZERO;
length &= LENTH_MASK_ONE;
pTx->lengthbit7_0 = (length & 0xff);
pTx->lengthbit9_8 = ((length>>8) & 0xff);
m_tx_index++;
pTx->index = m_tx_index;
int16 dmanum = dma_num;
if (FPGAmode == PACKET_MODE_READ_FPGA)//读模式
dmanum &= DMA_NUMBER_MASK;
else
dmanum |= DMA_NUMBER_MASK_WRITE;
pTx->dma_numbit7_0 = (dmanum & 0xff);
pTx->dma_numbit8 = ((dmanum >> 8) & 0xff);
pTx->dmaAddrbit7_0 = (dma_addr & 0xff);
pTx->dmaAddrbit15_8 = ((dma_addr >> 8) & 0xff);
for (i = 0,j=0; i < dma_num;i++)
{
pTx->dataSection[j] = ((*(pData + i)) & 0xff);
pTx->dataSection[j + 1] = (((*(pData + i)) >> 8) & 0xff);
j = j + 2;
tx_length += 2;
}
for (i = 0; i < iAddZero; ++i)
{
pTx->dataSection[i+j] = 0x0;
tx_length++;
}
}
| [
"chenchao_szu@163.com"
] | chenchao_szu@163.com |
e6d84463a079aef692dce48249fa637ea79a8034 | 3450a1d0d8becc537a1e80fc174a831d1f0b1a9f | /Lab/Lab2/C++/idList.h | c669df108b08cff931a98551cf31c8d19f7045ca | [] | no_license | xu3z/CSE-655 | 1356303120b55422c17aeaba3c3b362c32237598 | 57f45c595c26a9e037dedf252de66f33b553e082 | refs/heads/master | 2020-12-28T22:45:57.460623 | 2014-02-09T05:42:31 | 2014-02-09T05:42:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 315 | h | #ifndef _IDLIST_H_
#define _IDLIST_H_
#include "ID.h"
class idList:public Tokenizer
{
public:
string strID,gnext;
idList(){ gnext=""; };
ID id;
int curToken;
string idValue;
void parseIDListForDS();
void parseIDListForSS();
void printIDList();
void readInput();
void writeOutput();
};
#endif
| [
"ananth.mm@gmail.com"
] | ananth.mm@gmail.com |
50829c60f2690823848f5f12e19f9dfe3fadbb3d | d33a2c7503955d0981f903e44f9d75be4fd5b264 | /code/src/loop.cpp | f73cbb6309483e6efe15dff44defd770d9032267 | [] | no_license | mldelibero/roboCooler | c3a1906fdad82d96313fecc85a64ffca641cd1c5 | d2c06277c640983b6a970655a65ef768c77072d4 | refs/heads/master | 2020-04-03T20:13:15.764843 | 2017-06-04T20:50:22 | 2017-06-04T20:50:22 | 42,898,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,590 | cpp | #include "capTouch.h"
#include "ledDriver.h"
#include "halDriver.h"
//#include "limitSwitch.h"
#include "lidMotor.h"
//#include "utils.h"
#include "ledStrip.h"
#include "ledStripDriver.h"
#include "timer.h"
extern "C" {
#include "Board_LED.h" // ::Board Support:LED
}
//extern CLimSwComp Opened_Limit;
//extern CLimSwComp Closed_Limit;
extern CCapTouchComp CapTouch;
extern CLidMotorComp LidMotor;
extern CLedStripDriver LedStripDriver;
extern CLedStripComp LedStrip;
extern CHalDriver Hal1_Driver;
extern CHalDriver Hal2_Driver;
void loop(void)
{
uint32_t led_cnt = LED_GetCount();
uint32_t led_num = 0;
int32_t timer = AllocateTimer();
bool on = false;
// WHILE(1)
while(1)
{
HAL_GPIO_TogglePin(LOOP_INT_GPIOx, LOOP_GPIO_PIN_X);
if (Hal1_Driver.Is_Triggered()) SetLeds(1);
else SetLeds(0);
// Opened_Limit.Run();
// Closed_Limit.Run();
CapTouch.Run();
LidMotor.Run();
LedStrip.Run();
LedStripDriver.Run();
if (IsTimerExpired(timer) == true)
{
Set_TimerValue(timer, 500);
if (on == true)
{
LED_Off(led_num); // Turn specified LED off
led_num = ++led_num % led_cnt; // Change LED number
on = false;
}
else
{
LED_On(led_num); // Turn specified LED on
on = true;
}
}
} // end - WHILE(1)
}
| [
"delibero.michael@ensco.com"
] | delibero.michael@ensco.com |
36eea3226c2e9a48094478fc881d01f4ec8a65d5 | 1d369cef3d261429773d562635e1402d86ab8958 | /协同进程/add.cpp | d276bd32522d2f0e8a5c1e7d10d283387ea9a5a4 | [] | no_license | gopep9/learnapue | 81c502b0ecfa44344efcb15439a8450373fef3fd | 774b533140d200beb22587c555512690c8010905 | refs/heads/master | 2020-03-25T08:06:40.456351 | 2018-08-07T07:30:52 | 2018-08-07T07:30:52 | 143,597,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,045 | cpp | //
// main.cpp
// CPlusPlusTest
//
// Created by huangzhao on 2018/4/16.
// Copyright © 2018年 huangzhao. All rights reserved.
//
#include <iostream>
#include <string>
#include <unistd.h>
#include "headset.h"
//加法器,读取输入,并且相加,输出
int my_getline(char* line, int max_size)
{
int c;
int len = 0;
while( (c = getchar()) != EOF && len < max_size ){
line[len++] = c;
if('\n' == c)
break;
}
line[len] = '\0';
return len;
}
int main(int argc,char *argv[])
{
size_t readwordnum = 0,int1 = 0,int2 = 0;
char str[1024];
while(my_getline(str, 1024)>0)
{
if(sscanf(str,"%d %d",&int1,&int2)==2)
{
sprintf(str,"%d\n",int1+int2);
readwordnum=strlen(str);
if(write(STDOUT_FILENO, str, readwordnum)!=readwordnum)
{
perror("write");
return -1;
}
}else{
puts("invalid args");
return -1;
}
}
return 0;
}
| [
"huangjian@huangjiandeMacBook-Pro.local"
] | huangjian@huangjiandeMacBook-Pro.local |
b91f2809733daed87a0f0c0ba380e21797b97e46 | 64fda67d42a44deab0a57834fc2e04ce0e655425 | /tempest_source/Engine/TempestEngine/External/SceneManipulatorInterface.hpp | b9102b79cac2da58efd2f13d0da2f42b49eccd9c | [] | no_license | charlesboudousquie/Workbench | 6984575e2fddc7c1eaa59ab9ad6861cb51aa884c | 724021fa76a33cdb0182f53392918f4560960f9b | refs/heads/master | 2020-08-17T16:33:44.040296 | 2019-11-24T03:45:33 | 2019-11-24T03:45:33 | 215,687,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,918 | hpp | /*!***************************************************************************************
\file SceneManipulatorInterface.hpp
\author Aaron Damyen
\date 7/31/18
\copyright All content � 2018-2019 DigiPen (USA) Corporation, all rights reserved.
\par Project: Boomerang
\brief
*****************************************************************************************/
#pragma once
#include <Reflection.hpp>
#include <DataTypes.hpp>
#include <vector>
#include <string>
#include <memory>
class scene;
class space;
class gameObject;
class sceneManipulatorInterface
{
public:
virtual objID getParentID(objID p_object_id) = 0;
virtual objID getSpaceIDForObject(objID p_object_id) = 0;
virtual objID getSpaceIDFromName(std::string name) = 0;
virtual std::vector<objID> getSceneIDs() = 0;
virtual std::string getSceneName(objID p_scene_id) = 0;
virtual std::vector<objID> getSpaceIDsForScene(objID p_scene_id) = 0;
virtual std::string getSpaceName(objID p_space_id) = 0;
virtual std::vector<objID> getObjectIDsForSpace(objID p_space_id) = 0;
virtual std::vector<objID> getTopObjectIDsForSpace(objID p_space_id) = 0;
virtual std::vector<objID> getChildObjectIDsForObject(objID p_object_id) = 0;
virtual std::string getObjectName(objID p_object_id) = 0;
virtual typeRT getTypeRT(objID p_object_id) = 0;
virtual void applyTypeRT(objID p_id, typeRT & p_type) = 0;
virtual std::shared_ptr<scene> addEmptyScene() = 0;
virtual std::shared_ptr<space> addEmptySpace() = 0;
virtual std::shared_ptr<space> addEmptySpace(objID p_scene_id) = 0;
virtual objID addEmptySpace(const std::string& p_name) = 0;
virtual std::shared_ptr<gameObject> addEmptyGameObject() = 0;
virtual std::shared_ptr<gameObject> addEmptyGameObject(objID p_parent_id) = 0;
virtual objID addEmptyGameObject(objID p_parent_id, const std::string& p_name) = 0;
virtual void addRenderedGameObject(float p_x, float p_y, float p_z, std::string p_object_name, std::string p_texture) = 0;
virtual void addGameObjectComponent(objID p_object_id, const std::string & p_component_type) = 0;
virtual void removeGameObjectComponent(objID p_object_id, const std::string & p_component_type) = 0;
virtual void readObjectTransform(objID p_object_id, float * p_transform_matrix) = 0;
virtual void writeObjectTransform(objID p_object_id, float * p_transform_matrix) = 0;
virtual void createEditorCamera() = 0;
virtual void removeEditorCamera() = 0;
virtual void setButtonNeighbor(objID p_objectID, objID p_neighborID, int p_neighbor) = 0;
virtual objID removeButtonNeighbor(objID p_objectID, int p_neighbor) = 0;
virtual objID getObjectID(std::string p_objectName) = 0;
virtual void setCollisionLayer(objID p_object_id, unsigned int p_data, unsigned int p_type) = 0;
virtual void removeGameObject(objID p_objectID) = 0;
virtual void addParentToGameObject(objID p_parent_id, objID p_child_id) = 0;
virtual void removeParent(objID p_child_id) = 0;
virtual void setGameObjectName(objID p_object_id, const std::string & p_name) = 0;
virtual void setSceneName(objID p_scene_id, const std::string & p_name) = 0;
virtual void setSpaceName(objID p_space_id, const std::string & p_name) = 0;
virtual void deleteSpace(objID p_space_id) = 0;
virtual void deleteSpace(const std::string& p_space_name) = 0;
virtual void setButtonMaterial(objID p_button_id, const std::string & p_name) = 0;
virtual void moveObjectToSpace(objID p_object_id, const std::string & p_space) = 0;
virtual void moveObjectToSpace(objID p_object_id, objID p_space_id) = 0;
virtual void dynamicWaypointGraphCreatePath() = 0;
virtual void dynamicWaypointGraphCreateSetPaths() = 0;
virtual void dynamicWaypointGraphStitchPaths() = 0;
virtual void dynamicWaypointGraphClear() = 0;
virtual void dynamicWaypointGraphDeleteRandomNodeSet() = 0;
virtual void dynamicWaypointGraphTestFunction() = 0;
};
| [
"charlesboudousquie@gmail.com"
] | charlesboudousquie@gmail.com |
f687080747d7e5649be69e7478984e35b31a7ef9 | 5e58a55bc863322cc77167dcc84aef2d8205c441 | /imviewer/pixaccess.cpp | a365025e3c46db039289d03f648445ca1ede8096 | [] | no_license | jaredmales/VisAO | d79c50c76d9b9f801a38a3febaafc24c3438c708 | 9effbfcc2f7e1f743df346efd07fb6b7c82eedb2 | refs/heads/master | 2021-01-25T16:58:44.083880 | 2017-09-01T07:33:13 | 2017-09-01T07:33:13 | 102,152,273 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,567 | cpp | #include "pixaccess.h"
float (*getPixPointer(int imv_type))(void*, size_t)
{
switch(imv_type)
{
case IMV_CHAR:
return &getPix<char>;
case IMV_UCHAR:
return &getPix<unsigned char>;
case IMV_SHORT:
return &getPix<short>;
case IMV_USHORT:
return &getPix<unsigned short>;
case IMV_INT:
return &getPix<int>;
case IMV_UINT:
return &getPix<unsigned int>;
case IMV_LONG:
return &getPix<long>;
case IMV_ULONG:
return &getPix<unsigned long>;
case IMV_LONGLONG:
return &getPix<long long>;
case IMV_ULONGLONG:
return &getPix<unsigned long long>;
case IMV_FLOAT:
return &getPix<float>;
case IMV_DOUBLE:
return &getPix<double>;
case IMV_LONGDOUBLE:
return &getPix<long double>;
// case IMV_CMPLXFLOAT:
// return &getPix<std::complex<float> >;
// case IMV_CMPLXDOUBLE:
// return &getPix<std::complex<double> >;
// case IMV_CMPLXLONGDOUBLE:
// return &getPix<std::complex<long double> >;
default:
return 0;
}
return 0;
}
size_t sizeof_imv_type(int imv_type)
{
switch(imv_type)
{
case IMV_CHAR:
return sizeof(char);
case IMV_UCHAR:
return sizeof(unsigned char);
case IMV_SHORT:
return sizeof(short);
case IMV_USHORT:
return sizeof(unsigned short);
case IMV_INT:
return sizeof(int);
case IMV_UINT:
return sizeof(unsigned int);
case IMV_LONG:
return sizeof(long);
case IMV_ULONG:
return sizeof(unsigned long);
case IMV_LONGLONG:
return sizeof(long long);
case IMV_ULONGLONG:
return sizeof(unsigned long long);
case IMV_FLOAT:
return sizeof(float);
case IMV_DOUBLE:
return sizeof(double);
case IMV_LONGDOUBLE:
return sizeof(long double);
case IMV_CMPLXFLOAT:
return sizeof(std::complex<float> );
case IMV_CMPLXDOUBLE:
return sizeof(std::complex<double> );
case IMV_CMPLXLONGDOUBLE:
return sizeof(std::complex<long double> );
default:
return 0;
}
return 0;
}
| [
"jaredmales@gmail.com"
] | jaredmales@gmail.com |
8b31ef814c9e2bdd5e96a560105c79e7cfb947e8 | ea754c2e69ead2052f930174aa7e459508469e8e | /00exam/lausnir/04_problem_solving_paradigms/sylvester.cpp | 8376db3273569ed4b193eefe766d25c92e877639 | [] | no_license | bjornheidar/aflv | ad31bb43b499797ca13002127ef80709be7b5e0e | 73009b6c58de3dd4f7b3c1efc3410a6836a517e0 | refs/heads/master | 2020-12-30T09:38:12.375032 | 2014-12-20T23:44:55 | 2014-12-20T23:44:55 | 28,087,912 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | cpp | // Author: Bjarki Ágúst Guðmundsson
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
using namespace std;
#define all(o) (o).begin(), (o).end()
#define allr(o) (o).rbegin(), (o).rend()
const int INF = 2147483647;
typedef long long ll;
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef vector<vii> vvii;
template <class T> int size(T &x) { return x.size(); }
// assert or gtfo
bool pos(ll n, ll x, ll y) {
if (n == 1) {
return true;
} else if (n == 2) {
if (x == 1 && y == 1) return false;
return true;
} else {
ll nx = x < n / 2 ? x : x - n / 2,
ny = y < n / 2 ? y : y - n / 2;
bool res = pos(n / 2, nx, ny);
if (x >= n / 2 && y >= n / 2) {
res = !res;
}
return res;
}
}
int main() {
int ts;
scanf("%d\n", &ts);
for (int t = 0; t < ts; t++) {
ll n, x, y, w, h;
cin >> n >> x >> y >> w >> h;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (j != 0) printf(" ");
printf("%d", pos(n, y + i, x + j) ? 1 : -1);
}
printf("\n");
}
printf("\n");
}
return 0;
}
| [
"bjornhr1@gmail.com"
] | bjornhr1@gmail.com |
89ce42864090c6f24a36ea92765947d3f51679a3 | 35bd87c9c6cacda05252f93b4e30400aa59a0e2f | /export/release/windows/obj/src/flixel/text/FlxTextFormat.cpp | 051b5baa5fe70b457ad883cd89c8a5425988c33f | [
"Apache-2.0"
] | permissive | RE4L-CODE/vsZero-KE | 53599f2099a17a9553adb25a7c8771db0a6bc6d4 | 44c126687ecd3caf7cc3af892164be8d520ae97a | refs/heads/main | 2023-09-01T09:58:39.012592 | 2021-11-18T10:24:21 | 2021-11-18T10:24:21 | 429,388,364 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 5,241 | cpp | // Generated by Haxe 4.1.5
#include <hxcpp.h>
#ifndef INCLUDED_flixel_text_FlxTextFormat
#include <flixel/text/FlxTextFormat.h>
#endif
#ifndef INCLUDED_openfl_text_TextFormat
#include <openfl/text/TextFormat.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_a69907c6a733237a_1097_new,"flixel.text.FlxTextFormat","new",0x67be2279,"flixel.text.FlxTextFormat.new","flixel/text/FlxText.hx",1097,0xdf165a6e)
namespace flixel{
namespace text{
void FlxTextFormat_obj::__construct( ::Dynamic FontColor, ::Dynamic Bold, ::Dynamic Italic, ::Dynamic BorderColor){
HX_GC_STACKFRAME(&_hx_pos_a69907c6a733237a_1097_new)
HXLINE(1098) this->format = ::openfl::text::TextFormat_obj::__alloc( HX_CTX ,null(),null(),FontColor,Bold,Italic,null(),null(),null(),null(),null(),null(),null(),null());
HXLINE(1099) int _hx_tmp;
HXDLIN(1099) if (::hx::IsNull( BorderColor )) {
HXLINE(1099) _hx_tmp = 0;
}
else {
HXLINE(1099) _hx_tmp = ( (int)(BorderColor) );
}
HXDLIN(1099) this->borderColor = _hx_tmp;
}
Dynamic FlxTextFormat_obj::__CreateEmpty() { return new FlxTextFormat_obj; }
void *FlxTextFormat_obj::_hx_vtable = 0;
Dynamic FlxTextFormat_obj::__Create(::hx::DynamicArray inArgs)
{
::hx::ObjectPtr< FlxTextFormat_obj > _hx_result = new FlxTextFormat_obj();
_hx_result->__construct(inArgs[0],inArgs[1],inArgs[2],inArgs[3]);
return _hx_result;
}
bool FlxTextFormat_obj::_hx_isInstanceOf(int inClassId) {
return inClassId==(int)0x00000001 || inClassId==(int)0x184412c5;
}
::hx::ObjectPtr< FlxTextFormat_obj > FlxTextFormat_obj::__new( ::Dynamic FontColor, ::Dynamic Bold, ::Dynamic Italic, ::Dynamic BorderColor) {
::hx::ObjectPtr< FlxTextFormat_obj > __this = new FlxTextFormat_obj();
__this->__construct(FontColor,Bold,Italic,BorderColor);
return __this;
}
::hx::ObjectPtr< FlxTextFormat_obj > FlxTextFormat_obj::__alloc(::hx::Ctx *_hx_ctx, ::Dynamic FontColor, ::Dynamic Bold, ::Dynamic Italic, ::Dynamic BorderColor) {
FlxTextFormat_obj *__this = (FlxTextFormat_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(FlxTextFormat_obj), true, "flixel.text.FlxTextFormat"));
*(void **)__this = FlxTextFormat_obj::_hx_vtable;
__this->__construct(FontColor,Bold,Italic,BorderColor);
return __this;
}
FlxTextFormat_obj::FlxTextFormat_obj()
{
}
void FlxTextFormat_obj::__Mark(HX_MARK_PARAMS)
{
HX_MARK_BEGIN_CLASS(FlxTextFormat);
HX_MARK_MEMBER_NAME(borderColor,"borderColor");
HX_MARK_MEMBER_NAME(format,"format");
HX_MARK_END_CLASS();
}
void FlxTextFormat_obj::__Visit(HX_VISIT_PARAMS)
{
HX_VISIT_MEMBER_NAME(borderColor,"borderColor");
HX_VISIT_MEMBER_NAME(format,"format");
}
::hx::Val FlxTextFormat_obj::__Field(const ::String &inName,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 6:
if (HX_FIELD_EQ(inName,"format") ) { return ::hx::Val( format ); }
break;
case 11:
if (HX_FIELD_EQ(inName,"borderColor") ) { return ::hx::Val( borderColor ); }
}
return super::__Field(inName,inCallProp);
}
::hx::Val FlxTextFormat_obj::__SetField(const ::String &inName,const ::hx::Val &inValue,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 6:
if (HX_FIELD_EQ(inName,"format") ) { format=inValue.Cast< ::openfl::text::TextFormat >(); return inValue; }
break;
case 11:
if (HX_FIELD_EQ(inName,"borderColor") ) { borderColor=inValue.Cast< int >(); return inValue; }
}
return super::__SetField(inName,inValue,inCallProp);
}
void FlxTextFormat_obj::__GetFields(Array< ::String> &outFields)
{
outFields->push(HX_("borderColor",d7,3c,d5,d6));
outFields->push(HX_("format",37,8f,8e,fd));
super::__GetFields(outFields);
};
#ifdef HXCPP_SCRIPTABLE
static ::hx::StorageInfo FlxTextFormat_obj_sMemberStorageInfo[] = {
{::hx::fsInt,(int)offsetof(FlxTextFormat_obj,borderColor),HX_("borderColor",d7,3c,d5,d6)},
{::hx::fsObject /* ::openfl::text::TextFormat */ ,(int)offsetof(FlxTextFormat_obj,format),HX_("format",37,8f,8e,fd)},
{ ::hx::fsUnknown, 0, null()}
};
static ::hx::StaticInfo *FlxTextFormat_obj_sStaticStorageInfo = 0;
#endif
static ::String FlxTextFormat_obj_sMemberFields[] = {
HX_("borderColor",d7,3c,d5,d6),
HX_("format",37,8f,8e,fd),
::String(null()) };
::hx::Class FlxTextFormat_obj::__mClass;
void FlxTextFormat_obj::__register()
{
FlxTextFormat_obj _hx_dummy;
FlxTextFormat_obj::_hx_vtable = *(void **)&_hx_dummy;
::hx::Static(__mClass) = new ::hx::Class_obj();
__mClass->mName = HX_("flixel.text.FlxTextFormat",07,72,93,cd);
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &::hx::Class_obj::GetNoStaticField;
__mClass->mSetStaticField = &::hx::Class_obj::SetNoStaticField;
__mClass->mStatics = ::hx::Class_obj::dupFunctions(0 /* sStaticFields */);
__mClass->mMembers = ::hx::Class_obj::dupFunctions(FlxTextFormat_obj_sMemberFields);
__mClass->mCanCast = ::hx::TCanCast< FlxTextFormat_obj >;
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = FlxTextFormat_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = FlxTextFormat_obj_sStaticStorageInfo;
#endif
::hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
} // end namespace flixel
} // end namespace text
| [
"61307317+RE4L-CODE@users.noreply.github.com"
] | 61307317+RE4L-CODE@users.noreply.github.com |
cd3929912b0b07b504b58c70ced1449354c44c8a | 89ae2633bc000b1d38e5cf2a7069f7e78c9e7bd6 | /uva_280.cpp | 63e6b390d7b0324efc22dc9ec209feb33449e3e2 | [] | no_license | yardstick17/UVA_Solutions | b6fc01a24084ce22a6fd5f637359624b19497be1 | e5ba9855abcef0b8bcbef0808b1dff904eb8e178 | refs/heads/master | 2021-01-01T05:02:02.515018 | 2016-04-23T14:34:20 | 2016-04-23T14:34:20 | 56,923,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,148 | cpp | /* AK_47*/
#include<iostream>
#include<stdio.h>
#include<list>
#include<vector>
#include<map>
#include<algorithm>
#include<set>
using namespace std;
#define S(x) scanf("%d",&x)
#define pb(x) push_back(x)
#define V(x) vector<x>
#define F(i,a,n) for(int i=(a);i<(n);++i)
#define REP(i,a,n) for(i=(a);i<(n);++i)
class Graph
{
int c,coun=0;
int v;
list<int> *adj;
int visit(int ,bool*);
public:
set<int>se,s1,s2;
Graph(int v);
void addedge(int u,int v);
int DFS(int s);
};
Graph::Graph(int v){
this->v= v;
adj= new list<int>[v];
}
void Graph::addedge(int v,int w)
{
adj[v].push_back(w);
}
int Graph::visit(int s,bool *visited)
{
// if(visited[s]=true)
// coun++;
//cout<<" graph traversal is: "<<endl;
// cout<<" "<<s+1<<" ";
list<int>::iterator it=adj[s].begin();
for(;it!=adj[s].end();it++)
{
if(visited[*it]==false)
{ visited[*it]=true;
se.insert(*it);
coun++;
visit(*it,visited);
}
}
return coun;
}
int Graph::DFS(int s)
{ se.clear();
// s1.clear();
s2.clear();
coun=0;
int i;
bool *visited= new bool[v];
for(i=0;i<v;i++)
visited[i]=false;
c=visit(s,visited);
return c;
}
int main()
{
int v,t,x,y,z,i,j,k,m,a[1000];
while(1){
S(v);
if(v==0)
break;
Graph g(v);
set<int>::iterator it;//= g.se.begin();
for(i=0;i<v;i++)
g.s1.insert(i);
while(1)
{
z=0;
cin>>x;
if(x==0)
break;
else
{ //g.s1.insert(x-1);
while(1)
{
cin>>y;
if(y==0)
break;
else
{
// g.s1.insert(y-1);
g.addedge(x-1,y-1);
}
}
}
}//cout<<" Graph si: ";
//for(it=g.s1.begin();it!=g.s1.end();it++)
//cout<<*it<<" ";
//cout<<endl;
S(t);
REP(i,0,t)
{ cin>>x;
a[i]=x;
}
REP(i,0,t)
{ //cout<<"\n";
m=g.DFS(a[i]-1);
for(it=g.s1.begin();it!=g.s1.end();it++)
{
if(g.se.find(*it)==g.se.end())
g.s2.insert(*it);
}
m=v-m;
cout<<m;
for(it=g.s2.begin();it!=g.s2.end();it++)
cout<<" "<<*it+1;
cout<<endl;
//cout<<" Ans is: "<<m<<endl;
}
}
return 0;
}
| [
"amit_kushwaha@outlook.com"
] | amit_kushwaha@outlook.com |
b2b16bdb6e69e93b6031dd125fe81b8fde5dddf9 | ef7d114df34697b7ecf0d472584a730c54bde2c3 | /carCtrl/laneDetect.cpp | f4f76b9528ed4562bd20a8d3a061278e579314bc | [] | no_license | jean-lucas/vic | 914df9eb52d0b5ed735b6a50b0cb0f2d9921e850 | 3d0905b4727a6cc7ad890ee421aea790a65bc26b | refs/heads/master | 2021-01-20T11:43:52.926649 | 2017-04-29T20:44:28 | 2017-04-29T20:44:28 | 70,079,300 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,414 | cpp |
#include "laneDetect.h"
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>
#include <algorithm>
#include <math.h>
#include <stdlib.h>
#include <unistd.h>
#include <raspicam/raspicam_cv.h>
using namespace cv;
using namespace std;
using namespace raspicam;
#define PINK 0
#define BLUE 1
#define GREEN 2
#define ORANGE 3
/* private function declarations */
static Point2d get_midpoint(Point2d a, Point2d b);
static double calculateAvgLineSize(vector<Point2d> vec, Point2d center);
static double get_slope(Point2d a, Point2d b);
static double get_line_length(Point2d a, Point2d b);
/* Constants */
//this percentage will be cutoff from the top of the image
const double CUT_OFF_HEIGHT_FACTOR = 0.45;
const double CUT_OFF_WIDTH_FACTOR = 0.08; // from both sides
const double MIN_LINE_LENGTH = 5;
const double INVALID_SLOPE = 200;
const double MIN_INTERSECTION_DISTANCE = 120;
static struct int_info {
int type = 0;
int detected = 0;
int colour = -1;
double dist = -1;
} info;
#define MAX2(x, y) (((x) > (y)) ? (x) : (y))
#define MIN2(x, y) (((x) < (y)) ? (x) : (y))
void calibrate_raspicam(RaspiCam_Cv *cap) {
sleep(1);
Mat capMat;
cap->grab();
cap->retrieve(capMat);
imwrite("../../raspicam.png", capMat);
printf("image printed to raspicam.png\n");
}
// from http://coecsl.ece.illinois.edu/ge423/spring05/group8/finalproject/hsv_writeup.pdf
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h = -1 (undefined)
void RGBtoHSV( float r, float g, float b, float *h, float *s, float *v ) {
float min, max, delta;
min = MIN2(MIN2( r, g), b );
max = MAX2(MAX2( r, g), b );
*v = max; // v
delta = max - min;
if( max != 0 )
*s = delta / max; // s
else {
*s = 0;
*h = -1;
return;
}
if( r == max )
*h = ( g - b ) / delta; // between yellow & magenta
else if( g == max )
*h = 2 + ( b - r ) / delta; // between cyan & yellow
else
*h = 4 + ( r - g ) / delta; // between magenta & cyan
*h *= 60; // degrees
if( *h < 0 )
*h += 360;
}
/**
Detect a intersection colour segment.
And the distance to the colour segment
*/
int_info detect_intersection(int y0, int yf, int x0, int xf, Mat mat) {
int x = 0, y = 0, tot_vote = 0;
int step = 10;
double detected_ypos = 0;
float red = 0, blue = 0, green = 0;
float h = 0, s = 0, v = 0;
int colour_votes[4] = {0};
Vec3b colour;
int_info inter_info;
inter_info.detected = 0;
inter_info.dist = -1;
inter_info.colour = -1;
for (y = yf; y >= y0; y -= step) {
for (x = x0; x < xf; x += step) {
colour = mat.at<Vec3b>(Point(x,y));
red = (float) colour[2] / 255;
green = (float) colour[1] / 255;
blue = (float) colour[0] / 255;
RGBtoHSV(red, green, blue, &h, &s, &v);
if (s > 0.2 && v > 0.5) {
if (h > 300 && h < 360) { //detect pink
++tot_vote;
++colour_votes[PINK];
detected_ypos += y;
}
else if (h > 0 && h < 60) { //detect orange
++tot_vote;
++colour_votes[ORANGE];
detected_ypos += y;
}
else if (h > 190 && h < 260) { //detect blue
++tot_vote;
++colour_votes[BLUE];
detected_ypos += y;
}
else if (h > 80 && h < 160) { //detect green
++tot_vote;
++colour_votes[GREEN];
detected_ypos += y;
}
}
if (tot_vote > 3) {
int max_vote_colour = -1;
for (int i = 0; i < 4; i++) {
if (max_vote_colour < colour_votes[i])
max_vote_colour = i;
}
// printf("COLOR DETECTED %d\n", max_vote_colour );
inter_info.detected = 1;
inter_info.dist = detected_ypos/tot_vote;
inter_info.colour = max_vote_colour;
return inter_info;
}
}
}
return inter_info;
}
void draw_grid(int y0, int yf, int x0, int xf, Mat mat) {
int x,y;
int step = 10;
for (y = y0; y < yf; y+=step) {
line(mat, Point(x0,y), Point(xf,y), Scalar(0,255,255),1,8);
}
for (x = x0; x < xf; x+=step) {
line(mat, Point(x,y0), Point(x,yf), Scalar(0,255,255),1,8);
}
}
int get_lane_statusv3(struct ImageData *img_data, RaspiCam_Cv *cap) {
if (!(cap->isOpened())) {
printf("failed to open capture\n");
cap->release();
return HALT_SYSTEM;
}
Mat capMat, croppedMat, cannyMat, houghMat, contourMat, contourCanny;
//retrieve the current frame from video stream
cap->grab();
cap->retrieve(capMat);
if (capMat.data == NULL) {
return CORRUPT_IMAGE;
}
Size size_uncropped = capMat.size();
// Try to detect an intersection (y0, yf, x0, xf, mat)
info = detect_intersection( size_uncropped.height/5,
size_uncropped.height,
size_uncropped.width/3,
2*size_uncropped.width/3,
capMat);
// draw_grid( size_uncropped.height/5,
// size_uncropped.height,
// size_uncropped.width/3,
// 2*size_uncropped.width/3,
// capMat);
if (info.detected) {
info.dist = size_uncropped.height - info.dist;
// printf("\nDistance to intersection %f, and detected %d\n", info.dist, info.detected );
img_data->intersection_detected = info.detected;
img_data->intersection_distance = info.dist;
img_data->intersection_colour = info.colour;
if (info.dist < MIN_INTERSECTION_DISTANCE) {
img_data->intersection_stop = 1;
// printf("intersection found of type %d, stopping car.\n", info.type);
return NO_ERROR;
}
}
//cropping image
int top_y = size_uncropped.height*CUT_OFF_HEIGHT_FACTOR;
int top_x = size_uncropped.width*CUT_OFF_WIDTH_FACTOR;
int new_width = size_uncropped.width - 2*top_x;
int new_height = size_uncropped.height - top_y;
Rect cropRect = Rect(top_x, top_y, new_width, new_height);
croppedMat = capMat(cropRect);
//Create binary image
cvtColor(croppedMat, croppedMat, CV_BGR2GRAY);
threshold(croppedMat, croppedMat, 170, 255, THRESH_BINARY);
// imwrite("../../step3_binary.png",croppedMat);
//Canny(inputMay, outputMat, threshold_1, threshold_2, apertureSize, L2Gradient )
Canny(croppedMat, cannyMat, 50, 255, 3);
// imwrite("../../canny_cropped.png",cannyMat);
//basic information of the image
Size size = cannyMat.size();
int imgHeight = size.height;
int imgWidth = size.width;
Point2d camera_center_point = Point2d(imgWidth/2.0, imgHeight);
//houghmat needs to be BGR in order to apply hough transform
cvtColor(cannyMat, houghMat, CV_GRAY2BGR);
//THese vector of lines will hold the results from Hough Transform
vector<Vec4f> lines;
vector<Point2d> leftLines; //left lines and right lines are based on the center point (CAREFUL!)
vector<Point2d> rightLines;
//(inputMat, output vector N x 4, distance resolution of accumulator, angle of accumulator, threshold, minLineLength, maxLineGap )
HoughLinesP(cannyMat, lines, 1, CV_PI/180,38,10,1);
Point2d a,b,mid;
double line_length = 0;
double slope_tot = 0;
int slope_count = 0;
double slope_ang = 0;
//logic on the detected lines from hough transform
for (size_t i = 0; i < lines.size(); i++) {
a = Point2d(lines[i][0],lines[i][1]);
b = Point2d(lines[i][2],lines[i][3]);
mid = get_midpoint(a,b);
line_length = get_line_length(a,b);
if (line_length > MIN_LINE_LENGTH) {
slope_ang = get_slope(a,b);
if (slope_ang != INVALID_SLOPE) {
slope_tot += slope_ang;
slope_count += 1;
}
}
//if an end-point of a line plus the midpoint are to one side of the img center,
// than consider which side it is on
if (mid.x <= camera_center_point.x && (a.x <= camera_center_point.x || b.x <= camera_center_point.x)) {
leftLines.push_back(mid);
}
else {
rightLines.push_back(mid);
}
}
// imwrite("../../step5_hough.png",houghMat);
double avgLeftSize, avgRightSize;
avgLeftSize = calculateAvgLineSize(leftLines, camera_center_point);
avgRightSize = calculateAvgLineSize(rightLines, camera_center_point);
double avgSlope = 0;
if (slope_count > 0)
avgSlope = slope_tot/slope_count;
else
avgSlope = 0;
// printf("avgSlope = %f \nL = %f \t R = %f\n",avgSlope, avgLeftSize, avgRightSize );
img_data->old_slope = img_data->avg_slope;
img_data->avg_slope = avgSlope;
img_data->left_line_length = avgLeftSize;
img_data->right_line_length = avgRightSize;
img_data->intersection_detected = info.detected;
img_data->intersection_distance = info.dist;
img_data->intersection_type = info.type;
img_data->intersection_colour = info.colour;
img_data->intersection_stop = 0;
return NO_ERROR;
}
/*
Calculate the angle the line (a,b) creates to a vertical line.
Angles in the FIRST quadrant will be positive -> right turn
Angles in the SECOND quadrant will be negative -> left turn.
*/
double get_slope(Point2d a, Point2d b) {
double hor_dist = (a.x - b.x);
double ver_dist = (a.y - b.y);
if (abs(ver_dist) <= 0.0001 || abs(hor_dist) <= 0.0001) {
return INVALID_SLOPE;
}
double angle = atan(hor_dist/ver_dist)*(-180.0/CV_PI);
if (angle > 50) {
info.type = 1;
return INVALID_SLOPE;
}
if (angle < -50) {
info.type = 2;
return INVALID_SLOPE;
}
return angle;
}
//get line length between two points
double get_line_length(Point2d a, Point2d b) {
return sqrt(pow(a.x - b.x, 2) + pow(a.y - b.y, 2));
}
double calculateAvgLineSize(vector<Point2d> vec, Point2d center) {
double current=0;
int n = vec.size();
if (n < 1) return 0;
for (int i = 0; i < n; i++) {
current += sqrt(pow(vec[i].x - center.x, 2) + pow(vec[i].y - center.y, 2));
}
return current/(double)n;
}
Point2d get_midpoint(Point2d a, Point2d b) {
double midX = (a.x + b.x)/2.0;
double midY = (a.y + b.y)/2.0;
return Point2d(midX, midY);
}
/*
double calculateAvgAngle(vector<Point2d> vec, Point2d center) {
double currAngle = 0, top = 0, bot = 0, frac = 0, temp = 0;
int n = vec.size();
if (n < 1) return 0;
for (int i = 0; i < n; i++) {
top = fabs(vec[i].x - center.x);
bot = sqrt( pow(vec[i].x - center.x, 2) + pow(vec[i].y - center.y, 2));
frac = top/bot;
if (frac < -1.0) {
frac = -1.0;
}
else if (frac > 1.0) {
frac = 1.0;
}
temp = acos(frac);
if (temp <= 3.2) {
currAngle = currAngle + temp;
}
}
return currAngle/((double) n);
}
usage:
string ty = type2str( cannyMat.type() );
printf("Matrix: %s %dx%d \n", ty.c_str(), cannyMat.cols, cannyMat.rows );
string type2str(int type) {
string r;
uchar depth = type & CV_MAT_DEPTH_MASK;
uchar chans = 1 + (type >> CV_CN_SHIFT);
switch ( depth ) {
case CV_8U: r = "8U"; break;
case CV_8S: r = "8S"; break;
case CV_16U: r = "16U"; break;
case CV_16S: r = "16S"; break;
case CV_32S: r = "32S"; break;
case CV_32F: r = "32F"; break;
case CV_64F: r = "64F"; break;
default: r = "User"; break;
}
r += "C";
r += (chans+'0');
return r;
}
*/ | [
"jeanlpf@hotmail.com"
] | jeanlpf@hotmail.com |
9b7c4c4784e14a0eaf757406791ba83755d90575 | e25ab831bfea98c625eea900264fc7ace4e0fe1c | /Exercise 2.cpp | b256b3fb9998ddd438e9e5a80fe4d522f2774da6 | [] | no_license | Dhik/StrukDat--02 | 6566e6426adb48b77232ae84018ab4b5e51aebb8 | 667128781668264a7c0d4ef59aaf2d476f276d91 | refs/heads/master | 2020-04-26T22:06:15.546851 | 2019-03-05T02:58:33 | 2019-03-05T02:58:33 | 173,861,724 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | cpp | /*
Nama: Mohammad Dhikri
npm: 140810180075
tanggal pembuatan: 26 Februari 2019
Deskripsi: Convert celcius to fahrenheit
Kelas: A
*/
#include <iostream>
#include <string.h>
using namespace std;
struct Theater{
int room;
char seat[3];
char movieTitle[30];
};
main(){
Theater thr;
thr.room=7;
strcpy(thr.seat,"J9");
strcpy(thr.movieTitle,"Adit & Jarwo");
cout<<"Room : "<<thr.room<<endl;
cout<<"Seat : "<<thr.seat<<endl;
cout<<"Movie Title : "<<thr.movieTitle<<endl;
}
| [
"mohammaddhikri@gmail.com"
] | mohammaddhikri@gmail.com |
ccc71925807e6d3f0b9df216c462e93699122541 | 8089e0417b5f2ca24822bd80f4221e6dcb5bcd93 | /main.cpp | f91c8c1aa539996f8c305f810a4d2ccb0b1dc5b5 | [] | no_license | CISVVC/cis201-chapter06-vectors-mariand3224 | fd97da92293465674e047864ee513dd251ac3d5c | 7b37cd831e8364ab0bb4ef31d79b50be7e782b12 | refs/heads/master | 2020-04-05T01:13:30.398971 | 2018-11-17T02:43:02 | 2018-11-17T02:43:02 | 156,428,347 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | cpp | /*
File: main.cpp
Description: cpp file
Author: Marianna delrio
Email: mariand3224@student.vvvc.edu
Date of creation:
*/
#include<iostream>
#include<vector>
#include "transaction.h"
#include "transactionlog.h"
int main()
{
Transaction bank;
bank.read();
bank.print();
return 0;
}
| [
"mariannadelrio@cis.vvc.edu"
] | mariannadelrio@cis.vvc.edu |
c1aca780ea3cadc9d9dce7ba20ddc437d58ab4b6 | 410de6fc1ef54edbc4e7485a642bdaf69c44ae64 | /tests/EditDistanceTest.cpp | b4301d348ebb45d6b108da67c3876486441749da | [] | no_license | SaberQ/leetcode | 322092c03b036bee053c794ebaa3dafef413a5b3 | 63f8abb9c382a2cbcea1e0294746a37fc86a293e | refs/heads/master | 2020-12-11T09:30:23.950830 | 2015-10-13T08:01:24 | 2015-10-13T08:01:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 239 | cpp | #include "catch.hpp"
#include "EditDistance.hpp"
TEST_CASE("Edit Distance") {
EditDistance s;
SECTION("Normal tests") {
REQUIRE(s.minDistance("test", "fast") == 2);
REQUIRE(s.minDistance("distance", "distance") == 0);
}
}
| [
"yanzhe.cn@gmail.com"
] | yanzhe.cn@gmail.com |
e511a2e3d853530049d2f7a85e7eab0b4a21dd3e | b6c985bd9f493135c4de109f3ad78d38a3059c65 | /src/dct/skip_list/util/FileReader.cpp | 392ea58a9d795d7931595be7703ec468354db287 | [] | no_license | qjhart/qjhart.geostreams | 4a80d85912cb6cdfb004017c841e3902f898fad5 | 7d5ec6a056ce43d2250553b99c7559f15db1d5fb | refs/heads/master | 2021-01-10T18:46:48.653526 | 2015-03-19T00:13:33 | 2015-03-19T00:13:33 | 32,489,398 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,505 | cpp | /**
* Define a data structure to read a file, retrieving the data
* line by line and breaking the line string into words that are
* separated by spaces.
*
* @author jzhang - created on Jun 26, 2004
*/
#include "FileReader.h"
FileReader::FileReader (char* filename) {
fid = fopen (filename, "r") ;
if (!fid) {
std::cerr << "Can not open the data file " << filename << "\n" ;
exit (1) ;
}
lineBuffer = (char*)malloc (LINE_BUFFER_SIZE) ;
fgets (lineBuffer, LINE_BUFFER_SIZE, fid) ;
}
FileReader::~FileReader () {
if (fid != NULL) {
fclose (fid) ;
}
if (lineBuffer != NULL) {
delete lineBuffer ;
}
}
bool FileReader::eof () {
return (feof (fid)) ;
}
bool FileReader::getNextLine
(char* resultWords[], int numOfWords) {
if (!feof (fid)) {
int wordNo = 0 ;
char* ptr = strtok (lineBuffer, " ") ;
while (ptr != NULL && wordNo < numOfWords) {
resultWords[wordNo] = (char*)malloc (strlen(ptr)+1) ;
strcpy (resultWords[wordNo], ptr) ;
wordNo ++ ;
ptr = strtok (NULL, " ") ;
}
// read the next line.
fgets (lineBuffer, LINE_BUFFER_SIZE, fid) ;
// if there are not enough words
if (wordNo < numOfWords) {
for (int i=0; i<numOfWords; i++) {
delete resultWords[i] ;
resultWords[i] = NULL ;
}
return false ;
}
return true ;
} else {
for (int i=0; i<numOfWords; i++) {
delete resultWords[i] ;
resultWords[i] = NULL ;
}
return false ;
}
}
| [
"qjhart@ucdavis.edu"
] | qjhart@ucdavis.edu |
ccf2aa7daad65877df971155bad0acf960426cd6 | 2cc9aba35a2d3f501f4657c0af5d8ca4e7b519c4 | /include/ten/thread_guard.hh | 4edba121121ee811708fcb617035ac1c2fc5dee5 | [
"Apache-2.0"
] | permissive | toffaletti/libten | 781bfb785a0f4002d0d20c0c7dd0971be051e348 | 00c6dcc91c8d769c74ed9063277b1120c9084427 | refs/heads/master | 2021-01-25T05:27:56.294975 | 2015-04-26T05:12:59 | 2015-04-26T05:12:59 | 1,558,548 | 27 | 10 | null | 2015-04-26T05:12:59 | 2011-04-02T04:41:25 | C++ | UTF-8 | C++ | false | false | 1,066 | hh | #ifndef TEN_THREAD_GUARD_HH
#define TEN_THREAD_GUARD_HH
#include <thread>
#include <system_error>
namespace ten {
//! wrapper that calls join on joinable threads in the destructor
class thread_guard {
private:
std::thread _thread;
public:
template <class... Args>
thread_guard(Args&&... args) : _thread{std::forward<Args>(args)...} {}
thread_guard(std::thread t) : _thread{std::move(t)} {}
thread_guard() {}
thread_guard(const thread_guard &) = delete;
thread_guard &operator =(const thread_guard &) = delete;
thread_guard(thread_guard &&other) {
if (this != &other) {
std::swap(_thread, other._thread);
}
}
thread_guard &operator=(thread_guard &&other) {
if (this != &other) {
std::swap(_thread, other._thread);
}
return *this;
}
~thread_guard() {
try {
if (_thread.joinable()) {
_thread.join();
}
} catch (std::system_error &e) {
}
}
};
} // ten
#endif // TEN_THREAD_GUARD_HH
| [
"toffaleti@gmail.com"
] | toffaleti@gmail.com |
2902a18a84445dc25dc6b55f0cce65f866a89ba0 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc | 703b6404fa451f2b606149d6311979c27bd72af0 | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 20,603 | cc | // Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/core/browser/ui/card_unmask_prompt_controller_impl.h"
#include <stddef.h>
#include <memory>
#include "base/bind.h"
#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/histogram_tester.h"
#include "components/autofill/core/browser/autofill_client.h"
#include "components/autofill/core/browser/autofill_metrics.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "components/autofill/core/browser/credit_card.h"
#include "components/autofill/core/browser/ui/card_unmask_prompt_view.h"
#include "components/autofill/core/common/autofill_pref_names.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill {
using base::ASCIIToUTF16;
class TestCardUnmaskDelegate : public CardUnmaskDelegate {
public:
TestCardUnmaskDelegate() : weak_factory_(this) {}
virtual ~TestCardUnmaskDelegate() {}
// CardUnmaskDelegate implementation.
void OnUnmaskResponse(const UnmaskResponse& response) override {
response_ = response;
}
void OnUnmaskPromptClosed() override {}
const UnmaskResponse& response() { return response_; }
base::WeakPtr<TestCardUnmaskDelegate> GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
private:
UnmaskResponse response_;
base::WeakPtrFactory<TestCardUnmaskDelegate> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(TestCardUnmaskDelegate);
};
class TestCardUnmaskPromptView : public CardUnmaskPromptView {
public:
void Show() override {}
void ControllerGone() override {}
void DisableAndWaitForVerification() override {}
void GotVerificationResult(const base::string16& error_message,
bool allow_retry) override {}
};
class TestCardUnmaskPromptController : public CardUnmaskPromptControllerImpl {
public:
explicit TestCardUnmaskPromptController(
TestingPrefServiceSimple* pref_service)
: CardUnmaskPromptControllerImpl(pref_service, false),
can_store_locally_(true),
weak_factory_(this) {}
bool CanStoreLocally() const override { return can_store_locally_; }
void set_can_store_locally(bool can) { can_store_locally_ = can; }
void SetCreditCardForTesting(CreditCard card) {
CardUnmaskPromptControllerImpl::SetCreditCardForTesting(card);
}
base::WeakPtr<TestCardUnmaskPromptController> GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
private:
bool can_store_locally_;
base::WeakPtrFactory<TestCardUnmaskPromptController> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(TestCardUnmaskPromptController);
};
class CardUnmaskPromptControllerImplGenericTest {
public:
CardUnmaskPromptControllerImplGenericTest() {}
void ShowPrompt() {
controller_->ShowPrompt(test_unmask_prompt_view_.get(),
test::GetMaskedServerCard(),
AutofillClient::UNMASK_FOR_AUTOFILL,
delegate_->GetWeakPtr());
}
void ShowPromptAmex() {
controller_->ShowPrompt(test_unmask_prompt_view_.get(),
test::GetMaskedServerCardAmex(),
AutofillClient::UNMASK_FOR_AUTOFILL,
delegate_->GetWeakPtr());
}
void ShowPromptAndSimulateResponse(bool should_store_pan) {
ShowPrompt();
controller_->OnUnmaskResponse(ASCIIToUTF16("444"),
ASCIIToUTF16("01"),
ASCIIToUTF16("2050"),
should_store_pan);
EXPECT_EQ(
should_store_pan,
pref_service_->GetBoolean(
prefs::kAutofillWalletImportStorageCheckboxState));
}
protected:
void SetImportCheckboxState(bool value) {
pref_service_->SetBoolean(
prefs::kAutofillWalletImportStorageCheckboxState, value);
}
std::unique_ptr<TestCardUnmaskPromptView> test_unmask_prompt_view_;
std::unique_ptr<TestingPrefServiceSimple> pref_service_;
std::unique_ptr<TestCardUnmaskPromptController> controller_;
std::unique_ptr<TestCardUnmaskDelegate> delegate_;
private:
DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptControllerImplGenericTest);
};
class CardUnmaskPromptControllerImplTest
: public CardUnmaskPromptControllerImplGenericTest,
public testing::Test {
public:
CardUnmaskPromptControllerImplTest() {}
~CardUnmaskPromptControllerImplTest() override {}
void SetUp() override {
test_unmask_prompt_view_.reset(new TestCardUnmaskPromptView());
pref_service_.reset(new TestingPrefServiceSimple());
controller_.reset(new TestCardUnmaskPromptController(pref_service_.get()));
delegate_.reset(new TestCardUnmaskDelegate());
pref_service_->registry()->RegisterBooleanPref(
prefs::kAutofillWalletImportStorageCheckboxState, false);
}
private:
DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptControllerImplTest);
};
TEST_F(CardUnmaskPromptControllerImplTest, LogShown) {
base::HistogramTester histogram_tester;
ShowPrompt();
histogram_tester.ExpectUniqueSample(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_SHOWN, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogClosedNoAttempts) {
ShowPrompt();
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_CLOSED_NO_ATTEMPTS, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogClosedAbandonUnmasking) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_CLOSED_ABANDON_UNMASKING, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogClosedFailedToUnmaskRetriable) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics
::UNMASK_PROMPT_CLOSED_FAILED_TO_UNMASK_RETRIABLE_FAILURE,
1);
}
TEST_F(CardUnmaskPromptControllerImplTest,
LogClosedFailedToUnmaskNonRetriable) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::PERMANENT_FAILURE);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics
::UNMASK_PROMPT_CLOSED_FAILED_TO_UNMASK_NON_RETRIABLE_FAILURE,
1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogUnmaskedCardFirstAttempt) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_UNMASKED_CARD_FIRST_ATTEMPT, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogUnmaskedCardAfterFailure) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
controller_->OnUnmaskResponse(ASCIIToUTF16("444"),
ASCIIToUTF16("01"),
ASCIIToUTF16("2050"),
false /* should_store_pan */);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_UNMASKED_CARD_AFTER_FAILED_ATTEMPTS, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogSavedCardLocally) {
ShowPromptAndSimulateResponse(true);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_SAVED_CARD_LOCALLY, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDidOptIn) {
SetImportCheckboxState(false);
ShowPromptAndSimulateResponse(true);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_OPT_IN, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDidNotOptIn) {
SetImportCheckboxState(false);
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_NOT_OPT_IN, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDidOptOut) {
SetImportCheckboxState(true);
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_OPT_OUT, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDidNotOptOut) {
SetImportCheckboxState(true);
ShowPromptAndSimulateResponse(true);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_NOT_OPT_OUT, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, DontLogForHiddenCheckbox) {
controller_->set_can_store_locally(false);
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_OPT_IN, 0);
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_NOT_OPT_IN, 0);
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_OPT_OUT, 0);
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.Events",
AutofillMetrics::UNMASK_PROMPT_LOCAL_SAVE_DID_NOT_OPT_OUT, 0);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDurationNoAttempts) {
ShowPrompt();
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration.NoAttempts",
1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDurationAbandonUnmasking) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount(
"Autofill.UnmaskPrompt.Duration.AbandonUnmasking", 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDurationFailedToUnmaskRetriable) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration.Failure",
1);
}
TEST_F(CardUnmaskPromptControllerImplTest,
LogDurationFailedToUnmaskNonRetriable) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::PERMANENT_FAILURE);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration.Failure",
1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogDurationCardFirstAttempt) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration.Success",
1);
}
TEST_F(CardUnmaskPromptControllerImplTest,
LogDurationUnmaskedCardAfterFailure) {
ShowPromptAndSimulateResponse(false);
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
controller_->OnUnmaskResponse(
base::ASCIIToUTF16("444"), base::ASCIIToUTF16("01"),
base::ASCIIToUTF16("2050"), false /* should_store_pan */);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration", 1);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.Duration.Success",
1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogTimeBeforeAbandonUnmasking) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnUnmaskDialogClosed();
histogram_tester.ExpectTotalCount(
"Autofill.UnmaskPrompt.TimeBeforeAbandonUnmasking", 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogRealPanResultSuccess) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
histogram_tester.ExpectBucketCount("Autofill.UnmaskPrompt.GetRealPanResult",
AutofillMetrics::PAYMENTS_RESULT_SUCCESS,
1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogRealPanTryAgainFailure) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
histogram_tester.ExpectBucketCount(
"Autofill.UnmaskPrompt.GetRealPanResult",
AutofillMetrics::PAYMENTS_RESULT_TRY_AGAIN_FAILURE, 1);
}
TEST_F(CardUnmaskPromptControllerImplTest, LogUnmaskingDurationResultSuccess) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::SUCCESS);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.UnmaskingDuration",
1);
histogram_tester.ExpectTotalCount(
"Autofill.UnmaskPrompt.UnmaskingDuration.Success", 1);
}
TEST_F(CardUnmaskPromptControllerImplTest,
LogUnmaskingDurationTryAgainFailure) {
ShowPromptAndSimulateResponse(false);
base::HistogramTester histogram_tester;
controller_->OnVerificationResult(AutofillClient::TRY_AGAIN_FAILURE);
histogram_tester.ExpectTotalCount("Autofill.UnmaskPrompt.UnmaskingDuration",
1);
histogram_tester.ExpectTotalCount(
"Autofill.UnmaskPrompt.UnmaskingDuration.Failure", 1);
}
struct CvcCase {
const char* input;
bool valid;
// null when |valid| is false.
const char* canonicalized_input;
};
class CvcInputValidationTest : public CardUnmaskPromptControllerImplGenericTest,
public testing::TestWithParam<CvcCase> {
public:
CvcInputValidationTest() {}
~CvcInputValidationTest() override {}
void SetUp() override {
test_unmask_prompt_view_.reset(new TestCardUnmaskPromptView());
pref_service_.reset(new TestingPrefServiceSimple());
controller_.reset(new TestCardUnmaskPromptController(pref_service_.get()));
delegate_.reset(new TestCardUnmaskDelegate());
pref_service_->registry()->RegisterBooleanPref(
prefs::kAutofillWalletImportStorageCheckboxState, false);
}
private:
DISALLOW_COPY_AND_ASSIGN(CvcInputValidationTest);
};
TEST_P(CvcInputValidationTest, CvcInputValidation) {
auto cvc_case = GetParam();
ShowPrompt();
EXPECT_EQ(cvc_case.valid,
controller_->InputCvcIsValid(ASCIIToUTF16(cvc_case.input)));
if (!cvc_case.valid)
return;
controller_->OnUnmaskResponse(ASCIIToUTF16(cvc_case.input), ASCIIToUTF16("1"),
ASCIIToUTF16("2050"), false);
EXPECT_EQ(ASCIIToUTF16(cvc_case.canonicalized_input),
delegate_->response().cvc);
}
INSTANTIATE_TEST_CASE_P(CardUnmaskPromptControllerImplTest,
CvcInputValidationTest,
testing::Values(CvcCase{"123", true, "123"},
CvcCase{"123 ", true, "123"},
CvcCase{" 1234 ", false},
CvcCase{"IOU", false}));
class CvcInputAmexValidationTest
: public CardUnmaskPromptControllerImplGenericTest,
public testing::TestWithParam<CvcCase> {
public:
CvcInputAmexValidationTest() {}
~CvcInputAmexValidationTest() override {}
void SetUp() override {
test_unmask_prompt_view_.reset(new TestCardUnmaskPromptView());
pref_service_.reset(new TestingPrefServiceSimple());
controller_.reset(new TestCardUnmaskPromptController(pref_service_.get()));
delegate_.reset(new TestCardUnmaskDelegate());
pref_service_->registry()->RegisterBooleanPref(
prefs::kAutofillWalletImportStorageCheckboxState, false);
}
private:
DISALLOW_COPY_AND_ASSIGN(CvcInputAmexValidationTest);
};
TEST_P(CvcInputAmexValidationTest, CvcInputValidation) {
auto cvc_case_amex = GetParam();
ShowPromptAmex();
EXPECT_EQ(cvc_case_amex.valid,
controller_->InputCvcIsValid(ASCIIToUTF16(cvc_case_amex.input)));
if (!cvc_case_amex.valid)
return;
controller_->OnUnmaskResponse(ASCIIToUTF16(cvc_case_amex.input),
base::string16(), base::string16(), false);
EXPECT_EQ(ASCIIToUTF16(cvc_case_amex.canonicalized_input),
delegate_->response().cvc);
}
INSTANTIATE_TEST_CASE_P(CardUnmaskPromptControllerImplTest,
CvcInputAmexValidationTest,
testing::Values(CvcCase{"123", false},
CvcCase{"123 ", false},
CvcCase{"1234", true, "1234"},
CvcCase{"\t1234 ", true, "1234"},
CvcCase{" 1234", true, "1234"},
CvcCase{"IOU$", false}));
struct ExpirationDateTestCase {
const char* input_month;
const char* input_year;
bool valid;
};
class ExpirationDateValidationTest
: public CardUnmaskPromptControllerImplGenericTest,
public testing::TestWithParam<ExpirationDateTestCase> {
public:
ExpirationDateValidationTest() {}
~ExpirationDateValidationTest() override {}
void SetUp() override {
test_unmask_prompt_view_.reset(new TestCardUnmaskPromptView());
pref_service_.reset(new TestingPrefServiceSimple());
controller_.reset(new TestCardUnmaskPromptController(pref_service_.get()));
delegate_.reset(new TestCardUnmaskDelegate());
pref_service_->registry()->RegisterBooleanPref(
prefs::kAutofillWalletImportStorageCheckboxState, false);
}
private:
DISALLOW_COPY_AND_ASSIGN(ExpirationDateValidationTest);
};
TEST_P(ExpirationDateValidationTest, ExpirationDateValidation) {
auto exp_case = GetParam();
ShowPrompt();
EXPECT_EQ(exp_case.valid, controller_->InputExpirationIsValid(
ASCIIToUTF16(exp_case.input_month),
ASCIIToUTF16(exp_case.input_year)));
}
INSTANTIATE_TEST_CASE_P(
CardUnmaskPromptControllerImplTest,
ExpirationDateValidationTest,
testing::Values(ExpirationDateTestCase{"01", "2040", true},
ExpirationDateTestCase{"1", "2040", true},
ExpirationDateTestCase{"1", "40", true},
ExpirationDateTestCase{"10", "40", true},
ExpirationDateTestCase{"01", "1940", false},
ExpirationDateTestCase{"13", "2040", false}));
} // namespace autofill
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
06a84aa3160410d91969ec4c365840f79532118d | d96607cdf79c4f3818788cfe2bef9888a49d56a8 | /C++ How to Program/Chapter_18/Fig-18.9.cpp | a12c698cd630f76fbeb340b4dc4d2addc4f3cef4 | [] | no_license | dasanchez/hellocpp | 41646533ee826e59841b25961b5ff6dc93b3487d | 3b37c21d4f864686ba0c5fe60f4939ea06d91cda | refs/heads/master | 2021-06-02T08:56:46.201450 | 2020-09-28T03:16:20 | 2020-09-28T03:16:20 | 126,009,535 | 0 | 0 | null | 2018-08-12T21:02:20 | 2018-03-20T11:51:02 | C++ | UTF-8 | C++ | false | false | 1,314 | cpp | // Fig 18.9: Converting to C-style strings.
#include <iostream>
#include <string>
using namespace std;
int main()
{
string string1("STRINGS"); // string constructor with char* arg
const char *ptr1 = 0; // initialize *ptr1
int length = string1.length();
char *ptr2 = new char[length + 1]; // including null
// cop charactersfrom string1 into allocated memory
string1.copy(ptr2, length, 0); // copy string1 to ptr2 char*
ptr2[length] = '\0'; // add null terminator
cout << "string string1 is " << string1
<< "\nstring1 converted to a C-style string is "
<< string1.c_str() << "\nptr1 is ";
// Assign to pointer ptr1 the const char * returned by
// function data(). NOTE: this is a potentially dangerous
// assignment. If string1 is modified, pointer ptr1 can
// become invalid.
ptr1 = string1.data();
// output each character using pointer
for (int i=0; i<length; ++i)
cout << *(ptr1+i); // use pointer arithmetic
cout << "\nptr2 is " << ptr2 << endl;
delete [] ptr2; // reclaim dynamically allocated memory
string1.append("extra");
length = string1.length();
cout << string1 << endl;
for (int i=0; i<length; ++i)
cout << *(ptr1+i); // use pointer arithmetic
cout << endl;
} // end main | [
"dante.a.sanchez@gmail.com"
] | dante.a.sanchez@gmail.com |
c1f7ffcadde66ce33fccab53b471030befa680a2 | aecf4944523b50424831f8af3debef67e3163b97 | /net.ssa/xr_3da/xrGame/AI/ai_monster_bones.cpp | 9bfcc704c97e114b92c6275bb4691bcb79d48204 | [] | no_license | xrLil-Batya/gitxray | bc8c905444e40c4da5d77f69d03b41d5b9cec378 | 58aaa5185f7a682b8cf5f5f376a2e5b6ca16fed4 | refs/heads/main | 2023-03-31T07:43:57.500002 | 2020-12-12T21:12:25 | 2020-12-12T21:12:25 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 4,551 | cpp | #include "stdafx.h"
#include "ai_monster_bones.h"
//****************************************************************************************************
// class bonesBone
//****************************************************************************************************
void bonesBone::Set(CBoneInstance *b, u8 a, float ty, float cy, float r_s)
{
bone = b;
axis = a;
params.target_yaw = ty;
params.cur_yaw = cy;
params.r_speed = r_s;
params.dist_yaw = _abs(ty-cy);
}
bool bonesBone::NeedTurn()
{
if (!fsimilar(params.cur_yaw, params.target_yaw, EPS_L)) return true;
return false;
}
void bonesBone::Turn(u32 dt)
{
float PI_DIV_2m = 8 * PI_DIV_6 / 3;
float PIm = PI_DIV_2m * 2;
float cur_speed = params.r_speed * _cos(PI_DIV_2m - PIm * _abs(params.target_yaw - params.cur_yaw) / params.dist_yaw);
float dy;
dy = cur_speed * dt / 1000; // учитываем милисек и радианную меры
if (_abs(params.target_yaw - params.cur_yaw) < dy) params.cur_yaw = params.target_yaw;
else params.cur_yaw += ((params.target_yaw > params.cur_yaw) ? dy : -dy);
}
void bonesBone::Apply()
{
float x = 0.f, y = 0.f, z = 0.f;
if ((axis & AXIS_X) == AXIS_X) x = params.cur_yaw;
if ((axis & AXIS_Y) == AXIS_Y) y = params.cur_yaw;
if ((axis & AXIS_Z) == AXIS_Z) z = params.cur_yaw;
// создать матрицу вращения и умножить на mTransform боны
Fmatrix M;
M.setXYZi (x, y, z);
bone->mTransform.mulB(M);
}
//****************************************************************************************************
// class bonesManipulation
//****************************************************************************************************
void bonesManipulation::Reset()
{
time_started = 0;
time_last_update = 0;
in_return_state = false;
bActive = false;
freeze_time = 0;
time_last_delta = 1;
}
void bonesManipulation::AddBone (CBoneInstance *bone, u8 axis_used)
{
bonesBone tempB;
tempB.Set(bone, axis_used,0.f,0.f,1.f);
m_Bones.push_back(tempB);
}
void bonesManipulation::SetMotion(CBoneInstance *bone, u8 axis, float target_yaw, float r_speed, u32 t)
{
int index = -1;
// найти бону bone в m_Bones
for (u32 i=0; i<m_Bones.size(); ++i) {
if ((m_Bones[i].bone == bone) && (m_Bones[i].axis == axis)) {
index = i;
break;
}
}
R_ASSERT(-1 != index);
m_Bones[index].params.target_yaw = target_yaw;
m_Bones[index].params.r_speed = r_speed;
m_Bones[index].params.dist_yaw = angle_difference(target_yaw,m_Bones[index].params.cur_yaw);
if (t > freeze_time) freeze_time = t;
bActive = true;
in_return_state = false;
time_started = 0;
}
void bonesManipulation::Update(CBoneInstance *bone, u32 cur_time)
{
// провести обработку всех костей
bool bones_were_turned = false;
// вычисление dt
u32 dt;
if (cur_time == time_last_update) {
dt = time_last_delta;
} else dt = cur_time - time_last_update;
time_last_delta = dt;
time_last_update = cur_time;
for (u32 i=0; i<m_Bones.size(); ++i) {
if (m_Bones[i].NeedTurn()){
if (m_Bones[i].bone == bone) m_Bones[i].Turn(dt);
bones_were_turned = true;
}
}
// если процесс возврата завершен
if (!bones_were_turned && in_return_state) {
Reset();
return;
}
// если ничего не произошло - выход
if (!bActive && !bones_were_turned) return;
// если выполняется наращивание угла и ни одна кость не повернулась (достигли таргета...)
if (!bones_were_turned && !in_return_state) {
if ((0 == time_started) && (freeze_time > 0)) { // начинаем ждать
time_started = cur_time;
}
if ((0 != time_started) && (time_started + freeze_time < cur_time)) { // время вышло?
time_started = 0;
// делаем возврат
in_return_state = true;
// установить у всех костей в m_Bone таргеты в 0
for (u32 i = 0; i<m_Bones.size(); ++i) {
m_Bones[i].params.target_yaw = 0.f;
m_Bones[i].params.dist_yaw = _abs(m_Bones[i].params.target_yaw - m_Bones[i].params.cur_yaw);
}
bActive = false;
}
}
// Установить параметры из m_Bones
for (u32 i = 0; i<m_Bones.size(); ++i) {
if (m_Bones[i].bone == bone) m_Bones[i].Apply();
}
}
| [
"admin@localhost"
] | admin@localhost |
b5eb69cd0a88ccef8d4017c012c0199e55ef0089 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restbed-server/generated/model/ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo.cpp | 4263077ae3794f0e78e266a58f635ed7282600ad | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 4,121 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo.h"
#include <string>
#include <sstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
using boost::property_tree::ptree;
using boost::property_tree::read_json;
using boost::property_tree::write_json;
namespace org {
namespace openapitools {
namespace server {
namespace model {
ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo()
{
m_Pid = "";
m_Title = "";
m_Description = "";
m_AdditionalProperties = "";
m_Bundle_location = "";
m_Service_location = "";
}
ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::~ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo()
{
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::toJsonString()
{
std::stringstream ss;
ptree pt;
pt.put("Pid", m_Pid);
pt.put("Title", m_Title);
pt.put("Description", m_Description);
pt.put("AdditionalProperties", m_AdditionalProperties);
pt.put("Bundle_location", m_Bundle_location);
pt.put("Service_location", m_Service_location);
write_json(ss, pt, false);
return ss.str();
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::fromJsonString(std::string const& jsonString)
{
std::stringstream ss(jsonString);
ptree pt;
read_json(ss,pt);
m_Pid = pt.get("Pid", "");
m_Title = pt.get("Title", "");
m_Description = pt.get("Description", "");
m_AdditionalProperties = pt.get("AdditionalProperties", "");
m_Bundle_location = pt.get("Bundle_location", "");
m_Service_location = pt.get("Service_location", "");
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getPid() const
{
return m_Pid;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setPid(std::string value)
{
m_Pid = value;
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getTitle() const
{
return m_Title;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setTitle(std::string value)
{
m_Title = value;
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getDescription() const
{
return m_Description;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setDescription(std::string value)
{
m_Description = value;
}
std::shared_ptr<ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties> ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getProperties() const
{
return m_Properties;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setProperties(std::shared_ptr<ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties> value)
{
m_Properties = value;
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getAdditionalProperties() const
{
return m_AdditionalProperties;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setAdditionalProperties(std::string value)
{
m_AdditionalProperties = value;
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getBundleLocation() const
{
return m_Bundle_location;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setBundleLocation(std::string value)
{
m_Bundle_location = value;
}
std::string ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::getServiceLocation() const
{
return m_Service_location;
}
void ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo::setServiceLocation(std::string value)
{
m_Service_location = value;
}
}
}
}
}
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
a6bfdb73c02a04792d327e62ceafe75d37bc1e4b | 22e1b7acc231c957291a5217b8ca098a29c9214c | /atom/browser/io_thread.h | 6b62ec103fe2f0704d56fc3ec11214fb1953150d | [
"MIT"
] | permissive | kevinkoo001/electron-6 | 0d5a641c942965da66941e3c653d20427d70ff59 | 03f0deb06370d945dfcfb61bc0cda93171157773 | refs/heads/master | 2022-12-22T10:59:29.671082 | 2020-02-20T20:07:53 | 2020-02-20T20:07:53 | 241,976,812 | 1 | 0 | MIT | 2022-12-10T08:11:28 | 2020-02-20T19:57:08 | C++ | UTF-8 | C++ | false | false | 2,513 | h | // Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_IO_THREAD_H_
#define ATOM_BROWSER_IO_THREAD_H_
#include <memory>
#include <set>
#include "atom/browser/net/system_network_context_manager.h"
#include "base/macros.h"
#include "base/synchronization/lock.h"
#include "content/public/browser/browser_thread_delegate.h"
#include "services/network/public/mojom/network_service.mojom.h"
namespace atom {
class URLRequestContextGetter;
}
namespace net {
class URLRequestContext;
}
namespace net_log {
class ChromeNetLog;
}
class IOThread : public content::BrowserThreadDelegate {
public:
explicit IOThread(
net_log::ChromeNetLog* net_log,
SystemNetworkContextManager* system_network_context_manager);
~IOThread() override;
void RegisterURLRequestContextGetter(atom::URLRequestContextGetter* getter);
void DeregisterURLRequestContextGetter(atom::URLRequestContextGetter* getter);
protected:
// BrowserThreadDelegate Implementation, runs on the IO thread.
void Init() override;
void CleanUp() override;
private:
// The NetLog is owned by the browser process, to allow logging from other
// threads during shutdown, but is used most frequently on the IOThread.
net_log::ChromeNetLog* net_log_;
// When the network service is disabled, this holds on to a
// content::NetworkContext class that owns |system_request_context_|.
std::unique_ptr<network::mojom::NetworkContext> system_network_context_;
net::URLRequestContext* system_request_context_;
// These are set on the UI thread, and then consumed during initialization on
// the IO thread.
network::mojom::NetworkContextRequest network_context_request_;
network::mojom::NetworkContextParamsPtr network_context_params_;
// Initial HTTP auth configuration used when setting up the NetworkService on
// the IO Thread. Future updates are sent using the NetworkService mojo
// interface, but initial state needs to be set non-racily.
network::mojom::HttpAuthStaticParamsPtr http_auth_static_params_;
network::mojom::HttpAuthDynamicParamsPtr http_auth_dynamic_params_;
// |lock_| protects access to |request_context_getters_|.
base::Lock lock_;
// List of all request contexts that needs to be notified when
// IO thread is shutting down.
std::set<atom::URLRequestContextGetter*> request_context_getters_;
DISALLOW_COPY_AND_ASSIGN(IOThread);
};
#endif // ATOM_BROWSER_IO_THREAD_H_
| [
"kevinkoo001@gmail.com"
] | kevinkoo001@gmail.com |
0066064553d90e298e27073dd2802f251a1d1b98 | 72843da20942b6075f83d31d737957f86191b01e | /Unclassified/Done/1064.cpp | 508471c54ec4ddb532b09bf6957f9f42d06c423d | [] | no_license | dtcxzyw/OI-Source | cb641f2c7e203a32073f4cae98e690f1cad3dc22 | aa041e2af7e1546e8c7ac5a960a27a3489cfcff8 | refs/heads/master | 2021-12-17T17:52:05.043490 | 2021-12-17T12:52:52 | 2021-12-17T12:52:52 | 140,553,277 | 43 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 1,003 | cpp | #include <cstdio>
int read(){
int res=0,c;
do c=getchar();
while(c<'0'||c>'9');
while('0'<=c&&c<='9'){
res=res*10+c-'0';
c=getchar();
}
return res;
}
int v[61],p[61],q[61],child[61][2]={},dp[61][3201]={};
void buy(int x,int v,int w){
if(dp[x][v]<w)dp[x][v]=w;
}
void move(int x,int v,int add,int n){
for(int i=0;i<=n-v;++i)
buy(x,i+v,dp[x-1][i]+add);
}
int main(){
int n,m;
n=read()/10;
m=read();
for(int i=1;i<=m;++i){
v[i]=read();
p[i]=read()*v[i];
v[i]/=10;
if(q[i]=read()){
if(child[q[i]][0])child[q[i]][1]=i;
else child[q[i]][0]=i;
}
}
int x=0;
for(int i=1;i<=m;++i)
if(!q[i]){
++x;
move(x,0,0,n);//
move(x,v[i],p[i],n);//0
if(child[i][0])move(x,v[i]+v[child[i][0]],p[i]+p[child[i][0]],n);
if(child[i][1]){
move(x,v[i]+v[child[i][1]],p[i]+p[child[i][1]],n);
move(x,v[i]+v[child[i][0]]+v[child[i][1]],p[i]+p[child[i][0]]+p[child[i][1]],n);
}
}
printf("%d\n",dp[x][n]);
return 0;
}
| [
"2601110573@qq.com"
] | 2601110573@qq.com |
0bcd48c0950a3097dc295b420a307c3c1d0fe768 | c792a325dc246884821ca515f9a790dc5c0a3f98 | /classic-joystick.ino | 388395a1164b848724e7c207dce2d16dfa9e54e1 | [] | no_license | hubertbanas/classic-joystick | 03d0e6a36a566d2a72821198b262c7e0352867db | 3a5b5b1ae620794e42edaad85cd80f4a7419ef15 | refs/heads/master | 2020-04-14T21:38:45.558316 | 2016-02-10T22:25:46 | 2016-02-10T22:25:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,430 | ino |
// 2016, Maciej Witkowiak <mwitkowiak@gmail.com>
// support for C64/128 joystick:
// 4-way control+1 fire button
// potx/y lines are connected but not handled
// DB9 joystick cable (front, looking at holes)
// 54321
// 9876
// DB9 joystick port (front, looking at pins)
// 12345
// 6789
// joystick 1
// 15 -> joystick 1 UP (1)
// 14 -> joystick 1 DOWN (2)
// 16 -> joystick 1 LEFT (3)
// 10 -> joystick 1 RIGHT (4)
// A1 -> joystick 1 POTY (5)
// 9 -> joystick 1 FIRE (6)
// VCC -> joystick 1 +5V (7)
// GND -> joystick 1 GND (8)
// A0 -> joystick 1 POTX (9)
// joystick 2
// 4 -> joystick 2 UP (1)
// 5 -> joystick 2 DOWN (2)
// 6 -> joystick 2 LEFT (3)
// 7 -> joystick 2 RIGHT (4)
// A3 -> joystick 2 POTY (5)
// 8 -> joystick 2 FIRE (6)
// VCC -> joystick 2 +5V (7)
// GND -> joystick 2 GND (8)
// A2 -> joystick 2 POTX (9)
#include "Keyboard.h"
#include "Joystick2.h"
bool g_useKeyboard = false;
bool g_bannerShown = false;
#define SERIAL_SPEED 115200
class JoyAxis {
public:
JoyAxis(const uint8_t pinleft, const uint8_t pinright, const uint8_t keyleft, const uint8_t keyright) :
m_pinleft(pinleft), m_pinright(pinright), m_keyleft(keyleft), m_keyright(keyright) {
pinMode(m_pinleft, INPUT_PULLUP);
pinMode(m_pinright, INPUT_PULLUP);
}
bool update(bool useKeyboard) {
uint8_t state1 = !digitalRead(m_pinleft);
uint8_t state2 = !digitalRead(m_pinright);
int8_t state = 0;
if (state1) state = -127;
if (state2) state = 127;
if (state != m_state) {
if (useKeyboard) {
if (m_state == -127) Keyboard.release(m_keyleft);
if (m_state == 127) Keyboard.release(m_keyright);
if (state == -127) Keyboard.press(m_keyleft);
if (state == 127) Keyboard.press(m_keyright);
}
m_state = state;
return(true);
}
return(false);
}
int8_t getState() const { return(m_state); };
private:
uint8_t m_pinleft, m_pinright;
uint8_t m_keyleft, m_keyright;
int8_t m_state {0};
};
class JoyTrigger {
public:
JoyTrigger(const uint8_t pintrigger, const uint8_t keytrigger) :
m_pintrigger(pintrigger), m_keytrigger(keytrigger) {
pinMode(pintrigger, INPUT_PULLUP);
}
bool update(bool useKeyboard) {
// reversed logic because closed switch connects to GND, open is pulled up
uint8_t state = digitalRead(m_pintrigger) ? 0 : 1;
if (state != m_state) {
if (useKeyboard) {
if (m_state) {
Keyboard.release(m_keytrigger);
} else {
Keyboard.press(m_keytrigger);
}
}
m_state = state;
return(true);
}
return(false);
}
int8_t getState() const { return(m_state); };
private:
uint8_t m_pintrigger, m_keytrigger, m_state{0};
};
class DigitalJoystick {
public:
DigitalJoystick(const Joystick_ usbJoystick, const JoyAxis yAxis, const JoyAxis xAxis, const JoyTrigger trigger,
const uint8_t potx, const uint8_t poty) :
m_usbJoystick(usbJoystick), m_yAxis(yAxis), m_xAxis(xAxis), m_trigger(trigger),
m_potx(potx), m_poty(poty)
{
pinMode(m_potx, INPUT_PULLUP);
pinMode(m_poty, INPUT_PULLUP);
m_usbJoystick.begin();
}
void update(bool useKeyboard) {
if (m_trigger.update(useKeyboard)) {
m_usbJoystick.setButton(0, m_trigger.getState());
}
if (m_xAxis.update(useKeyboard)) {
m_usbJoystick.setXAxis(m_xAxis.getState());
}
if (m_yAxis.update(useKeyboard)) {
m_usbJoystick.setYAxis(m_yAxis.getState());
}
}
private:
Joystick_ m_usbJoystick;
JoyTrigger m_trigger;
JoyAxis m_xAxis, m_yAxis;
uint8_t m_potx, m_poty;
};
DigitalJoystick digiJoysticks[] = {
// pins: up, down, left, right, fire; keys: up, down, left, right, fire; pots: x, y
DigitalJoystick(Joystick_(1), JoyAxis(4, 5, KEY_UP_ARROW, KEY_DOWN_ARROW),
JoyAxis(6, 7, KEY_LEFT_ARROW, KEY_RIGHT_ARROW),
JoyTrigger(8, KEY_RIGHT_CTRL), A2, A3),
DigitalJoystick(Joystick_(0), JoyAxis(15, 14, 'w', 's'),
JoyAxis(16, 10, 'a', 'd'),
JoyTrigger(9, ' '), A0, A1)
};
void handleSerialCommands() {
// show something when port is opened
if (Serial && !g_bannerShown) {
g_bannerShown = true;
Serial.println("Classic 8-bit era joystick interface");
Serial.println("Maciej Witkowiak <mwitkowiak@gmail.com> 2016");
Serial.println("\n\npress 'k' to toggle keyboard emulation");
Serial.println("\nopen this serial port with 1200 baud speed to reset device");
Serial.println("\nENJOY!");
}
// process commands
if (Serial.available()) {
uint8_t c = Serial.read();
if (c == 'k') {
g_useKeyboard = !g_useKeyboard;
if (g_useKeyboard) {
Serial.print("Keyboard emulation ON: Joy#1 WSAD+space, Joy#2 arrows+right ctrl");
Keyboard.begin();
} else {
Serial.print("Keyboard emulation OFF");
Keyboard.end();
}
Serial.println(" (press 'k' to toggle this setting)");
}
}
}
void setup() {
// joysticks already initialized thorugh DigitalJoystick constructors
Serial.begin(SERIAL_SPEED);
}
void loop() {
handleSerialCommands();
for (auto &p : digiJoysticks) {
p.update(g_useKeyboard);
}
delay(10);
}
| [
"mwitkowiak@gmail.com"
] | mwitkowiak@gmail.com |
956fb52606c0bef6d1dc524bb5c1fb2150de00dc | 444a8060b7fa371cf96751a3f79b90c7bc8e7334 | /sillycodes/sidepyramid.cpp | 8852cdccdfe32a7cfc9e67ecc7bac8e31e0cea25 | [] | no_license | jidhu/code | 2ff7eeaa836ecb7d57fba0492326ac244b3e909c | 944e5827f4befe97aeed87fd78eebb09d219a112 | refs/heads/master | 2020-05-26T19:39:47.085921 | 2020-01-16T02:13:13 | 2020-01-16T02:13:13 | 188,349,157 | 1 | 0 | null | 2019-05-24T15:53:47 | 2019-05-24T03:55:54 | C | UTF-8 | C++ | false | false | 326 | cpp | #include<iostream>
using namespace std;
int main()
{
int i,j,k,n=5;
for(i=-n;i<=n;i++)
{
k=i;
if(k<0)
{
k = k * -1;
}
for(j=0;j<=n;j++)
{
if (k<=j)
{
cout<<"*";
}
}
cout<<"\n";
}
}
| [
"jidhu.jbj@gmail.com"
] | jidhu.jbj@gmail.com |
4af92a7dda302cc5d4cd1d30b65c004b9ecdcba6 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /device/fido/cros/authenticator.cc | e85889a577bf5d3d6f34c68e4d55286c0dfee891 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 6,266 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <utility>
#include <vector>
#include "device/fido/cros/authenticator.h"
#include "base/bind.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chromeos/dbus/u2f/u2f_interface.pb.h"
#include "components/cbor/reader.h"
#include "components/device_event_log/device_event_log.h"
#include "device/fido/attestation_statement_formats.h"
#include "device/fido/authenticator_data.h"
#include "device/fido/fido_parsing_utils.h"
#include "device/fido/opaque_attestation_statement.h"
#include "third_party/cros_system_api/dbus/u2f/dbus-constants.h"
namespace device {
namespace fido {
namespace cros {
ChromeOSAuthenticator::ChromeOSAuthenticator() : weak_factory_(this) {}
ChromeOSAuthenticator::~ChromeOSAuthenticator() {}
std::string ChromeOSAuthenticator::GetId() const {
return "ChromeOSAuthenticator";
}
base::string16 ChromeOSAuthenticator::GetDisplayName() const {
return base::string16(base::ASCIIToUTF16("ChromeOS Authenticator"));
}
namespace {
AuthenticatorSupportedOptions ChromeOSAuthenticatorOptions() {
AuthenticatorSupportedOptions options;
options.is_platform_device = true;
options.supports_resident_key = true;
// Even if the user has no fingerprints enrolled, we will have password
// as fallback.
options.user_verification_availability = AuthenticatorSupportedOptions::
UserVerificationAvailability::kSupportedAndConfigured;
options.supports_user_presence = true;
return options;
}
} // namespace
const base::Optional<AuthenticatorSupportedOptions>&
ChromeOSAuthenticator::Options() const {
static const base::Optional<AuthenticatorSupportedOptions> options =
ChromeOSAuthenticatorOptions();
return options;
}
base::Optional<FidoTransportProtocol>
ChromeOSAuthenticator::AuthenticatorTransport() const {
return FidoTransportProtocol::kInternal;
}
void ChromeOSAuthenticator::InitializeAuthenticator(
base::OnceClosure callback) {
std::move(callback).Run();
}
void ChromeOSAuthenticator::MakeCredential(CtapMakeCredentialRequest request,
MakeCredentialCallback callback) {
dbus::Bus::Options options;
options.bus_type = dbus::Bus::SYSTEM;
scoped_refptr<dbus::Bus> bus = new dbus::Bus(options);
dbus::ObjectProxy* u2f_proxy = bus->GetObjectProxy(
u2f::kU2FServiceName, dbus::ObjectPath(u2f::kU2FServicePath));
if (!u2f_proxy) {
FIDO_LOG(ERROR) << "Couldn't get u2f proxy";
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOther,
base::nullopt);
return;
}
u2f::MakeCredentialRequest req;
// Requests with UserPresence get upgraded to UserVerification.
req.set_verification_type(u2f::VERIFICATION_USER_VERIFICATION);
req.set_rp_id(request.rp.id);
req.set_user_entity(
std::string(request.user.id.begin(), request.user.id.end()));
req.set_resident_credential(request.resident_key_required);
dbus::MethodCall method_call(u2f::kU2FInterface, u2f::kU2FMakeCredential);
dbus::MessageWriter writer(&method_call);
writer.AppendProtoAsArrayOfBytes(req);
u2f_proxy->CallMethodWithErrorResponse(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&ChromeOSAuthenticator::OnMakeCredentialResp,
weak_factory_.GetWeakPtr(), std::move(request),
std::move(callback)));
}
void ChromeOSAuthenticator::OnMakeCredentialResp(
CtapMakeCredentialRequest request,
MakeCredentialCallback callback,
dbus::Response* dbus_response,
dbus::ErrorResponse* error) {
if (error) {
FIDO_LOG(ERROR) << "MakeCredential dbus call failed with error: "
<< error->ToString();
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOther,
base::nullopt);
return;
}
dbus::MessageReader reader(dbus_response);
u2f::MakeCredentialResponse resp;
if (!reader.PopArrayOfBytesAsProto(&resp)) {
FIDO_LOG(ERROR) << "Failed to parse reply for call to MakeCredential";
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOther,
base::nullopt);
return;
}
FIDO_LOG(DEBUG) << "Make credential status: " << resp.status();
if (resp.status() !=
u2f::MakeCredentialResponse_MakeCredentialStatus_SUCCESS) {
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOperationDenied,
base::nullopt);
return;
}
base::Optional<AuthenticatorData> authenticator_data =
AuthenticatorData::DecodeAuthenticatorData(
base::as_bytes(base::make_span(resp.authenticator_data())));
if (!authenticator_data) {
FIDO_LOG(ERROR) << "Authenticator data corrupted.";
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOther,
base::nullopt);
return;
}
base::Optional<cbor::Value> statement_map = cbor::Reader::Read(
base::as_bytes(base::make_span(resp.attestation_statement())));
if (!statement_map ||
statement_map.value().type() != cbor::Value::Type::MAP) {
FIDO_LOG(ERROR) << "Attestation statement is not a CBOR map.";
std::move(callback).Run(CtapDeviceResponseCode::kCtap2ErrOther,
base::nullopt);
}
auto statement = std::make_unique<OpaqueAttestationStatement>(
resp.attestation_format(), std::move(*statement_map));
AuthenticatorMakeCredentialResponse response(
FidoTransportProtocol::kInternal,
AttestationObject(std::move(*authenticator_data), std::move(statement)));
std::move(callback).Run(CtapDeviceResponseCode::kSuccess,
std::move(response));
}
bool ChromeOSAuthenticator::IsInPairingMode() const {
return false;
}
bool ChromeOSAuthenticator::IsPaired() const {
return false;
}
bool ChromeOSAuthenticator::RequiresBlePairingPin() const {
return false;
}
base::WeakPtr<FidoAuthenticator> ChromeOSAuthenticator::GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
} // namespace cros
} // namespace fido
} // namespace device
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
bffb1ac863b9891a507e5aeaa8b4cca6855f5886 | 45a17c4444365ee6076b43af194c9c2aefdd745e | /demboyz/netmessages/svc_setview.h | e4ba4f72bacd09e2fe1cc7f8dcfcb6495dfc16f2 | [
"MIT"
] | permissive | SizzlingStats/demboyz | 45053ba6a4e050b2bc68a0d1bc39773a04c7516c | 2b68115b9124e554f0377d8a96b196cdb9e1c57f | refs/heads/master | 2023-02-22T03:08:05.414502 | 2023-02-10T05:51:19 | 2023-02-10T05:52:08 | 25,903,045 | 47 | 13 | null | 2016-06-28T00:46:01 | 2014-10-29T03:41:34 | C++ | UTF-8 | C++ | false | false | 161 | h |
#pragma once
#include "nethandlers.h"
namespace NetMsg
{
struct SVC_SetView
{
uint16_t entIndex;
};
}
DECLARE_NET_HANDLERS(SVC_SetView);
| [
"jordan.cristi@gmail.com"
] | jordan.cristi@gmail.com |
5ced4772c17d7d90e3ac062da720f40e6f0a666c | 1e088eb4ccfe55728733aa15a4a3fda9fb989e29 | /tests/ImageOperationsTests/BlurTest.h | 1950daf2058d38fbde559a0d16a6f1495f1e7c1f | [] | no_license | dwlcj/Cogwheel | ce4edf4ebfee8391cf9c23b8ad5aa5075fcfea78 | 0388a9403a9ce5117ad296fec52e9c9dae92755d | refs/heads/master | 2020-04-09T10:31:26.137228 | 2018-11-24T20:56:20 | 2018-11-24T20:56:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,440 | h | // Test blur operations.
// ---------------------------------------------------------------------------
// Copyright (C) 2018, Cogwheel. See AUTHORS.txt for authors
//
// This program is open source and distributed under the New BSD License. See
// LICENSE.txt for more detail.
// ---------------------------------------------------------------------------
#ifndef _IMAGE_OPERATIONS_BLUR_TEST_H_
#define _IMAGE_OPERATIONS_BLUR_TEST_H_
#include <ImageOperations/Blur.h>
#include <../CogwheelTests/Expects.h>
namespace ImageOperations {
namespace Blur {
using namespace Cogwheel::Assets;
using namespace Cogwheel::Math;
class ImageOperations_Blur : public ::testing::Test {
protected:
// Per-test set-up and tear-down logic.
virtual void SetUp() {
Images::allocate(2u);
}
virtual void TearDown() {
Images::deallocate();
}
};
inline Image create_image(int width, int height) {
Image img = Images::create2D("img", PixelFormat::RGBA_Float, 1.0f, Vector2ui(width, height));
for (int y = 0; y < height; ++y)
for (int x = 0; x < width; ++x)
img.set_pixel(RGBA(float(x), float(1.0f / (y + 1)), float(x * x * y * y), float(y - 2)), Vector2ui(x, y));
return img;
}
TEST_F(ImageOperations_Blur, mirroring) {
const int size = 8;
Image image = Images::create2D("img", PixelFormat::RGBA_Float, 1.0f, Vector2ui(size, size));
Image mirrored_image = Images::create2D("img", PixelFormat::RGBA_Float, 1.0f, Vector2ui(size, size));
for (int y = 0; y < size; ++y)
for (int x = 0; x < size; ++x) {
RGB pixel = RGB(float(x), float(1.0f / (y + 1)), float(x * x * y * y));
image.set_pixel(pixel, Vector2ui(x, y));
mirrored_image.set_pixel(pixel, Vector2ui(y, x));
}
Image blurred_image = gaussian(image.get_ID(), 2);
Image mirrored_blurred_image = gaussian(mirrored_image.get_ID(), 2);
for (int y = 0; y < size; ++y)
for (int x = 0; x < size; ++x) {
RGB pixel = image.get_pixel(Vector2ui(x, y)).rgb();
RGB mirrored_pixel = mirrored_image.get_pixel(Vector2ui(y, x)).rgb();
EXPECT_FLOAT_EQ_PCT(pixel.r, mirrored_pixel.r, 0.00001f);
EXPECT_FLOAT_EQ_PCT(pixel.g, mirrored_pixel.g, 0.00001f);
EXPECT_FLOAT_EQ_PCT(pixel.b, mirrored_pixel.b, 0.00001f);
}
}
} // NS Blur
} // NS ImageOperations
#endif // _IMAGE_OPERATIONS_BLUR_TEST_H_ | [
"asgerhoedt@gmail.com"
] | asgerhoedt@gmail.com |
35b563c309dd7ada90ddb4c8effabbd6e89a98a3 | e280a47865b1d8d6b184940f49e3e1b9a8035ee1 | /Lab 4/ex18savetofile.cpp | bd72e7cacd28945e9ec5ff42b7645571d801a265 | [] | no_license | LeAlmond/Programming-1 | 4f0229a0e6405504f810223011508307ba00929a | 39d1425ab7f1460958e45d27807fbaa7c7450aeb | refs/heads/master | 2023-08-20T05:22:52.898186 | 2021-10-20T17:37:30 | 2021-10-20T17:37:30 | 294,236,209 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 540 | cpp | #include <stdio.h>
int main()
{
int num = 0, cnt = 0;
FILE *word;
word = fopen ("E:\\Programming\\C++\\Lab 4\\word.txt","a");
printf("\nEnter a number ");
scanf("%d",&num);
cnt++;
while (num != -1 && cnt < 7)
{
printf("\nEnter a number ");
scanf("%d",&num);
cnt++;
}
fprintf(word, "A total of %d numbers were entered\n",cnt);
printf("A total of %d numbers were entered\n",cnt);
return 0;
}
| [
"gabriel.c.l.tickle@gmail.com"
] | gabriel.c.l.tickle@gmail.com |
3b562a0925c7b69b8644a1b34615a8488737f1c1 | 313d74671228fb6c96482272978e11eb4884795f | /search/advisor.hpp | a43b5399c46542e523ca864ea2036e53777a7152 | [] | no_license | bohm/binstretch | afece2c73cd369ac23a08724b0b0940626c5e61e | 1463dd912f265b5ce4e847b40bdeedb9847198f7 | refs/heads/master | 2023-08-31T08:58:36.974735 | 2023-06-29T14:22:35 | 2023-06-29T14:22:35 | 47,203,615 | 1 | 1 | null | 2023-06-29T14:16:01 | 2015-12-01T16:50:31 | C++ | UTF-8 | C++ | false | false | 2,509 | hpp | #ifndef _ADVISOR_HPP
#define _ADVISOR_HPP
#include "binconf.hpp"
#include "filetools.hpp"
// One specific advice point.
class advice
{
public:
binconf bc;
bin_int suggestion;
bool match(const binconf* other) const
{
return binconf_equal(&bc, other);
}
};
class advisor
{
private:
std::vector<advice> adv_arr;
public:
bin_int suggest_advice(const binconf* configuration) const
{
for (const advice& adv: adv_arr)
{
if (adv.match(configuration))
{
return adv.suggestion;
}
}
return 0;
}
// Check that all hashes of the array appear once. This is a sufficient, if slightly unreliable,
// test of uniqueness.
void check_uniqueness() const
{
std::vector<uint64_t> hashes;
for (auto& advice: adv_arr)
{
hashes.push_back(advice.bc.hash_with_last());
}
std::sort(hashes.begin(), hashes.end());
const auto duplicate = std::adjacent_find(hashes.begin(), hashes.end());
if (duplicate != hashes.end())
{
fprintf(stderr, "Duplicate entry in advice list: ");
for (auto& advice: adv_arr)
{
if (advice.bc.hash_with_last() == *duplicate)
{
print_binconf_stream(stderr, advice.bc);
exit(-1);
}
}
}
}
void load_advice_file(const char* filename)
{
FILE* advicefin = fopen(filename, "r");
if (advicefin == NULL)
{
ERRORPRINT("Unable to open file %s\n", filename);
}
while(!feof(advicefin))
{
char linebuf[1024];
if(fgets(linebuf, 1024, advicefin) == nullptr)
{
break;
}
std::string line(linebuf);
std::stringstream str_s(line);
// Using filetools functions to load the bin configuration part.
std::array<bin_int, BINS+1> loads = load_segment_with_loads(str_s);
std::array<bin_int, S+1> items = load_segment_with_items<S>(str_s);
bin_int last_item = load_last_item_segment(str_s);
binconf curbc(loads, items, last_item);
std::string rest;
std::getline(str_s, rest);
// Load the suggestion.
bin_int suggestion = 0;
if(sscanf(rest.c_str(), " suggestion: %d", &suggestion) != 1)
{
ERRORPRINT("Suggestion %d failed to load.\n", adv_arr.size());
}
curbc.consistency_check();
advice adv; adv.bc = curbc; adv.suggestion = suggestion;
adv_arr.push_back(adv);
assert(fscanf(advicefin, "\n") == 0);
}
print_if<PROGRESS>("Loaded %d suggestions from the advice file.\n", adv_arr.size());
fclose(advicefin);
check_uniqueness();
}
};
#endif
| [
"bohm+git@atrey.karlin.mff.cuni.cz"
] | bohm+git@atrey.karlin.mff.cuni.cz |
08f3cfd4ff4009e35cf8f9d7413c972664f5b212 | 32b788dfbec9531471417666d460d56b86af858c | /Thermocouples/Thermocouples.ino | de91e418952b8f47759ecc27bea2cb80926d236c | [] | no_license | gilgad2000/ArduinoCode | f825373188cc1b181b2d1aae4f857557afb2df31 | e6f2e25fe8f802b3cb400e00e263cec9f8fb3d7c | refs/heads/master | 2020-05-17T21:37:15.529594 | 2015-02-10T18:25:10 | 2015-02-10T18:25:10 | 24,591,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,800 | ino | // demo: CAN-BUS Shield, receive data
#include "mcp_can.h"
#include <SPI.h>
#include <stdio.h>
#include <string.h>
#define INT8U unsigned char
#define DEVICE_ADDRESS 0x00000020
#define BLOCK 0xFFFFFFFF
#define ACCEPT_ALL 0x00000000
#define NUM_CHANNELS 8
#define RECEIVED 0xFF
// Used to request Data from a sensor
#define DATA_REQUEST 'R'
// Used to program a controller.
#define PROGRAM_CONTROLLER 'P'
// Used to force a parameter on a controller.
#define CONTROL_CONTROLLER 'C'
// Used to set timing details when setting up an experiment.
#define EXPERIMENT_TIMING 'E'
// Used to set more control parameter details.
#define PROGRAM_CONTROLLER_B 'B'
// Used to return requested data from a sensor.
#define DATA_PACKET 'D'
// Used to being an experiment.
#define EXPERIMENT_CONTROL_PACKET 'b'
#define TEST_COMMAND 'T'
#define RESET_PIN 9
#define UNIT_PIN 4
#define TWO_PIN 5
#define FOUR_PIN 6
#define AVERAGE_OVER 7
INT8U len = 8;
INT8U buf[8];
INT8U sendbuf[8];
float readings[1];
int i;
void control(unsigned char* buf);
float convertSignalToReading(float reading);
void test(unsigned char* buf);
float readfromChannel(signed char chan);
void setup()
{
pinMode(RESET_PIN, OUTPUT);
/** These pins are used to control the multiplexer. **/
pinMode(UNIT_PIN, OUTPUT);
pinMode(TWO_PIN, OUTPUT);
pinMode(FOUR_PIN, OUTPUT);
digitalWrite(RESET_PIN, LOW);
delay(20);
digitalWrite(RESET_PIN, HIGH);
CAN.begin(CAN_500KBPS); // init can bus : baudrate = 500k
Serial.begin(115200);
/** Set up the filter so give it an address. **/
CAN.init_Mask(0,0,0xFFFFFFFF); // Setup mask 0 to filter on all bits.
CAN.init_Mask(1,0,0xFFFFFFFF); // Setup mask 1 to filter on all bits.
CAN.init_Filt(0,0,DEVICE_ADDRESS);
CAN.init_Filt(1,0,BLOCK);
CAN.init_Filt(2,0,BLOCK);
CAN.init_Filt(3,0,BLOCK);
CAN.init_Filt(4,0,BLOCK);
CAN.init_Filt(5,0,BLOCK);
CAN.clearRX0Status();
CAN.clearRX1Status();
for(i=0;i!=NUM_CHANNELS;i++)
{
sendbuf[i]=0;
buf[i]=0;
}
}
void loop()
{
// Wait for new message.
if((CAN.readStatus()&0x40)==0x40||(CAN.readStatus()&0x80)==0x80)
{
// Once new message arrives retrieve it.
CAN.readMsgBuf(&len, buf);
CAN.clearRX0Status();
CAN.clearRX1Status();
// Reset interrupts.
if(buf[0]==DATA_REQUEST)
request(buf);
if(buf[0]==TEST_COMMAND)
test(buf);
for(i=0;i!=8;i++)
{
buf[i] = 0;
}
}
}
void request(unsigned char* buf)
{
readings[0] = readfromChannel(buf[1]);
sendbuf[0] = DATA_PACKET;
// Data channel.
sendbuf[1] = buf[1];
sendbuf[2] = DEVICE_ADDRESS;
memcpy((float*)&sendbuf[3],(float*)&(readings[0]),4);
sendbuf[7] = 0;
Serial.println(buf[2]);
CAN.sendMsgBuf(buf[2],0,8,sendbuf);
}
float convertSignalToReading(float reading)
{
//return 0.2477*reading - 48.561;
return reading;
}
void test(unsigned char* buf)
{
unsigned char received_from;
received_from = buf[1];
buf[0] = TEST_COMMAND;
buf[1] = DEVICE_ADDRESS;
buf[2] = RECEIVED;
CAN.sendMsgBuf(received_from,0,8,sendbuf);
}
float readfromChannel(signed char chan)
{
float reading, total;
reading = 0;
total = 0;
/** Set the output pins to read from the multiplexer. **/
switch(chan)
{
case 0:
digitalWrite(UNIT_PIN, LOW);
digitalWrite(TWO_PIN, LOW);
digitalWrite(FOUR_PIN, LOW);
break;
case 1:
digitalWrite(UNIT_PIN, HIGH);
digitalWrite(TWO_PIN, LOW);
digitalWrite(FOUR_PIN, LOW);
break;
case 2:
digitalWrite(UNIT_PIN, LOW);
digitalWrite(TWO_PIN, HIGH);
digitalWrite(FOUR_PIN, LOW);
break;
case 3:
digitalWrite(UNIT_PIN, HIGH);
digitalWrite(TWO_PIN, HIGH);
digitalWrite(FOUR_PIN, LOW);
break;
case 4:
digitalWrite(UNIT_PIN, LOW);
digitalWrite(TWO_PIN, LOW);
digitalWrite(FOUR_PIN, HIGH);
break;
case 5:
digitalWrite(UNIT_PIN, HIGH);
digitalWrite(TWO_PIN, LOW);
digitalWrite(FOUR_PIN, HIGH);
break;
case 6:
digitalWrite(UNIT_PIN, LOW);
digitalWrite(TWO_PIN, HIGH);
digitalWrite(FOUR_PIN, HIGH);
break;
case 7:
digitalWrite(UNIT_PIN, HIGH);
digitalWrite(TWO_PIN, HIGH);
digitalWrite(FOUR_PIN, HIGH);
break;
default:
digitalWrite(UNIT_PIN, LOW);
digitalWrite(TWO_PIN, LOW);
digitalWrite(FOUR_PIN, LOW);
break;
}
delayMicroseconds(500);
for(i=0;i!=AVERAGE_OVER;i++)
{
delayMicroseconds(500);
reading = (float)analogRead(A0);
total = total + reading;
}
reading = total/AVERAGE_OVER;
reading = convertSignalToReading(reading);
return reading;
}
| [
"m.england@surrey.ac.uk"
] | m.england@surrey.ac.uk |
a1139c3eb0843f80f49e155388a14b94a43dd546 | 77ca5f4a039aa8fa7972a85450a754a11686ed89 | /src/game_gui.cpp | 9f6e2d29cf76ca3e08f1f4d76fe860b721c28eb0 | [] | no_license | oelnenimmat/friendsimulator | 8324095bec51094018f14e23d9149849c44c6d9d | e940188c8c1c9e977756310d9078c18555c155ab | refs/heads/master | 2023-02-02T12:18:17.598640 | 2020-12-21T23:17:55 | 2020-12-21T23:17:55 | 207,165,907 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,302 | cpp | internal Gui init_game_gui(GameAssets & assets)
{
Gui gui = {};
return gui;
}
bool32 do_gui(Game * game, PlatformInput * input)
{
local_persist bool demoWindowVisible = false;
bool32 keepScene = true;
if (ImGui::Begin("Main Editor"))
{
using namespace ImGui;
if(Button("Exit to Main Menu"))
{
OpenPopup("Exit?");
}
ImVec2 center =
{
platform_window_get_width(platformWindow) * 0.5f,
platform_window_get_height(platformWindow) * 0.5f
};
SetNextWindowPos(center, ImGuiCond_Appearing, {0.5f, 0.5f});
if (BeginPopupModal("Exit?", nullptr, ImGuiWindowFlags_AlwaysAutoResize))
{
Text("Exit to Main Menu?");
if (Button("YES", {80, 0}))
{
keepScene = false;
log_debug(FILE_ADDRESS, "He said YES");
CloseCurrentPopup();
}
SameLine();
if (Button("NO", {80, 0}))
{
log_debug(FILE_ADDRESS, "He said NO");
CloseCurrentPopup();
}
ImGui::EndPopup();
}
{
constexpr char const * const cameraModeLabels [] = { "Player", "Editor" };
if(BeginCombo("Camera Mode", cameraModeLabels[game->cameraMode]))
{
for (s32 i = 0; i < CameraModeCount; ++i)
{
if (Selectable(cameraModeLabels[i], game->cameraMode == static_cast<CameraMode>(i)))
{
game->cameraMode = static_cast<CameraMode>(i);
}
}
EndCombo();
}
constexpr char const * const debugLevelLabels [] = { "Off", "Player", "Player, NPC", "Player, NPC; Background" };
if (BeginCombo("Debug Level", debugLevelLabels[global_debugLevel]))
{
for (s32 i = 0; i < array_count(debugLevelLabels); ++i)
{
if (Selectable(debugLevelLabels[i], global_debugLevel == i))
{
global_debugLevel = i;
}
}
EndCombo();
}
bool drawDebugShadowTexture = game->drawDebugShadowTexture;
Checkbox("Debug Shadow", &drawDebugShadowTexture);
game->drawDebugShadowTexture = drawDebugShadowTexture;
if (Button("Reload Shaders"))
{
graphics_development_reload_shaders(platformGraphics);
}
InputFloat("Time Scale", &game->timeScale, 0.1f);
if (Button("Read Settings"))
{
read_settings_file(game_get_serialized_objects(*game));
read_settings_file(monuments_get_serialized_objects(game->monuments));
monuments_refresh_transforms(game->monuments, game->collisionSystem);
}
if (Button("Write Settings"))
{
PlatformFileHandle file = platform_file_open("settings", FileMode_write);
write_settings_file(file, *game);
platform_file_close(file);
}
}
PushStyleVar(ImGuiStyleVar_IndentSpacing, 16);
s32 pushedStyleVarCount = 1;
float indentWidth = 16;
if (TreeNodeEx("Sky", ImGuiTreeNodeFlags_Framed))
{
sky_editor(game->skySettings);
TreePop();
}
if (TreeNodeEx("Monuments", ImGuiTreeNodeFlags_Framed))
{
monuments_editor(game->monuments, game->collisionSystem);
TreePop();
}
if (TreeNodeEx("Trees", ImGuiTreeNodeFlags_Framed))
{
trees_editor(game->trees);
TreePop();
}
if (TreeNodeEx("Clouds", ImGuiTreeNodeFlags_Framed))
{
clouds_editor(game->clouds);
TreePop();
}
if (TreeNodeEx("Blocks", ImGuiTreeNodeFlags_Framed))
{
building_blocks_editor( game->scene.buildingBlocks,
game->selectedBuildingBlockIndex,
game->scene,
game->worldCamera,
game->editorCamera.pivotPosition,
input);
TreePop();
}
if (TreeNodeEx("Pipes", ImGuiTreeNodeFlags_Framed))
{
building_blocks_editor( game->scene.buildingPipes,
game->selectedBuildingPipeIndex,
game->scene,
game->worldCamera,
game->editorCamera.pivotPosition,
input);
TreePop();
}
if (TreeNodeEx("Camera", ImGuiTreeNodeFlags_Framed))
{
PushID("gamecamera");
Text("Player Camera");
DragFloat("Distance", &game->gameCamera.distance, 0.1, 0.1, highest_f32);
DragFloat("Base Offset", &game->gameCamera.baseOffset, 0.1);
DragFloat("Gamepad Rotate Speed", &game->gameCamera.gamepadRotateSpeed, 0.1);
DragFloat("Mouse Rotate Speed", &game->gameCamera.mouseRotateSpeed, 0.1);
PopID();
Spacing();
PushID("Editor");
Text("Editor Camera");
DragFloat("Gamepad Rotate Speed", &game->editorCamera.gamepadRotateSpeed, 0.1);
DragFloat("Mouse Rotate Speed", &game->editorCamera.mouseRotateSpeed, 0.1);
DragFloat("Right/Up Speed", &game->editorCamera.rightAndUpMoveSpeed, 0.1);
DragFloat("Zoom Speed", &game->editorCamera.zoomSpeed, 0.1);
Checkbox32("Show Pivot", &game->editorCamera.showPivot);
PopID();
TreePop();
}
if (TreeNodeEx("Mesh Generation", ImGuiTreeNodeFlags_Framed))
{
SliderFloat("Grid Scale", &game->metaballGridScale, 0.2, 1);
Checkbox32("Draw", &game->drawMCStuff);
TreePop();
}
PopStyleVar(pushedStyleVarCount);
}
ImGui::End();
if (demoWindowVisible)
{
ImGui::ShowDemoWindow(&demoWindowVisible);
}
// -----------------------------------------------------------
// Todo(Leo) Study: https://www.reddit.com/r/vulkan/comments/fe40bw/vulkan_image_imgui_integration/
gui_position({1550, 30});
if (game->drawDebugShadowTexture)
{
gui_image(GRAPHICS_RESOURCE_SHADOWMAP_GUI_MATERIAL, {300, 300});
}
// -----------------------------------------------------------
return keepScene;
} | [
"32251076+Shophorn@users.noreply.github.com"
] | 32251076+Shophorn@users.noreply.github.com |
fc226dd9efc37a8add2113b647f2c1a2387f9543 | 5eefbd2fc4be7e3e40a68b4da0695454c12ee50e | /C++/Zestaw3/01.cpp | 327a91825033379098928c7d691af49c1dce19f5 | [] | no_license | HiImTrixie/School | d5f09cb44cb2f42b9ac2aeab6e04bb1254fde5c8 | 9813f5e93197e5d37e9355f408608866b6923c07 | refs/heads/master | 2021-01-10T17:49:20.449545 | 2017-05-29T00:27:24 | 2017-05-29T00:27:24 | 47,935,582 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | #include <iostream>
double linear_functions(int a1, int b1, int a2, int b2){
double result;
if(a1 == 0 || a2 == 0){
std::cout << "No solution to given numbers" << std::endl;
}else{
result = ((b1 * (-1)) + b2) / (a1 + (a2 * (-1)));
}
return result;
}
int main(){
int a1, b1, a2, b2;
double result;
std::cout << "Give a1 and b1:" << std::endl;
std::cin >> a1 >> b1;
std::cout << "Give a2 and b2:" << std::endl;
std::cin >> a2 >> b2;
double lf = linear_functions(a1, b1, a2, b2);
std::cout << lf << std::endl;
return 0;
}
| [
"hiimtrixie@gmail.com"
] | hiimtrixie@gmail.com |
d1d351d19a19f3bb97d2b41b385d631b0b1dc4c6 | c9b9d9e93505e1e42adb61597c885b58c153894f | /source/lowlevel/brlastinfirstout.cpp | 18d66344f86206a66b294a297085a5eb7e310fd3 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer",
"Zlib"
] | permissive | Olde-Skuul/burgerlib | a3b860bf00bdbc699086a32a1d4756848866d3dc | 4d9dfa0cd5586d23688978e7ec0fd5881bf75912 | refs/heads/master | 2023-08-30T17:13:52.487215 | 2023-08-18T21:56:27 | 2023-08-18T21:56:27 | 18,419,163 | 163 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 16,664 | cpp | /***************************************
Last in, first out, singly linked list queue
Copyright (c) 1995-2023 by Rebecca Ann Heineman <becky@burgerbecky.com>
It is released under an MIT Open Source license. Please see LICENSE for
license details. Yes, you can use it in a commercial title without paying
anything, just give me a credit.
Please? It's not like I'm asking you for money!
***************************************/
#include "brlastinfirstout.h"
/*! ************************************
\class Burger::ForwardLink
\brief Singly linked list pointer
For classes that maintain singly linked lists, this class holds a single
pointer to the next entry in the list or \ref nullptr to denote the end of
the list. For classes that work with circular lists, there will be no
\ref nullptr to the last entry
\sa LastInFirstOut or MPLastInFirstOut
***************************************/
/*! ************************************
\fn Burger::ForwardLink::ForwardLink()
\brief Constructor with \ref nullptr
Default constructor that sets the next pointer to \ref nullptr
\sa ForwardLink(ForwardLink*)
***************************************/
/*! ************************************
\fn Burger::ForwardLink::ForwardLink(ForwardLink* pNext)
\brief Constructor with a supplied next pointer.
Default constructor that sets the next pointer to pNext
\param pNext Pointer to the ForwardLink that follows this class instance in
the linked list
\sa ForwardLink()
***************************************/
/*! ************************************
\fn void Burger::ForwardLink::clear(void)
\brief Set the pointer to \ref nullptr
\sa set_next(ForwardLink *)
***************************************/
/*! ************************************
\fn void Burger::ForwardLink::get_next(void) const
\brief Get the pointer to the next entry in the linked list
\return Pointer to the next entry in the linked list
\sa set_next(ForwardLink *)
***************************************/
/*! ************************************
\fn void Burger::ForwardLink::set_next(ForwardLink *pNext)
\brief Set the pointer to pNext
\param pNext Pointer to the ForwardLink that follows
this class instance in the linked list
\sa get_next(void) const or clear(void)
***************************************/
/*! ************************************
\brief Reverse a singly linked list
Traverse a singly linked list and reverse the linkage so that the order of
the entries are in the opposite order.
\param pRoot Pointer to the ForwardLink that is the head of the list.
\return Pointer to the last entry of the linked list that is the new head of
the list.
\sa ForwardLink
***************************************/
Burger::ForwardLink* BURGER_API Burger::reverse_list(
ForwardLink* pRoot) BURGER_NOEXCEPT
{
// No entries in the list?
if (pRoot) {
// There's at least one entry, the next entry will be the new previous
// entry
ForwardLink* pPrev = pRoot->get_next();
// The next entry is the last one (nullptr is terminator)
ForwardLink* pNext = nullptr;
if (pPrev) {
do {
// pRoot will have the new next pointer
pRoot->set_next(pNext);
// The current root will be the new next
pNext = pRoot;
// The root is previous next pointer
pRoot = pPrev;
// Step to the next pointer (Which is the new previous pointer)
pPrev = pPrev->get_next();
// Still going?
} while (pPrev);
}
// Set the last previous entry as the new
// next entry from the root
pRoot->set_next(pNext);
}
return pRoot;
}
/*! ************************************
\class Burger::LastInFirstOut
\brief Class that manages a last in first out singly linked list
This class holds a linked list that is treated as a last in first out stack.
This class is not reentrant, use \ref MPLastInFirstOut instead.
\sa MPLastInFirstOut
***************************************/
/*! ************************************
\fn Burger::LastInFirstOut::LastInFirstOut()
\brief Default constructor
Construct the class with an empty list
\sa LastInFirstOut(ForwardLink *)
***************************************/
/*! ************************************
\fn Burger::LastInFirstOut::LastInFirstOut(ForwardLink *pRoot)
\brief Default constructor
Construct the class with an supplied list
\param pRoot Pointer to the linked list to initialize this class with
\sa LastInFirstOut()
***************************************/
/*! ************************************
\fn void Burger::LastInFirstOut::clear(void)
\brief Discard the linked list
Set the root pointer to \ref nullptr. No deallocations are performed.
\sa get_root(void) const
***************************************/
/*! ************************************
\fn Burger::LastInFirstOut::is_empty(void) const
\brief Default constructor
\return \ref TRUE if there are entries in the linked list.
\sa clear(void)
***************************************/
/*! ************************************
\fn Burger::ForwardLink * Burger::LastInFirstOut::get_root(void) const
\brief Get the head of the list.
Return the head of the linked list for manual traversal.
\return \ref nullptr if there is nothing in the list, or a valid pointer to
the head of the list.
\sa clear(void)
***************************************/
/*! ************************************
\brief Count the number of entries in this linked list
Traverse the linked list until the end is reached and return the number of
entries found.
\return The number of elements in this linked list, can be zero.
\sa is_empty(void) const
***************************************/
uintptr_t BURGER_API Burger::LastInFirstOut::size(void) const BURGER_NOEXCEPT
{
// Get the first entry
const ForwardLink* pWork = m_pRoot;
uintptr_t uCount = 0;
if (pWork) {
// Follow the list to get the number of entries
do {
++uCount;
pWork = pWork->get_next();
} while (pWork);
}
return uCount;
}
/*! ************************************
\brief Insert an entry to the head of the list
Insert a linked list into the head of the stored linked list.
\param pNewRoot Pointer to the new head of the list
\sa add_last(ForwardLink *) or remove_first(void)
***************************************/
void BURGER_API Burger::LastInFirstOut::add_first(
ForwardLink* pNewRoot) BURGER_NOEXCEPT
{
// Get the old root
ForwardLink* pOldRoot = m_pRoot;
// Set the new root
m_pRoot = pNewRoot;
// Traverse the application supplied list to the end
ForwardLink* pNext = pNewRoot->get_next();
if (pNext) {
do {
pNewRoot = pNext;
pNext = pNewRoot->get_next();
} while (pNext);
}
// Append the old list to the new one
pNewRoot->set_next(pOldRoot);
}
/*! ************************************
\brief Insert an entry to the end of the list
Insert a linked list into the tail of the stored linked list.
\param pNewTail Pointer to the list that will be appended
to the current linked list
\sa add_first(ForwardLink *)
***************************************/
void BURGER_API Burger::LastInFirstOut::add_last(
ForwardLink* pNewTail) BURGER_NOEXCEPT
{
// Get the old root
ForwardLink* pOldRoot = m_pRoot;
// Only in the case where there's no list,
// do the easy thing and just set the supplied list
// as the new root
if (!pOldRoot) {
m_pRoot = pNewTail;
} else {
// Traverse the application supplied list to the end
ForwardLink* pNext = pOldRoot->get_next();
if (pNext) {
do {
pOldRoot = pNext;
pNext = pOldRoot->get_next();
} while (pNext);
}
// Append the list to the end
pOldRoot->set_next(pNewTail);
}
}
/*! ************************************
\brief Remove an entry from the head of the list
Remove the pointer from the root of the linked list. Sets the new root with
the second entry of the linked list if there is a second entry.
\return The unlinked head pointer or \ref nullptr if the list was empty.
\sa add_first(ForwardLink *)
***************************************/
Burger::ForwardLink* BURGER_API Burger::LastInFirstOut::remove_first(
void) BURGER_NOEXCEPT
{
// Was there an entry in the linked list?
ForwardLink* pRoot = m_pRoot;
if (pRoot) {
// Set the new head of the list
m_pRoot = pRoot->get_next();
// Unlink the pointer that's being returned
pRoot->clear();
}
return pRoot;
}
/*! ************************************
\brief Assigns ownership of the linked list.
Returns the head pointer of the linked list and sets the linked list in this
class to being empty. The calling function is assigned ownership of the
entire list.
\return The pointer to the entire linked list or \ref nullptr if the list
was empty.
\sa clear(void)
***************************************/
Burger::ForwardLink* BURGER_API Burger::LastInFirstOut::take_list(
void) BURGER_NOEXCEPT
{
// Get the list pointer
ForwardLink* pRoot = m_pRoot;
// Clear out the internal list
m_pRoot = nullptr;
// Return the list
return pRoot;
}
/*! ************************************
\brief Remove an item from the linked list.
Traverse the linked list until the pointer is found
and then unlink it from the list. The pointer is
not deleted, just unlinked.
\param pEntry Item to remove from the linked list
\return Zero on success, kErrorItemNotFound if the pointer wasn't in the
list
***************************************/
Burger::eError BURGER_API Burger::LastInFirstOut::remove(
ForwardLink* pEntry) BURGER_NOEXCEPT
{
// Assume error
eError uResult = kErrorItemNotFound;
// Start at the beginning of the list
ForwardLink* pPrev = m_pRoot;
// Any list?
if (pPrev && pEntry) {
// Get the next link
ForwardLink* pWork = pPrev->get_next();
// If the root is the match, set the new head
if (pPrev == pEntry) {
m_pRoot = pWork;
// Kill the forward link
pPrev->clear();
uResult = kErrorNone;
} else if (pWork) {
// Follow the list
do {
// Match?
if (pWork == pEntry) {
// Set the new next pointer to the next
// entry to remove from the list
pPrev->set_next(pWork->get_next());
// Unlock this entry
pWork->clear();
// Match!
uResult = kErrorNone;
break;
}
// New previous entry
pPrev = pWork;
// Next entry
pWork = pWork->get_next();
} while (pWork);
}
}
// Return the error
return uResult;
}
/*! ************************************
\fn void Burger::LastInFirstOut::reverse_list(void)
\brief Reverse the singly linked list
Traverse the singly linked list and reverse the linkage so that the order of
the entries are in the opposite order.
\sa Burger::reverse_list(ForwardLink *)
***************************************/
/*! ************************************
\class Burger::MPLastInFirstOut
\brief Thread safe class that manages a last in first out singly linked list
This class holds a linked list that is treated as a last in first out stack
with a \ref Mutex to ensure thread safety.
\sa LastInFirstOut
***************************************/
/*! ************************************
\brief Default constructor
Construct the class with an empty list
\sa MPLastInFirstOut(ForwardLink *)
***************************************/
Burger::MPLastInFirstOut::MPLastInFirstOut() BURGER_NOEXCEPT {}
/*! ************************************
\brief Default constructor
Construct the class with an supplied list
\param pRoot Pointer to the linked list to initialize this class with
\sa MPLastInFirstOut()
***************************************/
Burger::MPLastInFirstOut::MPLastInFirstOut(ForwardLink* pRoot) BURGER_NOEXCEPT
: LastInFirstOut(pRoot)
{
}
/*! ************************************
\brief Discard the linked list
Set the root pointer to \ref nullptr. No deallocations are performed.
***************************************/
void BURGER_API Burger::MPLastInFirstOut::clear(void) BURGER_NOEXCEPT
{
m_Lock.lock();
m_pRoot = nullptr;
m_Lock.unlock();
}
/*! ************************************
\fn Burger::MPLastInFirstOut::is_empty(void) const
\brief Default constructor
\return \ref TRUE if there are entries in the linked list.
\sa clear(void)
***************************************/
/*! ************************************
\brief Count the number of entries in this linked list
Traverse the linked list until the end is reached and return the number of
entries found.
\return The number of elements in this linked list, can be zero.
\sa is_empty(void) const
***************************************/
uintptr_t BURGER_API Burger::MPLastInFirstOut::size(void) BURGER_NOEXCEPT
{
m_Lock.lock();
uintptr_t uSize = LastInFirstOut::size();
m_Lock.unlock();
return uSize;
}
/*! ************************************
\brief Insert an entry to the head of the list
Insert a linked list into the head of the stored linked list.
\param pNewRoot Pointer to the new head of the list
\sa add_last(ForwardLink *) or remove_first(void)
***************************************/
void BURGER_API Burger::MPLastInFirstOut::add_first(
ForwardLink* pNewRoot) BURGER_NOEXCEPT
{
m_Lock.lock();
LastInFirstOut::add_first(pNewRoot);
m_Lock.unlock();
}
/*! ************************************
\brief Insert an entry to the end of the list
Insert a linked list into the tail of the stored linked list.
\param pNewTail Pointer to the list that will be appended
to the current linked list
\sa add_first(ForwardLink *)
***************************************/
void BURGER_API Burger::MPLastInFirstOut::add_last(
ForwardLink* pNewTail) BURGER_NOEXCEPT
{
m_Lock.lock();
LastInFirstOut::add_last(pNewTail);
m_Lock.unlock();
}
/*! ************************************
\brief Remove an entry from the head of the list
Remove the pointer from the root of the linked list. Sets the new root with
the second entry of the linked list if there is a second entry.
\return The unlinked head pointer or \ref nullptr if the list was empty.
\sa add_first(ForwardLink *)
***************************************/
Burger::ForwardLink* BURGER_API Burger::MPLastInFirstOut::remove_first(
void) BURGER_NOEXCEPT
{
m_Lock.lock();
ForwardLink* pRoot = LastInFirstOut::remove_first();
m_Lock.unlock();
return pRoot;
}
/*! ************************************
\brief Assigns ownership of the linked list.
Returns the head pointer of the linked list and sets the linked list in this
class to being empty. The calling function is assigned ownership of the
entire list.
\return The pointer to the entire linked list or \ref nullptr if the list
was empty.
\sa clear(void)
***************************************/
Burger::ForwardLink* BURGER_API Burger::MPLastInFirstOut::take_list(
void) BURGER_NOEXCEPT
{
m_Lock.lock();
// Get the list pointer
ForwardLink* pRoot = LastInFirstOut::take_list();
m_Lock.unlock();
// Return the list
return pRoot;
}
/*! ************************************
\brief Remove an item from the linked list.
Traverse the linked list until the pointer is found and then unlink it from
the list. The pointer is not deleted, just unlinked.
\param pEntry Item to remove from the linked list
\return Zero on success, kErrorItemNotFound if the pointer wasn't in the
list
***************************************/
Burger::eError BURGER_API Burger::MPLastInFirstOut::remove(
ForwardLink* pEntry) BURGER_NOEXCEPT
{
m_Lock.lock();
eError uResult = LastInFirstOut::remove(pEntry);
m_Lock.unlock();
// Return the error
return uResult;
}
/*! ************************************
\brief Reverse the singly linked list
Traverse the singly linked list and reverse the linkage so that the order of
the entries are in the opposite order.
\sa Burger::reverse_list(ForwardLink *)
***************************************/
void BURGER_API Burger::MPLastInFirstOut::reverse_list(void) BURGER_NOEXCEPT
{
m_Lock.lock();
LastInFirstOut::reverse_list();
m_Lock.unlock();
}
/*! ************************************
\fn Burger::MPLastInFirstOut::lock(void)
\brief Lock the singly linked list
Obtain the lock on the \ref Mutex so that the application can traverse or
otherwise manipulate the linked list.
\sa Burger::MPLastInFirstOut::unlock(void)
***************************************/
/*! ************************************
\fn Burger::MPLastInFirstOut::unlock(void)
\brief Unlock the singly linked list
Release the lock on the \ref Mutex so that the linked list can be used by
other threads.
\sa Burger::MPLastInFirstOut::lock(void)
***************************************/
| [
"becky@burgerbecky.com"
] | becky@burgerbecky.com |
014d6202cf820044679a2b4d2b7c16f4078ca085 | 1577e1cf4e89584a125cffb855ca50a9654c6d55 | /WebKit/Source/WebKit/UIProcess/SpeechRecognitionRemoteRealtimeMediaSourceManager.cpp | d1e64c8027013f63d530416dba0e4c3ff09f80ef | [] | no_license | apple-open-source/macos | a4188b5c2ef113d90281d03cd1b14e5ee52ebffb | 2d2b15f13487673de33297e49f00ef94af743a9a | refs/heads/master | 2023-08-01T11:03:26.870408 | 2023-03-27T00:00:00 | 2023-03-27T00:00:00 | 180,595,052 | 124 | 24 | null | 2022-12-27T14:54:09 | 2019-04-10T14:06:23 | null | UTF-8 | C++ | false | false | 5,134 | cpp | /*
* Copyright (C) 2020 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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 APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "config.h"
#include "SpeechRecognitionRemoteRealtimeMediaSourceManager.h"
#if ENABLE(MEDIA_STREAM)
#include "SpeechRecognitionRealtimeMediaSourceManagerMessages.h"
#include "SpeechRecognitionRemoteRealtimeMediaSource.h"
namespace WebKit {
SpeechRecognitionRemoteRealtimeMediaSourceManager::SpeechRecognitionRemoteRealtimeMediaSourceManager(Ref<IPC::Connection>&& connection)
: m_connection(WTFMove(connection))
{
}
void SpeechRecognitionRemoteRealtimeMediaSourceManager::addSource(SpeechRecognitionRemoteRealtimeMediaSource& source, const WebCore::CaptureDevice& captureDevice)
{
auto identifier = source.identifier();
ASSERT(!m_sources.contains(identifier));
m_sources.add(identifier, source);
#if ENABLE(SANDBOX_EXTENSIONS)
if (!captureDevice.isMockDevice()) {
m_sourcesNeedingSandboxExtension.add(identifier);
if (m_sourcesNeedingSandboxExtension.size() == 1) {
auto machBootstrapHandle = SandboxExtension::createHandleForMachBootstrapExtension();
SandboxExtension::Handle handleForTCCD;
if (auto handle = SandboxExtension::createHandleForMachLookup("com.apple.tccd"_s, m_connection->getAuditToken()))
handleForTCCD = WTFMove(*handle);
SandboxExtension::Handle handleForMicrophone;
if (auto handle = SandboxExtension::createHandleForGenericExtension("com.apple.webkit.microphone"_s))
handleForMicrophone = WTFMove(*handle);
send(Messages::SpeechRecognitionRealtimeMediaSourceManager::GrantSandboxExtensions(machBootstrapHandle, handleForTCCD, handleForMicrophone));
}
}
#endif
send(Messages::SpeechRecognitionRealtimeMediaSourceManager::CreateSource(identifier, captureDevice, source.pageIdentifier()));
}
void SpeechRecognitionRemoteRealtimeMediaSourceManager::removeSource(SpeechRecognitionRemoteRealtimeMediaSource& source)
{
auto identifier = source.identifier();
ASSERT(m_sources.get(identifier) == &source);
m_sources.remove(identifier);
#if ENABLE(SANDBOX_EXTENSIONS)
if (m_sourcesNeedingSandboxExtension.remove(identifier)) {
if (m_sourcesNeedingSandboxExtension.isEmpty())
send(Messages::SpeechRecognitionRealtimeMediaSourceManager::RevokeSandboxExtensions());
}
#endif
send(Messages::SpeechRecognitionRealtimeMediaSourceManager::DeleteSource(identifier));
}
void SpeechRecognitionRemoteRealtimeMediaSourceManager::remoteAudioSamplesAvailable(WebCore::RealtimeMediaSourceIdentifier identifier, const WTF::MediaTime& time, uint64_t numberOfFrames)
{
if (auto source = m_sources.get(identifier))
source->remoteAudioSamplesAvailable(time, numberOfFrames);
}
void SpeechRecognitionRemoteRealtimeMediaSourceManager::remoteCaptureFailed(WebCore::RealtimeMediaSourceIdentifier identifier)
{
if (auto source = m_sources.get(identifier))
source->remoteCaptureFailed();
}
void SpeechRecognitionRemoteRealtimeMediaSourceManager::remoteSourceStopped(WebCore::RealtimeMediaSourceIdentifier identifier)
{
if (auto source = m_sources.get(identifier))
source->remoteSourceStopped();
}
IPC::Connection* SpeechRecognitionRemoteRealtimeMediaSourceManager::messageSenderConnection() const
{
return m_connection.ptr();
}
uint64_t SpeechRecognitionRemoteRealtimeMediaSourceManager::messageSenderDestinationID() const
{
return 0;
}
#if PLATFORM(COCOA)
void SpeechRecognitionRemoteRealtimeMediaSourceManager::setStorage(WebCore::RealtimeMediaSourceIdentifier identifier, ConsumerSharedCARingBuffer::Handle&& handle, const WebCore::CAAudioStreamDescription& description)
{
if (auto source = m_sources.get(identifier))
source->setStorage(WTFMove(handle), description);
}
#endif
} // namespace WebKit
#endif
| [
"opensource@apple.com"
] | opensource@apple.com |
b51091ce87b4ba7ff4297ba27dec58d7438872da | 3a8240d9698d037df7cc0c3884a5930b69ba6027 | /src/hal_ugv/include/hal_ugv/control/Velocity.h | 7ea6f5bac73164fb93b10abc2ac4e2885a3a005e | [
"BSD-2-Clause"
] | permissive | jiangchenzhu/crates_zhejiang | 797cbf246f2b7f0e0fc950e420816cda58bf16a9 | 711c9fafbdc775114345ab0ca389656db9d20df7 | refs/heads/master | 2021-01-10T09:09:26.385627 | 2015-12-17T15:54:57 | 2015-12-17T15:54:57 | 48,175,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,671 | h | #ifndef HAL_UGV_VELOCITY_H
#define HAL_UGV_VELOCITY_H
// Base controller type
#include <hal_ugv/control/Controller.h>
// Messages used by this controller
#include <hal_ugv/Velocity.h>
namespace hal
{
namespace ugv
{
//! A ugv Emergency controller
/*!
A more elaborate class description.
*/
class Velocity : public Controller
{
private:
// PID parameters
double ei[3];
double ep[3];
double sp[4];
public:
//! Callback for goal update
/*!
\param req the goal request
\param res the goal response
\return whether the control was accepted
*/
bool SetGoal(
hal_ugv::Velocity::Request& req,
hal_ugv::Velocity::Response& res
);
//! Obtain control from state and timestep
/*!
\param state the current platform state
\param dt the discrete time step
\param control the output control from the controller
\return if the state could be updated
*/
void Update(const hal_ugv::State &state,
double dt, hal_ugv::Control &control);
//! Goal reach implementations
/*!
\return Whether the goal has been reached
*/
bool HasGoalBeenReached();
//! Reset implementation
/*!
\return Reset the internal state of the controller
*/
void Reset();
};
}
}
#endif
| [
"jiangchengzhu@bitbucket.com"
] | jiangchengzhu@bitbucket.com |
ce73074562d85e4d4c2da79a4a0b58866de1ccc7 | 5a627d4aa22ab4c4b41eeec55b96f3528bb88631 | /libs/optim/tests/test_fns/unconstr_test_fn_3.hpp | 161e90b10e63faf2c843072768d49cebb5a3c068 | [
"MIT",
"GPL-1.0-or-later",
"Apache-2.0"
] | permissive | LehighCSE375-AJM/hindsight-experience-replay | ee6f3fe993608eb4b16615da66bdaa9b122d57f8 | 1412312c04619b060927b2c60ee40151266f461f | refs/heads/master | 2023-01-30T12:25:23.537368 | 2020-12-05T21:19:20 | 2020-12-05T21:19:20 | 308,702,341 | 1 | 0 | MIT | 2020-11-09T16:33:15 | 2020-10-30T17:40:49 | Python | UTF-8 | C++ | false | false | 1,784 | hpp | /*################################################################################
##
## Copyright (C) 2016-2020 Keith O'Hara
##
## This file is part of the OptimLib C++ library.
##
## 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.
##
################################################################################*/
//
// this example is from
// https://en.wikipedia.org/wiki/Test_functions_for_optimization
//
// Sphere function:
//
// f(x) = x_1^2 + x_2^2 + ... + x_n^2
//
// solution is: (0,0,...,0)
//
#ifndef _optim_test_fn_3_HPP
#define _optim_test_fn_3_HPP
inline
double
unconstr_test_fn_3(const Vec_t& vals_inp, Vec_t* grad_out, void* opt_data)
{
const double obj_val = OPTIM_MATOPS_DOT_PROD(vals_inp,vals_inp);
if (grad_out) {
*grad_out = 2.0*vals_inp;
}
return obj_val;
}
inline
double
unconstr_test_fn_3_whess(const Vec_t& vals_inp, Vec_t* grad_out, Mat_t* hess_out, void* opt_data)
{
const int n_vals = OPTIM_MATOPS_SIZE(vals_inp);
const double obj_val = OPTIM_MATOPS_DOT_PROD(vals_inp,vals_inp);
if (grad_out) {
*grad_out = 2.0*vals_inp;
}
if (hess_out) {
*hess_out = 2.0 * OPTIM_MATOPS_EYE(n_vals);
}
return obj_val;
}
#endif
| [
"jacoboakman@gmail.com"
] | jacoboakman@gmail.com |
05a2d2c77f26f846979f50ab5d722128a0521f84 | 7ecaab8f6c74e8f01d4db2655e8bdf84a09331c2 | /analyze_proto/output/proto_analyze/modules/map/proto/map_junction.pb.h | d11b74901cd9f61c18623a6e8f04de847c6b961d | [] | no_license | zhouyapengzi/apollo_analyze_tools | 11577ef8c2316e2bf89f01309665e10c3e31b0ad | f6ecf2421c1d63c3ae492d3a3bb87e47a9386aba | refs/heads/master | 2022-11-25T18:48:05.554694 | 2020-07-28T16:07:39 | 2020-07-28T16:07:39 | 273,553,845 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 15,171 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: modules/map/proto/map_junction.proto
#ifndef GOOGLE_PROTOBUF_INCLUDED_modules_2fmap_2fproto_2fmap_5fjunction_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_modules_2fmap_2fproto_2fmap_5fjunction_2eproto
#include <limits>
#include <string>
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3011000
#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 3011002 < 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/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/inlined_string_field.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/unknown_field_set.h>
#include "modules/map/proto/map_id.pb.h"
#include "modules/map/proto/map_geometry.pb.h"
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_modules_2fmap_2fproto_2fmap_5fjunction_2eproto
PROTOBUF_NAMESPACE_OPEN
namespace internal {
class AnyMetadata;
} // namespace internal
PROTOBUF_NAMESPACE_CLOSE
// Internal implementation detail -- do not use these members.
struct TableStruct_modules_2fmap_2fproto_2fmap_5fjunction_2eproto {
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTableField entries[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::AuxillaryParseTableField aux[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTable schema[1]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::FieldMetadata field_metadata[];
static const ::PROTOBUF_NAMESPACE_ID::internal::SerializationTable serialization_table[];
static const ::PROTOBUF_NAMESPACE_ID::uint32 offsets[];
};
extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_modules_2fmap_2fproto_2fmap_5fjunction_2eproto;
namespace apollo {
namespace hdmap {
class Junction;
class JunctionDefaultTypeInternal;
extern JunctionDefaultTypeInternal _Junction_default_instance_;
} // namespace hdmap
} // namespace apollo
PROTOBUF_NAMESPACE_OPEN
template<> ::apollo::hdmap::Junction* Arena::CreateMaybeMessage<::apollo::hdmap::Junction>(Arena*);
PROTOBUF_NAMESPACE_CLOSE
namespace apollo {
namespace hdmap {
// ===================================================================
class Junction :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:apollo.hdmap.Junction) */ {
public:
Junction();
virtual ~Junction();
Junction(const Junction& from);
Junction(Junction&& from) noexcept
: Junction() {
*this = ::std::move(from);
}
inline Junction& operator=(const Junction& from) {
CopyFrom(from);
return *this;
}
inline Junction& operator=(Junction&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return GetMetadataStatic().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return GetMetadataStatic().reflection;
}
static const Junction& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const Junction* internal_default_instance() {
return reinterpret_cast<const Junction*>(
&_Junction_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
friend void swap(Junction& a, Junction& b) {
a.Swap(&b);
}
inline void Swap(Junction* other) {
if (other == this) return;
InternalSwap(other);
}
// implements Message ----------------------------------------------
inline Junction* New() const final {
return CreateMaybeMessage<Junction>(nullptr);
}
Junction* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
return CreateMaybeMessage<Junction>(arena);
}
void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void CopyFrom(const Junction& from);
void MergeFrom(const Junction& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
inline void SharedCtor();
inline void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(Junction* other);
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "apollo.hdmap.Junction";
}
private:
inline ::PROTOBUF_NAMESPACE_ID::Arena* GetArenaNoVirtual() const {
return nullptr;
}
inline void* MaybeArenaPtr() const {
return nullptr;
}
public:
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
private:
static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_modules_2fmap_2fproto_2fmap_5fjunction_2eproto);
return ::descriptor_table_modules_2fmap_2fproto_2fmap_5fjunction_2eproto.file_level_metadata[kIndexInFileMessages];
}
public:
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kOverlapIdFieldNumber = 3,
kIdFieldNumber = 1,
kPolygonFieldNumber = 2,
};
// repeated .apollo.hdmap.Id overlap_id = 3;
int overlap_id_size() const;
private:
int _internal_overlap_id_size() const;
public:
void clear_overlap_id();
::apollo::hdmap::Id* mutable_overlap_id(int index);
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::apollo::hdmap::Id >*
mutable_overlap_id();
private:
const ::apollo::hdmap::Id& _internal_overlap_id(int index) const;
::apollo::hdmap::Id* _internal_add_overlap_id();
public:
const ::apollo::hdmap::Id& overlap_id(int index) const;
::apollo::hdmap::Id* add_overlap_id();
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::apollo::hdmap::Id >&
overlap_id() const;
// optional .apollo.hdmap.Id id = 1;
bool has_id() const;
private:
bool _internal_has_id() const;
public:
void clear_id();
const ::apollo::hdmap::Id& id() const;
::apollo::hdmap::Id* release_id();
::apollo::hdmap::Id* mutable_id();
void set_allocated_id(::apollo::hdmap::Id* id);
private:
const ::apollo::hdmap::Id& _internal_id() const;
::apollo::hdmap::Id* _internal_mutable_id();
public:
// optional .apollo.hdmap.Polygon polygon = 2;
bool has_polygon() const;
private:
bool _internal_has_polygon() const;
public:
void clear_polygon();
const ::apollo::hdmap::Polygon& polygon() const;
::apollo::hdmap::Polygon* release_polygon();
::apollo::hdmap::Polygon* mutable_polygon();
void set_allocated_polygon(::apollo::hdmap::Polygon* polygon);
private:
const ::apollo::hdmap::Polygon& _internal_polygon() const;
::apollo::hdmap::Polygon* _internal_mutable_polygon();
public:
// @@protoc_insertion_point(class_scope:apollo.hdmap.Junction)
private:
class _Internal;
::PROTOBUF_NAMESPACE_ID::internal::InternalMetadataWithArena _internal_metadata_;
::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::apollo::hdmap::Id > overlap_id_;
::apollo::hdmap::Id* id_;
::apollo::hdmap::Polygon* polygon_;
friend struct ::TableStruct_modules_2fmap_2fproto_2fmap_5fjunction_2eproto;
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// Junction
// optional .apollo.hdmap.Id id = 1;
inline bool Junction::_internal_has_id() const {
bool value = (_has_bits_[0] & 0x00000001u) != 0;
PROTOBUF_ASSUME(!value || id_ != nullptr);
return value;
}
inline bool Junction::has_id() const {
return _internal_has_id();
}
inline const ::apollo::hdmap::Id& Junction::_internal_id() const {
const ::apollo::hdmap::Id* p = id_;
return p != nullptr ? *p : *reinterpret_cast<const ::apollo::hdmap::Id*>(
&::apollo::hdmap::_Id_default_instance_);
}
inline const ::apollo::hdmap::Id& Junction::id() const {
// @@protoc_insertion_point(field_get:apollo.hdmap.Junction.id)
return _internal_id();
}
inline ::apollo::hdmap::Id* Junction::release_id() {
// @@protoc_insertion_point(field_release:apollo.hdmap.Junction.id)
_has_bits_[0] &= ~0x00000001u;
::apollo::hdmap::Id* temp = id_;
id_ = nullptr;
return temp;
}
inline ::apollo::hdmap::Id* Junction::_internal_mutable_id() {
_has_bits_[0] |= 0x00000001u;
if (id_ == nullptr) {
auto* p = CreateMaybeMessage<::apollo::hdmap::Id>(GetArenaNoVirtual());
id_ = p;
}
return id_;
}
inline ::apollo::hdmap::Id* Junction::mutable_id() {
// @@protoc_insertion_point(field_mutable:apollo.hdmap.Junction.id)
return _internal_mutable_id();
}
inline void Junction::set_allocated_id(::apollo::hdmap::Id* id) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(id_);
}
if (id) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena = nullptr;
if (message_arena != submessage_arena) {
id = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, id, submessage_arena);
}
_has_bits_[0] |= 0x00000001u;
} else {
_has_bits_[0] &= ~0x00000001u;
}
id_ = id;
// @@protoc_insertion_point(field_set_allocated:apollo.hdmap.Junction.id)
}
// optional .apollo.hdmap.Polygon polygon = 2;
inline bool Junction::_internal_has_polygon() const {
bool value = (_has_bits_[0] & 0x00000002u) != 0;
PROTOBUF_ASSUME(!value || polygon_ != nullptr);
return value;
}
inline bool Junction::has_polygon() const {
return _internal_has_polygon();
}
inline const ::apollo::hdmap::Polygon& Junction::_internal_polygon() const {
const ::apollo::hdmap::Polygon* p = polygon_;
return p != nullptr ? *p : *reinterpret_cast<const ::apollo::hdmap::Polygon*>(
&::apollo::hdmap::_Polygon_default_instance_);
}
inline const ::apollo::hdmap::Polygon& Junction::polygon() const {
// @@protoc_insertion_point(field_get:apollo.hdmap.Junction.polygon)
return _internal_polygon();
}
inline ::apollo::hdmap::Polygon* Junction::release_polygon() {
// @@protoc_insertion_point(field_release:apollo.hdmap.Junction.polygon)
_has_bits_[0] &= ~0x00000002u;
::apollo::hdmap::Polygon* temp = polygon_;
polygon_ = nullptr;
return temp;
}
inline ::apollo::hdmap::Polygon* Junction::_internal_mutable_polygon() {
_has_bits_[0] |= 0x00000002u;
if (polygon_ == nullptr) {
auto* p = CreateMaybeMessage<::apollo::hdmap::Polygon>(GetArenaNoVirtual());
polygon_ = p;
}
return polygon_;
}
inline ::apollo::hdmap::Polygon* Junction::mutable_polygon() {
// @@protoc_insertion_point(field_mutable:apollo.hdmap.Junction.polygon)
return _internal_mutable_polygon();
}
inline void Junction::set_allocated_polygon(::apollo::hdmap::Polygon* polygon) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(polygon_);
}
if (polygon) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena = nullptr;
if (message_arena != submessage_arena) {
polygon = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, polygon, submessage_arena);
}
_has_bits_[0] |= 0x00000002u;
} else {
_has_bits_[0] &= ~0x00000002u;
}
polygon_ = polygon;
// @@protoc_insertion_point(field_set_allocated:apollo.hdmap.Junction.polygon)
}
// repeated .apollo.hdmap.Id overlap_id = 3;
inline int Junction::_internal_overlap_id_size() const {
return overlap_id_.size();
}
inline int Junction::overlap_id_size() const {
return _internal_overlap_id_size();
}
inline ::apollo::hdmap::Id* Junction::mutable_overlap_id(int index) {
// @@protoc_insertion_point(field_mutable:apollo.hdmap.Junction.overlap_id)
return overlap_id_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::apollo::hdmap::Id >*
Junction::mutable_overlap_id() {
// @@protoc_insertion_point(field_mutable_list:apollo.hdmap.Junction.overlap_id)
return &overlap_id_;
}
inline const ::apollo::hdmap::Id& Junction::_internal_overlap_id(int index) const {
return overlap_id_.Get(index);
}
inline const ::apollo::hdmap::Id& Junction::overlap_id(int index) const {
// @@protoc_insertion_point(field_get:apollo.hdmap.Junction.overlap_id)
return _internal_overlap_id(index);
}
inline ::apollo::hdmap::Id* Junction::_internal_add_overlap_id() {
return overlap_id_.Add();
}
inline ::apollo::hdmap::Id* Junction::add_overlap_id() {
// @@protoc_insertion_point(field_add:apollo.hdmap.Junction.overlap_id)
return _internal_add_overlap_id();
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::apollo::hdmap::Id >&
Junction::overlap_id() const {
// @@protoc_insertion_point(field_list:apollo.hdmap.Junction.overlap_id)
return overlap_id_;
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// @@protoc_insertion_point(namespace_scope)
} // namespace hdmap
} // namespace apollo
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_modules_2fmap_2fproto_2fmap_5fjunction_2eproto
| [
"zi_peng@encs.concordia.ca"
] | zi_peng@encs.concordia.ca |
9fffb84332406e0ddafad48c3aeee5b387a241ea | ae0ea30c717c6813bd3af2f7a179ff3d76ad61f4 | /Code/main.cpp | 3533a828c53affeef716445829f95f7624f2e236 | [] | no_license | 3DIYPrinting/robot_arm | d3635045469eded971eec36056219d33fb0a0823 | 868ad1c2c7d59e85bd4961c9821cb745b26e8693 | refs/heads/master | 2020-12-24T13:21:17.788912 | 2012-12-02T04:22:17 | 2012-12-02T04:22:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,971 | cpp | #include <cstdlib>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <vector>
#include <math.h>
#include <cmath>
#include <sys/signal.h>
#include <sys/types.h>
#include <sys/time.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/l2cap.h>
#include "rs232.h"
//#include "hklx.h"
#include "stag.h"
/*
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
#include <cppconn/prepared_statement.h>
*/
#define NO_PWM 6
#define L1 15.0
#define L2 130.0
#define L3 130.0
#define L4 70.0
#define PSMOVE 1
#define SIXAXIS 2
#define DS3 3
#define WIIMOTE 4
using namespace std;
uint8_t inbuf[4095];
uint8_t arm_roll=90;
uint8_t arm_pitch=90;
uint8_t test_angle=0;
uint8_t test_inc=5;
const float rad_180 = (M_PI);
const float rad_170 = (M_PI*0.944444444);
const float rad_156 = (M_PI*0.866666666);
const float rad_78 = (M_PI*0.4333333333);
const float rad_10 = (M_PI*0.0555555555);
float Servos_Max_rad[6] = {rad_180, rad_170, rad_170, rad_170, rad_180, rad_156};
float Servos_Min_rad[6] = {0.0, rad_10,rad_10,rad_10,0.0,rad_78};
int8_t openport()
{
if (!OpenComport(16, 9600)) return 16;
if (!OpenComport(17, 9600)) return 17;
if (!OpenComport(18, 9600)) return 18;
return -1;
}
float rad(float degree)
{
return degree * (M_PI/180.0);
}
float deg(float radian)
{
return radian * (180.0 / M_PI);
}
uint8_t ang_to_pos(float x)
{
float y = (deg(x)*(255.0/180.0));
if(y<0.0) y=0.0;
if(y>255.0) y=255.0;
return (uint8_t)y;
}
uint8_t reverse_ang(uint8_t x)
{
int y = (180 - x);
return (uint8_t)y;
}
float pos_to_deg(uint8_t x)
{
float y = ((float)x/(255.0/180.0));
return y;
}
int inv_kinematic(float *pos,uint8_t *retbuffer)
{
float x = pos[0];
float y = pos[1];
float z = pos[2];
float p = rad(pos[3]);
float r = rad(pos[4]);
float c = pos[5];
//std::cout<<"x: "<<x<<std::endl;
//std::cout<<"y: "<<y<<std::endl;
//std::cout<<"z: "<<z<<std::endl;
//std::cout<<"p: "<<p<<std::endl;
//std::cout<<"r: "<<r<<std::endl;
//std::cout<<"c: "<<c<<std::endl;
float phi1=0;
float phi2=0;
float phi3=0;
float phi4=0;
float L5 = ((20.4)*sin(((255.0*c)/3.269))+(80.0));
//std::cout<<"L5: "<<L5<<std::endl;
phi1 = atan2(y,x);
//std::cout<<"phi1: "<<phi1<<std::endl;
if (abs(phi1) > M_PI/2) return 0; // Out of range
float x1 = L1*cos(phi1);
//std::cout<<"x1: "<<x1<<std::endl;
float y1 = L1*sin(phi1);
//std::cout<<"y1: "<<y1<<std::endl;
float L45 = L4 + L5;
//std::cout<<"L45: "<<L45<<std::endl;
float xy3 = L45*cos(p);
//std::cout<<"xy3: "<<xy3<<std::endl;
float x3 = x - xy3*cos(phi1);
//std::cout<<"x3: "<<x3<<std::endl;
float y3 = y - xy3*sin(phi1);
//std::cout<<"y3: "<<y3<<std::endl;
float z3 = z - L45*sin(p);
//std::cout<<"z3: "<<z3<<std::endl;
float L23 = sqrt((x3-x1)*(x3-x1) + (y3-y1)*(y3-y1) + (z3-0)*(z3-0));
//std::cout<<"L23: "<<L23<<std::endl;
float xy = sqrt(x*x + y*y);
//std::cout<<"xy: "<<xy<<std::endl;
float xy1= xy-L1- cos(p)*L45;
//std::cout<<"xy1: "<<xy1<<std::endl;
float z1 = z-sin(p)*L45;
//std::cout<<"z1: "<<z1<<std::endl;
//float L13 = sqrt(z1*z1+xy1*xy1);
//std::cout<<"L13: "<<L13<<std::endl;
phi2 = acos((L2*L2 + L23*L23 - L3*L3)/(2*L2*L23))+atan2(z1,xy1);
//if (phi2 > Servos_Max_rad[1] || phi2 < Servos_Min_rad[1] ) return 0; // Out of range
//std::cout<<"phi2: "<<phi2<<std::endl;
phi3 = acos((L2*L2 + L3*L3 - L23*L23)/(2*L2*L3));
//if (phi3 > Servos_Max_rad[2] || phi3 < Servos_Min_rad[2] ) return 0; // Out of range
//std::cout<<"phi3: "<<phi3<<std::endl;
phi4 = p-(phi2+phi3)+M_PI;
//if (phi4 > Servos_Max_rad[3] || phi4 < Servos_Min_rad[3] ) return 0; // Out of range
//std::cout<<"phi4: "<<phi4<<std::endl;
retbuffer[0] = deg(phi1+M_PI/2.0);
retbuffer[1] = deg(phi2);
retbuffer[2] = deg(phi3);
retbuffer[3] = reverse_ang(deg(phi4+M_PI/2.0));
retbuffer[4] = 90;
retbuffer[5] = (uint8_t)(70.0*c + 90.0);
return 1;
}
int read_servos(int types, int module, uint8_t *servo_buf)
{
int ret = -1;
return ret;
}
uint8_t rec_message(int ser, uint8_t *input_buffer) // Returns 0x01 if recived packet, 0x02 on error or timeout
{
return 0;
}
int write_pololu_command(uint8_t command, uint8_t num, uint8_t value)
{
int ser = openport();
uint8_t cmd[6] = {0x80, 0x01, 0x00, 0x00, 0x00, 0x00};
cmd[2] = command & 0x3F;
cmd[3] = num & 0x3F;
switch(command)
{
case 0: //Set Parameters (1 data byte)
case 1: //Set Speed (1 Data 1 - 127)
{
cmd[4] = (uint8_t)(value & 0x7F);
SendBuf(ser, cmd, 5);
break;
}
case 2: //Set Position (1 Data )
{
uint16_t angle = (uint16_t)(5000.0*(float)value/180.0)+500;
cmd[4] = (uint8_t)(angle & 0x7F);
}
case 3: //Set Position (2 Data)
case 4: //Set Pos Absolute (2 Data)
case 5: //Set Neutral (2 Data)
{
//Valid range is 500-5500
uint16_t angle = (uint16_t)(5000.0*(float)value/180.0)+500;
cmd[5] = (uint8_t)(angle & 0x7F);
cmd[4] = (uint8_t)(((angle & 0x1F80))>>7);
//printf("Angle:%d, Buff: %x %x %x %x %x %x\n",angle, cmd[0], cmd[1], cmd[2], cmd[3], cmd[4], cmd[5]);
SendBuf(ser, cmd, 6);
break;
}
}
CloseComport(ser);
return 0;
}
int write_angles(uint8_t *old_angles,uint8_t *new_angles)
{
for(int i=0;i<6;i++)
{
write_pololu_command(4, i+1, new_angles[i]); //if(old_angles[i]!=new_angles[i])
old_angles[i]=new_angles[i];
}
return 0;
}
int print_pos(float *pos)
{
printf("X: %f\nY: %f\nZ: %f\nPitch: %f\nRoll: %f\nClaw: %f\n",pos[0],pos[1],pos[2],pos[3],pos[4],pos[5]);
return 0;
}
int print_angles(uint8_t *angles)
{
printf("Phi1: %d\nPhi2: %d\nPhi3: %d\nPhi4: %d\nRot: %d\nClaw: %d\n",angles[0],angles[1],angles[2],angles[3],angles[4],angles[5]);
return 0;
}
int copy_pos_array(float *pos1, float *pos2)
{
for(int i=0;i<6;i++)pos2[i]=pos1[i];
return 0;
}
int copy_angle_array(uint8_t *ang1, uint8_t *ang2)
{
for(int i=0;i<6;i++)ang2[i]=ang1[i];
return 0;
}
int main()
{
std::cout<<"Robot Arm Controller"<<std::endl;
int ser;
ser = openport();
CloseComport(ser);
uint8_t buff[255];
uint8_t test_ang = 0;
uint8_t test_ang2 = 0;
float current_position[6] = {220.0,0.0,100.0,-30.0,45.0,1.0};
float next_position[6] = {220.0,0.0,100.0,-30.0,45.0,1.0};
uint8_t current_angles[6] = {90,90,90,90,90,90};
uint8_t next_angles[6];
inv_kinematic(next_position,next_angles);
//print_angles(next_angles);
int r;
// Sholder Rotate
write_pololu_command(0, 1, 0b00001111);
write_pololu_command(1, 1, 30);
write_pololu_command(0, 1, 0b00001111);
// Sholder Lift
write_pololu_command(0, 2, 0b00001111);
write_pololu_command(1, 2, 30);
write_pololu_command(0, 2, 0b00001111);
// Elbow Lift
write_pololu_command(0, 3, 0b00001111);
write_pololu_command(1, 3, 30);
write_pololu_command(0, 3, 0b00001111);
// Wrist Lift
write_pololu_command(0, 4, 0b00001111);
write_pololu_command(1, 4, 30);
write_pololu_command(0, 4, 0b00001111);
// Wrist Rotate
write_pololu_command(0, 5, 0b00001111);
write_pololu_command(1, 5, 10);
write_pololu_command(0, 5, 0b00001111);
//Claw
write_pololu_command(0, 6, 0b00101111);
write_pololu_command(1, 6, 30);
write_pololu_command(0, 6, 0b00101111);
write_angles(current_angles,next_angles);
/* while(1)
{
write_pololu_command(4, 7,0);
printf("Test angle: %d\n",0);
usleep(3000000);
write_pololu_command(4, 7,45);
printf("Test angle: %d\n",45);
usleep(3000000);
write_pololu_command(4, 7,90);
printf("Test angle: %d\n",90);
usleep(3000000);
write_pololu_command(4, 7,135);
printf("Test angle: %d\n",135);
usleep(3000000);
write_pololu_command(4, 7,180);
printf("Test angle: %d\n",180);
usleep(5000000);
}
*/
uint8_t Pin_type[NO_PWM]; // 0=servo, 1=analog
uint8_t Servos_Pin[NO_PWM];
uint8_t Servos_Speed[NO_PWM];
uint8_t Servos_Angle[NO_PWM];
uint8_t Servos_Max[NO_PWM];
uint8_t Servos_Min[NO_PWM];
uint8_t Servos_Idle[NO_PWM];
uint8_t Servos_Rev[NO_PWM]; // 0-standard, 1-reversed
struct motion_dev *devs = NULL;
int next_devindex = 0;
int csk = l2cap_listen(L2CAP_PSM_HIDP_CTRL);
int isk = l2cap_listen(L2CAP_PSM_HIDP_INTR);
if (csk >= 0 && isk >= 0)
fprintf(stderr, "Waiting for Bluetooth connection.\n");
else
fprintf(stderr, "Unable to listen on HID PSMs."
" Are you root bro?\n");
_sixmotion_hidraw raw_sixm;
_sixmotion sixm;
float ys1=1.0f;
float ys2=-1.0f;
float y1 = 0.0;
float y2 = 0.0;
float h1 = 0.0;
float h2 = 0.0;
float h = 0.015;
while (1) {
fd_set fds;
FD_ZERO(&fds);
//if (!nostdin) FD_SET(0, &fds);
FD_SET(0, &fds);
int fdmax = 0;
if (csk >= 0) FD_SET(csk, &fds);
if (isk >= 0) FD_SET(isk, &fds);
if (csk > fdmax) fdmax = csk;
if (isk > fdmax) fdmax = isk;
for (struct motion_dev *dev = devs; dev; dev = dev->next) {
FD_SET(dev->csk, &fds);
if (dev->csk > fdmax) fdmax = dev->csk;
FD_SET(dev->isk, &fds);
if (dev->isk > fdmax) fdmax = dev->isk;
}
if (select(fdmax + 1, &fds, NULL, NULL, NULL) < 0) fatal("select");
struct timeval tv;
gettimeofday(&tv, NULL);
time_t now = tv.tv_sec;
// Incoming connection ?
if (csk >= 0 && FD_ISSET(csk, &fds)) {//CONNECTS DEVICE
struct motion_dev *dev = accept_device(csk, isk);
dev->index = next_devindex++;
dev->next = devs;
devs = dev;
setup_device(dev);
}
for (struct motion_dev *dev = devs; dev; dev = dev->next)
if (FD_ISSET(dev->isk, &fds)) {
int nr = 1;
while (nr > 0) {
unsigned char report[256];
nr = recv(dev->isk, report, sizeof (report), MSG_DONTWAIT);
//THIS IS THE REPORT
if (report[0] == 0xa1) {
if (nr == 50) {
memcpy(&raw_sixm, report, nr);
//dump("RECV", report, nr);
parse_raw(raw_sixm, sixm);
}
} else {
printf("REPORT\n");
}
}
}
if (devs != NULL) {
uint8_t arm_y_inc = (raw_sixm.L3_x);
uint8_t arm_x_inc = (raw_sixm.L3_y);
uint8_t arm_z_inc = (raw_sixm.R3_y);
if (raw_sixm.BTN_R1_VALUE)
{
arm_roll = (uint8_t)(((float)(sixm.aX/4)-128.0)*2.25+90.0);
arm_pitch = (uint8_t)(((float)(sixm.aY/4)-128.0)*0.75+90.0);
}
uint8_t arm_claw = (uint8_t)raw_sixm.BTN_R2_VALUE;
uint8_t arm_home = (uint8_t)raw_sixm.BTN_X;
//printf("x: %d\t\ty: %d\t\tz: %d\t\n",arm_x_inc,arm_y_inc,arm_z_inc);
//printf("Roll: %d\tPitch: %d\n",arm_roll,arm_pitch-90);
//printf("Claw: %d\tHome: %d\n",arm_claw, arm_home);
if(arm_claw>0)arm_claw=1;
next_position[0] += (float)(arm_x_inc-128)*-0.039;
next_position[1] += (float)(arm_y_inc-128)*0.039;
next_position[2] += (float)(arm_z_inc-128)*-0.039;
next_position[3] = (float)(arm_pitch-90);
next_position[4] = (float)arm_roll;
next_position[5] = (float)arm_claw;
//print_pos(next_position);
inv_kinematic(next_position,next_angles);
write_angles(current_angles,next_angles);
//print_angles(next_angles);
if(arm_home)
{
current_position[0] = 220.0;
current_position[1] = 0.0;
current_position[2] = 100.0;
current_position[3] = -30.0;
current_position[4] = 0.0;
current_position[5] = 0.0;
next_position[0] = 220.0;
next_position[1] = 0.0;
next_position[2] = 100.0;
next_position[3] = -30.0;
next_position[4] = 0.0;
next_position[5] = 0.0;
}
}
}
CloseComport(ser);
return EXIT_SUCCESS;
}
| [
"alexdtennant@gmail.com"
] | alexdtennant@gmail.com |
1a3fdbcb98db44b1f5d96e5dd63ce6092e18f5f2 | 68fecb79519cb016028d2b70cdf9416ad19f4c1a | /bluetoothModuleTest/test1/test1.ino | 387a09a959f4d22ee80c42a1f9bf0d6a9d551a41 | [] | no_license | thomasf10/bachelorproef_billy | 02c7794294781ad5ea5ebec8b030b05959c3e1fd | 13610cc594474d08ab2c839aa46f48e6c98a48e0 | refs/heads/master | 2020-04-23T07:17:16.971899 | 2019-05-08T15:30:58 | 2019-05-08T15:30:58 | 171,002,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,334 | ino | // modulenaam: MLT-BT05
// wachtwoord om te verbinden: 123456789
// ik denk RX nog naar 3.3V brengen,
// VCC --> 5V
// GND --> GND
// bRX --> 3
// bTX --> 2
#define softserial
const int LED = 13;
const int LED_ext = A0;
#ifdef softserial
#include <SoftwareSerial.h>
const int BTRX = 2; // 2
const int BTTX = 3; // 3
SoftwareSerial SerialBT(BTRX, BTTX);
#else
HardwareSerial SerialBT = Serial1;
#endif
// het bericht verzenden:
String msg;
void setup() {
SerialBT.begin(9600);
SerialBT.println("Bluetooth-Verbinding is beschikbaar");
pinMode(LED, OUTPUT);
}
void loop() {
if (SerialBT.available()){ // Gegevens zijn beschikbaar
msg = SerialBT.readString(); // Bericht lezen
if (msg == "aan") {
digitalWrite(LED, HIGH);
digitalWrite(LED_ext, HIGH);
SerialBT.print("LED op Pin ");
SerialBT.print(LED);
SerialBT.println(" is aan");
}
else
if (msg == "uit") {
digitalWrite(LED, LOW);
digitalWrite(LED_ext, LOW);
SerialBT.print("LED op Pin ");
SerialBT.print(LED);
SerialBT.println(" is aan");
}
else {
SerialBT.print("Commando <");
SerialBT.print(msg);
SerialBT.println("> niet gekend");
}
}
}
| [
"daan.delabie@gmail.com"
] | daan.delabie@gmail.com |
b5b0b6a0e664da34a731b950b7674c2d1efc8ca5 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/chromium/chrome/browser/extensions/extension_webstore_private_api.h | 4bbe2bcd889f52fed619ee0a45c9f6995b673f74 | [
"BSD-3-Clause",
"MIT"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 5,771 | h | // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBSTORE_PRIVATE_API_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBSTORE_PRIVATE_API_H_
#pragma once
#include <string>
#include "chrome/browser/browser_signin.h"
#include "chrome/browser/extensions/extension_function.h"
#include "chrome/browser/extensions/extension_install_ui.h"
#include "chrome/common/net/gaia/google_service_auth_error.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
class ProfileSyncService;
class WebstorePrivateApi {
public:
// Allows you to set the ProfileSyncService the function will use for
// testing purposes.
static void SetTestingProfileSyncService(ProfileSyncService* service);
// Allows you to set the BrowserSignin the function will use for
// testing purposes.
static void SetTestingBrowserSignin(BrowserSignin* signin);
};
// TODO(asargent): this is being deprecated in favor of
// BeginInstallWithManifestFunction. See crbug.com/75821 for details.
class BeginInstallFunction : public SyncExtensionFunction {
public:
// For use only in tests - sets a flag that can cause this function to ignore
// the normal requirement that it is called during a user gesture.
static void SetIgnoreUserGestureForTests(bool ignore);
protected:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.beginInstall");
};
class BeginInstallWithManifestFunction : public AsyncExtensionFunction,
public ExtensionInstallUI::Delegate {
public:
BeginInstallWithManifestFunction();
// Result codes for the return value. If you change this, make sure to
// update the description for the beginInstallWithManifest callback in
// extension_api.json.
enum ResultCode {
ERROR_NONE = 0,
// An unspecified error occurred.
UNKNOWN_ERROR,
// The user cancelled the confirmation dialog instead of accepting it.
USER_CANCELLED,
// The manifest failed to parse correctly.
MANIFEST_ERROR,
// There was a problem parsing the base64 encoded icon data.
ICON_ERROR,
// The extension id was invalid.
INVALID_ID,
// The page does not have permission to call this function.
PERMISSION_DENIED,
// The function was not called during a user gesture.
NO_GESTURE,
};
// For use only in tests - sets a flag that can cause this function to ignore
// the normal requirement that it is called during a user gesture.
static void SetIgnoreUserGestureForTests(bool ignore);
// Called when we've successfully parsed the manifest and icon data in the
// utility process. Ownership of parsed_manifest is transferred.
void OnParseSuccess(const SkBitmap& icon, DictionaryValue* parsed_manifest);
// Called to indicate a parse failure. The |result_code| parameter should
// indicate whether the problem was with the manifest or icon data.
void OnParseFailure(ResultCode result_code, const std::string& error_message);
// Implementing ExtensionInstallUI::Delegate interface.
virtual void InstallUIProceed() OVERRIDE;
virtual void InstallUIAbort() OVERRIDE;
protected:
virtual ~BeginInstallWithManifestFunction();
virtual bool RunImpl();
// Sets the result_ as a string based on |code|.
void SetResult(ResultCode code);
private:
// These store the input parameters to the function.
std::string id_;
std::string manifest_;
std::string icon_data_;
// The results of parsing manifest_ and icon_data_ go into these two.
scoped_ptr<DictionaryValue> parsed_manifest_;
SkBitmap icon_;
// A dummy Extension object we create for the purposes of using
// ExtensionInstallUI to prompt for confirmation of the install.
scoped_refptr<Extension> dummy_extension_;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.beginInstallWithManifest");
};
class CompleteInstallFunction : public SyncExtensionFunction {
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.completeInstall");
};
class GetBrowserLoginFunction : public SyncExtensionFunction {
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.getBrowserLogin");
};
class GetStoreLoginFunction : public SyncExtensionFunction {
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.getStoreLogin");
};
class SetStoreLoginFunction : public SyncExtensionFunction {
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.setStoreLogin");
};
class PromptBrowserLoginFunction : public AsyncExtensionFunction,
public NotificationObserver,
public BrowserSignin::SigninDelegate {
public:
PromptBrowserLoginFunction();
// Implements BrowserSignin::SigninDelegate interface.
virtual void OnLoginSuccess();
virtual void OnLoginFailure(const GoogleServiceAuthError& error);
// Implements the NotificationObserver interface.
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
protected:
virtual ~PromptBrowserLoginFunction();
virtual bool RunImpl();
private:
// Creates the message for signing in.
virtual string16 GetLoginMessage();
// Are we waiting for a token available notification?
bool waiting_for_token_;
// Used for listening for TokenService notifications.
NotificationRegistrar registrar_;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.promptBrowserLogin");
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBSTORE_PRIVATE_API_H_
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
483b6d914bbd6964473e922b44d166a0ca197c70 | d847361eecef7a4d4da96059f27e49a6f0a48978 | /src/systray.cpp | 4c7fbfaa5b57766e38ce5e0a4f0769889707a6bd | [
"BSD-2-Clause"
] | permissive | dascandy/kitchensink | 05898e76d32ffbe15c30d4745e23682f075828e2 | 74ee9db4af03c08dc71759d3e3f2110e185921b8 | refs/heads/master | 2021-08-30T06:23:43.010856 | 2017-12-16T13:07:56 | 2017-12-16T13:07:56 | 114,460,996 | 0 | 0 | null | 2017-12-16T12:58:30 | 2017-12-16T12:58:29 | null | UTF-8 | C++ | false | false | 7,155 | cpp | /**********************************************************************
*
* Copyright (c) 2012-2017 Barbara Geller
* Copyright (C) 2015 The Qt Company Ltd.
*
* You may use this file under the terms of the 2-Clause BSD license
* provided with KitchenSink or available at:
*
* https://opensource.org/licenses/BSD-2-Clause
*
***********************************************************************/
#include "systray.h"
#include <QCloseEvent>
#include <QHBoxLayout>
#include <QMessageBox>
#include <QVBoxLayout>
const static QString sysPath = ":/resources/";
SysTray::SysTray()
{
setWindowTitle(tr("System Tray"));
createIconGroupBox();
createMessageGroupBox();
createActions();
createTrayIcon();
m_quitNow = false;
iconLabel->setMinimumWidth(durationLabel->sizeHint().width());
connect(showMessageButton, &QAbstractButton::clicked, this, &SysTray::showMessage);
connect(showIconCheckBox, &QAbstractButton::toggled, trayIcon, &QSystemTrayIcon::setVisible);
// static_cast is required since this signal is overloaded
connect(iconComboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
this, &SysTray::setIcon);
connect(trayIcon, &QSystemTrayIcon::messageClicked, this, &SysTray::messageClicked);
connect(trayIcon, &QSystemTrayIcon::activated, this, &SysTray::iconActivated);
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addWidget(iconGroupBox);
mainLayout->addWidget(messageGroupBox);
setLayout(mainLayout);
iconComboBox->setCurrentIndex(1);
trayIcon->show();
}
void SysTray::createIconGroupBox()
{
iconGroupBox = new QGroupBox(tr("Tray Icon"));
iconLabel = new QLabel("Icon:");
iconComboBox = new QComboBox;
iconComboBox->addItem(QIcon(sysPath + "bad.png"), tr("Bad"));
iconComboBox->addItem(QIcon(sysPath + "heart.png"), tr("Heart"));
iconComboBox->addItem(QIcon(sysPath + "trash.png"), tr("Trash"));
showIconCheckBox = new QCheckBox(tr("Show icon"));
showIconCheckBox->setChecked(true);
QHBoxLayout *iconLayout = new QHBoxLayout;
iconLayout->addWidget(iconLabel);
iconLayout->addWidget(iconComboBox);
iconLayout->addStretch();
iconLayout->addWidget(showIconCheckBox);
iconGroupBox->setLayout(iconLayout);
}
void SysTray::createMessageGroupBox()
{
messageGroupBox = new QGroupBox(tr("Balloon Message"));
typeLabel = new QLabel(tr("Type:"));
typeComboBox = new QComboBox;
typeComboBox->addItem(tr("None"), QSystemTrayIcon::NoIcon);
typeComboBox->addItem(style()->standardIcon(
QStyle::SP_MessageBoxInformation), tr("Information"),QSystemTrayIcon::Information);
typeComboBox->addItem(style()->standardIcon(
QStyle::SP_MessageBoxWarning), tr("Warning"), QSystemTrayIcon::Warning);
typeComboBox->addItem(style()->standardIcon(
QStyle::SP_MessageBoxCritical), tr("Critical"), QSystemTrayIcon::Critical);
typeComboBox->setCurrentIndex(1);
durationLabel = new QLabel(tr("Duration:"));
durationSpinBox = new QSpinBox;
durationSpinBox->setRange(5, 60);
durationSpinBox->setSuffix(" s");
durationSpinBox->setValue(15);
durationWarningLabel = new QLabel(tr("(Some systems might ignore this hint.)"));
durationWarningLabel->setIndent(10);
titleLabel = new QLabel(tr("Title:"));
titleEdit = new QLineEdit(tr("Can not connect to a network."));
bodyLabel = new QLabel(tr("Body:"));
bodyEdit = new QTextEdit;
bodyEdit->setPlainText(tr("We have no idea how to provide support.\nClick the balloon for details."));
showMessageButton = new QPushButton(tr("Show Message"));
showMessageButton->setDefault(true);
QGridLayout *messageLayout = new QGridLayout;
messageLayout->addWidget(typeLabel, 0, 0);
messageLayout->addWidget(typeComboBox, 0, 1, 1, 2);
messageLayout->addWidget(durationLabel, 1, 0);
messageLayout->addWidget(durationSpinBox, 1, 1);
messageLayout->addWidget(durationWarningLabel, 1, 2, 1, 3);
messageLayout->addWidget(titleLabel, 2, 0);
messageLayout->addWidget(titleEdit, 2, 1, 1, 4);
messageLayout->addWidget(bodyLabel, 3, 0);
messageLayout->addWidget(bodyEdit, 3, 1, 2, 4);
messageLayout->addWidget(showMessageButton, 5, 0, 1, 5, Qt::AlignHCenter);
messageLayout->setColumnStretch(3, 1);
messageLayout->setRowStretch(4, 1);
messageGroupBox->setLayout(messageLayout);
}
void SysTray::createTrayIcon()
{
trayIconMenu = new QMenu(this);
trayIconMenu->addAction(minimizeAction);
trayIconMenu->addAction(maximizeAction);
trayIconMenu->addAction(restoreAction);
trayIconMenu->addSeparator();
trayIconMenu->addAction(quitAction);
trayIcon = new QSystemTrayIcon(this);
trayIcon->setContextMenu(trayIconMenu);
}
void SysTray::createActions()
{
minimizeAction = new QAction(tr("Mi&nimize"), this);
connect(minimizeAction, SIGNAL(triggered()), this, SLOT(hide()));
maximizeAction = new QAction(tr("Ma&ximize"), this);
connect(maximizeAction, SIGNAL(triggered()), this, SLOT(showMaximized()));
restoreAction = new QAction(tr("&Restore"), this);
connect(restoreAction, SIGNAL(triggered()), this, SLOT(showNormal()));
quitAction = new QAction(tr("&Quit"), this);
connect(quitAction, SIGNAL(triggered()), this, SLOT(actionQuit()));
}
//
void SysTray::setVisible(bool visible)
{
minimizeAction->setEnabled(visible);
maximizeAction->setEnabled(!isMaximized());
restoreAction->setEnabled(isMaximized() || ! visible);
QDialog::setVisible(visible);
}
void SysTray::setIcon(int index)
{
QIcon icon = iconComboBox->itemIcon(index);
trayIcon->setIcon(icon);
setWindowIcon(icon);
trayIcon->setToolTip(iconComboBox->itemText(index));
}
void SysTray::iconActivated(QSystemTrayIcon::ActivationReason reason)
{
switch (reason) {
case QSystemTrayIcon::Trigger:
case QSystemTrayIcon::DoubleClick:
iconComboBox->setCurrentIndex((iconComboBox->currentIndex() + 1)
% iconComboBox->count());
break;
case QSystemTrayIcon::MiddleClick:
showMessage();
break;
default:
break;
}
}
void SysTray::showMessage()
{
QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::MessageIcon(
typeComboBox->itemData(typeComboBox->currentIndex()).toInt());
trayIcon->showMessage(titleEdit->text(), bodyEdit->toPlainText(), icon,
durationSpinBox->value() * 1000);
}
void SysTray::messageClicked()
{
QMessageBox::information(0, tr("Systray"),
tr("We already provided the best known support.\nMaybe you can ask another user."));
}
void SysTray::closeEvent(QCloseEvent *event)
{
if (! m_quitNow) {
QMessageBox::information(this, tr("System Tray"),
tr("The System Tray sample will continue to run. To terminate choose "
"<b>Quit</b> in the context menu of the system tray."));
this->parentWidget()->hide();
event->ignore();
}
}
void SysTray::actionQuit() {
// called from the sys tray menu
m_quitNow = true;
this->parentWidget()->close();
}
| [
"barbara@copperspice.com"
] | barbara@copperspice.com |
8f028f269e22a40bf350ab29a65ab20cf27a1aeb | 24f26275ffcd9324998d7570ea9fda82578eeb9e | /ui/display/manager/display_util.cc | 57ce08540fab598c04d5f519d9d9b6bd5c67a607 | [
"BSD-3-Clause"
] | permissive | Vizionnation/chromenohistory | 70a51193c8538d7b995000a1b2a654e70603040f | 146feeb85985a6835f4b8826ad67be9195455402 | refs/heads/master | 2022-12-15T07:02:54.461083 | 2019-10-25T15:07:06 | 2019-10-25T15:07:06 | 217,557,501 | 2 | 1 | BSD-3-Clause | 2022-11-19T06:53:07 | 2019-10-25T14:58:54 | null | UTF-8 | C++ | false | false | 9,630 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/display/manager/display_util.h"
#include <stddef.h>
#include <algorithm>
#include <array>
#include <cmath>
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "ui/display/manager/managed_display_info.h"
#include "ui/display/types/display_snapshot.h"
namespace display {
namespace {
// The total number of display zoom factors to enumerate.
constexpr int kNumOfZoomFactors = 9;
// A pair representing the list of zoom values for a given minimum display
// resolution width.
using ZoomListBucket = std::pair<int, std::array<float, kNumOfZoomFactors>>;
// A pair representing the list of zoom values for a given minimum default dsf.
using ZoomListBucketDsf =
std::pair<float, std::array<float, kNumOfZoomFactors>>;
// For displays with a device scale factor of unity, we use a static list of
// initialized zoom values. For a given resolution width of a display, we can
// find its associated list of zoom values by simply finding the last bucket
// with a width less than the given resolution width.
// Ex. A resolution width of 1024, we will use the bucket with the width of 960.
constexpr std::array<ZoomListBucket, 8> kZoomListBuckets{{
{0, {0.60f, 0.65f, 0.70f, 0.75f, 0.80f, 0.85f, 0.90f, 0.95f, 1.f}},
{720, {0.70f, 0.75f, 0.80f, 0.85f, 0.90f, 0.95f, 1.f, 1.05f, 1.10f}},
{800, {0.75f, 0.80f, 0.85f, 0.90f, 0.95f, 1.f, 1.05f, 1.10f, 1.15f}},
{960, {0.90f, 0.95f, 1.f, 1.05f, 1.10f, 1.15f, 1.20f, 1.25f, 1.30f}},
{1280, {0.90f, 1.f, 1.05f, 1.10f, 1.15f, 1.20f, 1.25f, 1.30f, 1.50f}},
{1920, {1.f, 1.10f, 1.15f, 1.20f, 1.30f, 1.40f, 1.50f, 1.75f, 2.00f}},
{3840, {1.f, 1.10f, 1.20f, 1.40f, 1.60f, 1.80f, 2.00f, 2.20f, 2.40f}},
{5120, {1.f, 1.25f, 1.50f, 1.75f, 2.00f, 2.25f, 2.50f, 2.75f, 3.00f}},
}};
// Displays with a default device scale factor have a static list of initialized
// zoom values that includes a zoom level to go to the native resolution of the
// display. Ensure that the list of DSFs are in sync with the list of default
// device scale factors in display_change_observer.cc.
constexpr std::array<ZoomListBucketDsf, 6> kZoomListBucketsForDsf{{
{1.25f, {0.7f, 1.f / 1.25f, 0.85f, 0.9f, 0.95f, 1.f, 1.1f, 1.2f, 1.3f}},
{1.6f, {1.f / 1.6f, 0.7f, 0.75f, 0.8f, 0.85f, 0.9f, 1.f, 1.15f, 1.3f}},
{1.77777f,
{1.f / 1.77777f, 0.65f, 0.75f, 0.8f, 0.9f, 1.f, 1.1f, 1.2f, 1.3f}},
{2.f, {1.f / 2.f, 0.6f, 0.7f, 0.8f, 0.9f, 1.f, 1.1f, 1.25f, 1.5f}},
{2.25f, {1.f / 2.25f, 0.6f, 0.7f, 0.8f, 0.9f, 1.f, 1.15f, 1.3f, 1.5f}},
{2.66666f,
{1.f / 2.66666f, 0.5f, 0.6f, 0.8f, 0.9f, 1.f, 1.2f, 1.35f, 1.5f}},
}};
bool WithinEpsilon(float a, float b) {
return std::abs(a - b) < std::numeric_limits<float>::epsilon();
}
} // namespace
#if defined(OS_CHROMEOS)
std::string DisplayPowerStateToString(chromeos::DisplayPowerState state) {
switch (state) {
case chromeos::DISPLAY_POWER_ALL_ON:
return "ALL_ON";
case chromeos::DISPLAY_POWER_ALL_OFF:
return "ALL_OFF";
case chromeos::DISPLAY_POWER_INTERNAL_OFF_EXTERNAL_ON:
return "INTERNAL_OFF_EXTERNAL_ON";
case chromeos::DISPLAY_POWER_INTERNAL_ON_EXTERNAL_OFF:
return "INTERNAL_ON_EXTERNAL_OFF";
default:
return "unknown (" + base::NumberToString(state) + ")";
}
}
int GetDisplayPower(const std::vector<DisplaySnapshot*>& displays,
chromeos::DisplayPowerState state,
std::vector<bool>* display_power) {
int num_on_displays = 0;
if (display_power)
display_power->resize(displays.size());
for (size_t i = 0; i < displays.size(); ++i) {
bool internal = displays[i]->type() == DISPLAY_CONNECTION_TYPE_INTERNAL;
bool on =
state == chromeos::DISPLAY_POWER_ALL_ON ||
(state == chromeos::DISPLAY_POWER_INTERNAL_OFF_EXTERNAL_ON &&
!internal) ||
(state == chromeos::DISPLAY_POWER_INTERNAL_ON_EXTERNAL_OFF && internal);
if (display_power)
(*display_power)[i] = on;
if (on)
num_on_displays++;
}
return num_on_displays;
}
#endif // defined(OS_CHROMEOS)
std::string MultipleDisplayStateToString(MultipleDisplayState state) {
switch (state) {
case MULTIPLE_DISPLAY_STATE_INVALID:
return "INVALID";
case MULTIPLE_DISPLAY_STATE_HEADLESS:
return "HEADLESS";
case MULTIPLE_DISPLAY_STATE_SINGLE:
return "SINGLE";
case MULTIPLE_DISPLAY_STATE_MULTI_MIRROR:
return "DUAL_MIRROR";
case MULTIPLE_DISPLAY_STATE_MULTI_EXTENDED:
return "MULTI_EXTENDED";
}
NOTREACHED() << "Unknown state " << state;
return "INVALID";
}
bool GetContentProtectionMethods(DisplayConnectionType type,
uint32_t* protection_mask) {
switch (type) {
case DISPLAY_CONNECTION_TYPE_NONE:
case DISPLAY_CONNECTION_TYPE_UNKNOWN:
return false;
case DISPLAY_CONNECTION_TYPE_INTERNAL:
case DISPLAY_CONNECTION_TYPE_VGA:
case DISPLAY_CONNECTION_TYPE_NETWORK:
*protection_mask = CONTENT_PROTECTION_METHOD_NONE;
return true;
case DISPLAY_CONNECTION_TYPE_DISPLAYPORT:
case DISPLAY_CONNECTION_TYPE_DVI:
case DISPLAY_CONNECTION_TYPE_HDMI:
*protection_mask = CONTENT_PROTECTION_METHOD_HDCP;
return true;
}
}
std::vector<float> GetDisplayZoomFactors(const ManagedDisplayMode& mode) {
// Internal displays have an internal device scale factor greater than 1
// associated with them. This means that if we use the usual logic, we would
// end up with a list of zoom levels that the user may not find very useful.
// Take for example the pixelbook with device scale factor of 2. Based on the
// usual approach, we would get a zoom range of 90% to 150%. This means:
// 1. Users will not be able to go to the native resolution which is
// achieved at 50% zoom level.
// 2. Due to the device scale factor, the display already has a low DPI and
// users dont want to zoom in, they mostly want to zoom out and add more
// pixels to the screen. But we only provide a zoom list of 90% to 150%.
// This clearly shows we need a different logic to handle internal displays
// which have lower DPI due to the device scale factor associated with them.
//
// OTOH if we look at an external display with a device scale factor of 1 but
// the same resolution as the pixel book, the DPI would usually be very high
// and users mostly want to zoom in to reduce the number of pixels on the
// screen. So having a range of 90% to 130% makes sense.
// TODO(malaykeshav): Investigate if we can use DPI instead of resolution or
// device scale factor to decide the list of zoom levels.
if (mode.device_scale_factor() > 1.f)
return GetDisplayZoomFactorForDsf(mode.device_scale_factor());
// There may be cases where the device scale factor is less than 1. This can
// happen during testing or local linux builds.
const int effective_width = std::round(
static_cast<float>(std::max(mode.size().width(), mode.size().height())) /
mode.device_scale_factor());
std::size_t index = kZoomListBuckets.size() - 1;
while (index > 0 && effective_width < kZoomListBuckets[index].first)
index--;
DCHECK_GE(effective_width, kZoomListBuckets[index].first);
const auto& zoom_array = kZoomListBuckets[index].second;
return std::vector<float>(zoom_array.begin(), zoom_array.end());
}
std::vector<float> GetDisplayZoomFactorForDsf(float dsf) {
DCHECK(!WithinEpsilon(dsf, 1.f));
DCHECK_GT(dsf, 1.f);
for (const auto& bucket : kZoomListBucketsForDsf) {
if (WithinEpsilon(bucket.first, dsf))
return std::vector<float>(bucket.second.begin(), bucket.second.end());
}
NOTREACHED() << "Received a DSF not on the list: " << dsf;
return {1.f / dsf, 1.f};
}
void InsertDsfIntoList(std::vector<float>* zoom_values, float dsf) {
// 1.0 is already in the list of |zoom_values|. We do not need to add it.
if (WithinEpsilon(dsf, 1.f))
return;
if (dsf > 1.f && WithinEpsilon(*(zoom_values->rbegin()), 1.f)) {
// If the last element of the vector is 1 then |dsf|, which is greater than
// 1, will simply be inserted after that.
zoom_values->push_back(dsf);
zoom_values->erase(zoom_values->begin());
return;
} else if (dsf < 1.f && WithinEpsilon(*(zoom_values->begin()), 1.f)) {
// If the first element in the list is 1 then |dsf|, which is less than 1,
// will simply be inseted before that.
zoom_values->insert(zoom_values->begin(), dsf);
zoom_values->pop_back();
return;
}
// We dont need to add |dsf| to the list if it is already in the list.
auto it = std::lower_bound(zoom_values->begin(), zoom_values->end(), dsf);
if (it != zoom_values->end() && WithinEpsilon(*it, dsf))
return;
if (it == zoom_values->begin()) {
DCHECK_LT(dsf, 1.f);
*(zoom_values->begin()) = dsf;
} else if (it == zoom_values->end()) {
DCHECK_GT(dsf, 1.f);
*(zoom_values->rbegin()) = dsf;
} else {
// There can only be 1 entry for 1.f value.
DCHECK(!(WithinEpsilon(*(it - 1), 1.f) && WithinEpsilon(*it, 1.f)));
// True if |dsf| is closer to |it| than it is to |it-1|.
const bool dsf_closer_to_it =
std::abs(*it - dsf) < std::abs(*(it - 1) - dsf);
if (WithinEpsilon(*(it - 1), 1.f) ||
(dsf_closer_to_it && !WithinEpsilon(*it, 1.f))) {
*it = dsf;
} else {
*(it - 1) = dsf;
}
}
}
} // namespace display
| [
"rjkroege@chromium.org"
] | rjkroege@chromium.org |
fad6b583730962d5e9417ba8ca269021dc97a5c1 | 99feee496bf9bb5237d73b6840b529f35a2323e7 | /Source/Cross/Platform/MoPlatformOpenGL/FEo3dSkeleton4Effect.cpp | d058ac9a42acb7305af703c77edacf7ed661530c | [
"Apache-2.0"
] | permissive | weimingtom/MoCross | 8c53623cb91fdcddf00180c6d7f8fa609911def4 | 2a550b3d41b0c33c44c66dd595e84b0e4ee95b08 | refs/heads/master | 2021-01-20T00:23:54.488480 | 2016-03-08T14:53:23 | 2016-03-08T14:53:23 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 11,041 | cpp | #include "MoEoTechnique.h"
MO_NAMESPACE_BEGIN
#define MO_3D_BONE_MAXCNT 20
//============================================================
// <T>顶点代码。</T>
//============================================================
static TCharC* SourceVertexShader =
"uniform mat4 vc_mvp_matrix; \n"
"uniform mat4 vc_bone_matrixs[20]; \n"
"attribute vec4 va_position; \n"
"attribute vec4 va_color; \n"
"attribute vec2 va_coord; \n"
"attribute vec4 va_bone_index; \n"
"attribute vec4 va_bone_weight; \n"
"varying vec4 v_color; \n"
"varying vec2 v_coord; \n"
"void main(){ \n"
" vec4 position = vec4(0, 0, 0, 0); \n"
" position += va_position * vc_bone_matrixs[int(va_bone_index.x)] * va_bone_weight.x; \n"
" position += va_position * vc_bone_matrixs[int(va_bone_index.y)] * va_bone_weight.y; \n"
" position += va_position * vc_bone_matrixs[int(va_bone_index.z)] * va_bone_weight.z; \n"
" position += va_position * vc_bone_matrixs[int(va_bone_index.w)] * va_bone_weight.w; \n"
" gl_Position = position * vc_mvp_matrix; \n"
" v_color = va_color; \n"
" v_coord = va_coord; \n"
"} \n";
//============================================================
// <T>像素代码。</T>
//============================================================
static TCharC* SourceFragmentShader =
#ifdef _MO_ANDROID
"precision mediump float; \n"
#endif // _MO_ANDROID
"varying vec4 v_color; \n"
"varying vec2 v_coord; \n"
"uniform sampler2D fs_color; \n"
"void main(){ \n"
" vec4 color = texture2D(fs_color, v_coord); \n"
" if(color.a < 0.1){ discard; } \n"
" gl_FragColor = color * v_color; \n"
"} \n";
//============================================================
// <T>构造显示渲染技术。</T>
//============================================================
FEo3dSkeleton4Effect::FEo3dSkeleton4Effect(){
_pBoneStream = MO_CREATE(FByteStream);
// 清空内容
for(TInt n = 0; n < EEffectVertexAttribute_Count; n++){
_effectAttributes[n] = -1;
}
for(TInt n = 0; n < EEffectSampler_Count; n++){
_effectSamplers[n] = -1;
}
}
//============================================================
// <T>析构显示渲染技术。</T>
//============================================================
FEo3dSkeleton4Effect::~FEo3dSkeleton4Effect(){
MO_DELETE(_pBoneStream);
}
//============================================================
// <T>配置处理。</T>
//============================================================
TResult FEo3dSkeleton4Effect::Setup(){
FScreenDevice* pScreenDevice = RDeviceManager::Instance().Find<FScreenDevice>();
FRenderDevice* pRenderDevice = RDeviceManager::Instance().Find<FRenderDevice>();
//............................................................
// 设置MVP矩阵
SIntSize2& screenSize = pScreenDevice->Size();
Resize(screenSize.width, screenSize.height);
//............................................................
// 创建程序
FEoRenderProgram* pProgram = (FEoRenderProgram*)pRenderDevice->CreateProgrom();
pProgram->Setup();
pProgram->VertexShader()->Compile(SourceVertexShader);
pProgram->FragmentShader()->Compile(SourceFragmentShader);
pProgram->Build();
// 绑定常量位置
// GLuint progromId = pProgram->ProgramId();
//_effectConsts[EEffectVertexConst_MvpMat4] = glGetUniformLocation(progromId, "vc_mvp_matrix");
// _effectConsts[EEffectVertexConst_BoneMatrixs] = glGetUniformLocation(progromId, "vc_bone_matrixs");
// // 绑定属性位置
// _effectAttributes[EEffectVertexAttribute_Position] = glGetAttribLocation(progromId, "va_position");
// _effectAttributes[EEffectVertexAttribute_Color] = glGetAttribLocation(progromId, "va_color");
// _effectAttributes[EEffectVertexAttribute_Coord] = glGetAttribLocation(progromId, "va_coord");
// _effectAttributes[EEffectVertexAttribute_BoneIndex] = glGetAttribLocation(progromId, "va_bone_index");
// _effectAttributes[EEffectVertexAttribute_BoneWeight] = glGetAttribLocation(progromId, "va_bone_weight");
// // 绑定属性位置
// _effectSamplers[EEffectSampler_Color] = glGetUniformLocation(progromId, "fs_color");
// 程序关联处理
_program = pProgram;
return ESuccess;
}
//============================================================
// <T>变更大小。</T>
//
// @return 处理结果
//============================================================
TResult FEo3dSkeleton4Effect::Resize(TInt width, TInt height){
// 计算MVP矩阵
_mvpMatrix.tx = -1.0f;
_mvpMatrix.ty = 1.0f;
//_mvpMatrix.rx = MO_PI_FLOAT;
_mvpMatrix.sx = 2.0f / (TFloat)width;
_mvpMatrix.sy = 2.0f / (TFloat)height;
_mvpMatrix.UpdateForce();
return ESuccess;
}
//============================================================
// <T>绘制处理。</T>
//
// @param pRenderable 渲染对象
// @return 处理结果
//============================================================
TResult FEo3dSkeleton4Effect::Draw(FRenderRegion* pRegion, FRenderable* pRenderable){
// 获得设备
//FRenderDevice* pRenderDevice = RDeviceManager::Instance().RenderDevice();
//FTemplate3dRenderable* pTemplateRenderable = (FTemplate3dRenderable*)pRenderable;
//SFloatMatrix3d& renderableMatrix = pTemplateRenderable->Matrix();
//FAnimation3d* pAnimation = pTemplateRenderable->Template()->Animation();
//TTimeTick currentTick = pAnimation->CurrentTick();
//FRs3dGeometry* pGeometryResource = pTemplateRenderable->GeometryResource();
//FRs3dVertexBuffer* pVertexBuffer = pGeometryResource->VertexBuffer();
//// 计算模型矩阵
//SFloatMatrix3d modelMatrix;
//FRs3dTrack* pTrack = pTemplateRenderable->GeometryResource()->Track();
//if(!pTrack->Frames()->IsEmpty()){
// SRs3dFrameInfo info;
// pTrack->CalculateFrameInfo(info, currentTick);
// info.Update();
// modelMatrix.Assign(pTrack->MatrixInvert());
// modelMatrix.Append(info.matrix);
//}
//// 计算MVP矩阵
//SFloatMatrix3d matrixMvp;
//matrixMvp.Assign(modelMatrix);
//matrixMvp.Append(renderableMatrix);
//matrixMvp.Append(_vpMatrix);
//// 设置骨骼
//FBone3dCollection* pBones = pTemplateRenderable->Bones();
//TInt boneCount = pBones->Count();
//_pBoneStream->Reset();
//for(TInt n = 0; n < boneCount; n++){
// FBone3d* pBone = pBones->Get(n);
// SFloatMatrix3d& boneMatrix = pBone->Matrix();
// boneMatrix.SerializeData4x4(_pBoneStream, ETrue);
//}
//............................................................
// 设置常量
//pRenderDevice->BindConstMatrix4x4(ERenderShader_Vertex, _effectConsts[EEffectVertexConst_MvpMat4], matrixMvp);
//pRenderDevice->BindConstData(ERenderShader_Vertex, _effectConsts[EEffectVertexConst_BoneMatrixs], ERenderShaderConstForamt_Matrix, _pBoneStream->MemoryC(), _pBoneStream->Position());
//............................................................
// 设定顶点流
//FRs3dVertexStream* pPositionStream = pVertexBuffer->FindStream(ERenderVertexBuffer_Position);
//pRenderDevice->BindVertexBuffer(_effectAttributes[EEffectVertexAttribute_Position], pPositionStream->VertexBuffer(), 0, ERenderVertexFormat_Float4);
//FRs3dVertexStream* pColorStream = pVertexBuffer->FindStream(ERenderVertexBuffer_Color);
//pRenderDevice->BindVertexBuffer(_effectAttributes[EEffectVertexAttribute_Color], pColorStream->VertexBuffer(), 0, ERenderVertexFormat_ByteNormal4);
//FRs3dVertexStream* pCoordStream = pVertexBuffer->FindStream(ERenderVertexBuffer_Coord);
//pRenderDevice->BindVertexBuffer(_effectAttributes[EEffectVertexAttribute_Coord], pCoordStream->VertexBuffer(), 0, ERenderVertexFormat_Float2);
//FRs3dVertexStream* pBoneIndexStream = pVertexBuffer->FindStream(ERenderVertexBuffer_BoneIndex);
//pRenderDevice->BindVertexBuffer(_effectAttributes[EEffectVertexAttribute_BoneIndex], pBoneIndexStream->VertexBuffer(), 0, ERenderVertexFormat_Byte4);
//FRs3dVertexStream* pBoneWeightStream = pVertexBuffer->FindStream(ERenderVertexBuffer_BoneWeight);
//pRenderDevice->BindVertexBuffer(_effectAttributes[EEffectVertexAttribute_BoneWeight], pBoneWeightStream->VertexBuffer(), 0, ERenderVertexFormat_ByteNormal4);
////............................................................
//// 设置纹理
//FMaterial3d* pMaterial = (FMaterial3d*)pTemplateRenderable->Material();
//FMaterialTexture3d* pTexture = pMaterial->MaterialTextures()->Get(0);
//FBitmap* pBitmap = pTexture->Bitmap();
//pRenderDevice->BindTexture(_effectSamplers[EEffectSampler_Diffuse], pBitmap->RenderTexture());
////............................................................
//// 设置索引流,绘制三角形
//FRs3dIndexBuffer* pRsIndexBuffer = pGeometryResource->IndexBuffer();
//FRenderIndexBuffer* pIndexBuffer = pRsIndexBuffer->IndexBuffer();
//pRenderDevice->DrawTriangles(pIndexBuffer, 0, 3 * pRsIndexBuffer->Count());
//glDisableVertexAttribArray(_effectAttributes[EEffectVertexAttribute_Position]);
//glDisableVertexAttribArray(_effectAttributes[EEffectVertexAttribute_Color]);
//glDisableVertexAttribArray(_effectAttributes[EEffectVertexAttribute_Coord]);
//glDisableVertexAttribArray(_effectAttributes[EEffectVertexAttribute_BoneIndex]);
//glDisableVertexAttribArray(_effectAttributes[EEffectVertexAttribute_BoneWeight]);
return ESuccess;
}
//============================================================
// <T>绘制渲染组处理。</T>
//
// @param pRenderables 渲染对象集合
// @param offset 位置
// @param count 总数
// @return 处理结果
//============================================================
TResult FEo3dSkeleton4Effect::DrawGroup(FRenderRegion* pRegion, TInt offset, TInt count){
//MO_CHECK(pRegion, return ENull);
//// 计算变换矩阵
//FCamera3d* pCamera = (FCamera3d*)pRegion->Camera();
//_vpMatrix.Assign(pCamera->Matrix());
//FProjection3d* pProjection = (FProjection3d*)pRegion->Projection();
//_vpMatrix.Append(pProjection->Matrix());
//// 设置设备状态
//FRenderDevice* pRenderDevice = RDeviceManager::Instance().RenderDevice();
//pRenderDevice->SetDepthMode(ETrue, ERenderDepthMode_Less);
//// pRenderDevice->SetCullingMode(EFalse);
//pRenderDevice->SetBlendFactors(ETrue, ERenderBlendMode_SourceAlpha, ERenderBlendMode_OneMinusSourceAlpha);
//pRenderDevice->SetProgram(_program);
////............................................................
//// 根据渲染类型进行分组
//FRenderableCollection* pRenderables = pRegion->Renderables();
//TInt offsetEnd = offset + count;
//for(TInt n = offset; n < offsetEnd; n++){
// FRenderable* pRenderable = pRenderables->Get(n);
// Draw(pRegion, pRenderable);
//}
////............................................................
//// 关闭程序
//pRenderDevice->SetProgram(NULL);
return ESuccess;
}
MO_NAMESPACE_END
| [
"maochunyang@cyou-inc.com"
] | maochunyang@cyou-inc.com |
c53dc4cb105ae0cde63507691510b0a05c60f7f7 | 0cd5dcf7c8ca5263c22a687df8312797f9d7590a | /itk-io-master/shared/shared/main.cpp | 01bf76e8298f7dc7f402322fb492f27d726eed6a | [] | no_license | holevi96/itk.io | c57655cfb5d292f6cea863df0fd0e91656e0aec4 | f4e967129489af98a437baa17ed3aeac3da26d24 | refs/heads/master | 2020-07-26T08:28:14.700839 | 2019-12-09T05:23:35 | 2019-12-09T05:23:35 | 208,589,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | cpp | #include <iostream>
using namespace std;
enum class verticalDirection { FORWARD, BACKWARD , REST };
enum class turnDirection {LEFT,RIGHT,REST};
enum class fireDirection {LEFT,RIGHT,LEFTRIGHT, NONE};
int main()
{
cout << "Hello World!" << endl;
return 0;
}
| [
"borosjenoi.tamas@gmail.com"
] | borosjenoi.tamas@gmail.com |
9a3bfcb438684e8aee5c6e33b664f3ff9740448e | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /components/arc/arc_browser_context_keyed_service_factory_base.h | 3ebf5fb4c670274df2b2cf5f47a0ca873c1bf86c | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 4,120 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_ARC_ARC_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_BASE_H_
#define COMPONENTS_ARC_ARC_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_BASE_H_
#include "base/logging.h"
#include "base/macros.h"
#include "components/arc/arc_service_manager.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace content {
class BrowserContext;
} // namespace content
namespace arc {
namespace internal {
// Implementation of BrowserContextKeyedServiceFactory for ARC related
// services. The ARC related BrowserContextKeyedService can make its factory
// class derived from this class.
//
// How to use:
// In .h:
// #include "components/keyed_service/core/keyed_service.h"
//
// namespace content {
// class BrowserContext;
// } // namespace content
//
// class ArcFooService : public KeyedService, ... {
// public:
// static ArcFooService* GetForBrowserContext(
// content::BrowserContext* context);
//
// ArcFooService(content::BrowserContext* context,
// ArcBridgeService* arc_bridge_service);
// };
//
// In .cc:
//
// namespace {
// class ArcFooServiceFactory
// : public internal::ArcBrowserContextKeyedServiceFactoryBase<
// ArcFooService,
// ArcFooServiceFactory> {
// public:
// static constexpr const char* kName = "ArcFooServiceFactory";
//
// static ArcFooServiceFactory* GetInstance() {
// return base::Singleton<ArcFooServiceFactory>::get();
// }
//
// private:
// friend struct base::DefaultSingletonTraits<ArcFooServiceFactory>;
// ArcFooServiceFactory() = default;
// ~ArcFooServiceFactory() override = default;
// };
// } // namespace
//
// ArcFooService* ArcFooService::GetForBrowserContext(
// content::BrowserContext* context) {
// return ArcFooServiceFactory::GetForBrowserContext(context);
// }
//
// If the service depends on other KeyedService, DependsOn() can be called in
// the factory's ctor similar to other BrowserContextKeyedServiceFactory
// subclasses.
//
// This header is intended to be included only from the .cc file directly.
//
// TODO(hidehiko): Make ArcFooService constructor (and maybe destructor)
// private with declaring appropriate friend.
template <typename Service, typename Factory>
class ArcBrowserContextKeyedServiceFactoryBase
: public BrowserContextKeyedServiceFactory {
public:
// Returns the instance of the service for the given |context|,
// or nullptr if |context| is not allowed to use ARC.
// If the instance is not yet created, this creates a new service instance.
static Service* GetForBrowserContext(content::BrowserContext* context) {
return static_cast<Service*>(
Factory::GetInstance()->GetServiceForBrowserContext(context,
true /* create */));
}
protected:
ArcBrowserContextKeyedServiceFactoryBase()
: BrowserContextKeyedServiceFactory(
Factory::kName,
BrowserContextDependencyManager::GetInstance()) {}
~ArcBrowserContextKeyedServiceFactoryBase() override = default;
// BrowserContextKeyedServiceFactory override:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override {
auto* arc_service_manager = arc::ArcServiceManager::Get();
// Practically, this is in testing case.
if (!arc_service_manager) {
VLOG(2) << "ArcServiceManager is not available.";
return nullptr;
}
if (arc_service_manager->browser_context() != context) {
VLOG(2) << "Non ARC allowed browser context.";
return nullptr;
}
return new Service(context, arc_service_manager->arc_bridge_service());
}
private:
DISALLOW_COPY_AND_ASSIGN(ArcBrowserContextKeyedServiceFactoryBase);
};
} // namespace internal
} // namespace arc
#endif // COMPONENTS_ARC_ARC_BROWSER_CONTEXT_KEYED_SERVICE_FACTORY_BASE_H_
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
fd803cdf2c208b8c77da496dd51a5331894bb599 | f527e8a2e6df0621fc3d2916574e8a2f59418c98 | /torch/csrc/autograd/record_function_ops.cpp | 73ee43a61a887bf55862c1bc4ad15b1ed1493d1e | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | NirmalSilwal/pytorch | a8c2b70bb207b324eecbd56f391fdc986f5010c0 | 4b4184fc69e224701529b84d2f182c1d65cea74a | refs/heads/master | 2022-11-19T11:08:09.413489 | 2020-07-11T23:48:21 | 2020-07-11T23:49:56 | 279,022,720 | 3 | 0 | NOASSERTION | 2020-07-12T08:25:38 | 2020-07-12T08:25:37 | null | UTF-8 | C++ | false | false | 4,093 | cpp | #include <ATen/cpp_custom_type_hack.h>
#include <ATen/record_function.h>
#include <ATen/ThreadLocalState.h>
#include <torch/csrc/jit/runtime/custom_operator.h>
namespace caffe2 {
// Required for cpp_custom_type_hack to work
// NOLINTNEXTLINE(bugprone-exception-escape)
CAFFE_KNOWN_TYPE(at::RecordFunction);
} // namespace caffe2
namespace torch {
namespace autograd {
namespace profiler {
// Creates a new profiling scope using RecordFunction and invokes its starting
// callbacks.
at::Tensor record_function_enter(const std::string& name) {
auto rec = std::make_unique<at::RecordFunction>(at::RecordScope::USER_SCOPE);
if (auto* current = rec->current()) {
if (current->name().str() == std::string("profiler::_record_function_enter")) {
// RecordFunction requires parent_ to be alive for it's entire lifetime.
// Since the currently active RecordFunction will only live for the lifetime
// of this op we need to end it early so the new RecordFunction we create is
// a direct child of the parent RecordFunction.
current->end();
}
}
rec->before(name);
return at::cpp_custom_type_hack::create(std::move(rec), at::TensorOptions());
}
at::RecordFunction& getRecordFunctionFromTensor(const at::Tensor& handle) {
auto& rec = at::cpp_custom_type_hack::cast<at::RecordFunction>(handle);
return rec;
}
// Ends the profiling scope created with record_function_enter.
void record_function_exit(const at::Tensor& handle) {
// We don't actually need to do anything with handle just need to persist the
// lifetime until now.
auto& rec = getRecordFunctionFromTensor(handle);
if (auto* current = rec.current()) {
if (current->name().str() == std::string("profiler::_record_function_exit")) {
current->end();
}
}
rec.end();
}
c10::intrusive_ptr<c10::ivalue::Future> _call_end_callbacks_on_fut(
const at::Tensor& handle,
const c10::intrusive_ptr<c10::ivalue::Future>& fut) {
// Profiling callback that ends the associated record_function
// and returns the value of the passed in future.
std::function<c10::IValue(void)> futureProfilingFunc =
[fut, handle]() {
TORCH_INTERNAL_ASSERT(
handle.defined(),
"Undefined RecordFunction handle. This can happen if the handle is "
"not correctly persisted and is destroyed before the future is "
"realized.");
auto& rec = getRecordFunctionFromTensor(handle);
rec.end();
// Note: this future is returned to the user to ensure that a call to wait()
// ensures that profiling callbacks have ran. To ensure that this is
// transparent, we must make this future propagate the value of the RPC
// future.
return fut->constValue();
};
// Define a future that completes after the profiling callbacks are run.
auto profiledFut = fut->then(at::wrapPropagateTLSState<c10::IValue>(
futureProfilingFunc),
fut->elementType()
);
return profiledFut;
}
// Internal only, do not use directly, use Python's record_function()
static auto registry =
RegisterOperators()
.op("profiler::_record_function_enter", &record_function_enter)
.op("profiler::_record_function_exit", &record_function_exit);
// Needed to register JIT operator in operator registry below
c10::AliasAnalysisKind aliasAnalysisFromSchema() {
return c10::AliasAnalysisKind::FROM_SCHEMA;
}
jit::RegisterOperators reg_fut_ops({
jit::Operator(
"profiler::_call_end_callbacks_on_jit_fut(Tensor x, Future(t) y) -> Future(t)",
[](jit::Stack* stack) {
// Pop inputs, which should be a future and a tensor
auto fut = jit::pop(stack).toFuture();
auto tensor = jit::pop(stack).toTensor();
auto profiledFut = _call_end_callbacks_on_fut(tensor, fut);
// return future that completes when profiling callbacks have run.
jit::push(stack, std::move(profiledFut));
},
aliasAnalysisFromSchema()),
});
} // namespace profiler
} // namespace autograd
} // namespace torch
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
65035156aa70d2045e8e147f76b5e2f358e8325f | e8a0c8db2490a930c7166be5c1668b2f09f8cc3b | /Breakout/Breakout/TextElement.h | 2b881dfe7edf32b14ed2afde5f13ed87a8aecd15 | [
"MIT"
] | permissive | MatthewDudley/BreakoutOODProject | 7edf313eaf159f56f9c9bb1f44f01fd971b340c3 | c06569872fc611c4e4fec3c39e81bba537e2c7f5 | refs/heads/master | 2021-08-22T09:56:26.446306 | 2017-11-29T23:20:23 | 2017-11-29T23:20:32 | 112,673,315 | 1 | 0 | null | 2017-11-30T23:47:46 | 2017-11-30T23:47:46 | null | UTF-8 | C++ | false | false | 407 | h | #pragma once
#include <string>
class Texture;
class TextElement
{
public:
TextElement(std::string message, int x = 0, int y = 0);
void SetText(std::string message);
int GetWidth();
int GetHeight();
void Render();
~TextElement();
void SetX(int x);
void SetY(int y);
private:
std::string message;
Texture* texture = nullptr;
int x;
int y;
int width;
int height;
//SDL_Rect* rect = nullptr;
};
| [
"mitchellhodzen@yahoo.com"
] | mitchellhodzen@yahoo.com |
26e90b51970ada12c75f4b913876830a5f9db69f | 8ac5027c70fece826d5a9ac74bdf1366e4ac9a50 | /ppxoaso.cpp | b039b717e56c68aaf1cb7eeedb54341c14e02102 | [] | no_license | amit2014/spoj-5 | 2a67de503d22be5bcd0494e72840808a373da458 | 0cc940bb8810d77879854c66d209cc80a6b45355 | refs/heads/master | 2020-12-24T15:58:04.711463 | 2013-08-22T00:17:17 | 2013-08-22T00:17:17 | 15,484,264 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 553 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
int n;
char s[1100];
while (1) {
if (scanf("%s", s) == EOF ) break;
int i = 0;
while (s[i] >= s[i + 1] && i < strlen(s) - 1) {
i++;
}
for (int j = 0; j < strlen(s); j++) {
if(j != i) printf("%c", s[j]);
}
printf("\n");
}
return 0;
}
| [
"agarwal.shubham21@gmail.com"
] | agarwal.shubham21@gmail.com |
6695ea1b085fb20ce0b515e83273345cb0c3b8d5 | e4ec5b6cf3cfe2568ef0b5654c019e398b4ecc67 | /aws-sdk-cpp/1.2.10/include/aws/servicecatalog/model/ListConstraintsForPortfolioRequest.h | b6ac23a1abe09326ca9f3a3d5f2856bf828c5763 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | EnjoyLifeFund/macHighSierra-cellars | 59051e496ed0e68d14e0d5d91367a2c92c95e1fb | 49a477d42f081e52f4c5bdd39535156a2df52d09 | refs/heads/master | 2022-12-25T19:28:29.992466 | 2017-10-10T13:00:08 | 2017-10-10T13:00:08 | 96,081,471 | 3 | 1 | null | 2022-12-17T02:26:21 | 2017-07-03T07:17:34 | null | UTF-8 | C++ | false | false | 9,619 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 <aws/servicecatalog/ServiceCatalog_EXPORTS.h>
#include <aws/servicecatalog/ServiceCatalogRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ServiceCatalog
{
namespace Model
{
/**
*/
class AWS_SERVICECATALOG_API ListConstraintsForPortfolioRequest : public ServiceCatalogRequest
{
public:
ListConstraintsForPortfolioRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "ListConstraintsForPortfolio"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline const Aws::String& GetAcceptLanguage() const{ return m_acceptLanguage; }
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline void SetAcceptLanguage(const Aws::String& value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage = value; }
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline void SetAcceptLanguage(Aws::String&& value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage = std::move(value); }
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline void SetAcceptLanguage(const char* value) { m_acceptLanguageHasBeenSet = true; m_acceptLanguage.assign(value); }
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline ListConstraintsForPortfolioRequest& WithAcceptLanguage(const Aws::String& value) { SetAcceptLanguage(value); return *this;}
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline ListConstraintsForPortfolioRequest& WithAcceptLanguage(Aws::String&& value) { SetAcceptLanguage(std::move(value)); return *this;}
/**
* <p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p>
* </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> -
* Chinese</p> </li> </ul>
*/
inline ListConstraintsForPortfolioRequest& WithAcceptLanguage(const char* value) { SetAcceptLanguage(value); return *this;}
/**
* <p>The portfolio identifier.</p>
*/
inline const Aws::String& GetPortfolioId() const{ return m_portfolioId; }
/**
* <p>The portfolio identifier.</p>
*/
inline void SetPortfolioId(const Aws::String& value) { m_portfolioIdHasBeenSet = true; m_portfolioId = value; }
/**
* <p>The portfolio identifier.</p>
*/
inline void SetPortfolioId(Aws::String&& value) { m_portfolioIdHasBeenSet = true; m_portfolioId = std::move(value); }
/**
* <p>The portfolio identifier.</p>
*/
inline void SetPortfolioId(const char* value) { m_portfolioIdHasBeenSet = true; m_portfolioId.assign(value); }
/**
* <p>The portfolio identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPortfolioId(const Aws::String& value) { SetPortfolioId(value); return *this;}
/**
* <p>The portfolio identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPortfolioId(Aws::String&& value) { SetPortfolioId(std::move(value)); return *this;}
/**
* <p>The portfolio identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPortfolioId(const char* value) { SetPortfolioId(value); return *this;}
/**
* <p>The product identifier.</p>
*/
inline const Aws::String& GetProductId() const{ return m_productId; }
/**
* <p>The product identifier.</p>
*/
inline void SetProductId(const Aws::String& value) { m_productIdHasBeenSet = true; m_productId = value; }
/**
* <p>The product identifier.</p>
*/
inline void SetProductId(Aws::String&& value) { m_productIdHasBeenSet = true; m_productId = std::move(value); }
/**
* <p>The product identifier.</p>
*/
inline void SetProductId(const char* value) { m_productIdHasBeenSet = true; m_productId.assign(value); }
/**
* <p>The product identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithProductId(const Aws::String& value) { SetProductId(value); return *this;}
/**
* <p>The product identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithProductId(Aws::String&& value) { SetProductId(std::move(value)); return *this;}
/**
* <p>The product identifier.</p>
*/
inline ListConstraintsForPortfolioRequest& WithProductId(const char* value) { SetProductId(value); return *this;}
/**
* <p>The maximum number of items to return in the results. If more results exist
* than fit in the specified <code>PageSize</code>, the value of
* <code>NextPageToken</code> in the response is non-null.</p>
*/
inline int GetPageSize() const{ return m_pageSize; }
/**
* <p>The maximum number of items to return in the results. If more results exist
* than fit in the specified <code>PageSize</code>, the value of
* <code>NextPageToken</code> in the response is non-null.</p>
*/
inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
/**
* <p>The maximum number of items to return in the results. If more results exist
* than fit in the specified <code>PageSize</code>, the value of
* <code>NextPageToken</code> in the response is non-null.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline const Aws::String& GetPageToken() const{ return m_pageToken; }
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline void SetPageToken(const Aws::String& value) { m_pageTokenHasBeenSet = true; m_pageToken = value; }
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline void SetPageToken(Aws::String&& value) { m_pageTokenHasBeenSet = true; m_pageToken = std::move(value); }
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline void SetPageToken(const char* value) { m_pageTokenHasBeenSet = true; m_pageToken.assign(value); }
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPageToken(const Aws::String& value) { SetPageToken(value); return *this;}
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPageToken(Aws::String&& value) { SetPageToken(std::move(value)); return *this;}
/**
* <p>The page token of the first page retrieved. If null, this retrieves the first
* page of size <code>PageSize</code>.</p>
*/
inline ListConstraintsForPortfolioRequest& WithPageToken(const char* value) { SetPageToken(value); return *this;}
private:
Aws::String m_acceptLanguage;
bool m_acceptLanguageHasBeenSet;
Aws::String m_portfolioId;
bool m_portfolioIdHasBeenSet;
Aws::String m_productId;
bool m_productIdHasBeenSet;
int m_pageSize;
bool m_pageSizeHasBeenSet;
Aws::String m_pageToken;
bool m_pageTokenHasBeenSet;
};
} // namespace Model
} // namespace ServiceCatalog
} // namespace Aws
| [
"Raliclo@gmail.com"
] | Raliclo@gmail.com |
d714d9729c758fb23fecfb776a2d4393eba6249d | 3a1116e7c83fef3235c3a6682886b32c87d46985 | /tictacsfml/stdafx.cpp | ac5db3dbb52dffe8b7f6a4fa325913052ee60336 | [] | no_license | szefo94/tictacsfml | e59b528bdc4a69147b290b4e382d8260edc9aeed | 2e22f0f3ed53a76fd3617775f7f913ffc81cace7 | refs/heads/master | 2021-05-06T20:01:24.090591 | 2017-11-27T20:31:35 | 2017-11-27T20:31:35 | 112,245,321 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 356 | cpp | // stdafx.cpp: plik ródłowy , który zawiera tylko standardowe zawarcia
// tictacsfml.pch będzie wstępnie skompilowanym nagłówkiem
// stdafx.obj będzie zawierać informacje typu wstępnie skompilowanego
#include "stdafx.h"
// TODO: odwołaj się do dowolnych dodatkowych nagłówków, których potrzebujesz w pliku STDAFX.H
// a nie w tym pliku
| [
"szemarcin@gmail.com"
] | szemarcin@gmail.com |
d4a3555e596d5bc261eb12b72b25eb90f4267f6e | 6aeb85aa1d6c9c1ee7cdac7f60cc204639ac9cfc | /ISO-Extractor/ISO-Extractor/Resources/PrimaryVolumeDescriptor.h | b1e700c881e11caa51cf9003dce8690812e6ab75 | [] | no_license | dsilva609/ISO-Extraction | 830048a4341d8c8d4f2508095a2d391ae1f38448 | d0863cd95627bb18f665c60268c39d3f27d2438a | refs/heads/master | 2020-05-31T13:40:39.237559 | 2015-04-28T15:05:33 | 2015-04-28T15:05:33 | 33,334,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,572 | h | #ifndef __PRIMARYVOLUMEDESCRIPTOR_H__
#define __PRIMARYVOLUMEDESCRIPTOR_H__
/*
* This class implements the Primary Volume Descriptor for a CD volume.
* It follows the format given in ISO 9660 Section 8.4. It uses a number
* of subtypes to deal with other pieces.
*
* This code is not fully tested yet and should be considered buggy.
*
*/
#include "BothEndianShort.h"
#include "BothEndianInt.h"
#include <string>
#include "DirectoryRecord.h"
#include "DescriptorDateTime.h"
using namespace std;
class PrimaryVolumeDescriptor {
protected:
short volumeDescriptorType;
string standardIdentifier;
short volumeDescriptorVersion;
string systemID;
string volumeID;
BothEndianInt volumeSpaceSize, pathTableSize;
BothEndianShort volumeSetSize, volumeSequenceNumber,
logicalBlockSize, locationLPathTable,
locationOptionalLPathTable, locationMPathTable,
locationOptionalMPathTable;
DirectoryRecord rootDirectory;
string volumeSetID, publisherID, dataPreparerID,
applicationID, copyrightFileID, abstractFileID,
bibliographicFileID;
DescriptorDateTime volumeCreation, volumeModification,
volumeExpiration, volumeEffective;
short fileStructureVersion;
char applicationArea[512];
public:
PrimaryVolumeDescriptor (char * sector=NULL);
// access Methods ....
string getVolumeSetID() { return volumeSetID; }
string getPublisherID() { return publisherID; }
string getDataPreparerID() { return dataPreparerID; }
string getApplicationID() { return applicationID; }
string getCopyrightFileID() { return copyrightFileID; }
string getAbstractFileID() { return abstractFileID; }
string getBibliographicFileID() { return bibliographicFileID; }
char *getApplicationArea() ;
DirectoryRecord getRootDirectory() { return rootDirectory; }
string getStandardIdentifier() { return standardIdentifier; }
string getSystemID() { return systemID; }
string getVolumeID() { return volumeID; }
BothEndianInt getVolumeSpaceSize() { return volumeSpaceSize; }
BothEndianInt getPathTableSize() { return pathTableSize; }
BothEndianShort getVolumeSetSize() { return volumeSetSize; }
BothEndianShort getVolumeSequenceNumber() { return volumeSequenceNumber; }
BothEndianShort getLogicalBlockSize() {return logicalBlockSize; }
BothEndianShort getLocationLPathTable() { return locationLPathTable; }
BothEndianShort getOptionalLocationLPathTable() { return locationOptionalLPathTable; }
BothEndianShort getLocationMPathTable() { return locationMPathTable; }
BothEndianShort getOptionalLocationMPathTable() { return locationOptionalMPathTable; }
};
#endif
| [
"dsilva609@gmail.com"
] | dsilva609@gmail.com |
da6bbe0bcfe5582db1140ae72189255633b8253d | 69e2e5fb5220d3311b9d1e4c2bb2f6c1722a156a | /werkkzeug3/shadercodegen.cpp | 73d4081dab14c53fc289cabfe50a1e37d51cd7f6 | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | kebby/fr_public | c2acb4787472c5e039805a084894a7858dd6d19a | 2bb82d30bf9d10cf2a94b445710942ac9f065391 | refs/heads/master | 2021-01-16T00:36:57.267206 | 2012-08-16T03:36:05 | 2012-08-16T03:36:05 | 4,026,092 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,527 | cpp | // This file is distributed under a BSD license. See LICENSE.txt for details.
#include "shadercodegen.hpp"
#include "_startdx.hpp"
/****************************************************************************/
// Control structure state
struct sShaderCodeGen::Control
{
sBool Exec; // execute instrs yes/no
sBool Free; // no if in a chain yet taken?
const sU32 *Loop; // loop point
sU32 Condition; // while condition
};
// Evaluates a condition
// Encoding:
// Bit 0-4: Bitfield start
// Bit 5-7: Bitfield len (minus 1)
// Bit 8-15: Compare ref value
// Bit 16-24: Word offset (>=496 reserved)
// Bit 25-28: Index register specifier
// Bit 29-30: Comparision op (0 = "==", 1 = "<", 2 = ">")
// Bit 31: Comparision negate
sU32 sShaderCodeGen::GetFlagWord(sU32 addr)
{
sU32 wordOffs = ((addr >> 16) + Index[(addr >> 25) & 0xf]) & 0x1ff;
if(wordOffs >= 0x1f0) // special
return ((sU32 *) Index)[wordOffs - 0x1f0];
else
return DataArea[wordOffs];
}
sBool sShaderCodeGen::EvalCond(sU32 condition)
{
// get the input value
sU32 fieldStart = condition & 0x1f;
sU32 fieldLen = (condition >> 5) & 0x7;
sU32 value = (GetFlagWord(condition) >> fieldStart) & ((2 << fieldLen) - 1);
// perform the comparision
sU32 ref = (condition >> 8) & 0xff;
sBool result;
switch((condition >> 29) & 3)
{
case 0: result = value == ref; break;
case 1: result = value < ref; break;
case 2: result = value > ref; break;
default: result = sFALSE; break;
}
// negate if required
if(condition & 0x80000000)
result = !result;
return result;
}
// Phase 1 reads in the shader, evaluates if statements, and resolves aliases
sBool sShaderCodeGen::Phase1(const sU32 *input)
{
sU32 aliasTable[MAXTEMP];
sU32 remapUp[MAXTEMP];
Control control[MAXNEST+1],*ctrl=control;
sU32 *codePtr = Code;
sInt tempReg = MAXTEMP;
// Check whether input actually *is* a shader
if((*input & 0xfffe0000) != 0xfffe0000)
return sFALSE;
IsPS11 = *input == 0xffff0101;
IsV1Shader = (*input & 0xff00) == 0x100;
// copy first (version) word, initialize tables and global control scope
*codePtr++ = *input++;
sSetMem(aliasTable,0,sizeof(aliasTable));
sSetMem(remapUp,0,sizeof(remapUp));
sSetMem(Index,0,sizeof(Index));
FirstInstr = 0;
ctrl->Exec = sTRUE;
ctrl->Loop = input;
ctrl->Condition = 0;
// Loop through the shader instruction by instruction, throwing every-
// thing in non-taken ifs away and processing virtual moves
sU32 opcode;
do
{
sU32 *outOpStart = codePtr;
if(codePtr + LONGESTINSTR > &Code[MAXCODEWORDS])
return sFALSE;
opcode = *input++;
sInt nOperands = (opcode >> 24) & 0xf;
const sU32 *opNext = input + nOperands;
sBool exec = ctrl->Exec, taken;
switch(opcode)
{
// pseudoinstructions
case XO_EXT_IF:
taken = EvalCond(*input++);
(++ctrl)->Exec = taken & exec;
ctrl->Free = !taken;
ctrl->Loop = 0;
break;
case XO_EXT_ELSE:
ctrl->Exec = ctrl->Free & ctrl[-1].Exec;
break;
case XO_EXT_ELIF:
taken = EvalCond(*input++);
ctrl->Exec = ctrl->Free & taken & ctrl[-1].Exec;
if(taken)
ctrl->Free = sFALSE;
break;
case XO_EXT_WHILE:
(++ctrl)->Condition = *input++;
ctrl->Exec = EvalCond(ctrl->Condition) & exec;
ctrl->Loop = input;
break;
case XO_EXT_END:
if(exec && ctrl->Loop && EvalCond(ctrl->Condition))
opNext = ctrl->Loop;
else
ctrl--;
break;
case XO_EXT_VMOV:
if(exec)
{
sU32 destReg = *input++ & 0x70001fff;
sU32 src = *input;
sVERIFY(destReg < MAXTEMP);
// resolve aliasing here, the mapping may change later
if(src & 0x80000000) // register source
{
sU32 srcn = src & 0x70001fff;
if(srcn < MAXTEMP && aliasTable[srcn])
srcn = aliasTable[srcn];
aliasTable[destReg] = (src & 0x8fffe000) | srcn;
}
else
aliasTable[destReg] = GetFlagWord(src);
}
break;
case XO_EXT_INDEXED:
if(exec)
{
sU32 code = *input;
codePtr[-sInt(code & 0xff)] += Index[(code >> 8) & 0xf];
}
break;
case XO_EXT_IADD:
if(exec)
{
sU32 code = *input;
Index[(code >> 8) & 0xf] = Index[(code >> 12) & 0xf] + (code & 0xff);
}
break;
case XO_EXT_ERROR:
if(exec)
return sFALSE;
break;
case XO_EXT_FREE:
if(exec)
{
sU32 reg = *input & 0x70001fff;
if(reg < MAXTEMP)
{
remapUp[reg] = ++tempReg;
aliasTable[reg] = tempReg | XSALL;
if(tempReg >= MAXTEMP2)
return sFALSE;
}
}
break;
// instructions
case XO_DEF: // needs special handling because the operands are floats
if(exec)
{
// just copy 6 words straight, starting from the opcode
sCopyMem(codePtr,input-1,6*sizeof(sU32));
codePtr += 6;
}
break;
default:
if(exec)
{
if(opcode != XO_DCL && !FirstInstr)
FirstInstr = codePtr;
*codePtr++ = opcode;
sU32 destReg = MAXTEMP;
// go through operands, processing aliasing
for(sInt i=0;i<nOperands;i++)
{
sU32 op = *input++;
sU32 reg = op & 0x70001fff;
// save destination register
if(i == 0)
{
if(reg < MAXTEMP && remapUp[reg])
reg = remapUp[reg];
destReg = reg;
}
// process aliases for source registers
if(i != 0 && reg < MAXTEMP && aliasTable[reg])
{
reg = aliasTable[reg];
if((reg & 0xff0000) == 0xe40000) // not swizzled?
reg &= 0xff00ffff;
else if((op & 0xff0000) == 0xe40000) // op not swizzled
op &= 0xff00ffff; // remove swizzle from original operand
else
sVERIFYFALSE;
}
// lifetime tracking
if(reg < MAXTEMP2)
{
LifeEnd[reg] = outOpStart;
// lrp and nrm require destination registers to be different
// from source
if(opcode == XO_LRP)
LifeEnd[reg] += 5;
else if(opcode == XO_NRM)
LifeEnd[reg] += 3;
}
*codePtr++ = (op & 0x8fffe000) | reg;
}
// destination may not be an alias
if(destReg < MAXTEMP)
aliasTable[destReg] = 0;
}
break;
}
input = opNext;
}
while(opcode != XO_END);
// compute code length
CodeLen = codePtr - Code;
return sTRUE;
}
// Phase 2 performs register allocation
sBool sShaderCodeGen::Phase2()
{
sInt logReg[MAXTEMP2];
sInt physReg[MAXPHYSREG+1];
sU32 *lifeEnd[MAXPHYSREG];
sU32 *lastUsed[MAXPHYSREG];
// fill register maps
sSetMem(logReg,0xff,sizeof(logReg));
sSetMem(physReg,0xff,sizeof(physReg));
sSetMem(lifeEnd,0,sizeof(lifeEnd));
sSetMem(lastUsed,0,sizeof(lastUsed));
// register allocation
sU32 *current = FirstInstr;
while(*current != XO_END)
{
// free all registers whose lifetime ends this instr
for(sInt i=0;i<MAXPHYSREG;i++)
if(lifeEnd[i] == current)
physReg[i] = -1;
// get opcode
sU32 opcode = *current++;
sInt nOperands = (opcode >> 24) & 0xf;
// remap registers, alloc registers whose lifetime starts this instr
sInt physRegCtr = 0;
for(sInt i=0;i<nOperands;i++)
{
sU32 op = *current;
sU32 reg = op & 0x70001fff;
if(reg < MAXTEMP2) // temp register?
{
if(logReg[reg] == -1) // lifetime starts here, alloc physical reg
{
// find free physical register
while(physReg[physRegCtr] != -1)
physRegCtr++;
if(physRegCtr == MAXPHYSREG) // out of (real) physical registers
return sFALSE;
// specialized allocation for texture loads to avoid unnecessary
// dependencies
sInt phys = physRegCtr;
if((opcode & 0xfff0ffff) == XO_TEXLD)
{
// use free physical register whose last use was longest ago
// (to minimize dependency chains generated)
for(sInt j=0;j<MAXPHYSREG;j++)
if(physReg[j] == -1 && lastUsed[j] < lastUsed[phys])
phys = j;
}
physReg[phys] = reg;
lifeEnd[phys] = LifeEnd[reg];
logReg[reg] = phys;
}
if(!IsPS11)
reg = logReg[reg];
lastUsed[reg] = current;
}
*current++ = (op & 0x8fffe000) | reg;
}
}
return sTRUE;
}
// Remove opcode lengths from opcodes. Must be last. Required for 1.x shaders
void sShaderCodeGen::RemoveOpcodeLengths()
{
sU32 *current = &Code[1];
while(*current != XO_END)
{
sInt nOperands = (*current >> 24) & 0xf;
*current &= 0xf0ffffff;
current += nOperands + 1;
}
}
/****************************************************************************/
sU32 *sShaderCodeGen::GenCode(const sU32 *input,const sU32 *data)
{
sU32 *result = 0;
DataArea = data;
if(Phase1(input) && Phase2())
{
if(IsV1Shader)
RemoveOpcodeLengths();
result = new sU32[CodeLen];
sCopyMem4(result,Code,CodeLen);
}
return result;
}
/****************************************************************************/
| [
"rygorous@gmail.com"
] | rygorous@gmail.com |
7b09b2381628c904855927e0c4fbc4c3523e6369 | aaff0a475ba8195d622b6989c089ba057f180d54 | /backup/2/codewars/c++/find-the-integral.cpp | d68057991bca496035cb2b81ac721f0a080958db | [
"Apache-2.0"
] | permissive | DandelionLU/code-camp | 328b2660391f1b529f1187a87c41e15a3eefb3ee | 0fd18432d0d2c4123b30a660bae156283a74b930 | refs/heads/master | 2023-08-24T00:01:48.900746 | 2021-10-30T06:37:42 | 2021-10-30T06:37:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 796 | cpp | // Hi, I'm Yanzhan. For more algothmic problems, visit my Youtube Channel (Yanzhan Yang's Youtube Channel) : https://www.youtube.com/channel/UCDkz-__gl3frqLexukpG0DA?view_as=subscriber or my Twitter Account (Yanzhan Yang's Twitter) : https://twitter.com/YangYanzhan or my GitHub HomePage (Yanzhan Yang's GitHub HomePage) : https://yanzhan.site .
// For this specific algothmic problem, visit my Youtube Video : .
// It's fascinating to solve algothmic problems, follow Yanzhan to learn more!
// Blog URL for this problem: https://yanzhan.site/codewars/find-the-integral.html .
#include <string>
std::string integrate(const int &coefficient, const int &exponent) {
using namespace std;
int e = exponent + 1;
int c = coefficient / e;
return to_string(c) + "x^" + to_string(e);
}
| [
"yangyanzhan@gmail.com"
] | yangyanzhan@gmail.com |
981685940552727a87abcf2e76d9323796e3d98b | bbeaadef08cccb872c9a1bb32ebac7335d196318 | /Fontes/CalcIndCont/VTBuscaProt.h | 41bda43c665bd8bc6123efc487faf8ad3d25df5e | [] | no_license | danilodesouzapereira/plataformasinap_exportaopendss | d0e529b493f280aefe91b37e893359a373557ef8 | c624e9e078dce4b9bcc8e5b03dd4d9ea71c29b3f | refs/heads/master | 2023-03-20T20:37:21.948550 | 2021-03-12T17:53:12 | 2021-03-12T17:53:12 | 347,150,304 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 9,615 | h | //---------------------------------------------------------------------------
#ifndef VTBuscaProtH
#define VTBuscaProtH
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------
class VTApl;
class VTBarra;
class VTBlocos;
class VTBloco;
class VTChave;
class VTEqpto;
class VTRede;
class VTBlocoRad;
class VTVisRede;
class VTBarraRad;
class VTDefeito;
class VTLigacao;
//---------------------------------------------------------------------------
struct strIF : TObject //hk201710IF
{ //Objeto para guardar informações em eq. de protecao e chaves secc com IF
VTChave *chave, *chaveProt;
bool flagIF; //se tem IF instalado
double compProt;
double compIF;
TList *lisBlJus;
TList *lisBlProt;
};
//---------------------------------------------------------------------------
class VTBuscaProt: public TObject
{
public: //property
__property double CargaBlocoJus[VTChave* chave][int np] = {read=PM_GetCargaBlocoJus};
__property VTBlocos* Blocos = {read=PM_GetBlocos};
__property bool FlagInicia = {read=PM_GetFlagInicia};
__property TList* LisBlocoRad = {read=PM_GetLisBlocoRad};
__property TList* LisChvVis = {read=PM_GetLisChavesVis};
__property TList* LisVisRede = {read=PM_GetLisVisRede};
__property TList* LisTipoEqProt = {read=PM_GetLisTipoEqProt};
__property TList* LisChavesMed = {read=PM_GetLisChavesMed};
__property TList* LisDjPri = {read=PM_GetLisDJPri};
__property TList* LisChvAuto = {read=PM_GetLisChvAuto};
__property TList* LisChavesAtivas = {read=PM_GetLisChvAtivas};
__property int IProfReliga = {read=PM_GetIProfReliga, write=PM_SetIProfReliga};
__property int IProfDescoord = {read=PM_GetIProfDescoord, write=PM_SetIProfDescoord};
__property TList* LisEQIF = {read=PM_GetLisEQIF};
__property TList* LisChavesIF = {read=PM_GetLisChavesIF};
//__property TList* LisChavesAtivas = {write=PM_SetLisChvAtivas};
//__property TList* LisBlocoJus = {read=PM_GetLisBlocoJus};
//__property TList* LisBlocoMon = {read=PM_GetLisBlocoMon};
public:
__fastcall VTBuscaProt(void) {};
__fastcall ~VTBuscaProt(void) {};
virtual void __fastcall BuscaBlocoAgreg(VTBloco *bloco, TList *lisEXT) = 0;
virtual bool __fastcall ChaveReligadora(VTChave *pchv) = 0;
virtual VTBlocoRad* __fastcall IdentificaBlocoRad(VTBloco *bloco) = 0;
virtual VTBlocoRad* __fastcall IdentificaBlocoRad(VTEqpto *eqpto) = 0;
virtual VTBloco* __fastcall IdentificaBloco(VTEqpto *eqpto) = 0;
virtual VTVisRede* __fastcall IdentificaVisRede(VTChave *pchv, TList *lisBlocosDesl = NULL) = 0; //hk201805: rede pai-filha: não transferencia para blocos desligados
virtual bool __fastcall CalculaCargasBlocoRad(int iPat = -1) = 0;
virtual double __fastcall CargaLisBlocosMan(VTDefeito *pdef, int iPat) = 0;
virtual double __fastcall FolgaIA(VTChave *pchvVis, int indPat) = 0;
virtual double __fastcall FolgaIA(VTVisRede *visRede, int indPat) = 0;
virtual void __fastcall IdentificaChvMont(VTEqpto *eqpto, TList *lisExt, bool flagProt) = 0; //Identifica chaves a montante do defeito
virtual void __fastcall IdentificaChvMont(VTBloco *bloco, TList *lisExt, bool flagProt) = 0; //Identifica chaves a montante do defeito
virtual int __fastcall IndiceChave(VTChave *pchv) = 0;
virtual bool __fastcall Inicia(bool flagExeBlocos = true) = 0;
virtual void __fastcall ListaBlocoRadTotal(TList *lisEXT) = 0;
virtual double __fastcall IA_Crit(VTChave *pchvVis, int indPat) = 0;
virtual double __fastcall IA_Crit(VTVisRede *visRede, int indPat) = 0;
virtual VTEqpto* __fastcall Liga_Crit(VTChave *pchvVis, int indPat) = 0; //201609: Restr.cap.Chaves
virtual bool __fastcall LisBlManLis(VTDefeito *pdef) = 0;
virtual bool __fastcall LisBlJus(VTChave *pchv, TList *lisEXTBloco) = 0;
virtual TList* __fastcall LisBlJusChave(VTChave *pchv) = 0; //Retorna blocos a jusante da chave
virtual VTBarraRad* __fastcall LisBarProt(VTBloco *bloco) = 0;
virtual bool __fastcall LisBarChave(VTChave *pchave, TList *lisBarra) = 0;
virtual bool __fastcall LisBlProt(VTChave *pchv, TList *lisEXTBloco) = 0;
virtual bool __fastcall LisBlVisMan(VTBloco *blocoDef, TList *lisEXTBloco) = 0;
virtual void __fastcall LisBlRadTerm(VTBloco *bloco, TList *lisEXTBlocoRad) = 0;
virtual void __fastcall LisChaveOrd(TList *lisExt) = 0;
virtual bool __fastcall LisChvBloco(VTBloco *bloco, TList *lisExt) = 0;
virtual void __fastcall LisBlocosMed(VTChave *pchave, TList *lisExt, TList *lisExtFixo = NULL) = 0;//Retorna blocos a jusante e a chave de medicao seguinte
virtual bool __fastcall LisLigaVis(VTChave *chv, VTBarra *pbarra, TList *lisExt, TList *lisBlocosExt = NULL) = 0;
virtual bool __fastcall LisLigaVis(VTBarra *pbarra1, TList *lisExt) = 0;
virtual bool __fastcall LisLigaBloco(VTChave *chv1, VTChave *chv2, TList *lisExt) = 0;
virtual void __fastcall ListaOrdenadaBlocos(TList *lisBlocoExt, VTRede *rede = NULL) = 0;
virtual void __fastcall LisBlocosVis(VTRede *rede, TList *lisBlocoExt) = 0;
virtual void __fastcall LisChavesVis(VTRede *rede, TList *lisChaveExt) = 0;
virtual void __fastcall LisChavesProt(VTRede *rede, TList *lisChaveExt) = 0;//Retorna chaves dos equipamentos de protecao ate o suprimento
virtual bool __fastcall ListaZonaProt(VTChave *pchv, TList *lisBlocoExt) = 0;
virtual bool __fastcall ListaZonaProtJus(VTChave *pchv, TList *lisBlocoExt, TList *lisChavesExt = NULL) = 0;
virtual bool __fastcall ListaBlocoRadZonaProtJus(VTChave *pchv, TList *lisBlocoRadExt) = 0;//hk201802a
virtual bool __fastcall ListaZonaProtIFJus(VTChave *pchv, TList *lisBlocoExt, TList *lisChavesExt = NULL) = 0; //hk201710IF
virtual bool __fastcall ListaZonaReligaJus(VTChave *pchv, TList *lisBlocoExt, TList *lisChavesExt = NULL) = 0;//, TList *lisBarrasExt);
virtual TList* __fastcall ListaZonaReliga(VTChave *pchv) = 0;
virtual void __fastcall ListaLigaVisTotal(TList *lisChvVis, TList *lisLigaVis, TList *lisLigaVisDef) = 0;
virtual void __fastcall LisChvJus(VTBloco *bloco, VTChave *chvMont, TList *lisChvJus) = 0;
virtual bool __fastcall LisBarChaveZonaProt(VTChave *pchave, TList *lisBarra) = 0; //n14
virtual bool __fastcall PreparaDefeito(VTDefeito *pdef) = 0;//hkedp, TList *lisChavesAtivas = NULL) = 0;
virtual void __fastcall LisLigaJusChave(VTChave *chave, TList *lisLigaJus) = 0;
virtual bool __fastcall ChavesSerieMax(VTRede *rede, TList *lisTipoChaves, int ncLim, AnsiString &chaveSerie) = 0;
virtual bool __fastcall LisChavesDmax(double dMax, TList *lisChavesDmax) = 0;
virtual void __fastcall ReiniciaZonaReliga(void) = 0;
virtual void __fastcall PreparaIndicacaoFalta(void) = 0; //hk2018: reformula: hk201710IF
//virtual void __fastcall LisBlocoChave(VTBloco *bloco, TList *lisExt) = 0;
//virtual TList* __fastcall LisBlChave(VTChave *pchv) = 0; //Retorna blocos a jusante da chave
//virtual bool __fastcall OrdenaChaves(void) = 0;
//virtual bool __fastcall LisBlMan(VTBloco *blocoDef, TList *lisEXTBloco, TList *lisEXTBlocoVis, TList *lisEXTChv) = 0;
//virtual bool __fastcall LisBlManDefeito(VTDefeito *pdef) = 0;
protected: //métodos acessados via property
virtual double __fastcall PM_GetCargaBlocoJus(VTChave* chave, int np) = 0;
virtual VTBlocos* __fastcall PM_GetBlocos(void) = 0;
virtual bool __fastcall PM_GetFlagInicia(void) = 0;
virtual TList* __fastcall PM_GetLisBlocoRad(void) = 0;
virtual TList* __fastcall PM_GetLisChavesVis(void) = 0;
virtual TList* __fastcall PM_GetLisVisRede(void) = 0;
virtual TList* __fastcall PM_GetLisTipoEqProt(void) = 0;
virtual TList* __fastcall PM_GetLisChavesMed(void) = 0;
virtual TList* __fastcall PM_GetLisDJPri(void) = 0;
virtual TList* __fastcall PM_GetLisChvAuto(void) = 0;
virtual TList* __fastcall PM_GetLisChvAtivas(void) = 0;
virtual int __fastcall PM_GetIProfReliga(void) = 0;
virtual void __fastcall PM_SetIProfReliga(int iProfReliga) = 0;
virtual TList* __fastcall PM_GetLisEQIF(void) = 0; //hk201710IF
virtual TList* __fastcall PM_GetLisChavesIF(void) = 0; //hk201710IF
//virtual void __fastcall PM_SetLisChvAtivas(TList *lisChavesAtivas) = 0;
//virtual TList* __fastcall PM_GetLisBlocoJus(void) = 0;
//virtual TList* __fastcall PM_GetLisBlocoMon(void) = 0;
virtual int __fastcall PM_GetIProfDescoord(void) = 0; //hk201711: taxa de descoordenação de proteção
virtual void __fastcall PM_SetIProfDescoord(int iProfDescoord) = 0; //hk201711: taxa de descoordenação de proteção
public:
};
//---------------------------------------------------------------------------
//função global p/ criar objeto
//---------------------------------------------------------------------------
VTBuscaProt* __fastcall NewObjBuscaProt(VTApl* apl, bool flagCalc);
//---------------------------------------------------------------------------
#endif
//eof
| [
"danilopereira@usp.br"
] | danilopereira@usp.br |
470a01369cb82a96c2e96cbc3e4efb653325824e | 72c3074a87433e93123c05139cb788d62e597265 | /Codeforces/Dragons.cpp | ad0b1c31b430cd83b176575c3259abf22c8f8cbd | [] | no_license | ganpa3/Competitive-Programming | 449f59d6ff36a140bac09266a567a56404fac222 | 08c179b21f6c143a6baf9b9c1a16bec97a5bf173 | refs/heads/master | 2023-07-27T23:57:30.796928 | 2021-09-07T06:14:49 | 2021-09-07T06:14:49 | 286,079,300 | 0 | 0 | null | 2021-01-18T04:16:10 | 2020-08-08T16:29:45 | C++ | UTF-8 | C++ | false | false | 1,177 | cpp | /*
* Problem Statement: https://codeforces.com/problemset/problem/230/A
* Author: ganpa
*/
#include <algorithm>
#include <array>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <unordered_map>
#include <unordered_set>
#include <vector>
typedef long long ll;
using namespace std;
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
ios_base::sync_with_stdio(false), cin.tie(NULL);
int s, n, a, b, m = 1;
cin >> s >> n;
int arr[n][2];
for (int i = 0; i < n; i++) {
cin >> a >> b;
arr[i][0] = a, arr[i][1] = b;
}
for (int i = 0; i < n - 1; i++) {
for (int j = i + 1; j < n; j++) {
if (arr[i][0] > arr[j][0]) swap(arr[j], arr[i]);
}
}
for (int i = 0; i < n; i++) {
if (s > arr[i][0])
s += arr[i][1];
else {
m = 0;
break;
}
}
if (m == 1)
cout << "YES";
else
cout << "NO";
} | [
"pawarg256@gmail.com"
] | pawarg256@gmail.com |
df7cdef5bbb19709e47c3430ac6365a94b36e4f9 | 9a450df12e78239d3b22285b80d202e3d172d058 | /047_ModelFix3(animation)/Framework/Model/Model.cpp | 1ed75db11915b842cef623c8c9490ae0f5f177e9 | [] | no_license | oscar0240/Test | b87f82b64f0ce9bd2f39925f04a61fc160eaf66e | dbd0c9856f6ad2ddf0d5b9f9506146030b976b6d | refs/heads/master | 2020-04-19T08:56:45.254854 | 2019-01-29T05:46:56 | 2019-01-29T05:46:56 | 168,094,684 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,329 | cpp | #include "Framework.h"
#include "Model.h"
#include "ModelBone.h"
#include "ModelMesh.h"
Model::Model()
{
}
Model::~Model()
{
for (Material* material : materials)
SAFE_DELETE(material);
for (ModelBone* bone : bones)
SAFE_DELETE(bone);
for (ModelMesh* mesh : meshes)
SAFE_DELETE(mesh);
}
inline Material * Model::MaterialByName(wstring name)
{
for (Material* material : materials)
{
if (material->Name() == name)
return material;
}
}
ModelBone * Model::BoneByName(wstring name)
{
for (ModelBone* bone : bones)
{
if (bone->Name() == name)
return bone;
}
return NULL;
}
ModelMesh * Model::MeshByName(wstring name)
{
for (ModelMesh* mesh : meshes)
{
if (mesh->Name() == name)
return mesh;
}
return NULL;
}
void Model::CopyGlobalBoneTo(vector<D3DXMATRIX>& transforms)
{
D3DXMATRIX w;
D3DXMatrixIdentity(&w);
CopyGlobalBoneTo(transforms, w);
}
void Model::CopyGlobalBoneTo(vector<D3DXMATRIX>& transforms, D3DXMATRIX & w)
{
transforms.clear();
transforms.assign(bones.size(), D3DXMATRIX());
for (size_t i = 0; i < bones.size(); i++)
{
ModelBone* bone = bones[i];
if (bone->Parent() != NULL)
{
int index = bone->parent->index;
transforms[i] = bone->local * transforms[index];
}
else
{
transforms[i] = bone->local * w;
}
bone->global = transforms[i];
}
}
| [
"parksy4651@gmail.com"
] | parksy4651@gmail.com |
54ba788dddf9a0d31697dee276cca752848d5cff | b4d4ba40f9cadb28ed41a35e9924f85141d3e7d8 | /GUI/Goalies.cpp | e00ce5be209ffa5125d5b7015c805da2985f97e0 | [] | no_license | db4soundman/HockeyQt | 48f977bb523a9819578b2db4e57dd918518d2774 | 1b31d9eb1512a5f2b8786380c6d9fcb444b487e3 | refs/heads/master | 2021-11-22T15:52:06.697611 | 2021-11-13T03:57:40 | 2021-11-13T03:57:40 | 21,149,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,105 | cpp | #include "Goalies.h"
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLabel>
#include "MiamiAllAccessHockey.h"
Goalies::Goalies(HockeyGame* game) {
this->game=game;
QHBoxLayout* myLayout = new QHBoxLayout();
QVBoxLayout* away = new QVBoxLayout();
away->addWidget(new QLabel(MiamiAllAccessHockey::awaySchool.getShortName()));
awayGoalie.addItems(game->getAwayTeam()->getGuiNames());
awayGoalie.addItem("EMPTY NET");
away->addWidget(&awayGoalie);
awayLt.setText("Game Lower Third");
awaySB.setText("Game Stat Bar");
away->addWidget(&awaySeason);
away->addWidget(&awayLt);
away->addWidget(&awaySB);
awaySeason.setText("Season Lower Third");
QVBoxLayout* home = new QVBoxLayout();
home->addWidget(new QLabel(MiamiAllAccessHockey::homeSchool.getShortName()));
homeGoalie.addItems(game->getHomeTeam()->getGuiNames());
homeGoalie.addItem("EMPTY NET");
home->addWidget(&homeGoalie);
homeLt.setText("Game Lower Third");
homeSB.setText("Game Stat Bar");
home->addWidget(&homeSeason);
home->addWidget(&homeLt);
home->addWidget(&homeSB);
homeSeason.setText("Season Lower Third");
myLayout->addLayout(away);
myLayout->addLayout(home);
setLayout(myLayout);
connect(&awayGoalie, SIGNAL(currentIndexChanged(int)),
game->getAwayTeam(), SLOT(setGoalie(int)));
connect(&homeGoalie, SIGNAL(currentIndexChanged(int)),
game->getHomeTeam(), SLOT(setGoalie(int)));
connect(&homeLt, SIGNAL(clicked()), this, SLOT(getHomeLt()));
connect(&awayLt, SIGNAL(clicked()), this, SLOT(getAwayLt()));
connect(&homeSB, SIGNAL(clicked()), this, SLOT(getHomeSb()));
connect(&awaySB, SIGNAL(clicked()), this, SLOT(getAwaySb()));
connect(&awaySeason, SIGNAL(clicked(bool)), this, SLOT(getAwaySeason()));
connect(&homeSeason, SIGNAL(clicked(bool)), this, SLOT(getHomeSeason()));
connect(this, SIGNAL(requestAwayLt(int, bool)), game, SLOT(gatherGameStatsLt(int, bool)));
connect(this, SIGNAL(requestHomeLt(int, bool)), game, SLOT(gatherGameStatsLt(int, bool)));
connect(this, SIGNAL(requestAwaySb(int, bool)), game, SLOT(gatherGameStatsSb(int, bool)));
connect(this, SIGNAL(requestHomeSb(int, bool)), game, SLOT(gatherGameStatsSb(int, bool)));
connect(this, SIGNAL(requestAwaySeason(int,bool)), game, SLOT(gatherSeasonStatsLt(int,bool)));
connect(this, SIGNAL(requestHomeSeason(int,bool)), game, SLOT(gatherSeasonStatsLt(int,bool)));
connect(game->getHomeTeam(), SIGNAL(rosterChanged()), this, SLOT(updateHomeRoster()));
connect(game->getAwayTeam(), SIGNAL(rosterChanged()), this, SLOT(updateAwayRoster()));
emit awayGoalie.currentIndexChanged(0);
emit homeGoalie.currentIndexChanged(0);
}
void Goalies::getHomeLt()
{
emit requestHomeLt(homeGoalie.currentIndex(), true);
}
void Goalies::getAwayLt()
{
emit requestAwayLt(awayGoalie.currentIndex(), false);
}
void Goalies::getHomeSb()
{
emit requestHomeSb(homeGoalie.currentIndex(), true);
}
void Goalies::getAwaySb()
{
emit requestAwaySb(awayGoalie.currentIndex(), false);
}
void Goalies::getAwaySeason()
{
emit requestAwaySeason(awayGoalie.currentIndex(), false);
}
void Goalies::getHomeSeason()
{
emit requestHomeSeason(homeGoalie.currentIndex(), true);
}
void Goalies::updateAwayRoster()
{
disconnect(&awayGoalie, SIGNAL(currentIndexChanged(int)),
game->getAwayTeam(), SLOT(setGoalie(int)));
awayGoalie.clear();
connect(&awayGoalie, SIGNAL(currentIndexChanged(int)),
game->getAwayTeam(), SLOT(setGoalie(int)));
awayGoalie.addItems(game->getAwayTeam()->getGuiNames());
awayGoalie.addItem("EMPTY NET");
}
void Goalies::updateHomeRoster()
{
disconnect(&homeGoalie, SIGNAL(currentIndexChanged(int)),
game->getHomeTeam(), SLOT(setGoalie(int)));
homeGoalie.clear();
connect(&homeGoalie, SIGNAL(currentIndexChanged(int)),
game->getHomeTeam(), SLOT(setGoalie(int)));
homeGoalie.addItems(game->getHomeTeam()->getGuiNames());
homeGoalie.addItem("EMPTY NET");
}
| [
"db4soundman@gmail.com"
] | db4soundman@gmail.com |
d857b3d59330e5f08912fcce527d06551b86e4d3 | 9a60b4f125d11ae13ffd9e48fb4ee9b79e94f562 | /IL2CPP/Il2CppOutputProject/Source/il2cppOutput/Bulk_Generics_30.cpp | 4628d44e487555be6762f7135fae04d86c670c44 | [
"MIT"
] | permissive | dngoins/AutographTheWorld-MR | 99109e728746c164b12cf68e84e7b4b5a9390ab7 | 24e567c8030b73a6942e25b36b7370667c649b90 | refs/heads/master | 2021-04-12T07:51:07.040152 | 2018-03-19T06:36:00 | 2018-03-19T06:36:00 | 125,808,361 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,565,571 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
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>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
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);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
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);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, 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.IO.FileSystemEnumerableIterator`1<System.Object>
struct FileSystemEnumerableIterator_1_t25181536;
// System.String
struct String_t;
// System.IO.SearchResultHandler`1<System.Object>
struct SearchResultHandler_1_t2377980137;
// System.Collections.Generic.List`1<System.IO.Directory/SearchData>
struct List_1_t4120301035;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610;
// System.IO.Directory/SearchData
struct SearchData_t2648226293;
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA
struct WIN32_FIND_DATA_t4232796738;
// Microsoft.Win32.SafeHandles.SafeFindHandle
struct SafeFindHandle_t2068834300;
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_t3273388951;
// System.IO.Iterator`1<System.Object>
struct Iterator_1_t3764629478;
// System.IO.SearchResult
struct SearchResult_t2600365382;
// System.Char[]
struct CharU5BU5D_t3528271667;
// System.Threading.Thread
struct Thread_t2300836069;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_t3512676632;
// System.Collections.IEnumerator
struct IEnumerator_t1853284238;
// System.NotSupportedException
struct NotSupportedException_t1314879016;
// System.Lazy`1/<>c<System.Object>
struct U3CU3Ec_t2006413399;
// System.Lazy`1/Boxed<System.Object>
struct Boxed_t2783796566;
// System.Lazy`1/LazyInternalExceptionHolder<System.Object>
struct LazyInternalExceptionHolder_t2698196110;
// System.Exception
struct Exception_t;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t3750997369;
// System.Lazy`1<System.Object>
struct Lazy_1_t3564634513;
// System.Func`1<System.Object>
struct Func_1_t2509852811;
// System.ArgumentNullException
struct ArgumentNullException_t1615371798;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997;
// System.Delegate
struct Delegate_t1188392813;
// System.InvalidOperationException
struct InvalidOperationException_t56020091;
// System.Type
struct Type_t;
// System.MissingMemberException
struct MissingMemberException_t1385081665;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2059959053;
// System.Collections.Generic.IEnumerable`1<UnityEngine.Vector2>
struct IEnumerable_1_t1136082412;
// System.Collections.Generic.IEnumerable`1<UnityEngine.Vector3>
struct IEnumerable_1_t2702166353;
// System.Linq.CachingComparer`1<System.Object>
struct CachingComparer_1_t1378817919;
// System.Linq.CachingComparer`1<UnityEngine.Vector2>
struct CachingComparer_1_t454941278;
// System.Linq.CachingComparer`1<UnityEngine.Vector3>
struct CachingComparer_1_t2021025219;
// System.Linq.CachingComparer`2<System.Object,System.Int32>
struct CachingComparer_2_t2712248853;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t2317969963;
// System.Collections.Generic.IComparer`1<System.Int32>
struct IComparer_1_t4205211232;
// System.Linq.CachingComparer`2<System.Object,System.Object>
struct CachingComparer_2_t2841409264;
// System.Func`2<System.Object,System.Object>
struct Func_2_t2447130374;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_t39404347;
// System.Linq.CachingComparer`2<UnityEngine.Vector2,System.Single>
struct CachingComparer_2_t4066783831;
// System.Func`2<UnityEngine.Vector2,System.Single>
struct Func_2_t3672504941;
// System.Collections.Generic.IComparer`1<System.Single>
struct IComparer_1_t2651532253;
// System.Linq.CachingComparer`2<UnityEngine.Vector3,System.Single>
struct CachingComparer_2_t33381310;
// System.Func`2<UnityEngine.Vector3,System.Single>
struct Func_2_t3934069716;
// System.Linq.CachingComparerWithChild`2<System.Object,System.Int32>
struct CachingComparerWithChild_2_t2010013078;
// System.Linq.CachingComparerWithChild`2<System.Object,System.Object>
struct CachingComparerWithChild_2_t2139173489;
// System.Linq.CachingComparerWithChild`2<UnityEngine.Vector2,System.Single>
struct CachingComparerWithChild_2_t3364548056;
// System.Linq.CachingComparerWithChild`2<UnityEngine.Vector3,System.Single>
struct CachingComparerWithChild_2_t3626112831;
// System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>
struct EmptyPartition_1_t2757184672;
// System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>
struct IEnumerator_1_t3556546106;
// System.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t4217117203;
// System.Collections.Generic.List`1<System.Collections.DictionaryEntry>
struct List_1_t301083084;
// System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyPartition_1_t2163426353;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerator_1_t2962787787;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t118269214;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_t4002292061;
// System.Linq.EmptyPartition`1<System.Object>
struct EmptyPartition_1_t2713315198;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Linq.EmptyPartition`1<UnityEngine.Ray>
struct EmptyPartition_1_t3419060527;
// System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>
struct IEnumerator_1_t4218421961;
// UnityEngine.Ray[]
struct RayU5BU5D_t1836217960;
// System.Collections.Generic.List`1<UnityEngine.Ray>
struct List_1_t962958939;
// System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>
struct U3CCastIteratorU3Ed__34_1_t2380794792;
// System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>
struct U3CCastIteratorU3Ed__34_1_t2336925318;
// System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>
struct U3COfTypeIteratorU3Ed__32_1_t2611376587;
// System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>
struct U3CZipIteratorU3Ed__236_3_t96320846;
// System.Collections.Generic.IEnumerator`1<System.Boolean>
struct IEnumerator_1_t529858433;
// System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>
struct U3CZipIteratorU3Ed__236_3_t3079139045;
// System.Linq.Enumerable/Iterator`1<System.Char>
struct Iterator_1_t2588820807;
// System.Collections.Generic.IEnumerator`1<System.Char>
struct IEnumerator_1_t4067030938;
// System.Collections.Generic.IEnumerable`1<System.Char>
struct IEnumerable_1_t2614313359;
// System.Func`2<System.Char,System.Boolean>
struct Func_2_t148644517;
// System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>
struct Iterator_1_t2078335975;
// System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>
struct IEnumerable_1_t2103828527;
// System.Func`2<System.Collections.DictionaryEntry,System.Boolean>
struct Func_2_t837490053;
// System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Iterator_1_t1484577656;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerable_1_t1510070208;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
struct Func_2_t1033609360;
// System.Linq.Enumerable/Iterator`1<System.Object>
struct Iterator_1_t2034466501;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471;
// System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>
struct Iterator_1_t2740211830;
// System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>
struct IEnumerable_1_t2765704382;
// System.Func`2<UnityEngine.Ray,System.Boolean>
struct Func_2_t2751558106;
// System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectArrayIterator_2_t1643067185;
// System.Func`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Func_2_t3270419407;
// System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>
struct SelectArrayIterator_2_t819778152;
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectEnumerableIterator_2_t760503204;
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectEnumerableIterator_2_t956622511;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Func_2_t3466538714;
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>
struct SelectEnumerableIterator_2_t4232181467;
// System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectIListIterator_2_t130090036;
// System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>
struct IList_1_t644328125;
// System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>
struct SelectIListIterator_2_t3601768299;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_t600458651;
// System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectIPartitionIterator_2_t2954477804;
// System.Linq.IPartition`1<System.Collections.DictionaryEntry>
struct IPartition_1_t1949326113;
// System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>
struct SelectIPartitionIterator_2_t2131188771;
// System.Linq.IPartition`1<System.Object>
struct IPartition_1_t1905456639;
// System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectListIterator_2_t2565991656;
// System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>
struct SelectListIterator_2_t1742702623;
// System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>
struct SelectManySingleSelectorIterator_2_t963716220;
// System.Func`2<System.Object,System.Collections.Generic.IEnumerable`1<System.Object>>
struct Func_2_t1426983263;
// System.Linq.Enumerable/UnionIterator`1<System.Char>
struct UnionIterator_1_t3402001247;
// System.Collections.Generic.IEqualityComparer`1<System.Char>
struct IEqualityComparer_1_t1446825192;
// System.Linq.Set`1<System.Char>
struct Set_1_t329142533;
// System.Collections.Generic.List`1<System.Char>
struct List_1_t811567916;
// System.Linq.Enumerable/UnionIterator`1<System.Object>
struct UnionIterator_1_t2847646941;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t892470886;
// System.Linq.Set`1<System.Object>
struct Set_1_t4069755523;
// System.Linq.Enumerable/UnionIterator2`1<System.Char>
struct UnionIterator2_1_t1321734732;
// System.Linq.Enumerable/UnionIterator2`1<System.Object>
struct UnionIterator2_1_t767380426;
// System.Linq.Enumerable/UnionIteratorN`1<System.Char>
struct UnionIteratorN_1_t1272659448;
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<System.Char>>
struct SingleLinkedNode_1_t1339374102;
// System.Linq.Enumerable/UnionIteratorN`1<System.Object>
struct UnionIteratorN_1_t718305142;
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<System.Object>>
struct SingleLinkedNode_1_t785019796;
// System.Linq.Enumerable/WhereArrayIterator`1<System.Object>
struct WhereArrayIterator_1_t1891928581;
// System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>
struct WhereArrayIterator_1_t2597673910;
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>
struct WhereEnumerableIterator_1_t2739994797;
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>
struct WhereEnumerableIterator_1_t2229509965;
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct WhereEnumerableIterator_1_t1635751646;
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>
struct WhereEnumerableIterator_1_t2185640491;
// System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>
struct WhereEnumerableIterator_1_t2891385820;
// System.Linq.Enumerable/WhereListIterator`1<System.Object>
struct WhereListIterator_1_t944815607;
// System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>
struct WhereListIterator_1_t1650560936;
// System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>
struct WhereSelectArrayIterator_2_t1355832803;
// System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct WhereSelectEnumerableIterator_2_t2376911338;
// System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
struct WhereSelectEnumerableIterator_2_t1553622305;
// System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
struct WhereSelectListIterator_2_t2661109023;
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_t3733250914;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Linq.EnumerableSorter`1<UnityEngine.Vector2>
struct EnumerableSorter_1_t2809374273;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_t1457185986;
// System.Linq.EnumerableSorter`1<UnityEngine.Vector3>
struct EnumerableSorter_1_t80490918;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t1718750761;
// System.Linq.EnumerableSorter`2<System.Object,System.Int32>
struct EnumerableSorter_2_t935421103;
// System.Comparison`1<System.Int32>
struct Comparison_1_t2725876932;
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t155733339;
// System.Linq.EnumerableSorter`2<System.Object,System.Object>
struct EnumerableSorter_2_t1064581514;
// System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>
struct EnumerableSorter_2_t2289956081;
// System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>
struct EnumerableSorter_2_t2551520856;
// System.Linq.Expressions.Compiler.KeyedStack`2<System.Object,System.Object>
struct KeyedStack_2_t1207398359;
// System.Linq.Expressions.Expression`1<System.Object>
struct Expression_1_t3066134371;
// System.Linq.Expressions.Expression
struct Expression_t1588164026;
// System.Linq.Expressions.LambdaExpression
struct LambdaExpression_t3131094331;
// System.Linq.Expressions.ParameterExpression[]
struct ParameterExpressionU5BU5D_t2413162029;
// System.Linq.Expressions.ParameterExpression
struct ParameterExpression_t1118422084;
// System.Linq.Expressions.ExpressionVisitor
struct ExpressionVisitor_t1561124052;
// System.Linq.Expressions.Compiler.StackSpiller
struct StackSpiller_t2314802664;
// System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>
struct IReadOnlyList_1_t1682844990;
// System.Linq.Expressions.Expression0`1<System.Object>
struct Expression0_1_t2373022017;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>
struct ReadOnlyCollection_1_t2330998371;
// System.Linq.Expressions.Expression1`1<System.Object>
struct Expression1_1_t3696744484;
// System.Linq.Expressions.IParameterProvider
struct IParameterProvider_t268442345;
// System.Linq.Expressions.Expression2`1<System.Object>
struct Expression2_1_t4020544379;
// System.Linq.Expressions.Expression3`1<System.Object>
struct Expression3_1_t1049299550;
// System.Linq.Expressions.ExpressionN`1<System.Object>
struct ExpressionN_1_t953682751;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t4292682451;
// System.Collections.Generic.IReadOnlyList`1<System.Object>
struct IReadOnlyList_1_t3644529070;
// System.Linq.Expressions.FullExpression`1<System.Object>
struct FullExpression_1_t2654851524;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>
struct PrimitiveParameterExpression_1_t1377923958;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>
struct PrimitiveParameterExpression_1_t2414932369;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>
struct PrimitiveParameterExpression_1_t620129167;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>
struct PrimitiveParameterExpression_1_t724198482;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>
struct PrimitiveParameterExpression_1_t4228895373;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>
struct PrimitiveParameterExpression_1_t1875301356;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>
struct PrimitiveParameterExpression_1_t3833456380;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>
struct PrimitiveParameterExpression_1_t4231581746;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>
struct PrimitiveParameterExpression_1_t722236001;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>
struct PrimitiveParameterExpression_1_t65774861;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>
struct PrimitiveParameterExpression_1_t2950213655;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>
struct PrimitiveParameterExpression_1_t2677902767;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>
struct PrimitiveParameterExpression_1_t3458360951;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>
struct PrimitiveParameterExpression_1_t3840697971;
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>
struct PrimitiveParameterExpression_1_t1119708789;
// System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>
struct U3CU3Ec__4_3_t150458201;
// System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Object>
struct U3CU3Ec__4_3_t3406567184;
// System.Linq.Expressions.StackGuard/<>c__5`3<System.Object,System.Object,System.Object>
struct U3CU3Ec__5_3_t2195741215;
// System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>
struct U3CU3Ec__6_4_t79891713;
// System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Object,System.Object>
struct U3CU3Ec__6_4_t803415419;
// System.Linq.GroupedEnumerable`2<System.Object,System.Object>
struct GroupedEnumerable_2_t2921137520;
// System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<System.Object,System.Object>>
struct IEnumerator_1_t3476157844;
// System.Linq.IGrouping`2<System.Object,System.Object>[]
struct IGrouping_2U5BU5D_t2654969873;
// System.Linq.IGrouping`2<System.Object,System.Object>
struct IGrouping_2_t3043587376;
// System.Collections.Generic.List`1<System.Linq.IGrouping`2<System.Object,System.Object>>
struct List_1_t220694822;
// System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>
struct U3CGetEnumeratorU3Ed__9_t3973999269;
// System.Linq.Grouping`2<System.Object,System.Object>
struct Grouping_2_t207236696;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Collections.Generic.Stack`1<System.Object>>[]
struct EntryU5BU5D_t4194458958;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Collections.Generic.Stack`1<System.Object>>
struct KeyCollection_t1165610078;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Collections.Generic.Stack`1<System.Object>>
struct ValueCollection_t2691978925;
// System.Collections.Generic.Dictionary`2<System.Object,System.Collections.Generic.Stack`1<System.Object>>
struct Dictionary_2_t975934607;
// System.Collections.Generic.IList`1<System.Linq.Expressions.ParameterExpression>
struct IList_1_t2933741867;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo>
struct CacheDict_2_t213319420;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>>
struct CacheDict_2_t430650805;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo>
struct ConditionalWeakTable_2_t2404503487;
// System.Linq.Set`1/Slot<System.Object>[]
struct SlotU5BU5D_t973212065;
// System.Func`3<System.Object,System.Object,System.Object>
struct Func_3_t3398609381;
// System.Collections.IEnumerable
struct IEnumerable_t1941168011;
// System.Func`3<System.Object,System.Object,System.Boolean>
struct Func_3_t415791182;
// System.Linq.Set`1/Slot<System.Char>[]
struct SlotU5BU5D_t1657544407;
// System.Linq.IPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IPartition_1_t1355567794;
// System.Linq.IPartition`1<UnityEngine.Ray>
struct IPartition_1_t2611201968;
// System.Action`3<System.Object,System.Object,System.Object>
struct Action_3_t3632554945;
// System.IO.Directory/SearchData[]
struct SearchDataU5BU5D_t2471894680;
// System.Func`2<System.Object,System.Linq.Expressions.Compiler.StackSpiller/Result>
struct Func_2_t1178353799;
// System.Linq.Grouping`2<System.Object,System.Object>[]
struct Grouping_2U5BU5D_t2221495625;
// System.Func`4<System.Object,System.Object,System.Object,System.Object>
struct Func_4_t1418280132;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t2481557153;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t1169129676;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.Char[][]
struct CharU5BU5DU5BU5D_t2526858914;
// System.Collections.DictionaryEntry[][]
struct DictionaryEntryU5BU5DU5BU5D_t3671610434;
// System.Collections.Generic.IEnumerable`1<System.Object>[]
struct IEnumerable_1U5BU5D_t2115075616;
// System.Collections.Generic.Marker[]
struct MarkerU5BU5D_t2881615980;
// System.Single[]
struct SingleU5BU5D_t1444911251;
// System.Object[][]
struct ObjectU5BU5DU5BU5D_t831815024;
// UnityEngine.Ray[][]
struct RayU5BU5DU5BU5D_t292100857;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[][]
struct KeyValuePair_2U5BU5DU5BU5D_t2409249963;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1707895399;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_t2567786569;
// System.Globalization.CultureInfo
struct CultureInfo_t4157843068;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_t2427220165;
// System.Threading.InternalThread
struct InternalThread_t95296544;
// System.Security.Principal.IPrincipal
struct IPrincipal_t2343618843;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.Threading.ExecutionContext
struct ExecutionContext_t1748372627;
// System.Void
struct Void_t1185182177;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.DelegateData
struct DelegateData_t1677132599;
// System.Reflection.MemberFilter
struct MemberFilter_t426314064;
// System.Type[]
struct TypeU5BU5D_t3940880105;
// System.Reflection.Binder
struct Binder_t2999457153;
// System.Func`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>
struct Func_4_t694756426;
// System.Delegate[]
struct DelegateU5BU5D_t1703627840;
// System.Action`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>
struct Action_3_t376445962;
// System.Linq.Expressions.StackGuard
struct StackGuard_t2865828190;
// System.Linq.Expressions.Compiler.StackSpiller/TempMaker
struct TempMaker_t2061025122;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
extern RuntimeClass* List_1_t4120301035_il2cpp_TypeInfo_var;
extern RuntimeClass* Path_t1605229823_il2cpp_TypeInfo_var;
extern RuntimeClass* StringU5BU5D_t1281789340_il2cpp_TypeInfo_var;
extern RuntimeClass* SearchData_t2648226293_il2cpp_TypeInfo_var;
extern const RuntimeMethod* List_1__ctor_m3635573260_RuntimeMethod_var;
extern const uint32_t FileSystemEnumerableIterator_1__ctor_m3232840268_MetadataUsageId;
extern RuntimeClass* WIN32_FIND_DATA_t4232796738_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoIO_t2601436415_il2cpp_TypeInfo_var;
extern RuntimeClass* SafeFindHandle_t2068834300_il2cpp_TypeInfo_var;
extern const RuntimeMethod* List_1_Add_m1559120923_RuntimeMethod_var;
extern const uint32_t FileSystemEnumerableIterator_1_CommonInit_m3137623192_MetadataUsageId;
extern const uint32_t FileSystemEnumerableIterator_1__ctor_m2628860621_MetadataUsageId;
extern const RuntimeMethod* List_1_get_Item_m3638502404_RuntimeMethod_var;
extern const RuntimeMethod* List_1_RemoveAt_m762780374_RuntimeMethod_var;
extern const RuntimeMethod* List_1_get_Count_m958122929_RuntimeMethod_var;
extern const uint32_t FileSystemEnumerableIterator_1_MoveNext_m808852106_MetadataUsageId;
extern RuntimeClass* SearchResult_t2600365382_il2cpp_TypeInfo_var;
extern const uint32_t FileSystemEnumerableIterator_1_CreateSearchResult_m1408355418_MetadataUsageId;
extern const RuntimeMethod* List_1_Insert_m2523363920_RuntimeMethod_var;
extern String_t* _stringLiteral3452614534;
extern const uint32_t FileSystemEnumerableIterator_1_AddSearchableDirsToStack_m2987866814_MetadataUsageId;
extern String_t* _stringLiteral3452614530;
extern const uint32_t FileSystemEnumerableIterator_1_NormalizeSearchPattern_m1627217068_MetadataUsageId;
extern const uint32_t FileSystemEnumerableIterator_1_GetNormalizedSearchCriteria_m63937011_MetadataUsageId;
extern const uint32_t FileSystemEnumerableIterator_1_GetFullSearchString_m3869162752_MetadataUsageId;
extern RuntimeClass* GC_t959872083_il2cpp_TypeInfo_var;
extern const uint32_t Iterator_1_Dispose_m1804293407_MetadataUsageId;
extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m2231441267_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m2231441267_MetadataUsageId;
extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Lazy_1__ctor_m430128989_RuntimeMethod_var;
extern String_t* _stringLiteral2198560359;
extern const uint32_t Lazy_1__ctor_m430128989_MetadataUsageId;
extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
extern RuntimeClass* LazyHelpers_t2803856572_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Lazy_1_GetObjectFromMode_m915557523_RuntimeMethod_var;
extern String_t* _stringLiteral1985170617;
extern String_t* _stringLiteral2307952101;
extern const uint32_t Lazy_1_GetObjectFromMode_m915557523_MetadataUsageId;
extern String_t* _stringLiteral3569240370;
extern const uint32_t Lazy_1_ToString_m1088859750_MetadataUsageId;
extern const uint32_t Lazy_1_get_Mode_m3935276179_MetadataUsageId;
extern RuntimeClass* Debugger_t2143709070_il2cpp_TypeInfo_var;
extern const uint32_t Lazy_1_get_Value_m2907673513_MetadataUsageId;
extern const RuntimeMethod* Volatile_Read_TisRuntimeObject_m3872089505_RuntimeMethod_var;
extern const RuntimeMethod* Volatile_Write_TisRuntimeObject_m886068950_RuntimeMethod_var;
extern const uint32_t Lazy_1_LazyInitValue_m4220374548_MetadataUsageId;
extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
extern RuntimeClass* MissingMethodException_t1274661534_il2cpp_TypeInfo_var;
extern RuntimeClass* MissingMemberException_t1385081665_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Lazy_1_CreateValue_m2385577411_RuntimeMethod_var;
extern String_t* _stringLiteral1706190048;
extern String_t* _stringLiteral2752591534;
extern const uint32_t Lazy_1_CreateValue_m2385577411_MetadataUsageId;
extern const RuntimeMethod* EmptyPartition_1_System_Collections_IEnumerator_Reset_m3733115514_RuntimeMethod_var;
extern const uint32_t EmptyPartition_1_System_Collections_IEnumerator_Reset_m3733115514_MetadataUsageId;
extern const RuntimeMethod* EmptyPartition_1_System_Collections_IEnumerator_Reset_m944359954_RuntimeMethod_var;
extern const uint32_t EmptyPartition_1_System_Collections_IEnumerator_Reset_m944359954_MetadataUsageId;
extern const RuntimeMethod* EmptyPartition_1_System_Collections_IEnumerator_Reset_m1113105900_RuntimeMethod_var;
extern const uint32_t EmptyPartition_1_System_Collections_IEnumerator_Reset_m1113105900_MetadataUsageId;
extern const RuntimeMethod* EmptyPartition_1_System_Collections_IEnumerator_Reset_m400612218_RuntimeMethod_var;
extern const uint32_t EmptyPartition_1_System_Collections_IEnumerator_Reset_m400612218_MetadataUsageId;
extern RuntimeClass* IEnumerable_t1941168011_il2cpp_TypeInfo_var;
extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var;
extern const uint32_t U3CCastIteratorU3Ed__34_1_MoveNext_m2630395722_MetadataUsageId;
extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var;
extern const uint32_t U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m422500470_MetadataUsageId;
extern const RuntimeMethod* U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m2243177754_RuntimeMethod_var;
extern const uint32_t U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m2243177754_MetadataUsageId;
extern const uint32_t U3CCastIteratorU3Ed__34_1_MoveNext_m1350060915_MetadataUsageId;
extern const uint32_t U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m1170799485_MetadataUsageId;
extern const RuntimeMethod* U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m1970766840_RuntimeMethod_var;
extern const uint32_t U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m1970766840_MetadataUsageId;
extern const uint32_t U3COfTypeIteratorU3Ed__32_1_MoveNext_m3609008656_MetadataUsageId;
extern const uint32_t U3COfTypeIteratorU3Ed__32_1_U3CU3Em__Finally1_m1858632295_MetadataUsageId;
extern const RuntimeMethod* U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_Reset_m2881299708_RuntimeMethod_var;
extern const uint32_t U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_Reset_m2881299708_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_MoveNext_m1816982793_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m1076864441_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m3805747796_MetadataUsageId;
extern const RuntimeMethod* U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m1310433548_RuntimeMethod_var;
extern const uint32_t U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m1310433548_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_MoveNext_m3903008563_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m2419129058_MetadataUsageId;
extern const uint32_t U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m2419325666_MetadataUsageId;
extern const RuntimeMethod* U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m4173235672_RuntimeMethod_var;
extern const uint32_t U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m4173235672_MetadataUsageId;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m3089157613_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m3089157613_MetadataUsageId;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m6790728_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m6790728_MetadataUsageId;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m4174779311_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m4174779311_MetadataUsageId;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m2523254832_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m2523254832_MetadataUsageId;
extern const RuntimeMethod* Iterator_1_System_Collections_IEnumerator_Reset_m2805409862_RuntimeMethod_var;
extern const uint32_t Iterator_1_System_Collections_IEnumerator_Reset_m2805409862_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_Dispose_m3862804282_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_MoveNext_m1500635119_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToArray_m1883646757_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToList_m1958580226_MetadataUsageId;
extern const RuntimeMethod* SelectEnumerableIterator_2_GetCount_m357576939_RuntimeMethod_var;
extern const uint32_t SelectEnumerableIterator_2_GetCount_m357576939_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_Dispose_m3571586847_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_MoveNext_m2562910218_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToArray_m675881335_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToList_m2709422520_MetadataUsageId;
extern const RuntimeMethod* SelectEnumerableIterator_2_GetCount_m2168038858_RuntimeMethod_var;
extern const uint32_t SelectEnumerableIterator_2_GetCount_m2168038858_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_Dispose_m2790816898_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_MoveNext_m1563322355_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToArray_m3280562849_MetadataUsageId;
extern const uint32_t SelectEnumerableIterator_2_ToList_m1184928937_MetadataUsageId;
extern const RuntimeMethod* SelectEnumerableIterator_2_GetCount_m149151510_RuntimeMethod_var;
extern const uint32_t SelectEnumerableIterator_2_GetCount_m149151510_MetadataUsageId;
extern const uint32_t SelectIListIterator_2_MoveNext_m4196171901_MetadataUsageId;
extern const uint32_t SelectIListIterator_2_Dispose_m3100268919_MetadataUsageId;
extern const uint32_t SelectIListIterator_2_MoveNext_m4209761780_MetadataUsageId;
extern const uint32_t SelectIListIterator_2_Dispose_m1388706584_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_MoveNext_m2485470954_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_Dispose_m405696305_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_LazyToArray_m2882688373_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_PreallocatingToArray_m4096222762_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_ToList_m531909262_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_GetCount_m3814325761_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_MoveNext_m3403270584_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_Dispose_m1751187625_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_LazyToArray_m24814827_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_PreallocatingToArray_m2279286047_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_ToList_m1963142377_MetadataUsageId;
extern const uint32_t SelectIPartitionIterator_2_GetCount_m842092247_MetadataUsageId;
extern const uint32_t SelectManySingleSelectorIterator_2_Dispose_m3642031398_MetadataUsageId;
extern const RuntimeMethod* SelectManySingleSelectorIterator_2_GetCount_m3920743042_RuntimeMethod_var;
extern const uint32_t SelectManySingleSelectorIterator_2_GetCount_m3920743042_MetadataUsageId;
extern const uint32_t SelectManySingleSelectorIterator_2_MoveNext_m1777559799_MetadataUsageId;
extern const RuntimeMethod* ArrayBuilder_1_get_Item_m3563499930_RuntimeMethod_var;
extern const RuntimeMethod* ArrayBuilder_1_get_Count_m2587795986_RuntimeMethod_var;
extern const uint32_t SelectManySingleSelectorIterator_2_ToArray_m2521061925_MetadataUsageId;
extern const uint32_t SelectManySingleSelectorIterator_2_ToList_m2597685119_MetadataUsageId;
extern const uint32_t UnionIterator_1_Dispose_m3312131536_MetadataUsageId;
extern const uint32_t UnionIterator_1_SetEnumerator_m1125297949_MetadataUsageId;
extern const uint32_t UnionIterator_1_GetNext_m1279570535_MetadataUsageId;
extern const uint32_t UnionIterator_1_MoveNext_m375289487_MetadataUsageId;
extern const uint32_t UnionIterator_1_Dispose_m745608159_MetadataUsageId;
extern const uint32_t UnionIterator_1_SetEnumerator_m3710368852_MetadataUsageId;
extern const uint32_t UnionIterator_1_GetNext_m235872769_MetadataUsageId;
extern const uint32_t UnionIterator_1_MoveNext_m4242229629_MetadataUsageId;
extern const RuntimeMethod* WhereArrayIterator_1_GetCount_m789606869_RuntimeMethod_var;
extern const uint32_t WhereArrayIterator_1_GetCount_m789606869_MetadataUsageId;
extern const RuntimeMethod* WhereArrayIterator_1_GetCount_m380671501_RuntimeMethod_var;
extern const uint32_t WhereArrayIterator_1_GetCount_m380671501_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_Dispose_m1100994620_MetadataUsageId;
extern const RuntimeMethod* WhereEnumerableIterator_1_GetCount_m3749642994_RuntimeMethod_var;
extern const uint32_t WhereEnumerableIterator_1_GetCount_m3749642994_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_MoveNext_m3690423142_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToArray_m2832206161_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToList_m3300074515_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_Dispose_m3543618726_MetadataUsageId;
extern const RuntimeMethod* WhereEnumerableIterator_1_GetCount_m3525502306_RuntimeMethod_var;
extern const uint32_t WhereEnumerableIterator_1_GetCount_m3525502306_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_MoveNext_m3233381382_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToArray_m2710082339_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToList_m1855233425_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_Dispose_m361728903_MetadataUsageId;
extern const RuntimeMethod* WhereEnumerableIterator_1_GetCount_m2061906979_RuntimeMethod_var;
extern const uint32_t WhereEnumerableIterator_1_GetCount_m2061906979_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_MoveNext_m3939683622_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToArray_m2449119527_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToList_m214883435_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_Dispose_m971371404_MetadataUsageId;
extern const RuntimeMethod* WhereEnumerableIterator_1_GetCount_m2032778046_RuntimeMethod_var;
extern const uint32_t WhereEnumerableIterator_1_GetCount_m2032778046_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_MoveNext_m636622806_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToArray_m3619612416_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToList_m3259850534_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_Dispose_m4085193722_MetadataUsageId;
extern const RuntimeMethod* WhereEnumerableIterator_1_GetCount_m1909005400_RuntimeMethod_var;
extern const uint32_t WhereEnumerableIterator_1_GetCount_m1909005400_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_MoveNext_m3780527305_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToArray_m3710798724_MetadataUsageId;
extern const uint32_t WhereEnumerableIterator_1_ToList_m3036752262_MetadataUsageId;
extern const RuntimeMethod* WhereListIterator_1_GetCount_m797833796_RuntimeMethod_var;
extern const uint32_t WhereListIterator_1_GetCount_m797833796_MetadataUsageId;
extern const RuntimeMethod* WhereListIterator_1_GetCount_m4136058776_RuntimeMethod_var;
extern const uint32_t WhereListIterator_1_GetCount_m4136058776_MetadataUsageId;
extern const RuntimeMethod* WhereSelectArrayIterator_2_GetCount_m3733009541_RuntimeMethod_var;
extern const uint32_t WhereSelectArrayIterator_2_GetCount_m3733009541_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_Dispose_m1175004086_MetadataUsageId;
extern const RuntimeMethod* WhereSelectEnumerableIterator_2_GetCount_m845042880_RuntimeMethod_var;
extern const uint32_t WhereSelectEnumerableIterator_2_GetCount_m845042880_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_MoveNext_m3459919702_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_ToArray_m3396048257_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_ToList_m3156119266_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_Dispose_m1978152592_MetadataUsageId;
extern const RuntimeMethod* WhereSelectEnumerableIterator_2_GetCount_m1765228792_RuntimeMethod_var;
extern const uint32_t WhereSelectEnumerableIterator_2_GetCount_m1765228792_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_MoveNext_m423116621_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_ToArray_m2685513056_MetadataUsageId;
extern const uint32_t WhereSelectEnumerableIterator_2_ToList_m174395360_MetadataUsageId;
extern const RuntimeMethod* WhereSelectListIterator_2_GetCount_m2170117351_RuntimeMethod_var;
extern const uint32_t WhereSelectListIterator_2_GetCount_m2170117351_MetadataUsageId;
extern RuntimeClass* Int32U5BU5D_t385246372_il2cpp_TypeInfo_var;
extern const uint32_t EnumerableSorter_1_ComputeMap_m3213864270_MetadataUsageId;
extern const uint32_t EnumerableSorter_1_ComputeMap_m2386998619_MetadataUsageId;
extern const uint32_t EnumerableSorter_1_ComputeMap_m4245224842_MetadataUsageId;
extern RuntimeClass* Comparison_1_t2725876932_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Comparison_1__ctor_m2649066178_RuntimeMethod_var;
extern const RuntimeMethod* Comparer_1_Create_m3068808654_RuntimeMethod_var;
extern const RuntimeMethod* Array_Sort_TisInt32_t2950945753_m263117253_RuntimeMethod_var;
extern const uint32_t EnumerableSorter_2_QuickSort_m311121746_MetadataUsageId;
extern const uint32_t EnumerableSorter_2_QuickSort_m2250302646_MetadataUsageId;
extern const uint32_t EnumerableSorter_2_QuickSort_m4182244178_MetadataUsageId;
extern const uint32_t EnumerableSorter_2_QuickSort_m1585528536_MetadataUsageId;
extern const uint32_t Expression_1_get_TypeCore_m3285720640_MetadataUsageId;
extern const uint32_t Expression_1_get_PublicType_m2211744302_MetadataUsageId;
extern const RuntimeMethod* Expression_1_Rewrite_m3186661506_RuntimeMethod_var;
extern const uint32_t Expression_1_Rewrite_m3186661506_MetadataUsageId;
extern RuntimeClass* IReadOnlyCollection_1_t1121538021_il2cpp_TypeInfo_var;
extern RuntimeClass* IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var;
extern const uint32_t Expression_1_Create_m3159949416_MetadataUsageId;
extern const RuntimeMethod* Expression0_1_GetParameter_m1094097559_RuntimeMethod_var;
extern String_t* _stringLiteral797640427;
extern const uint32_t Expression0_1_GetParameter_m1094097559_MetadataUsageId;
extern RuntimeClass* EmptyReadOnlyCollection_1_t924173605_il2cpp_TypeInfo_var;
extern const uint32_t Expression0_1_GetOrMakeParameters_m1663143714_MetadataUsageId;
extern RuntimeClass* Expression_t1588164026_il2cpp_TypeInfo_var;
extern const uint32_t Expression0_1_Rewrite_m2971471140_MetadataUsageId;
extern const RuntimeMethod* ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var;
extern const RuntimeMethod* Expression1_1_GetParameter_m2723364996_RuntimeMethod_var;
extern const uint32_t Expression1_1_GetParameter_m2723364996_MetadataUsageId;
extern RuntimeClass* ParameterExpressionU5BU5D_t2413162029_il2cpp_TypeInfo_var;
extern const uint32_t Expression1_1_Rewrite_m4145574155_MetadataUsageId;
extern const RuntimeMethod* Expression2_1_GetParameter_m2272117852_RuntimeMethod_var;
extern const uint32_t Expression2_1_GetParameter_m2272117852_MetadataUsageId;
extern const uint32_t Expression2_1_Rewrite_m815156414_MetadataUsageId;
extern const RuntimeMethod* Expression3_1_GetParameter_m2319254964_RuntimeMethod_var;
extern const uint32_t Expression3_1_GetParameter_m2319254964_MetadataUsageId;
extern const uint32_t Expression3_1_Rewrite_m2922686966_MetadataUsageId;
extern const uint32_t ExpressionN_1_get_ParameterCount_m1631903886_MetadataUsageId;
extern const uint32_t ExpressionN_1_GetParameter_m845930414_MetadataUsageId;
extern const RuntimeMethod* ExpressionUtils_ReturnReadOnly_TisParameterExpression_t1118422084_m3585367294_RuntimeMethod_var;
extern const uint32_t ExpressionN_1_GetOrMakeParameters_m1731466558_MetadataUsageId;
extern const uint32_t ExpressionN_1_Rewrite_m3421313574_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m1857664629_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m10081337_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m4053833933_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m3682048729_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m2547347994_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m2804960795_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m403212958_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m1427244131_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m3985731604_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m1929407240_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m3895280629_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m4021296104_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m2725934601_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m3038120241_MetadataUsageId;
extern const uint32_t PrimitiveParameterExpression_1_get_Type_m928177355_MetadataUsageId;
extern const RuntimeMethod* GroupedEnumerable_2__ctor_m3616878539_RuntimeMethod_var;
extern String_t* _stringLiteral4294193667;
extern String_t* _stringLiteral2212699745;
extern const uint32_t GroupedEnumerable_2__ctor_m3616878539_MetadataUsageId;
extern const RuntimeMethod* U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_Reset_m3320286252_RuntimeMethod_var;
extern const uint32_t U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_Reset_m3320286252_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_Add_m4140277396_RuntimeMethod_var;
extern const uint32_t Grouping_2_Add_m4140277396_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m1381059969_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m1381059969_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_m76032102_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_m76032102_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m1360237789_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m1360237789_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_IListU3CTElementU3E_Insert_m3254640478_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_IListU3CTElementU3E_Insert_m3254640478_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_m2645974329_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_m2645974329_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_IListU3CTElementU3E_get_Item_m1093965177_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_IListU3CTElementU3E_get_Item_m1093965177_MetadataUsageId;
extern const RuntimeMethod* Grouping_2_System_Collections_Generic_IListU3CTElementU3E_set_Item_m501666570_RuntimeMethod_var;
extern const uint32_t Grouping_2_System_Collections_Generic_IListU3CTElementU3E_set_Item_m501666570_MetadataUsageId;
struct Exception_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct StringU5BU5D_t1281789340;
struct CharU5BU5D_t3528271667;
struct ObjectU5BU5D_t2843939325;
struct Vector2U5BU5D_t1457185986;
struct Vector3U5BU5D_t1718750761;
struct DictionaryEntryU5BU5D_t4217117203;
struct KeyValuePair_2U5BU5D_t118269214;
struct RayU5BU5D_t1836217960;
struct Int32U5BU5D_t385246372;
struct SingleU5BU5D_t1444911251;
struct ParameterExpressionU5BU5D_t2413162029;
struct IGrouping_2U5BU5D_t2654969873;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef DICTIONARY_2_T975934607_H
#define DICTIONARY_2_T975934607_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.Object,System.Collections.Generic.Stack`1<System.Object>>
struct Dictionary_2_t975934607 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t385246372* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t4194458958* ___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_t1165610078 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t2691978925 * ___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_t975934607, ___buckets_0)); }
inline Int32U5BU5D_t385246372* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t385246372** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t385246372* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((&___buckets_0), value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t975934607, ___entries_1)); }
inline EntryU5BU5D_t4194458958* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t4194458958** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t4194458958* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((&___entries_1), value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t975934607, ___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_t975934607, ___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_t975934607, ___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_t975934607, ___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_t975934607, ___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((&___comparer_6), value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t975934607, ___keys_7)); }
inline KeyCollection_t1165610078 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t1165610078 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t1165610078 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((&___keys_7), value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t975934607, ___values_8)); }
inline ValueCollection_t2691978925 * get_values_8() const { return ___values_8; }
inline ValueCollection_t2691978925 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t2691978925 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((&___values_8), value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t975934607, ____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((&____syncRoot_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_T975934607_H
#ifndef KEYEDSTACK_2_T1207398359_H
#define KEYEDSTACK_2_T1207398359_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.KeyedStack`2<System.Object,System.Object>
struct KeyedStack_2_t1207398359 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,System.Collections.Generic.Stack`1<TValue>> System.Linq.Expressions.Compiler.KeyedStack`2::_data
Dictionary_2_t975934607 * ____data_0;
public:
inline static int32_t get_offset_of__data_0() { return static_cast<int32_t>(offsetof(KeyedStack_2_t1207398359, ____data_0)); }
inline Dictionary_2_t975934607 * get__data_0() const { return ____data_0; }
inline Dictionary_2_t975934607 ** get_address_of__data_0() { return &____data_0; }
inline void set__data_0(Dictionary_2_t975934607 * value)
{
____data_0 = value;
Il2CppCodeGenWriteBarrier((&____data_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYEDSTACK_2_T1207398359_H
#ifndef STACK_1_T3923495619_H
#define STACK_1_T3923495619_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t3923495619 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_t2843939325* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____array_0)); }
inline ObjectU5BU5D_t2843939325* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t2843939325** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t2843939325* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____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__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACK_1_T3923495619_H
#ifndef COMPARER_1_T155733339_H
#define COMPARER_1_T155733339_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t155733339 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t155733339_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t155733339 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t155733339_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t155733339 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t155733339 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t155733339 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPARER_1_T155733339_H
#ifndef ENUMERABLESORTER_1_T3733250914_H
#define ENUMERABLESORTER_1_T3733250914_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_t3733250914 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_1_T3733250914_H
#ifndef EMPTYPARTITION_1_T2757184672_H
#define EMPTYPARTITION_1_T2757184672_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>
struct EmptyPartition_1_t2757184672 : public RuntimeObject
{
public:
public:
};
struct EmptyPartition_1_t2757184672_StaticFields
{
public:
// System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance
RuntimeObject* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t2757184672_StaticFields, ___Instance_0)); }
inline RuntimeObject* get_Instance_0() const { return ___Instance_0; }
inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(RuntimeObject* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((&___Instance_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYPARTITION_1_T2757184672_H
#ifndef ENUMERABLESORTER_1_T80490918_H
#define ENUMERABLESORTER_1_T80490918_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`1<UnityEngine.Vector3>
struct EnumerableSorter_1_t80490918 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_1_T80490918_H
#ifndef ENUMERABLESORTER_1_T2809374273_H
#define ENUMERABLESORTER_1_T2809374273_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`1<UnityEngine.Vector2>
struct EnumerableSorter_1_t2809374273 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_1_T2809374273_H
#ifndef EMPTYREADONLYCOLLECTION_1_T924173605_H
#define EMPTYREADONLYCOLLECTION_1_T924173605_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Dynamic.Utils.EmptyReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>
struct EmptyReadOnlyCollection_1_t924173605 : public RuntimeObject
{
public:
public:
};
struct EmptyReadOnlyCollection_1_t924173605_StaticFields
{
public:
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Dynamic.Utils.EmptyReadOnlyCollection`1::Instance
ReadOnlyCollection_1_t2330998371 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyReadOnlyCollection_1_t924173605_StaticFields, ___Instance_0)); }
inline ReadOnlyCollection_1_t2330998371 * get_Instance_0() const { return ___Instance_0; }
inline ReadOnlyCollection_1_t2330998371 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(ReadOnlyCollection_1_t2330998371 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((&___Instance_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYREADONLYCOLLECTION_1_T924173605_H
#ifndef READONLYCOLLECTION_1_T2330998371_H
#define READONLYCOLLECTION_1_T2330998371_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>
struct ReadOnlyCollection_1_t2330998371 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2330998371, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t2330998371, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READONLYCOLLECTION_1_T2330998371_H
#ifndef U3CU3EC__4_3_T3406567184_H
#define U3CU3EC__4_3_T3406567184_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Object>
struct U3CU3Ec__4_3_t3406567184 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec__4_3_t3406567184_StaticFields
{
public:
// System.Linq.Expressions.StackGuard/<>c__4`3<T1,T2,T3> System.Linq.Expressions.StackGuard/<>c__4`3::<>9
U3CU3Ec__4_3_t3406567184 * ___U3CU3E9_0;
// System.Func`2<System.Object,System.Object> System.Linq.Expressions.StackGuard/<>c__4`3::<>9__4_0
Func_2_t2447130374 * ___U3CU3E9__4_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__4_3_t3406567184_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec__4_3_t3406567184 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec__4_3_t3406567184 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec__4_3_t3406567184 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
inline static int32_t get_offset_of_U3CU3E9__4_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__4_3_t3406567184_StaticFields, ___U3CU3E9__4_0_1)); }
inline Func_2_t2447130374 * get_U3CU3E9__4_0_1() const { return ___U3CU3E9__4_0_1; }
inline Func_2_t2447130374 ** get_address_of_U3CU3E9__4_0_1() { return &___U3CU3E9__4_0_1; }
inline void set_U3CU3E9__4_0_1(Func_2_t2447130374 * value)
{
___U3CU3E9__4_0_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9__4_0_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__4_3_T3406567184_H
#ifndef U3CU3EC__4_3_T150458201_H
#define U3CU3EC__4_3_T150458201_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>
struct U3CU3Ec__4_3_t150458201 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec__4_3_t150458201_StaticFields
{
public:
// System.Linq.Expressions.StackGuard/<>c__4`3<T1,T2,T3> System.Linq.Expressions.StackGuard/<>c__4`3::<>9
U3CU3Ec__4_3_t150458201 * ___U3CU3E9_0;
// System.Func`2<System.Object,System.Object> System.Linq.Expressions.StackGuard/<>c__4`3::<>9__4_0
Func_2_t2447130374 * ___U3CU3E9__4_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__4_3_t150458201_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec__4_3_t150458201 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec__4_3_t150458201 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec__4_3_t150458201 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
inline static int32_t get_offset_of_U3CU3E9__4_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__4_3_t150458201_StaticFields, ___U3CU3E9__4_0_1)); }
inline Func_2_t2447130374 * get_U3CU3E9__4_0_1() const { return ___U3CU3E9__4_0_1; }
inline Func_2_t2447130374 ** get_address_of_U3CU3E9__4_0_1() { return &___U3CU3E9__4_0_1; }
inline void set_U3CU3E9__4_0_1(Func_2_t2447130374 * value)
{
___U3CU3E9__4_0_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9__4_0_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__4_3_T150458201_H
#ifndef EXPRESSIONVISITOR_T1561124052_H
#define EXPRESSIONVISITOR_T1561124052_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.ExpressionVisitor
struct ExpressionVisitor_t1561124052 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSIONVISITOR_T1561124052_H
#ifndef CACHINGCOMPARER_1_T2021025219_H
#define CACHINGCOMPARER_1_T2021025219_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`1<UnityEngine.Vector3>
struct CachingComparer_1_t2021025219 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_1_T2021025219_H
#ifndef EXPRESSION_T1588164026_H
#define EXPRESSION_T1588164026_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression
struct Expression_t1588164026 : public RuntimeObject
{
public:
public:
};
struct Expression_t1588164026_StaticFields
{
public:
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo> System.Linq.Expressions.Expression::s_lambdaDelegateCache
CacheDict_2_t213319420 * ___s_lambdaDelegateCache_0;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>> modreq(System.Runtime.CompilerServices.IsVolatile) System.Linq.Expressions.Expression::s_lambdaFactories
CacheDict_2_t430650805 * ___s_lambdaFactories_1;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo> System.Linq.Expressions.Expression::s_legacyCtorSupportTable
ConditionalWeakTable_2_t2404503487 * ___s_legacyCtorSupportTable_2;
public:
inline static int32_t get_offset_of_s_lambdaDelegateCache_0() { return static_cast<int32_t>(offsetof(Expression_t1588164026_StaticFields, ___s_lambdaDelegateCache_0)); }
inline CacheDict_2_t213319420 * get_s_lambdaDelegateCache_0() const { return ___s_lambdaDelegateCache_0; }
inline CacheDict_2_t213319420 ** get_address_of_s_lambdaDelegateCache_0() { return &___s_lambdaDelegateCache_0; }
inline void set_s_lambdaDelegateCache_0(CacheDict_2_t213319420 * value)
{
___s_lambdaDelegateCache_0 = value;
Il2CppCodeGenWriteBarrier((&___s_lambdaDelegateCache_0), value);
}
inline static int32_t get_offset_of_s_lambdaFactories_1() { return static_cast<int32_t>(offsetof(Expression_t1588164026_StaticFields, ___s_lambdaFactories_1)); }
inline CacheDict_2_t430650805 * get_s_lambdaFactories_1() const { return ___s_lambdaFactories_1; }
inline CacheDict_2_t430650805 ** get_address_of_s_lambdaFactories_1() { return &___s_lambdaFactories_1; }
inline void set_s_lambdaFactories_1(CacheDict_2_t430650805 * value)
{
___s_lambdaFactories_1 = value;
Il2CppCodeGenWriteBarrier((&___s_lambdaFactories_1), value);
}
inline static int32_t get_offset_of_s_legacyCtorSupportTable_2() { return static_cast<int32_t>(offsetof(Expression_t1588164026_StaticFields, ___s_legacyCtorSupportTable_2)); }
inline ConditionalWeakTable_2_t2404503487 * get_s_legacyCtorSupportTable_2() const { return ___s_legacyCtorSupportTable_2; }
inline ConditionalWeakTable_2_t2404503487 ** get_address_of_s_legacyCtorSupportTable_2() { return &___s_legacyCtorSupportTable_2; }
inline void set_s_legacyCtorSupportTable_2(ConditionalWeakTable_2_t2404503487 * value)
{
___s_legacyCtorSupportTable_2 = value;
Il2CppCodeGenWriteBarrier((&___s_legacyCtorSupportTable_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION_T1588164026_H
#ifndef CACHINGCOMPARER_1_T1378817919_H
#define CACHINGCOMPARER_1_T1378817919_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`1<System.Object>
struct CachingComparer_1_t1378817919 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_1_T1378817919_H
#ifndef CACHINGCOMPARER_1_T454941278_H
#define CACHINGCOMPARER_1_T454941278_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`1<UnityEngine.Vector2>
struct CachingComparer_1_t454941278 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_1_T454941278_H
#ifndef LIST_1_T301083084_H
#define LIST_1_T301083084_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Collections.DictionaryEntry>
struct List_1_t301083084 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DictionaryEntryU5BU5D_t4217117203* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____items_1)); }
inline DictionaryEntryU5BU5D_t4217117203* get__items_1() const { return ____items_1; }
inline DictionaryEntryU5BU5D_t4217117203** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DictionaryEntryU5BU5D_t4217117203* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t301083084, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t301083084_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DictionaryEntryU5BU5D_t4217117203* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t301083084_StaticFields, ____emptyArray_5)); }
inline DictionaryEntryU5BU5D_t4217117203* get__emptyArray_5() const { return ____emptyArray_5; }
inline DictionaryEntryU5BU5D_t4217117203** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DictionaryEntryU5BU5D_t4217117203* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T301083084_H
#ifndef SET_1_T4069755523_H
#define SET_1_T4069755523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Set`1<System.Object>
struct Set_1_t4069755523 : public RuntimeObject
{
public:
// System.Collections.Generic.IEqualityComparer`1<TElement> System.Linq.Set`1::_comparer
RuntimeObject* ____comparer_0;
// System.Int32[] System.Linq.Set`1::_buckets
Int32U5BU5D_t385246372* ____buckets_1;
// System.Linq.Set`1/Slot<TElement>[] System.Linq.Set`1::_slots
SlotU5BU5D_t973212065* ____slots_2;
// System.Int32 System.Linq.Set`1::_count
int32_t ____count_3;
public:
inline static int32_t get_offset_of__comparer_0() { return static_cast<int32_t>(offsetof(Set_1_t4069755523, ____comparer_0)); }
inline RuntimeObject* get__comparer_0() const { return ____comparer_0; }
inline RuntimeObject** get_address_of__comparer_0() { return &____comparer_0; }
inline void set__comparer_0(RuntimeObject* value)
{
____comparer_0 = value;
Il2CppCodeGenWriteBarrier((&____comparer_0), value);
}
inline static int32_t get_offset_of__buckets_1() { return static_cast<int32_t>(offsetof(Set_1_t4069755523, ____buckets_1)); }
inline Int32U5BU5D_t385246372* get__buckets_1() const { return ____buckets_1; }
inline Int32U5BU5D_t385246372** get_address_of__buckets_1() { return &____buckets_1; }
inline void set__buckets_1(Int32U5BU5D_t385246372* value)
{
____buckets_1 = value;
Il2CppCodeGenWriteBarrier((&____buckets_1), value);
}
inline static int32_t get_offset_of__slots_2() { return static_cast<int32_t>(offsetof(Set_1_t4069755523, ____slots_2)); }
inline SlotU5BU5D_t973212065* get__slots_2() const { return ____slots_2; }
inline SlotU5BU5D_t973212065** get_address_of__slots_2() { return &____slots_2; }
inline void set__slots_2(SlotU5BU5D_t973212065* value)
{
____slots_2 = value;
Il2CppCodeGenWriteBarrier((&____slots_2), value);
}
inline static int32_t get_offset_of__count_3() { return static_cast<int32_t>(offsetof(Set_1_t4069755523, ____count_3)); }
inline int32_t get__count_3() const { return ____count_3; }
inline int32_t* get_address_of__count_3() { return &____count_3; }
inline void set__count_3(int32_t value)
{
____count_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SET_1_T4069755523_H
#ifndef U3CZIPITERATORU3ED__236_3_T3079139045_H
#define U3CZIPITERATORU3ED__236_3_T3079139045_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>
struct U3CZipIteratorU3Ed__236_3_t3079139045 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/<ZipIterator>d__236`3::<>1__state
int32_t ___U3CU3E1__state_0;
// TResult System.Linq.Enumerable/<ZipIterator>d__236`3::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Int32 System.Linq.Enumerable/<ZipIterator>d__236`3::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Collections.Generic.IEnumerable`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::first
RuntimeObject* ___first_3;
// System.Collections.Generic.IEnumerable`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__first
RuntimeObject* ___U3CU3E3__first_4;
// System.Collections.Generic.IEnumerable`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::second
RuntimeObject* ___second_5;
// System.Collections.Generic.IEnumerable`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__second
RuntimeObject* ___U3CU3E3__second_6;
// System.Func`3<TFirst,TSecond,TResult> System.Linq.Enumerable/<ZipIterator>d__236`3::resultSelector
Func_3_t3398609381 * ___resultSelector_7;
// System.Func`3<TFirst,TSecond,TResult> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__resultSelector
Func_3_t3398609381 * ___U3CU3E3__resultSelector_8;
// System.Collections.Generic.IEnumerator`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::<e1>5__1
RuntimeObject* ___U3Ce1U3E5__1_9;
// System.Collections.Generic.IEnumerator`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::<e2>5__2
RuntimeObject* ___U3Ce2U3E5__2_10;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value);
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_first_3() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___first_3)); }
inline RuntimeObject* get_first_3() const { return ___first_3; }
inline RuntimeObject** get_address_of_first_3() { return &___first_3; }
inline void set_first_3(RuntimeObject* value)
{
___first_3 = value;
Il2CppCodeGenWriteBarrier((&___first_3), value);
}
inline static int32_t get_offset_of_U3CU3E3__first_4() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3E3__first_4)); }
inline RuntimeObject* get_U3CU3E3__first_4() const { return ___U3CU3E3__first_4; }
inline RuntimeObject** get_address_of_U3CU3E3__first_4() { return &___U3CU3E3__first_4; }
inline void set_U3CU3E3__first_4(RuntimeObject* value)
{
___U3CU3E3__first_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__first_4), value);
}
inline static int32_t get_offset_of_second_5() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___second_5)); }
inline RuntimeObject* get_second_5() const { return ___second_5; }
inline RuntimeObject** get_address_of_second_5() { return &___second_5; }
inline void set_second_5(RuntimeObject* value)
{
___second_5 = value;
Il2CppCodeGenWriteBarrier((&___second_5), value);
}
inline static int32_t get_offset_of_U3CU3E3__second_6() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3E3__second_6)); }
inline RuntimeObject* get_U3CU3E3__second_6() const { return ___U3CU3E3__second_6; }
inline RuntimeObject** get_address_of_U3CU3E3__second_6() { return &___U3CU3E3__second_6; }
inline void set_U3CU3E3__second_6(RuntimeObject* value)
{
___U3CU3E3__second_6 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__second_6), value);
}
inline static int32_t get_offset_of_resultSelector_7() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___resultSelector_7)); }
inline Func_3_t3398609381 * get_resultSelector_7() const { return ___resultSelector_7; }
inline Func_3_t3398609381 ** get_address_of_resultSelector_7() { return &___resultSelector_7; }
inline void set_resultSelector_7(Func_3_t3398609381 * value)
{
___resultSelector_7 = value;
Il2CppCodeGenWriteBarrier((&___resultSelector_7), value);
}
inline static int32_t get_offset_of_U3CU3E3__resultSelector_8() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3CU3E3__resultSelector_8)); }
inline Func_3_t3398609381 * get_U3CU3E3__resultSelector_8() const { return ___U3CU3E3__resultSelector_8; }
inline Func_3_t3398609381 ** get_address_of_U3CU3E3__resultSelector_8() { return &___U3CU3E3__resultSelector_8; }
inline void set_U3CU3E3__resultSelector_8(Func_3_t3398609381 * value)
{
___U3CU3E3__resultSelector_8 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__resultSelector_8), value);
}
inline static int32_t get_offset_of_U3Ce1U3E5__1_9() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3Ce1U3E5__1_9)); }
inline RuntimeObject* get_U3Ce1U3E5__1_9() const { return ___U3Ce1U3E5__1_9; }
inline RuntimeObject** get_address_of_U3Ce1U3E5__1_9() { return &___U3Ce1U3E5__1_9; }
inline void set_U3Ce1U3E5__1_9(RuntimeObject* value)
{
___U3Ce1U3E5__1_9 = value;
Il2CppCodeGenWriteBarrier((&___U3Ce1U3E5__1_9), value);
}
inline static int32_t get_offset_of_U3Ce2U3E5__2_10() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t3079139045, ___U3Ce2U3E5__2_10)); }
inline RuntimeObject* get_U3Ce2U3E5__2_10() const { return ___U3Ce2U3E5__2_10; }
inline RuntimeObject** get_address_of_U3Ce2U3E5__2_10() { return &___U3Ce2U3E5__2_10; }
inline void set_U3Ce2U3E5__2_10(RuntimeObject* value)
{
___U3Ce2U3E5__2_10 = value;
Il2CppCodeGenWriteBarrier((&___U3Ce2U3E5__2_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CZIPITERATORU3ED__236_3_T3079139045_H
#ifndef U3COFTYPEITERATORU3ED__32_1_T2611376587_H
#define U3COFTYPEITERATORU3ED__32_1_T2611376587_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>
struct U3COfTypeIteratorU3Ed__32_1_t2611376587 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>1__state
int32_t ___U3CU3E1__state_0;
// TResult System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Int32 System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Collections.IEnumerable System.Linq.Enumerable/<OfTypeIterator>d__32`1::source
RuntimeObject* ___source_3;
// System.Collections.IEnumerable System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>3__source
RuntimeObject* ___U3CU3E3__source_4;
// System.Collections.IEnumerator System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>7__wrap1
RuntimeObject* ___U3CU3E7__wrap1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value);
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___source_3)); }
inline RuntimeObject* get_source_3() const { return ___source_3; }
inline RuntimeObject** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(RuntimeObject* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((&___source_3), value);
}
inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E3__source_4)); }
inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; }
inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; }
inline void set_U3CU3E3__source_4(RuntimeObject* value)
{
___U3CU3E3__source_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value);
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E7__wrap1_5)); }
inline RuntimeObject* get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; }
inline RuntimeObject** get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; }
inline void set_U3CU3E7__wrap1_5(RuntimeObject* value)
{
___U3CU3E7__wrap1_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3COFTYPEITERATORU3ED__32_1_T2611376587_H
#ifndef U3CZIPITERATORU3ED__236_3_T96320846_H
#define U3CZIPITERATORU3ED__236_3_T96320846_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>
struct U3CZipIteratorU3Ed__236_3_t96320846 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/<ZipIterator>d__236`3::<>1__state
int32_t ___U3CU3E1__state_0;
// TResult System.Linq.Enumerable/<ZipIterator>d__236`3::<>2__current
bool ___U3CU3E2__current_1;
// System.Int32 System.Linq.Enumerable/<ZipIterator>d__236`3::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Collections.Generic.IEnumerable`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::first
RuntimeObject* ___first_3;
// System.Collections.Generic.IEnumerable`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__first
RuntimeObject* ___U3CU3E3__first_4;
// System.Collections.Generic.IEnumerable`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::second
RuntimeObject* ___second_5;
// System.Collections.Generic.IEnumerable`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__second
RuntimeObject* ___U3CU3E3__second_6;
// System.Func`3<TFirst,TSecond,TResult> System.Linq.Enumerable/<ZipIterator>d__236`3::resultSelector
Func_3_t415791182 * ___resultSelector_7;
// System.Func`3<TFirst,TSecond,TResult> System.Linq.Enumerable/<ZipIterator>d__236`3::<>3__resultSelector
Func_3_t415791182 * ___U3CU3E3__resultSelector_8;
// System.Collections.Generic.IEnumerator`1<TFirst> System.Linq.Enumerable/<ZipIterator>d__236`3::<e1>5__1
RuntimeObject* ___U3Ce1U3E5__1_9;
// System.Collections.Generic.IEnumerator`1<TSecond> System.Linq.Enumerable/<ZipIterator>d__236`3::<e2>5__2
RuntimeObject* ___U3Ce2U3E5__2_10;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3E2__current_1)); }
inline bool get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline bool* get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(bool value)
{
___U3CU3E2__current_1 = value;
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_first_3() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___first_3)); }
inline RuntimeObject* get_first_3() const { return ___first_3; }
inline RuntimeObject** get_address_of_first_3() { return &___first_3; }
inline void set_first_3(RuntimeObject* value)
{
___first_3 = value;
Il2CppCodeGenWriteBarrier((&___first_3), value);
}
inline static int32_t get_offset_of_U3CU3E3__first_4() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3E3__first_4)); }
inline RuntimeObject* get_U3CU3E3__first_4() const { return ___U3CU3E3__first_4; }
inline RuntimeObject** get_address_of_U3CU3E3__first_4() { return &___U3CU3E3__first_4; }
inline void set_U3CU3E3__first_4(RuntimeObject* value)
{
___U3CU3E3__first_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__first_4), value);
}
inline static int32_t get_offset_of_second_5() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___second_5)); }
inline RuntimeObject* get_second_5() const { return ___second_5; }
inline RuntimeObject** get_address_of_second_5() { return &___second_5; }
inline void set_second_5(RuntimeObject* value)
{
___second_5 = value;
Il2CppCodeGenWriteBarrier((&___second_5), value);
}
inline static int32_t get_offset_of_U3CU3E3__second_6() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3E3__second_6)); }
inline RuntimeObject* get_U3CU3E3__second_6() const { return ___U3CU3E3__second_6; }
inline RuntimeObject** get_address_of_U3CU3E3__second_6() { return &___U3CU3E3__second_6; }
inline void set_U3CU3E3__second_6(RuntimeObject* value)
{
___U3CU3E3__second_6 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__second_6), value);
}
inline static int32_t get_offset_of_resultSelector_7() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___resultSelector_7)); }
inline Func_3_t415791182 * get_resultSelector_7() const { return ___resultSelector_7; }
inline Func_3_t415791182 ** get_address_of_resultSelector_7() { return &___resultSelector_7; }
inline void set_resultSelector_7(Func_3_t415791182 * value)
{
___resultSelector_7 = value;
Il2CppCodeGenWriteBarrier((&___resultSelector_7), value);
}
inline static int32_t get_offset_of_U3CU3E3__resultSelector_8() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3CU3E3__resultSelector_8)); }
inline Func_3_t415791182 * get_U3CU3E3__resultSelector_8() const { return ___U3CU3E3__resultSelector_8; }
inline Func_3_t415791182 ** get_address_of_U3CU3E3__resultSelector_8() { return &___U3CU3E3__resultSelector_8; }
inline void set_U3CU3E3__resultSelector_8(Func_3_t415791182 * value)
{
___U3CU3E3__resultSelector_8 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__resultSelector_8), value);
}
inline static int32_t get_offset_of_U3Ce1U3E5__1_9() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3Ce1U3E5__1_9)); }
inline RuntimeObject* get_U3Ce1U3E5__1_9() const { return ___U3Ce1U3E5__1_9; }
inline RuntimeObject** get_address_of_U3Ce1U3E5__1_9() { return &___U3Ce1U3E5__1_9; }
inline void set_U3Ce1U3E5__1_9(RuntimeObject* value)
{
___U3Ce1U3E5__1_9 = value;
Il2CppCodeGenWriteBarrier((&___U3Ce1U3E5__1_9), value);
}
inline static int32_t get_offset_of_U3Ce2U3E5__2_10() { return static_cast<int32_t>(offsetof(U3CZipIteratorU3Ed__236_3_t96320846, ___U3Ce2U3E5__2_10)); }
inline RuntimeObject* get_U3Ce2U3E5__2_10() const { return ___U3Ce2U3E5__2_10; }
inline RuntimeObject** get_address_of_U3Ce2U3E5__2_10() { return &___U3Ce2U3E5__2_10; }
inline void set_U3Ce2U3E5__2_10(RuntimeObject* value)
{
___U3Ce2U3E5__2_10 = value;
Il2CppCodeGenWriteBarrier((&___U3Ce2U3E5__2_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CZIPITERATORU3ED__236_3_T96320846_H
#ifndef SET_1_T329142533_H
#define SET_1_T329142533_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Set`1<System.Char>
struct Set_1_t329142533 : public RuntimeObject
{
public:
// System.Collections.Generic.IEqualityComparer`1<TElement> System.Linq.Set`1::_comparer
RuntimeObject* ____comparer_0;
// System.Int32[] System.Linq.Set`1::_buckets
Int32U5BU5D_t385246372* ____buckets_1;
// System.Linq.Set`1/Slot<TElement>[] System.Linq.Set`1::_slots
SlotU5BU5D_t1657544407* ____slots_2;
// System.Int32 System.Linq.Set`1::_count
int32_t ____count_3;
public:
inline static int32_t get_offset_of__comparer_0() { return static_cast<int32_t>(offsetof(Set_1_t329142533, ____comparer_0)); }
inline RuntimeObject* get__comparer_0() const { return ____comparer_0; }
inline RuntimeObject** get_address_of__comparer_0() { return &____comparer_0; }
inline void set__comparer_0(RuntimeObject* value)
{
____comparer_0 = value;
Il2CppCodeGenWriteBarrier((&____comparer_0), value);
}
inline static int32_t get_offset_of__buckets_1() { return static_cast<int32_t>(offsetof(Set_1_t329142533, ____buckets_1)); }
inline Int32U5BU5D_t385246372* get__buckets_1() const { return ____buckets_1; }
inline Int32U5BU5D_t385246372** get_address_of__buckets_1() { return &____buckets_1; }
inline void set__buckets_1(Int32U5BU5D_t385246372* value)
{
____buckets_1 = value;
Il2CppCodeGenWriteBarrier((&____buckets_1), value);
}
inline static int32_t get_offset_of__slots_2() { return static_cast<int32_t>(offsetof(Set_1_t329142533, ____slots_2)); }
inline SlotU5BU5D_t1657544407* get__slots_2() const { return ____slots_2; }
inline SlotU5BU5D_t1657544407** get_address_of__slots_2() { return &____slots_2; }
inline void set__slots_2(SlotU5BU5D_t1657544407* value)
{
____slots_2 = value;
Il2CppCodeGenWriteBarrier((&____slots_2), value);
}
inline static int32_t get_offset_of__count_3() { return static_cast<int32_t>(offsetof(Set_1_t329142533, ____count_3)); }
inline int32_t get__count_3() const { return ____count_3; }
inline int32_t* get_address_of__count_3() { return &____count_3; }
inline void set__count_3(int32_t value)
{
____count_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SET_1_T329142533_H
#ifndef ITERATOR_1_T2034466501_H
#define ITERATOR_1_T2034466501_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/Iterator`1<System.Object>
struct Iterator_1_t2034466501 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/Iterator`1::_threadId
int32_t ____threadId_0;
// System.Int32 System.Linq.Enumerable/Iterator`1::_state
int32_t ____state_1;
// TSource System.Linq.Enumerable/Iterator`1::_current
RuntimeObject * ____current_2;
public:
inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____threadId_0)); }
inline int32_t get__threadId_0() const { return ____threadId_0; }
inline int32_t* get_address_of__threadId_0() { return &____threadId_0; }
inline void set__threadId_0(int32_t value)
{
____threadId_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____current_2)); }
inline RuntimeObject * get__current_2() const { return ____current_2; }
inline RuntimeObject ** get_address_of__current_2() { return &____current_2; }
inline void set__current_2(RuntimeObject * value)
{
____current_2 = value;
Il2CppCodeGenWriteBarrier((&____current_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T2034466501_H
#ifndef ITERATOR_1_T2588820807_H
#define ITERATOR_1_T2588820807_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/Iterator`1<System.Char>
struct Iterator_1_t2588820807 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/Iterator`1::_threadId
int32_t ____threadId_0;
// System.Int32 System.Linq.Enumerable/Iterator`1::_state
int32_t ____state_1;
// TSource System.Linq.Enumerable/Iterator`1::_current
Il2CppChar ____current_2;
public:
inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t2588820807, ____threadId_0)); }
inline int32_t get__threadId_0() const { return ____threadId_0; }
inline int32_t* get_address_of__threadId_0() { return &____threadId_0; }
inline void set__threadId_0(int32_t value)
{
____threadId_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t2588820807, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t2588820807, ____current_2)); }
inline Il2CppChar get__current_2() const { return ____current_2; }
inline Il2CppChar* get_address_of__current_2() { return &____current_2; }
inline void set__current_2(Il2CppChar value)
{
____current_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T2588820807_H
#ifndef LIST_1_T811567916_H
#define LIST_1_T811567916_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Char>
struct List_1_t811567916 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CharU5BU5D_t3528271667* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____items_1)); }
inline CharU5BU5D_t3528271667* get__items_1() const { return ____items_1; }
inline CharU5BU5D_t3528271667** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CharU5BU5D_t3528271667* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t811567916, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t811567916_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CharU5BU5D_t3528271667* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t811567916_StaticFields, ____emptyArray_5)); }
inline CharU5BU5D_t3528271667* get__emptyArray_5() const { return ____emptyArray_5; }
inline CharU5BU5D_t3528271667** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CharU5BU5D_t3528271667* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T811567916_H
#ifndef U3CCASTITERATORU3ED__34_1_T2336925318_H
#define U3CCASTITERATORU3ED__34_1_T2336925318_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>
struct U3CCastIteratorU3Ed__34_1_t2336925318 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>1__state
int32_t ___U3CU3E1__state_0;
// TResult System.Linq.Enumerable/<CastIterator>d__34`1::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::source
RuntimeObject* ___source_3;
// System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::<>3__source
RuntimeObject* ___U3CU3E3__source_4;
// System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__34`1::<>7__wrap1
RuntimeObject* ___U3CU3E7__wrap1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value);
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___source_3)); }
inline RuntimeObject* get_source_3() const { return ___source_3; }
inline RuntimeObject** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(RuntimeObject* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((&___source_3), value);
}
inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E3__source_4)); }
inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; }
inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; }
inline void set_U3CU3E3__source_4(RuntimeObject* value)
{
___U3CU3E3__source_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value);
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E7__wrap1_5)); }
inline RuntimeObject* get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; }
inline RuntimeObject** get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; }
inline void set_U3CU3E7__wrap1_5(RuntimeObject* value)
{
___U3CU3E7__wrap1_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CCASTITERATORU3ED__34_1_T2336925318_H
#ifndef EMPTYPARTITION_1_T2713315198_H
#define EMPTYPARTITION_1_T2713315198_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EmptyPartition`1<System.Object>
struct EmptyPartition_1_t2713315198 : public RuntimeObject
{
public:
public:
};
struct EmptyPartition_1_t2713315198_StaticFields
{
public:
// System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance
RuntimeObject* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t2713315198_StaticFields, ___Instance_0)); }
inline RuntimeObject* get_Instance_0() const { return ___Instance_0; }
inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(RuntimeObject* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((&___Instance_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYPARTITION_1_T2713315198_H
#ifndef LIST_1_T257213610_H
#define LIST_1_T257213610_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t2843939325* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____items_1)); }
inline ObjectU5BU5D_t2843939325* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t2843939325** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t2843939325* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t257213610_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t2843939325* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t257213610_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t2843939325* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t2843939325** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t2843939325* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T257213610_H
#ifndef EMPTYPARTITION_1_T2163426353_H
#define EMPTYPARTITION_1_T2163426353_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyPartition_1_t2163426353 : public RuntimeObject
{
public:
public:
};
struct EmptyPartition_1_t2163426353_StaticFields
{
public:
// System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance
RuntimeObject* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t2163426353_StaticFields, ___Instance_0)); }
inline RuntimeObject* get_Instance_0() const { return ___Instance_0; }
inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(RuntimeObject* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((&___Instance_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYPARTITION_1_T2163426353_H
#ifndef LIST_1_T4002292061_H
#define LIST_1_T4002292061_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_t4002292061 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_t118269214* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____items_1)); }
inline KeyValuePair_2U5BU5D_t118269214* get__items_1() const { return ____items_1; }
inline KeyValuePair_2U5BU5D_t118269214** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(KeyValuePair_2U5BU5D_t118269214* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4002292061, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4002292061_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
KeyValuePair_2U5BU5D_t118269214* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4002292061_StaticFields, ____emptyArray_5)); }
inline KeyValuePair_2U5BU5D_t118269214* get__emptyArray_5() const { return ____emptyArray_5; }
inline KeyValuePair_2U5BU5D_t118269214** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t118269214* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4002292061_H
#ifndef LIST_1_T962958939_H
#define LIST_1_T962958939_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Ray>
struct List_1_t962958939 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RayU5BU5D_t1836217960* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____items_1)); }
inline RayU5BU5D_t1836217960* get__items_1() const { return ____items_1; }
inline RayU5BU5D_t1836217960** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RayU5BU5D_t1836217960* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t962958939, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t962958939_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RayU5BU5D_t1836217960* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t962958939_StaticFields, ____emptyArray_5)); }
inline RayU5BU5D_t1836217960* get__emptyArray_5() const { return ____emptyArray_5; }
inline RayU5BU5D_t1836217960** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RayU5BU5D_t1836217960* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T962958939_H
#ifndef SINGLELINKEDNODE_1_T1339374102_H
#define SINGLELINKEDNODE_1_T1339374102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<System.Char>>
struct SingleLinkedNode_1_t1339374102 : public RuntimeObject
{
public:
// TSource System.Linq.SingleLinkedNode`1::<Item>k__BackingField
RuntimeObject* ___U3CItemU3Ek__BackingField_0;
// System.Linq.SingleLinkedNode`1<TSource> System.Linq.SingleLinkedNode`1::<Linked>k__BackingField
SingleLinkedNode_1_t1339374102 * ___U3CLinkedU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CItemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SingleLinkedNode_1_t1339374102, ___U3CItemU3Ek__BackingField_0)); }
inline RuntimeObject* get_U3CItemU3Ek__BackingField_0() const { return ___U3CItemU3Ek__BackingField_0; }
inline RuntimeObject** get_address_of_U3CItemU3Ek__BackingField_0() { return &___U3CItemU3Ek__BackingField_0; }
inline void set_U3CItemU3Ek__BackingField_0(RuntimeObject* value)
{
___U3CItemU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CItemU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CLinkedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SingleLinkedNode_1_t1339374102, ___U3CLinkedU3Ek__BackingField_1)); }
inline SingleLinkedNode_1_t1339374102 * get_U3CLinkedU3Ek__BackingField_1() const { return ___U3CLinkedU3Ek__BackingField_1; }
inline SingleLinkedNode_1_t1339374102 ** get_address_of_U3CLinkedU3Ek__BackingField_1() { return &___U3CLinkedU3Ek__BackingField_1; }
inline void set_U3CLinkedU3Ek__BackingField_1(SingleLinkedNode_1_t1339374102 * value)
{
___U3CLinkedU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CLinkedU3Ek__BackingField_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLELINKEDNODE_1_T1339374102_H
#ifndef EMPTYPARTITION_1_T3419060527_H
#define EMPTYPARTITION_1_T3419060527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EmptyPartition`1<UnityEngine.Ray>
struct EmptyPartition_1_t3419060527 : public RuntimeObject
{
public:
public:
};
struct EmptyPartition_1_t3419060527_StaticFields
{
public:
// System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance
RuntimeObject* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t3419060527_StaticFields, ___Instance_0)); }
inline RuntimeObject* get_Instance_0() const { return ___Instance_0; }
inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(RuntimeObject* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((&___Instance_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYPARTITION_1_T3419060527_H
#ifndef SINGLELINKEDNODE_1_T785019796_H
#define SINGLELINKEDNODE_1_T785019796_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<System.Object>>
struct SingleLinkedNode_1_t785019796 : public RuntimeObject
{
public:
// TSource System.Linq.SingleLinkedNode`1::<Item>k__BackingField
RuntimeObject* ___U3CItemU3Ek__BackingField_0;
// System.Linq.SingleLinkedNode`1<TSource> System.Linq.SingleLinkedNode`1::<Linked>k__BackingField
SingleLinkedNode_1_t785019796 * ___U3CLinkedU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CItemU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SingleLinkedNode_1_t785019796, ___U3CItemU3Ek__BackingField_0)); }
inline RuntimeObject* get_U3CItemU3Ek__BackingField_0() const { return ___U3CItemU3Ek__BackingField_0; }
inline RuntimeObject** get_address_of_U3CItemU3Ek__BackingField_0() { return &___U3CItemU3Ek__BackingField_0; }
inline void set_U3CItemU3Ek__BackingField_0(RuntimeObject* value)
{
___U3CItemU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CItemU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CLinkedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SingleLinkedNode_1_t785019796, ___U3CLinkedU3Ek__BackingField_1)); }
inline SingleLinkedNode_1_t785019796 * get_U3CLinkedU3Ek__BackingField_1() const { return ___U3CLinkedU3Ek__BackingField_1; }
inline SingleLinkedNode_1_t785019796 ** get_address_of_U3CLinkedU3Ek__BackingField_1() { return &___U3CLinkedU3Ek__BackingField_1; }
inline void set_U3CLinkedU3Ek__BackingField_1(SingleLinkedNode_1_t785019796 * value)
{
___U3CLinkedU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CLinkedU3Ek__BackingField_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLELINKEDNODE_1_T785019796_H
#ifndef TUPLE_4_T940344498_H
#define TUPLE_4_T940344498_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Action`3<System.Object,System.Object,System.Object>,System.Object,System.Object,System.Object>
struct Tuple_4_t940344498 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
Action_3_t3632554945 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
RuntimeObject * ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t940344498, ___m_Item1_0)); }
inline Action_3_t3632554945 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Action_3_t3632554945 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Action_3_t3632554945 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t940344498, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t940344498, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t940344498, ___m_Item4_3)); }
inline RuntimeObject * get_m_Item4_3() const { return ___m_Item4_3; }
inline RuntimeObject ** get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(RuntimeObject * value)
{
___m_Item4_3 = value;
Il2CppCodeGenWriteBarrier((&___m_Item4_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T940344498_H
#ifndef GROUPING_2_T207236696_H
#define GROUPING_2_T207236696_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Grouping`2<System.Object,System.Object>
struct Grouping_2_t207236696 : public RuntimeObject
{
public:
// TKey System.Linq.Grouping`2::_key
RuntimeObject * ____key_0;
// System.Int32 System.Linq.Grouping`2::_hashCode
int32_t ____hashCode_1;
// TElement[] System.Linq.Grouping`2::_elements
ObjectU5BU5D_t2843939325* ____elements_2;
// System.Int32 System.Linq.Grouping`2::_count
int32_t ____count_3;
// System.Linq.Grouping`2<TKey,TElement> System.Linq.Grouping`2::_hashNext
Grouping_2_t207236696 * ____hashNext_4;
// System.Linq.Grouping`2<TKey,TElement> System.Linq.Grouping`2::_next
Grouping_2_t207236696 * ____next_5;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((&____key_0), value);
}
inline static int32_t get_offset_of__hashCode_1() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____hashCode_1)); }
inline int32_t get__hashCode_1() const { return ____hashCode_1; }
inline int32_t* get_address_of__hashCode_1() { return &____hashCode_1; }
inline void set__hashCode_1(int32_t value)
{
____hashCode_1 = value;
}
inline static int32_t get_offset_of__elements_2() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____elements_2)); }
inline ObjectU5BU5D_t2843939325* get__elements_2() const { return ____elements_2; }
inline ObjectU5BU5D_t2843939325** get_address_of__elements_2() { return &____elements_2; }
inline void set__elements_2(ObjectU5BU5D_t2843939325* value)
{
____elements_2 = value;
Il2CppCodeGenWriteBarrier((&____elements_2), value);
}
inline static int32_t get_offset_of__count_3() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____count_3)); }
inline int32_t get__count_3() const { return ____count_3; }
inline int32_t* get_address_of__count_3() { return &____count_3; }
inline void set__count_3(int32_t value)
{
____count_3 = value;
}
inline static int32_t get_offset_of__hashNext_4() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____hashNext_4)); }
inline Grouping_2_t207236696 * get__hashNext_4() const { return ____hashNext_4; }
inline Grouping_2_t207236696 ** get_address_of__hashNext_4() { return &____hashNext_4; }
inline void set__hashNext_4(Grouping_2_t207236696 * value)
{
____hashNext_4 = value;
Il2CppCodeGenWriteBarrier((&____hashNext_4), value);
}
inline static int32_t get_offset_of__next_5() { return static_cast<int32_t>(offsetof(Grouping_2_t207236696, ____next_5)); }
inline Grouping_2_t207236696 * get__next_5() const { return ____next_5; }
inline Grouping_2_t207236696 ** get_address_of__next_5() { return &____next_5; }
inline void set__next_5(Grouping_2_t207236696 * value)
{
____next_5 = value;
Il2CppCodeGenWriteBarrier((&____next_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GROUPING_2_T207236696_H
#ifndef U3CGETENUMERATORU3ED__9_T3973999269_H
#define U3CGETENUMERATORU3ED__9_T3973999269_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>
struct U3CGetEnumeratorU3Ed__9_t3973999269 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Grouping`2/<GetEnumerator>d__9::<>1__state
int32_t ___U3CU3E1__state_0;
// TElement System.Linq.Grouping`2/<GetEnumerator>d__9::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Linq.Grouping`2<TKey,TElement> System.Linq.Grouping`2/<GetEnumerator>d__9::<>4__this
Grouping_2_t207236696 * ___U3CU3E4__this_2;
// System.Int32 System.Linq.Grouping`2/<GetEnumerator>d__9::<i>5__1
int32_t ___U3CiU3E5__1_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__9_t3973999269, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__9_t3973999269, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value);
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__9_t3973999269, ___U3CU3E4__this_2)); }
inline Grouping_2_t207236696 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline Grouping_2_t207236696 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(Grouping_2_t207236696 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_U3CiU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__9_t3973999269, ___U3CiU3E5__1_3)); }
inline int32_t get_U3CiU3E5__1_3() const { return ___U3CiU3E5__1_3; }
inline int32_t* get_address_of_U3CiU3E5__1_3() { return &___U3CiU3E5__1_3; }
inline void set_U3CiU3E5__1_3(int32_t value)
{
___U3CiU3E5__1_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CGETENUMERATORU3ED__9_T3973999269_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef PATH_T1605229823_H
#define PATH_T1605229823_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Path
struct Path_t1605229823 : public RuntimeObject
{
public:
public:
};
struct Path_t1605229823_StaticFields
{
public:
// System.Char[] System.IO.Path::InvalidPathChars
CharU5BU5D_t3528271667* ___InvalidPathChars_0;
// System.Char System.IO.Path::AltDirectorySeparatorChar
Il2CppChar ___AltDirectorySeparatorChar_1;
// System.Char System.IO.Path::DirectorySeparatorChar
Il2CppChar ___DirectorySeparatorChar_2;
// System.Char System.IO.Path::PathSeparator
Il2CppChar ___PathSeparator_3;
// System.String System.IO.Path::DirectorySeparatorStr
String_t* ___DirectorySeparatorStr_4;
// System.Char System.IO.Path::VolumeSeparatorChar
Il2CppChar ___VolumeSeparatorChar_5;
// System.Char[] System.IO.Path::PathSeparatorChars
CharU5BU5D_t3528271667* ___PathSeparatorChars_6;
// System.Boolean System.IO.Path::dirEqualsVolume
bool ___dirEqualsVolume_7;
// System.Char[] System.IO.Path::trimEndCharsWindows
CharU5BU5D_t3528271667* ___trimEndCharsWindows_8;
// System.Char[] System.IO.Path::trimEndCharsUnix
CharU5BU5D_t3528271667* ___trimEndCharsUnix_9;
public:
inline static int32_t get_offset_of_InvalidPathChars_0() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___InvalidPathChars_0)); }
inline CharU5BU5D_t3528271667* get_InvalidPathChars_0() const { return ___InvalidPathChars_0; }
inline CharU5BU5D_t3528271667** get_address_of_InvalidPathChars_0() { return &___InvalidPathChars_0; }
inline void set_InvalidPathChars_0(CharU5BU5D_t3528271667* value)
{
___InvalidPathChars_0 = value;
Il2CppCodeGenWriteBarrier((&___InvalidPathChars_0), value);
}
inline static int32_t get_offset_of_AltDirectorySeparatorChar_1() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___AltDirectorySeparatorChar_1)); }
inline Il2CppChar get_AltDirectorySeparatorChar_1() const { return ___AltDirectorySeparatorChar_1; }
inline Il2CppChar* get_address_of_AltDirectorySeparatorChar_1() { return &___AltDirectorySeparatorChar_1; }
inline void set_AltDirectorySeparatorChar_1(Il2CppChar value)
{
___AltDirectorySeparatorChar_1 = value;
}
inline static int32_t get_offset_of_DirectorySeparatorChar_2() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___DirectorySeparatorChar_2)); }
inline Il2CppChar get_DirectorySeparatorChar_2() const { return ___DirectorySeparatorChar_2; }
inline Il2CppChar* get_address_of_DirectorySeparatorChar_2() { return &___DirectorySeparatorChar_2; }
inline void set_DirectorySeparatorChar_2(Il2CppChar value)
{
___DirectorySeparatorChar_2 = value;
}
inline static int32_t get_offset_of_PathSeparator_3() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___PathSeparator_3)); }
inline Il2CppChar get_PathSeparator_3() const { return ___PathSeparator_3; }
inline Il2CppChar* get_address_of_PathSeparator_3() { return &___PathSeparator_3; }
inline void set_PathSeparator_3(Il2CppChar value)
{
___PathSeparator_3 = value;
}
inline static int32_t get_offset_of_DirectorySeparatorStr_4() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___DirectorySeparatorStr_4)); }
inline String_t* get_DirectorySeparatorStr_4() const { return ___DirectorySeparatorStr_4; }
inline String_t** get_address_of_DirectorySeparatorStr_4() { return &___DirectorySeparatorStr_4; }
inline void set_DirectorySeparatorStr_4(String_t* value)
{
___DirectorySeparatorStr_4 = value;
Il2CppCodeGenWriteBarrier((&___DirectorySeparatorStr_4), value);
}
inline static int32_t get_offset_of_VolumeSeparatorChar_5() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___VolumeSeparatorChar_5)); }
inline Il2CppChar get_VolumeSeparatorChar_5() const { return ___VolumeSeparatorChar_5; }
inline Il2CppChar* get_address_of_VolumeSeparatorChar_5() { return &___VolumeSeparatorChar_5; }
inline void set_VolumeSeparatorChar_5(Il2CppChar value)
{
___VolumeSeparatorChar_5 = value;
}
inline static int32_t get_offset_of_PathSeparatorChars_6() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___PathSeparatorChars_6)); }
inline CharU5BU5D_t3528271667* get_PathSeparatorChars_6() const { return ___PathSeparatorChars_6; }
inline CharU5BU5D_t3528271667** get_address_of_PathSeparatorChars_6() { return &___PathSeparatorChars_6; }
inline void set_PathSeparatorChars_6(CharU5BU5D_t3528271667* value)
{
___PathSeparatorChars_6 = value;
Il2CppCodeGenWriteBarrier((&___PathSeparatorChars_6), value);
}
inline static int32_t get_offset_of_dirEqualsVolume_7() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___dirEqualsVolume_7)); }
inline bool get_dirEqualsVolume_7() const { return ___dirEqualsVolume_7; }
inline bool* get_address_of_dirEqualsVolume_7() { return &___dirEqualsVolume_7; }
inline void set_dirEqualsVolume_7(bool value)
{
___dirEqualsVolume_7 = value;
}
inline static int32_t get_offset_of_trimEndCharsWindows_8() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___trimEndCharsWindows_8)); }
inline CharU5BU5D_t3528271667* get_trimEndCharsWindows_8() const { return ___trimEndCharsWindows_8; }
inline CharU5BU5D_t3528271667** get_address_of_trimEndCharsWindows_8() { return &___trimEndCharsWindows_8; }
inline void set_trimEndCharsWindows_8(CharU5BU5D_t3528271667* value)
{
___trimEndCharsWindows_8 = value;
Il2CppCodeGenWriteBarrier((&___trimEndCharsWindows_8), value);
}
inline static int32_t get_offset_of_trimEndCharsUnix_9() { return static_cast<int32_t>(offsetof(Path_t1605229823_StaticFields, ___trimEndCharsUnix_9)); }
inline CharU5BU5D_t3528271667* get_trimEndCharsUnix_9() const { return ___trimEndCharsUnix_9; }
inline CharU5BU5D_t3528271667** get_address_of_trimEndCharsUnix_9() { return &___trimEndCharsUnix_9; }
inline void set_trimEndCharsUnix_9(CharU5BU5D_t3528271667* value)
{
___trimEndCharsUnix_9 = value;
Il2CppCodeGenWriteBarrier((&___trimEndCharsUnix_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PATH_T1605229823_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef LAZYINTERNALEXCEPTIONHOLDER_T2698196110_H
#define LAZYINTERNALEXCEPTIONHOLDER_T2698196110_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Lazy`1/LazyInternalExceptionHolder<System.Object>
struct LazyInternalExceptionHolder_t2698196110 : public RuntimeObject
{
public:
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Lazy`1/LazyInternalExceptionHolder::m_edi
ExceptionDispatchInfo_t3750997369 * ___m_edi_0;
public:
inline static int32_t get_offset_of_m_edi_0() { return static_cast<int32_t>(offsetof(LazyInternalExceptionHolder_t2698196110, ___m_edi_0)); }
inline ExceptionDispatchInfo_t3750997369 * get_m_edi_0() const { return ___m_edi_0; }
inline ExceptionDispatchInfo_t3750997369 ** get_address_of_m_edi_0() { return &___m_edi_0; }
inline void set_m_edi_0(ExceptionDispatchInfo_t3750997369 * value)
{
___m_edi_0 = value;
Il2CppCodeGenWriteBarrier((&___m_edi_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAZYINTERNALEXCEPTIONHOLDER_T2698196110_H
#ifndef U3CU3EC_T2006413399_H
#define U3CU3EC_T2006413399_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Lazy`1/<>c<System.Object>
struct U3CU3Ec_t2006413399 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t2006413399_StaticFields
{
public:
// System.Lazy`1/<>c<T> System.Lazy`1/<>c::<>9
U3CU3Ec_t2006413399 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t2006413399_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t2006413399 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t2006413399 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t2006413399 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC_T2006413399_H
#ifndef BOXED_T2783796566_H
#define BOXED_T2783796566_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Lazy`1/Boxed<System.Object>
struct Boxed_t2783796566 : public RuntimeObject
{
public:
// T System.Lazy`1/Boxed::m_value
RuntimeObject * ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boxed_t2783796566, ___m_value_0)); }
inline RuntimeObject * get_m_value_0() const { return ___m_value_0; }
inline RuntimeObject ** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(RuntimeObject * value)
{
___m_value_0 = value;
Il2CppCodeGenWriteBarrier((&___m_value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOXED_T2783796566_H
#ifndef ITERATOR_1_T3764629478_H
#define ITERATOR_1_T3764629478_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Iterator`1<System.Object>
struct Iterator_1_t3764629478 : public RuntimeObject
{
public:
// System.Int32 System.IO.Iterator`1::threadId
int32_t ___threadId_0;
// System.Int32 System.IO.Iterator`1::state
int32_t ___state_1;
// TSource System.IO.Iterator`1::current
RuntimeObject * ___current_2;
public:
inline static int32_t get_offset_of_threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t3764629478, ___threadId_0)); }
inline int32_t get_threadId_0() const { return ___threadId_0; }
inline int32_t* get_address_of_threadId_0() { return &___threadId_0; }
inline void set_threadId_0(int32_t value)
{
___threadId_0 = value;
}
inline static int32_t get_offset_of_state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t3764629478, ___state_1)); }
inline int32_t get_state_1() const { return ___state_1; }
inline int32_t* get_address_of_state_1() { return &___state_1; }
inline void set_state_1(int32_t value)
{
___state_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t3764629478, ___current_2)); }
inline RuntimeObject * get_current_2() const { return ___current_2; }
inline RuntimeObject ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(RuntimeObject * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((&___current_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T3764629478_H
#ifndef LIST_1_T4120301035_H
#define LIST_1_T4120301035_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.IO.Directory/SearchData>
struct List_1_t4120301035 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SearchDataU5BU5D_t2471894680* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4120301035, ____items_1)); }
inline SearchDataU5BU5D_t2471894680* get__items_1() const { return ____items_1; }
inline SearchDataU5BU5D_t2471894680** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SearchDataU5BU5D_t2471894680* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4120301035, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4120301035, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4120301035, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4120301035_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SearchDataU5BU5D_t2471894680* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4120301035_StaticFields, ____emptyArray_5)); }
inline SearchDataU5BU5D_t2471894680* get__emptyArray_5() const { return ____emptyArray_5; }
inline SearchDataU5BU5D_t2471894680** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SearchDataU5BU5D_t2471894680* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4120301035_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef SEARCHRESULTHANDLER_1_T2377980137_H
#define SEARCHRESULTHANDLER_1_T2377980137_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SearchResultHandler`1<System.Object>
struct SearchResultHandler_1_t2377980137 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHRESULTHANDLER_1_T2377980137_H
#ifndef SEARCHRESULT_T2600365382_H
#define SEARCHRESULT_T2600365382_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SearchResult
struct SearchResult_t2600365382 : public RuntimeObject
{
public:
// System.String System.IO.SearchResult::fullPath
String_t* ___fullPath_0;
// System.String System.IO.SearchResult::userPath
String_t* ___userPath_1;
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA System.IO.SearchResult::findData
WIN32_FIND_DATA_t4232796738 * ___findData_2;
public:
inline static int32_t get_offset_of_fullPath_0() { return static_cast<int32_t>(offsetof(SearchResult_t2600365382, ___fullPath_0)); }
inline String_t* get_fullPath_0() const { return ___fullPath_0; }
inline String_t** get_address_of_fullPath_0() { return &___fullPath_0; }
inline void set_fullPath_0(String_t* value)
{
___fullPath_0 = value;
Il2CppCodeGenWriteBarrier((&___fullPath_0), value);
}
inline static int32_t get_offset_of_userPath_1() { return static_cast<int32_t>(offsetof(SearchResult_t2600365382, ___userPath_1)); }
inline String_t* get_userPath_1() const { return ___userPath_1; }
inline String_t** get_address_of_userPath_1() { return &___userPath_1; }
inline void set_userPath_1(String_t* value)
{
___userPath_1 = value;
Il2CppCodeGenWriteBarrier((&___userPath_1), value);
}
inline static int32_t get_offset_of_findData_2() { return static_cast<int32_t>(offsetof(SearchResult_t2600365382, ___findData_2)); }
inline WIN32_FIND_DATA_t4232796738 * get_findData_2() const { return ___findData_2; }
inline WIN32_FIND_DATA_t4232796738 ** get_address_of_findData_2() { return &___findData_2; }
inline void set_findData_2(WIN32_FIND_DATA_t4232796738 * value)
{
___findData_2 = value;
Il2CppCodeGenWriteBarrier((&___findData_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHRESULT_T2600365382_H
#ifndef CRITICALFINALIZEROBJECT_T701527852_H
#define CRITICALFINALIZEROBJECT_T701527852_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t701527852 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CRITICALFINALIZEROBJECT_T701527852_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef WIN32_FIND_DATA_T4232796738_H
#define WIN32_FIND_DATA_T4232796738_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.Win32.Win32Native/WIN32_FIND_DATA
struct WIN32_FIND_DATA_t4232796738 : public RuntimeObject
{
public:
// System.Int32 Microsoft.Win32.Win32Native/WIN32_FIND_DATA::dwFileAttributes
int32_t ___dwFileAttributes_0;
// System.String Microsoft.Win32.Win32Native/WIN32_FIND_DATA::cFileName
String_t* ___cFileName_1;
public:
inline static int32_t get_offset_of_dwFileAttributes_0() { return static_cast<int32_t>(offsetof(WIN32_FIND_DATA_t4232796738, ___dwFileAttributes_0)); }
inline int32_t get_dwFileAttributes_0() const { return ___dwFileAttributes_0; }
inline int32_t* get_address_of_dwFileAttributes_0() { return &___dwFileAttributes_0; }
inline void set_dwFileAttributes_0(int32_t value)
{
___dwFileAttributes_0 = value;
}
inline static int32_t get_offset_of_cFileName_1() { return static_cast<int32_t>(offsetof(WIN32_FIND_DATA_t4232796738, ___cFileName_1)); }
inline String_t* get_cFileName_1() const { return ___cFileName_1; }
inline String_t** get_address_of_cFileName_1() { return &___cFileName_1; }
inline void set_cFileName_1(String_t* value)
{
___cFileName_1 = value;
Il2CppCodeGenWriteBarrier((&___cFileName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32_FIND_DATA_T4232796738_H
#ifndef U3CU3EC__6_4_T79891713_H
#define U3CU3EC__6_4_T79891713_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>
struct U3CU3Ec__6_4_t79891713 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec__6_4_t79891713_StaticFields
{
public:
// System.Linq.Expressions.StackGuard/<>c__6`4<T1,T2,T3,R> System.Linq.Expressions.StackGuard/<>c__6`4::<>9
U3CU3Ec__6_4_t79891713 * ___U3CU3E9_0;
// System.Func`2<System.Object,R> System.Linq.Expressions.StackGuard/<>c__6`4::<>9__6_0
Func_2_t1178353799 * ___U3CU3E9__6_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__6_4_t79891713_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec__6_4_t79891713 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec__6_4_t79891713 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec__6_4_t79891713 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
inline static int32_t get_offset_of_U3CU3E9__6_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__6_4_t79891713_StaticFields, ___U3CU3E9__6_0_1)); }
inline Func_2_t1178353799 * get_U3CU3E9__6_0_1() const { return ___U3CU3E9__6_0_1; }
inline Func_2_t1178353799 ** get_address_of_U3CU3E9__6_0_1() { return &___U3CU3E9__6_0_1; }
inline void set_U3CU3E9__6_0_1(Func_2_t1178353799 * value)
{
___U3CU3E9__6_0_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9__6_0_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__6_4_T79891713_H
#ifndef LOOKUP_2_T2604133957_H
#define LOOKUP_2_T2604133957_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Lookup`2<System.Object,System.Object>
struct Lookup_2_t2604133957 : public RuntimeObject
{
public:
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Linq.Lookup`2::_comparer
RuntimeObject* ____comparer_0;
// System.Linq.Grouping`2<TKey,TElement>[] System.Linq.Lookup`2::_groupings
Grouping_2U5BU5D_t2221495625* ____groupings_1;
// System.Linq.Grouping`2<TKey,TElement> System.Linq.Lookup`2::_lastGrouping
Grouping_2_t207236696 * ____lastGrouping_2;
// System.Int32 System.Linq.Lookup`2::_count
int32_t ____count_3;
public:
inline static int32_t get_offset_of__comparer_0() { return static_cast<int32_t>(offsetof(Lookup_2_t2604133957, ____comparer_0)); }
inline RuntimeObject* get__comparer_0() const { return ____comparer_0; }
inline RuntimeObject** get_address_of__comparer_0() { return &____comparer_0; }
inline void set__comparer_0(RuntimeObject* value)
{
____comparer_0 = value;
Il2CppCodeGenWriteBarrier((&____comparer_0), value);
}
inline static int32_t get_offset_of__groupings_1() { return static_cast<int32_t>(offsetof(Lookup_2_t2604133957, ____groupings_1)); }
inline Grouping_2U5BU5D_t2221495625* get__groupings_1() const { return ____groupings_1; }
inline Grouping_2U5BU5D_t2221495625** get_address_of__groupings_1() { return &____groupings_1; }
inline void set__groupings_1(Grouping_2U5BU5D_t2221495625* value)
{
____groupings_1 = value;
Il2CppCodeGenWriteBarrier((&____groupings_1), value);
}
inline static int32_t get_offset_of__lastGrouping_2() { return static_cast<int32_t>(offsetof(Lookup_2_t2604133957, ____lastGrouping_2)); }
inline Grouping_2_t207236696 * get__lastGrouping_2() const { return ____lastGrouping_2; }
inline Grouping_2_t207236696 ** get_address_of__lastGrouping_2() { return &____lastGrouping_2; }
inline void set__lastGrouping_2(Grouping_2_t207236696 * value)
{
____lastGrouping_2 = value;
Il2CppCodeGenWriteBarrier((&____lastGrouping_2), value);
}
inline static int32_t get_offset_of__count_3() { return static_cast<int32_t>(offsetof(Lookup_2_t2604133957, ____count_3)); }
inline int32_t get__count_3() const { return ____count_3; }
inline int32_t* get_address_of__count_3() { return &____count_3; }
inline void set__count_3(int32_t value)
{
____count_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOOKUP_2_T2604133957_H
#ifndef LIST_1_T220694822_H
#define LIST_1_T220694822_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Linq.IGrouping`2<System.Object,System.Object>>
struct List_1_t220694822 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
IGrouping_2U5BU5D_t2654969873* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t220694822, ____items_1)); }
inline IGrouping_2U5BU5D_t2654969873* get__items_1() const { return ____items_1; }
inline IGrouping_2U5BU5D_t2654969873** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(IGrouping_2U5BU5D_t2654969873* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t220694822, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t220694822, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t220694822, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t220694822_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
IGrouping_2U5BU5D_t2654969873* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t220694822_StaticFields, ____emptyArray_5)); }
inline IGrouping_2U5BU5D_t2654969873* get__emptyArray_5() const { return ____emptyArray_5; }
inline IGrouping_2U5BU5D_t2654969873** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(IGrouping_2U5BU5D_t2654969873* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T220694822_H
#ifndef TUPLE_4_T253813019_H
#define TUPLE_4_T253813019_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Func`4<System.Object,System.Object,System.Object,System.Object>,System.Object,System.Object,System.Object>
struct Tuple_4_t253813019 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
Func_4_t1418280132 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
RuntimeObject * ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t253813019, ___m_Item1_0)); }
inline Func_4_t1418280132 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Func_4_t1418280132 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Func_4_t1418280132 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t253813019, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t253813019, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t253813019, ___m_Item4_3)); }
inline RuntimeObject * get_m_Item4_3() const { return ___m_Item4_3; }
inline RuntimeObject ** get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(RuntimeObject * value)
{
___m_Item4_3 = value;
Il2CppCodeGenWriteBarrier((&___m_Item4_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T253813019_H
#ifndef LAZYHELPERS_T2803856572_H
#define LAZYHELPERS_T2803856572_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LazyHelpers
struct LazyHelpers_t2803856572 : public RuntimeObject
{
public:
public:
};
struct LazyHelpers_t2803856572_StaticFields
{
public:
// System.Object System.LazyHelpers::PUBLICATION_ONLY_SENTINEL
RuntimeObject * ___PUBLICATION_ONLY_SENTINEL_0;
public:
inline static int32_t get_offset_of_PUBLICATION_ONLY_SENTINEL_0() { return static_cast<int32_t>(offsetof(LazyHelpers_t2803856572_StaticFields, ___PUBLICATION_ONLY_SENTINEL_0)); }
inline RuntimeObject * get_PUBLICATION_ONLY_SENTINEL_0() const { return ___PUBLICATION_ONLY_SENTINEL_0; }
inline RuntimeObject ** get_address_of_PUBLICATION_ONLY_SENTINEL_0() { return &___PUBLICATION_ONLY_SENTINEL_0; }
inline void set_PUBLICATION_ONLY_SENTINEL_0(RuntimeObject * value)
{
___PUBLICATION_ONLY_SENTINEL_0 = value;
Il2CppCodeGenWriteBarrier((&___PUBLICATION_ONLY_SENTINEL_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAZYHELPERS_T2803856572_H
#ifndef U3CU3EC__6_4_T803415419_H
#define U3CU3EC__6_4_T803415419_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Object,System.Object>
struct U3CU3Ec__6_4_t803415419 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec__6_4_t803415419_StaticFields
{
public:
// System.Linq.Expressions.StackGuard/<>c__6`4<T1,T2,T3,R> System.Linq.Expressions.StackGuard/<>c__6`4::<>9
U3CU3Ec__6_4_t803415419 * ___U3CU3E9_0;
// System.Func`2<System.Object,R> System.Linq.Expressions.StackGuard/<>c__6`4::<>9__6_0
Func_2_t2447130374 * ___U3CU3E9__6_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__6_4_t803415419_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec__6_4_t803415419 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec__6_4_t803415419 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec__6_4_t803415419 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
inline static int32_t get_offset_of_U3CU3E9__6_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__6_4_t803415419_StaticFields, ___U3CU3E9__6_0_1)); }
inline Func_2_t2447130374 * get_U3CU3E9__6_0_1() const { return ___U3CU3E9__6_0_1; }
inline Func_2_t2447130374 ** get_address_of_U3CU3E9__6_0_1() { return &___U3CU3E9__6_0_1; }
inline void set_U3CU3E9__6_0_1(Func_2_t2447130374 * value)
{
___U3CU3E9__6_0_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9__6_0_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__6_4_T803415419_H
#ifndef TUPLE_3_T1749845982_H
#define TUPLE_3_T1749845982_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`3<System.Func`3<System.Object,System.Object,System.Object>,System.Object,System.Object>
struct Tuple_3_t1749845982 : public RuntimeObject
{
public:
// T1 System.Tuple`3::m_Item1
Func_3_t3398609381 * ___m_Item1_0;
// T2 System.Tuple`3::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`3::m_Item3
RuntimeObject * ___m_Item3_2;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_3_t1749845982, ___m_Item1_0)); }
inline Func_3_t3398609381 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Func_3_t3398609381 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Func_3_t3398609381 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_3_t1749845982, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_3_t1749845982, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_3_T1749845982_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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_t2481557153 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4013366056* ___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((&____className_1), 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((&____message_2), 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((&____data_3), 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((&____innerException_4), 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((&____helpURL_5), 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((&____stackTrace_6), 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((&____stackTraceString_7), 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((&____remoteStackTraceString_8), 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((&____dynamicMethods_10), 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((&____source_12), value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t2481557153 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t2481557153 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t2481557153 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t1169129676* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t1169129676** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t1169129676* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((&___captured_traces_14), 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_t4013366056* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4013366056** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4013366056* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), 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((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___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_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef U3CU3EC__5_3_T2195741215_H
#define U3CU3EC__5_3_T2195741215_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.StackGuard/<>c__5`3<System.Object,System.Object,System.Object>
struct U3CU3Ec__5_3_t2195741215 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec__5_3_t2195741215_StaticFields
{
public:
// System.Linq.Expressions.StackGuard/<>c__5`3<T1,T2,R> System.Linq.Expressions.StackGuard/<>c__5`3::<>9
U3CU3Ec__5_3_t2195741215 * ___U3CU3E9_0;
// System.Func`2<System.Object,R> System.Linq.Expressions.StackGuard/<>c__5`3::<>9__5_0
Func_2_t2447130374 * ___U3CU3E9__5_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__5_3_t2195741215_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec__5_3_t2195741215 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec__5_3_t2195741215 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec__5_3_t2195741215 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9_0), value);
}
inline static int32_t get_offset_of_U3CU3E9__5_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__5_3_t2195741215_StaticFields, ___U3CU3E9__5_0_1)); }
inline Func_2_t2447130374 * get_U3CU3E9__5_0_1() const { return ___U3CU3E9__5_0_1; }
inline Func_2_t2447130374 ** get_address_of_U3CU3E9__5_0_1() { return &___U3CU3E9__5_0_1; }
inline void set_U3CU3E9__5_0_1(Func_2_t2447130374 * value)
{
___U3CU3E9__5_0_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E9__5_0_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__5_3_T2195741215_H
#ifndef GROUPEDENUMERABLE_2_T2921137520_H
#define GROUPEDENUMERABLE_2_T2921137520_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.GroupedEnumerable`2<System.Object,System.Object>
struct GroupedEnumerable_2_t2921137520 : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.GroupedEnumerable`2::_source
RuntimeObject* ____source_0;
// System.Func`2<TSource,TKey> System.Linq.GroupedEnumerable`2::_keySelector
Func_2_t2447130374 * ____keySelector_1;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Linq.GroupedEnumerable`2::_comparer
RuntimeObject* ____comparer_2;
public:
inline static int32_t get_offset_of__source_0() { return static_cast<int32_t>(offsetof(GroupedEnumerable_2_t2921137520, ____source_0)); }
inline RuntimeObject* get__source_0() const { return ____source_0; }
inline RuntimeObject** get_address_of__source_0() { return &____source_0; }
inline void set__source_0(RuntimeObject* value)
{
____source_0 = value;
Il2CppCodeGenWriteBarrier((&____source_0), value);
}
inline static int32_t get_offset_of__keySelector_1() { return static_cast<int32_t>(offsetof(GroupedEnumerable_2_t2921137520, ____keySelector_1)); }
inline Func_2_t2447130374 * get__keySelector_1() const { return ____keySelector_1; }
inline Func_2_t2447130374 ** get_address_of__keySelector_1() { return &____keySelector_1; }
inline void set__keySelector_1(Func_2_t2447130374 * value)
{
____keySelector_1 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_1), value);
}
inline static int32_t get_offset_of__comparer_2() { return static_cast<int32_t>(offsetof(GroupedEnumerable_2_t2921137520, ____comparer_2)); }
inline RuntimeObject* get__comparer_2() const { return ____comparer_2; }
inline RuntimeObject** get_address_of__comparer_2() { return &____comparer_2; }
inline void set__comparer_2(RuntimeObject* value)
{
____comparer_2 = value;
Il2CppCodeGenWriteBarrier((&____comparer_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GROUPEDENUMERABLE_2_T2921137520_H
#ifndef LAZY_1_T3564634513_H
#define LAZY_1_T3564634513_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Lazy`1<System.Object>
struct Lazy_1_t3564634513 : public RuntimeObject
{
public:
// System.Object System.Lazy`1::m_boxed
RuntimeObject * ___m_boxed_1;
// System.Func`1<T> System.Lazy`1::m_valueFactory
Func_1_t2509852811 * ___m_valueFactory_2;
// System.Object System.Lazy`1::m_threadSafeObj
RuntimeObject * ___m_threadSafeObj_3;
public:
inline static int32_t get_offset_of_m_boxed_1() { return static_cast<int32_t>(offsetof(Lazy_1_t3564634513, ___m_boxed_1)); }
inline RuntimeObject * get_m_boxed_1() const { return ___m_boxed_1; }
inline RuntimeObject ** get_address_of_m_boxed_1() { return &___m_boxed_1; }
inline void set_m_boxed_1(RuntimeObject * value)
{
___m_boxed_1 = value;
Il2CppCodeGenWriteBarrier((&___m_boxed_1), value);
}
inline static int32_t get_offset_of_m_valueFactory_2() { return static_cast<int32_t>(offsetof(Lazy_1_t3564634513, ___m_valueFactory_2)); }
inline Func_1_t2509852811 * get_m_valueFactory_2() const { return ___m_valueFactory_2; }
inline Func_1_t2509852811 ** get_address_of_m_valueFactory_2() { return &___m_valueFactory_2; }
inline void set_m_valueFactory_2(Func_1_t2509852811 * value)
{
___m_valueFactory_2 = value;
Il2CppCodeGenWriteBarrier((&___m_valueFactory_2), value);
}
inline static int32_t get_offset_of_m_threadSafeObj_3() { return static_cast<int32_t>(offsetof(Lazy_1_t3564634513, ___m_threadSafeObj_3)); }
inline RuntimeObject * get_m_threadSafeObj_3() const { return ___m_threadSafeObj_3; }
inline RuntimeObject ** get_address_of_m_threadSafeObj_3() { return &___m_threadSafeObj_3; }
inline void set_m_threadSafeObj_3(RuntimeObject * value)
{
___m_threadSafeObj_3 = value;
Il2CppCodeGenWriteBarrier((&___m_threadSafeObj_3), value);
}
};
struct Lazy_1_t3564634513_StaticFields
{
public:
// System.Func`1<T> System.Lazy`1::ALREADY_INVOKED_SENTINEL
Func_1_t2509852811 * ___ALREADY_INVOKED_SENTINEL_0;
public:
inline static int32_t get_offset_of_ALREADY_INVOKED_SENTINEL_0() { return static_cast<int32_t>(offsetof(Lazy_1_t3564634513_StaticFields, ___ALREADY_INVOKED_SENTINEL_0)); }
inline Func_1_t2509852811 * get_ALREADY_INVOKED_SENTINEL_0() const { return ___ALREADY_INVOKED_SENTINEL_0; }
inline Func_1_t2509852811 ** get_address_of_ALREADY_INVOKED_SENTINEL_0() { return &___ALREADY_INVOKED_SENTINEL_0; }
inline void set_ALREADY_INVOKED_SENTINEL_0(Func_1_t2509852811 * value)
{
___ALREADY_INVOKED_SENTINEL_0 = value;
Il2CppCodeGenWriteBarrier((&___ALREADY_INVOKED_SENTINEL_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAZY_1_T3564634513_H
#ifndef EXCEPTIONDISPATCHINFO_T3750997369_H
#define EXCEPTIONDISPATCHINFO_T3750997369_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t3750997369 : public RuntimeObject
{
public:
// System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception
Exception_t * ___m_Exception_0;
// System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace
RuntimeObject * ___m_stackTrace_1;
public:
inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t3750997369, ___m_Exception_0)); }
inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; }
inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; }
inline void set_m_Exception_0(Exception_t * value)
{
___m_Exception_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Exception_0), value);
}
inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t3750997369, ___m_stackTrace_1)); }
inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; }
inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; }
inline void set_m_stackTrace_1(RuntimeObject * value)
{
___m_stackTrace_1 = value;
Il2CppCodeGenWriteBarrier((&___m_stackTrace_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTIONDISPATCHINFO_T3750997369_H
#ifndef MARKER_T2894777777_H
#define MARKER_T2894777777_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Marker
struct Marker_t2894777777
{
public:
// System.Int32 System.Collections.Generic.Marker::<Count>k__BackingField
int32_t ___U3CCountU3Ek__BackingField_0;
// System.Int32 System.Collections.Generic.Marker::<Index>k__BackingField
int32_t ___U3CIndexU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CCountU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Marker_t2894777777, ___U3CCountU3Ek__BackingField_0)); }
inline int32_t get_U3CCountU3Ek__BackingField_0() const { return ___U3CCountU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CCountU3Ek__BackingField_0() { return &___U3CCountU3Ek__BackingField_0; }
inline void set_U3CCountU3Ek__BackingField_0(int32_t value)
{
___U3CCountU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CIndexU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Marker_t2894777777, ___U3CIndexU3Ek__BackingField_1)); }
inline int32_t get_U3CIndexU3Ek__BackingField_1() const { return ___U3CIndexU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CIndexU3Ek__BackingField_1() { return &___U3CIndexU3Ek__BackingField_1; }
inline void set_U3CIndexU3Ek__BackingField_1(int32_t value)
{
___U3CIndexU3Ek__BackingField_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MARKER_T2894777777_H
#ifndef ARRAYBUILDER_1_T516401051_H
#define ARRAYBUILDER_1_T516401051_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Char[]>
struct ArrayBuilder_1_t516401051
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
CharU5BU5DU5BU5D_t2526858914* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t516401051, ____array_0)); }
inline CharU5BU5DU5BU5D_t2526858914* get__array_0() const { return ____array_0; }
inline CharU5BU5DU5BU5D_t2526858914** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(CharU5BU5DU5BU5D_t2526858914* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t516401051, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T516401051_H
#ifndef ARRAYBUILDER_1_T1205246587_H
#define ARRAYBUILDER_1_T1205246587_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Collections.DictionaryEntry[]>
struct ArrayBuilder_1_t1205246587
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
DictionaryEntryU5BU5DU5BU5D_t3671610434* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1205246587, ____array_0)); }
inline DictionaryEntryU5BU5DU5BU5D_t3671610434* get__array_0() const { return ____array_0; }
inline DictionaryEntryU5BU5DU5BU5D_t3671610434** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(DictionaryEntryU5BU5DU5BU5D_t3671610434* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1205246587, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T1205246587_H
#ifndef UNIONITERATOR_1_T3402001247_H
#define UNIONITERATOR_1_T3402001247_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIterator`1<System.Char>
struct UnionIterator_1_t3402001247 : public Iterator_1_t2588820807
{
public:
// System.Collections.Generic.IEqualityComparer`1<TSource> System.Linq.Enumerable/UnionIterator`1::_comparer
RuntimeObject* ____comparer_3;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/UnionIterator`1::_enumerator
RuntimeObject* ____enumerator_4;
// System.Linq.Set`1<TSource> System.Linq.Enumerable/UnionIterator`1::_set
Set_1_t329142533 * ____set_5;
public:
inline static int32_t get_offset_of__comparer_3() { return static_cast<int32_t>(offsetof(UnionIterator_1_t3402001247, ____comparer_3)); }
inline RuntimeObject* get__comparer_3() const { return ____comparer_3; }
inline RuntimeObject** get_address_of__comparer_3() { return &____comparer_3; }
inline void set__comparer_3(RuntimeObject* value)
{
____comparer_3 = value;
Il2CppCodeGenWriteBarrier((&____comparer_3), value);
}
inline static int32_t get_offset_of__enumerator_4() { return static_cast<int32_t>(offsetof(UnionIterator_1_t3402001247, ____enumerator_4)); }
inline RuntimeObject* get__enumerator_4() const { return ____enumerator_4; }
inline RuntimeObject** get_address_of__enumerator_4() { return &____enumerator_4; }
inline void set__enumerator_4(RuntimeObject* value)
{
____enumerator_4 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_4), value);
}
inline static int32_t get_offset_of__set_5() { return static_cast<int32_t>(offsetof(UnionIterator_1_t3402001247, ____set_5)); }
inline Set_1_t329142533 * get__set_5() const { return ____set_5; }
inline Set_1_t329142533 ** get_address_of__set_5() { return &____set_5; }
inline void set__set_5(Set_1_t329142533 * value)
{
____set_5 = value;
Il2CppCodeGenWriteBarrier((&____set_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATOR_1_T3402001247_H
#ifndef SELECTMANYSINGLESELECTORITERATOR_2_T963716220_H
#define SELECTMANYSINGLESELECTORITERATOR_2_T963716220_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>
struct SelectManySingleSelectorIterator_2_t963716220 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/SelectManySingleSelectorIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Collections.Generic.IEnumerable`1<TResult>> System.Linq.Enumerable/SelectManySingleSelectorIterator`2::_selector
Func_2_t1426983263 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectManySingleSelectorIterator`2::_sourceEnumerator
RuntimeObject* ____sourceEnumerator_5;
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/SelectManySingleSelectorIterator`2::_subEnumerator
RuntimeObject* ____subEnumerator_6;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectManySingleSelectorIterator_2_t963716220, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectManySingleSelectorIterator_2_t963716220, ____selector_4)); }
inline Func_2_t1426983263 * get__selector_4() const { return ____selector_4; }
inline Func_2_t1426983263 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t1426983263 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__sourceEnumerator_5() { return static_cast<int32_t>(offsetof(SelectManySingleSelectorIterator_2_t963716220, ____sourceEnumerator_5)); }
inline RuntimeObject* get__sourceEnumerator_5() const { return ____sourceEnumerator_5; }
inline RuntimeObject** get_address_of__sourceEnumerator_5() { return &____sourceEnumerator_5; }
inline void set__sourceEnumerator_5(RuntimeObject* value)
{
____sourceEnumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____sourceEnumerator_5), value);
}
inline static int32_t get_offset_of__subEnumerator_6() { return static_cast<int32_t>(offsetof(SelectManySingleSelectorIterator_2_t963716220, ____subEnumerator_6)); }
inline RuntimeObject* get__subEnumerator_6() const { return ____subEnumerator_6; }
inline RuntimeObject** get_address_of__subEnumerator_6() { return &____subEnumerator_6; }
inline void set__subEnumerator_6(RuntimeObject* value)
{
____subEnumerator_6 = value;
Il2CppCodeGenWriteBarrier((&____subEnumerator_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTMANYSINGLESELECTORITERATOR_2_T963716220_H
#ifndef ARRAYBUILDER_1_T3343055733_H
#define ARRAYBUILDER_1_T3343055733_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.IEnumerable`1<System.Object>>
struct ArrayBuilder_1_t3343055733
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
IEnumerable_1U5BU5D_t2115075616* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3343055733, ____array_0)); }
inline IEnumerable_1U5BU5D_t2115075616* get__array_0() const { return ____array_0; }
inline IEnumerable_1U5BU5D_t2115075616** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(IEnumerable_1U5BU5D_t2115075616* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3343055733, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T3343055733_H
#ifndef SELECTIPARTITIONITERATOR_2_T2131188771_H
#define SELECTIPARTITIONITERATOR_2_T2131188771_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>
struct SelectIPartitionIterator_2_t2131188771 : public Iterator_1_t2034466501
{
public:
// System.Linq.IPartition`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIPartitionIterator`2::_selector
Func_2_t2447130374 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____selector_4)); }
inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; }
inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t2447130374 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTIPARTITIONITERATOR_2_T2131188771_H
#ifndef SELECTILISTITERATOR_2_T3601768299_H
#define SELECTILISTITERATOR_2_T3601768299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>
struct SelectIListIterator_2_t3601768299 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IList`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIListIterator`2::_selector
Func_2_t2447130374 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____selector_4)); }
inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; }
inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t2447130374 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTILISTITERATOR_2_T3601768299_H
#ifndef ARRAYBUILDER_1_T68235548_H
#define ARRAYBUILDER_1_T68235548_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Object>
struct ArrayBuilder_1_t68235548
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
ObjectU5BU5D_t2843939325* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t68235548, ____array_0)); }
inline ObjectU5BU5D_t2843939325* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t2843939325** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t2843939325* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t68235548, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T68235548_H
#ifndef SELECTENUMERABLEITERATOR_2_T4232181467_H
#define SELECTENUMERABLEITERATOR_2_T4232181467_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>
struct SelectEnumerableIterator_2_t4232181467 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectEnumerableIterator`2::_selector
Func_2_t2447130374 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____selector_4)); }
inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; }
inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t2447130374 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTENUMERABLEITERATOR_2_T4232181467_H
#ifndef SELECTARRAYITERATOR_2_T819778152_H
#define SELECTARRAYITERATOR_2_T819778152_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>
struct SelectArrayIterator_2_t819778152 : public Iterator_1_t2034466501
{
public:
// TSource[] System.Linq.Enumerable/SelectArrayIterator`2::_source
ObjectU5BU5D_t2843939325* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectArrayIterator`2::_selector
Func_2_t2447130374 * ____selector_4;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t819778152, ____source_3)); }
inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; }
inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(ObjectU5BU5D_t2843939325* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t819778152, ____selector_4)); }
inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; }
inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t2447130374 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTARRAYITERATOR_2_T819778152_H
#ifndef ARRAYBUILDER_1_T4177874457_H
#define ARRAYBUILDER_1_T4177874457_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker>
struct ArrayBuilder_1_t4177874457
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
MarkerU5BU5D_t2881615980* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4177874457, ____array_0)); }
inline MarkerU5BU5D_t2881615980* get__array_0() const { return ____array_0; }
inline MarkerU5BU5D_t2881615980** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(MarkerU5BU5D_t2881615980* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4177874457, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T4177874457_H
#ifndef ENUMERATOR_T2146457487_H
#define ENUMERATOR_T2146457487_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t2146457487
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t257213610 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
RuntimeObject * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___list_0)); }
inline List_1_t257213610 * get_list_0() const { return ___list_0; }
inline List_1_t257213610 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t257213610 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___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_t2146457487, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___current_3)); }
inline RuntimeObject * get_current_3() const { return ___current_3; }
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((&___current_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T2146457487_H
#ifndef ENUMERABLESORTER_2_T1064581514_H
#define ENUMERABLESORTER_2_T1064581514_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`2<System.Object,System.Object>
struct EnumerableSorter_2_t1064581514 : public EnumerableSorter_1_t3733250914
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::_keySelector
Func_2_t2447130374 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::_descending
bool ____descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::_next
EnumerableSorter_1_t3733250914 * ____next_3;
// TKey[] System.Linq.EnumerableSorter`2::_keys
ObjectU5BU5D_t2843939325* ____keys_4;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t1064581514, ____keySelector_0)); }
inline Func_2_t2447130374 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t2447130374 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t2447130374 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t1064581514, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t1064581514, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t1064581514, ____next_3)); }
inline EnumerableSorter_1_t3733250914 * get__next_3() const { return ____next_3; }
inline EnumerableSorter_1_t3733250914 ** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(EnumerableSorter_1_t3733250914 * value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((&____next_3), value);
}
inline static int32_t get_offset_of__keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t1064581514, ____keys_4)); }
inline ObjectU5BU5D_t2843939325* get__keys_4() const { return ____keys_4; }
inline ObjectU5BU5D_t2843939325** get_address_of__keys_4() { return &____keys_4; }
inline void set__keys_4(ObjectU5BU5D_t2843939325* value)
{
____keys_4 = value;
Il2CppCodeGenWriteBarrier((&____keys_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_2_T1064581514_H
#ifndef ENUMERABLESORTER_2_T935421103_H
#define ENUMERABLESORTER_2_T935421103_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`2<System.Object,System.Int32>
struct EnumerableSorter_2_t935421103 : public EnumerableSorter_1_t3733250914
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::_keySelector
Func_2_t2317969963 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::_descending
bool ____descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::_next
EnumerableSorter_1_t3733250914 * ____next_3;
// TKey[] System.Linq.EnumerableSorter`2::_keys
Int32U5BU5D_t385246372* ____keys_4;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t935421103, ____keySelector_0)); }
inline Func_2_t2317969963 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t2317969963 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t2317969963 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t935421103, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t935421103, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t935421103, ____next_3)); }
inline EnumerableSorter_1_t3733250914 * get__next_3() const { return ____next_3; }
inline EnumerableSorter_1_t3733250914 ** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(EnumerableSorter_1_t3733250914 * value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((&____next_3), value);
}
inline static int32_t get_offset_of__keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t935421103, ____keys_4)); }
inline Int32U5BU5D_t385246372* get__keys_4() const { return ____keys_4; }
inline Int32U5BU5D_t385246372** get_address_of__keys_4() { return &____keys_4; }
inline void set__keys_4(Int32U5BU5D_t385246372* value)
{
____keys_4 = value;
Il2CppCodeGenWriteBarrier((&____keys_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_2_T935421103_H
#ifndef WHERESELECTENUMERABLEITERATOR_2_T1553622305_H
#define WHERESELECTENUMERABLEITERATOR_2_T1553622305_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
struct WhereSelectEnumerableIterator_2_t1553622305 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_predicate
Func_2_t3759279471 * ____predicate_4;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_selector
Func_2_t2447130374 * ____selector_5;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_enumerator
RuntimeObject* ____enumerator_6;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____selector_5)); }
inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; }
inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; }
inline void set__selector_5(Func_2_t2447130374 * value)
{
____selector_5 = value;
Il2CppCodeGenWriteBarrier((&____selector_5), value);
}
inline static int32_t get_offset_of__enumerator_6() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____enumerator_6)); }
inline RuntimeObject* get__enumerator_6() const { return ____enumerator_6; }
inline RuntimeObject** get_address_of__enumerator_6() { return &____enumerator_6; }
inline void set__enumerator_6(RuntimeObject* value)
{
____enumerator_6 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERESELECTENUMERABLEITERATOR_2_T1553622305_H
#ifndef ENUMERABLESORTER_2_T2289956081_H
#define ENUMERABLESORTER_2_T2289956081_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>
struct EnumerableSorter_2_t2289956081 : public EnumerableSorter_1_t2809374273
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::_keySelector
Func_2_t3672504941 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::_descending
bool ____descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::_next
EnumerableSorter_1_t2809374273 * ____next_3;
// TKey[] System.Linq.EnumerableSorter`2::_keys
SingleU5BU5D_t1444911251* ____keys_4;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2289956081, ____keySelector_0)); }
inline Func_2_t3672504941 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t3672504941 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t3672504941 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2289956081, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2289956081, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2289956081, ____next_3)); }
inline EnumerableSorter_1_t2809374273 * get__next_3() const { return ____next_3; }
inline EnumerableSorter_1_t2809374273 ** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(EnumerableSorter_1_t2809374273 * value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((&____next_3), value);
}
inline static int32_t get_offset_of__keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2289956081, ____keys_4)); }
inline SingleU5BU5D_t1444911251* get__keys_4() const { return ____keys_4; }
inline SingleU5BU5D_t1444911251** get_address_of__keys_4() { return &____keys_4; }
inline void set__keys_4(SingleU5BU5D_t1444911251* value)
{
____keys_4 = value;
Il2CppCodeGenWriteBarrier((&____keys_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_2_T2289956081_H
#ifndef PARAMETEREXPRESSION_T1118422084_H
#define PARAMETEREXPRESSION_T1118422084_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.ParameterExpression
struct ParameterExpression_t1118422084 : public Expression_t1588164026
{
public:
// System.String System.Linq.Expressions.ParameterExpression::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ParameterExpression_t1118422084, ___U3CNameU3Ek__BackingField_3)); }
inline String_t* get_U3CNameU3Ek__BackingField_3() const { return ___U3CNameU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CNameU3Ek__BackingField_3() { return &___U3CNameU3Ek__BackingField_3; }
inline void set_U3CNameU3Ek__BackingField_3(String_t* value)
{
___U3CNameU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((&___U3CNameU3Ek__BackingField_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETEREXPRESSION_T1118422084_H
#ifndef LAMBDAEXPRESSION_T3131094331_H
#define LAMBDAEXPRESSION_T3131094331_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.LambdaExpression
struct LambdaExpression_t3131094331 : public Expression_t1588164026
{
public:
// System.Linq.Expressions.Expression System.Linq.Expressions.LambdaExpression::_body
Expression_t1588164026 * ____body_3;
public:
inline static int32_t get_offset_of__body_3() { return static_cast<int32_t>(offsetof(LambdaExpression_t3131094331, ____body_3)); }
inline Expression_t1588164026 * get__body_3() const { return ____body_3; }
inline Expression_t1588164026 ** get_address_of__body_3() { return &____body_3; }
inline void set__body_3(Expression_t1588164026 * value)
{
____body_3 = value;
Il2CppCodeGenWriteBarrier((&____body_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAMBDAEXPRESSION_T3131094331_H
#ifndef ENUMERABLESORTER_2_T2551520856_H
#define ENUMERABLESORTER_2_T2551520856_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>
struct EnumerableSorter_2_t2551520856 : public EnumerableSorter_1_t80490918
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::_keySelector
Func_2_t3934069716 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::_descending
bool ____descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::_next
EnumerableSorter_1_t80490918 * ____next_3;
// TKey[] System.Linq.EnumerableSorter`2::_keys
SingleU5BU5D_t1444911251* ____keys_4;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2551520856, ____keySelector_0)); }
inline Func_2_t3934069716 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t3934069716 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t3934069716 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2551520856, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2551520856, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2551520856, ____next_3)); }
inline EnumerableSorter_1_t80490918 * get__next_3() const { return ____next_3; }
inline EnumerableSorter_1_t80490918 ** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(EnumerableSorter_1_t80490918 * value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((&____next_3), value);
}
inline static int32_t get_offset_of__keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t2551520856, ____keys_4)); }
inline SingleU5BU5D_t1444911251* get__keys_4() const { return ____keys_4; }
inline SingleU5BU5D_t1444911251** get_address_of__keys_4() { return &____keys_4; }
inline void set__keys_4(SingleU5BU5D_t1444911251* value)
{
____keys_4 = value;
Il2CppCodeGenWriteBarrier((&____keys_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLESORTER_2_T2551520856_H
#ifndef WHERESELECTARRAYITERATOR_2_T1355832803_H
#define WHERESELECTARRAYITERATOR_2_T1355832803_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>
struct WhereSelectArrayIterator_2_t1355832803 : public Iterator_1_t2034466501
{
public:
// TSource[] System.Linq.Enumerable/WhereSelectArrayIterator`2::_source
ObjectU5BU5D_t2843939325* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectArrayIterator`2::_predicate
Func_2_t3759279471 * ____predicate_4;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2::_selector
Func_2_t2447130374 * ____selector_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____source_3)); }
inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; }
inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(ObjectU5BU5D_t2843939325* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____selector_5)); }
inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; }
inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; }
inline void set__selector_5(Func_2_t2447130374 * value)
{
____selector_5 = value;
Il2CppCodeGenWriteBarrier((&____selector_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERESELECTARRAYITERATOR_2_T1355832803_H
#ifndef ARRAYBUILDER_1_T4127036005_H
#define ARRAYBUILDER_1_T4127036005_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Object[]>
struct ArrayBuilder_1_t4127036005
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
ObjectU5BU5DU5BU5D_t831815024* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4127036005, ____array_0)); }
inline ObjectU5BU5DU5BU5D_t831815024* get__array_0() const { return ____array_0; }
inline ObjectU5BU5DU5BU5D_t831815024** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5DU5BU5D_t831815024* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t4127036005, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T4127036005_H
#ifndef ARRAYBUILDER_1_T3119314640_H
#define ARRAYBUILDER_1_T3119314640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<UnityEngine.Ray[]>
struct ArrayBuilder_1_t3119314640
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
RayU5BU5DU5BU5D_t292100857* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3119314640, ____array_0)); }
inline RayU5BU5DU5BU5D_t292100857* get__array_0() const { return ____array_0; }
inline RayU5BU5DU5BU5D_t292100857** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(RayU5BU5DU5BU5D_t292100857* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t3119314640, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T3119314640_H
#ifndef UNIONITERATOR_1_T2847646941_H
#define UNIONITERATOR_1_T2847646941_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIterator`1<System.Object>
struct UnionIterator_1_t2847646941 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IEqualityComparer`1<TSource> System.Linq.Enumerable/UnionIterator`1::_comparer
RuntimeObject* ____comparer_3;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/UnionIterator`1::_enumerator
RuntimeObject* ____enumerator_4;
// System.Linq.Set`1<TSource> System.Linq.Enumerable/UnionIterator`1::_set
Set_1_t4069755523 * ____set_5;
public:
inline static int32_t get_offset_of__comparer_3() { return static_cast<int32_t>(offsetof(UnionIterator_1_t2847646941, ____comparer_3)); }
inline RuntimeObject* get__comparer_3() const { return ____comparer_3; }
inline RuntimeObject** get_address_of__comparer_3() { return &____comparer_3; }
inline void set__comparer_3(RuntimeObject* value)
{
____comparer_3 = value;
Il2CppCodeGenWriteBarrier((&____comparer_3), value);
}
inline static int32_t get_offset_of__enumerator_4() { return static_cast<int32_t>(offsetof(UnionIterator_1_t2847646941, ____enumerator_4)); }
inline RuntimeObject* get__enumerator_4() const { return ____enumerator_4; }
inline RuntimeObject** get_address_of__enumerator_4() { return &____enumerator_4; }
inline void set__enumerator_4(RuntimeObject* value)
{
____enumerator_4 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_4), value);
}
inline static int32_t get_offset_of__set_5() { return static_cast<int32_t>(offsetof(UnionIterator_1_t2847646941, ____set_5)); }
inline Set_1_t4069755523 * get__set_5() const { return ____set_5; }
inline Set_1_t4069755523 ** get_address_of__set_5() { return &____set_5; }
inline void set__set_5(Set_1_t4069755523 * value)
{
____set_5 = value;
Il2CppCodeGenWriteBarrier((&____set_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATOR_1_T2847646941_H
#ifndef ARRAYBUILDER_1_T1401365894_H
#define ARRAYBUILDER_1_T1401365894_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]>
struct ArrayBuilder_1_t1401365894
{
public:
// T[] System.Collections.Generic.ArrayBuilder`1::_array
KeyValuePair_2U5BU5DU5BU5D_t2409249963* ____array_0;
// System.Int32 System.Collections.Generic.ArrayBuilder`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1401365894, ____array_0)); }
inline KeyValuePair_2U5BU5DU5BU5D_t2409249963* get__array_0() const { return ____array_0; }
inline KeyValuePair_2U5BU5DU5BU5D_t2409249963** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(KeyValuePair_2U5BU5DU5BU5D_t2409249963* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(ArrayBuilder_1_t1401365894, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYBUILDER_1_T1401365894_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef WHEREARRAYITERATOR_1_T1891928581_H
#define WHEREARRAYITERATOR_1_T1891928581_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereArrayIterator`1<System.Object>
struct WhereArrayIterator_1_t1891928581 : public Iterator_1_t2034466501
{
public:
// TSource[] System.Linq.Enumerable/WhereArrayIterator`1::_source
ObjectU5BU5D_t2843939325* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereArrayIterator`1::_predicate
Func_2_t3759279471 * ____predicate_4;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t1891928581, ____source_3)); }
inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; }
inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(ObjectU5BU5D_t2843939325* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t1891928581, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREARRAYITERATOR_1_T1891928581_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef KEYVALUEPAIR_2_T2530217319_H
#define KEYVALUEPAIR_2_T2530217319_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t2530217319
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2530217319_H
#ifndef BUFFER_1_T932544294_H
#define BUFFER_1_T932544294_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Buffer`1<System.Object>
struct Buffer_1_t932544294
{
public:
// TElement[] System.Linq.Buffer`1::_items
ObjectU5BU5D_t2843939325* ____items_0;
// System.Int32 System.Linq.Buffer`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t932544294, ____items_0)); }
inline ObjectU5BU5D_t2843939325* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_t2843939325** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_t2843939325* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((&____items_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t932544294, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFER_1_T932544294_H
#ifndef BUFFER_1_T8667653_H
#define BUFFER_1_T8667653_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Buffer`1<UnityEngine.Vector2>
struct Buffer_1_t8667653
{
public:
// TElement[] System.Linq.Buffer`1::_items
Vector2U5BU5D_t1457185986* ____items_0;
// System.Int32 System.Linq.Buffer`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t8667653, ____items_0)); }
inline Vector2U5BU5D_t1457185986* get__items_0() const { return ____items_0; }
inline Vector2U5BU5D_t1457185986** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(Vector2U5BU5D_t1457185986* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((&____items_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t8667653, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFER_1_T8667653_H
#ifndef THREAD_T2300836069_H
#define THREAD_T2300836069_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Thread
struct Thread_t2300836069 : public CriticalFinalizerObject_t701527852
{
public:
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_t95296544 * ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject * ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject * ___pending_exception_8;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_9;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_10;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t * ___m_Delegate_12;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t1748372627 * ___m_ExecutionContext_13;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_14;
public:
inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___internal_thread_6)); }
inline InternalThread_t95296544 * get_internal_thread_6() const { return ___internal_thread_6; }
inline InternalThread_t95296544 ** get_address_of_internal_thread_6() { return &___internal_thread_6; }
inline void set_internal_thread_6(InternalThread_t95296544 * value)
{
___internal_thread_6 = value;
Il2CppCodeGenWriteBarrier((&___internal_thread_6), value);
}
inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___m_ThreadStartArg_7)); }
inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; }
inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; }
inline void set_m_ThreadStartArg_7(RuntimeObject * value)
{
___m_ThreadStartArg_7 = value;
Il2CppCodeGenWriteBarrier((&___m_ThreadStartArg_7), value);
}
inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___pending_exception_8)); }
inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; }
inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; }
inline void set_pending_exception_8(RuntimeObject * value)
{
___pending_exception_8 = value;
Il2CppCodeGenWriteBarrier((&___pending_exception_8), value);
}
inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___principal_9)); }
inline RuntimeObject* get_principal_9() const { return ___principal_9; }
inline RuntimeObject** get_address_of_principal_9() { return &___principal_9; }
inline void set_principal_9(RuntimeObject* value)
{
___principal_9 = value;
Il2CppCodeGenWriteBarrier((&___principal_9), value);
}
inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___principal_version_10)); }
inline int32_t get_principal_version_10() const { return ___principal_version_10; }
inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; }
inline void set_principal_version_10(int32_t value)
{
___principal_version_10 = value;
}
inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___m_Delegate_12)); }
inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; }
inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; }
inline void set_m_Delegate_12(MulticastDelegate_t * value)
{
___m_Delegate_12 = value;
Il2CppCodeGenWriteBarrier((&___m_Delegate_12), value);
}
inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___m_ExecutionContext_13)); }
inline ExecutionContext_t1748372627 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; }
inline ExecutionContext_t1748372627 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; }
inline void set_m_ExecutionContext_13(ExecutionContext_t1748372627 * value)
{
___m_ExecutionContext_13 = value;
Il2CppCodeGenWriteBarrier((&___m_ExecutionContext_13), value);
}
inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_t2300836069, ___m_ExecutionContextBelongsToOuterScope_14)); }
inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; }
inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; }
inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value)
{
___m_ExecutionContextBelongsToOuterScope_14 = value;
}
};
struct Thread_t2300836069_StaticFields
{
public:
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t1707895399 * ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_t2427220165 * ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_t2427220165 * ___s_asyncLocalCurrentUICulture_5;
public:
inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_t2300836069_StaticFields, ___s_LocalDataStoreMgr_0)); }
inline LocalDataStoreMgr_t1707895399 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; }
inline LocalDataStoreMgr_t1707895399 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; }
inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1707895399 * value)
{
___s_LocalDataStoreMgr_0 = value;
Il2CppCodeGenWriteBarrier((&___s_LocalDataStoreMgr_0), value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_t2300836069_StaticFields, ___s_asyncLocalCurrentCulture_4)); }
inline AsyncLocal_1_t2427220165 * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; }
inline AsyncLocal_1_t2427220165 ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; }
inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_t2427220165 * value)
{
___s_asyncLocalCurrentCulture_4 = value;
Il2CppCodeGenWriteBarrier((&___s_asyncLocalCurrentCulture_4), value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_t2300836069_StaticFields, ___s_asyncLocalCurrentUICulture_5)); }
inline AsyncLocal_1_t2427220165 * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; }
inline AsyncLocal_1_t2427220165 ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; }
inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_t2427220165 * value)
{
___s_asyncLocalCurrentUICulture_5 = value;
Il2CppCodeGenWriteBarrier((&___s_asyncLocalCurrentUICulture_5), value);
}
};
struct Thread_t2300836069_ThreadStaticFields
{
public:
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_t2567786569 * ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t4157843068 * ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t4157843068 * ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_t2300836069 * ___current_thread_11;
public:
inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_t2300836069_ThreadStaticFields, ___s_LocalDataStore_1)); }
inline LocalDataStoreHolder_t2567786569 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; }
inline LocalDataStoreHolder_t2567786569 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; }
inline void set_s_LocalDataStore_1(LocalDataStoreHolder_t2567786569 * value)
{
___s_LocalDataStore_1 = value;
Il2CppCodeGenWriteBarrier((&___s_LocalDataStore_1), value);
}
inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_t2300836069_ThreadStaticFields, ___m_CurrentCulture_2)); }
inline CultureInfo_t4157843068 * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; }
inline CultureInfo_t4157843068 ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; }
inline void set_m_CurrentCulture_2(CultureInfo_t4157843068 * value)
{
___m_CurrentCulture_2 = value;
Il2CppCodeGenWriteBarrier((&___m_CurrentCulture_2), value);
}
inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_t2300836069_ThreadStaticFields, ___m_CurrentUICulture_3)); }
inline CultureInfo_t4157843068 * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; }
inline CultureInfo_t4157843068 ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; }
inline void set_m_CurrentUICulture_3(CultureInfo_t4157843068 * value)
{
___m_CurrentUICulture_3 = value;
Il2CppCodeGenWriteBarrier((&___m_CurrentUICulture_3), value);
}
inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_t2300836069_ThreadStaticFields, ___current_thread_11)); }
inline Thread_t2300836069 * get_current_thread_11() const { return ___current_thread_11; }
inline Thread_t2300836069 ** get_address_of_current_thread_11() { return &___current_thread_11; }
inline void set_current_thread_11(Thread_t2300836069 * value)
{
___current_thread_11 = value;
Il2CppCodeGenWriteBarrier((&___current_thread_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // THREAD_T2300836069_H
#ifndef CACHINGCOMPARER_2_T33381310_H
#define CACHINGCOMPARER_2_T33381310_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`2<UnityEngine.Vector3,System.Single>
struct CachingComparer_2_t33381310 : public CachingComparer_1_t2021025219
{
public:
// System.Func`2<TElement,TKey> System.Linq.CachingComparer`2::_keySelector
Func_2_t3934069716 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.CachingComparer`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.CachingComparer`2::_descending
bool ____descending_2;
// TKey System.Linq.CachingComparer`2::_lastKey
float ____lastKey_3;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(CachingComparer_2_t33381310, ____keySelector_0)); }
inline Func_2_t3934069716 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t3934069716 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t3934069716 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(CachingComparer_2_t33381310, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(CachingComparer_2_t33381310, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__lastKey_3() { return static_cast<int32_t>(offsetof(CachingComparer_2_t33381310, ____lastKey_3)); }
inline float get__lastKey_3() const { return ____lastKey_3; }
inline float* get_address_of__lastKey_3() { return &____lastKey_3; }
inline void set__lastKey_3(float value)
{
____lastKey_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_2_T33381310_H
#ifndef WHEREENUMERABLEITERATOR_1_T2739994797_H
#define WHEREENUMERABLEITERATOR_1_T2739994797_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>
struct WhereEnumerableIterator_1_t2739994797 : public Iterator_1_t2588820807
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate
Func_2_t148644517 * ____predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2739994797, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2739994797, ____predicate_4)); }
inline Func_2_t148644517 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t148644517 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t148644517 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2739994797, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREENUMERABLEITERATOR_1_T2739994797_H
#ifndef BUFFER_1_T1574751594_H
#define BUFFER_1_T1574751594_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Buffer`1<UnityEngine.Vector3>
struct Buffer_1_t1574751594
{
public:
// TElement[] System.Linq.Buffer`1::_items
Vector3U5BU5D_t1718750761* ____items_0;
// System.Int32 System.Linq.Buffer`1::_count
int32_t ____count_1;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t1574751594, ____items_0)); }
inline Vector3U5BU5D_t1718750761* get__items_0() const { return ____items_0; }
inline Vector3U5BU5D_t1718750761** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(Vector3U5BU5D_t1718750761* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((&____items_0), value);
}
inline static int32_t get_offset_of__count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t1574751594, ____count_1)); }
inline int32_t get__count_1() const { return ____count_1; }
inline int32_t* get_address_of__count_1() { return &____count_1; }
inline void set__count_1(int32_t value)
{
____count_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFER_1_T1574751594_H
#ifndef CACHINGCOMPARER_2_T2841409264_H
#define CACHINGCOMPARER_2_T2841409264_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`2<System.Object,System.Object>
struct CachingComparer_2_t2841409264 : public CachingComparer_1_t1378817919
{
public:
// System.Func`2<TElement,TKey> System.Linq.CachingComparer`2::_keySelector
Func_2_t2447130374 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.CachingComparer`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.CachingComparer`2::_descending
bool ____descending_2;
// TKey System.Linq.CachingComparer`2::_lastKey
RuntimeObject * ____lastKey_3;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2841409264, ____keySelector_0)); }
inline Func_2_t2447130374 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t2447130374 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t2447130374 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2841409264, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2841409264, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__lastKey_3() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2841409264, ____lastKey_3)); }
inline RuntimeObject * get__lastKey_3() const { return ____lastKey_3; }
inline RuntimeObject ** get_address_of__lastKey_3() { return &____lastKey_3; }
inline void set__lastKey_3(RuntimeObject * value)
{
____lastKey_3 = value;
Il2CppCodeGenWriteBarrier((&____lastKey_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_2_T2841409264_H
#ifndef CACHINGCOMPARER_2_T4066783831_H
#define CACHINGCOMPARER_2_T4066783831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`2<UnityEngine.Vector2,System.Single>
struct CachingComparer_2_t4066783831 : public CachingComparer_1_t454941278
{
public:
// System.Func`2<TElement,TKey> System.Linq.CachingComparer`2::_keySelector
Func_2_t3672504941 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.CachingComparer`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.CachingComparer`2::_descending
bool ____descending_2;
// TKey System.Linq.CachingComparer`2::_lastKey
float ____lastKey_3;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(CachingComparer_2_t4066783831, ____keySelector_0)); }
inline Func_2_t3672504941 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t3672504941 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t3672504941 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(CachingComparer_2_t4066783831, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(CachingComparer_2_t4066783831, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__lastKey_3() { return static_cast<int32_t>(offsetof(CachingComparer_2_t4066783831, ____lastKey_3)); }
inline float get__lastKey_3() const { return ____lastKey_3; }
inline float* get_address_of__lastKey_3() { return &____lastKey_3; }
inline void set__lastKey_3(float value)
{
____lastKey_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_2_T4066783831_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
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_t1397266774, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef VECTOR3_T3722313464_H
#define VECTOR3_T3722313464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3
struct Vector3_t3722313464
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_1;
// System.Single UnityEngine.Vector3::y
float ___y_2;
// System.Single UnityEngine.Vector3::z
float ___z_3;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___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(Vector3_t3722313464, ___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(Vector3_t3722313464, ___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;
}
};
struct Vector3_t3722313464_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t3722313464 ___zeroVector_4;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t3722313464 ___oneVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t3722313464 ___upVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t3722313464 ___downVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t3722313464 ___leftVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t3722313464 ___rightVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t3722313464 ___forwardVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t3722313464 ___backVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t3722313464 ___positiveInfinityVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t3722313464 ___negativeInfinityVector_13;
public:
inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); }
inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; }
inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
inline void set_zeroVector_4(Vector3_t3722313464 value)
{
___zeroVector_4 = value;
}
inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); }
inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; }
inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; }
inline void set_oneVector_5(Vector3_t3722313464 value)
{
___oneVector_5 = value;
}
inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); }
inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; }
inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; }
inline void set_upVector_6(Vector3_t3722313464 value)
{
___upVector_6 = value;
}
inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); }
inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; }
inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; }
inline void set_downVector_7(Vector3_t3722313464 value)
{
___downVector_7 = value;
}
inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); }
inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; }
inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; }
inline void set_leftVector_8(Vector3_t3722313464 value)
{
___leftVector_8 = value;
}
inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); }
inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; }
inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; }
inline void set_rightVector_9(Vector3_t3722313464 value)
{
___rightVector_9 = value;
}
inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); }
inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; }
inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; }
inline void set_forwardVector_10(Vector3_t3722313464 value)
{
___forwardVector_10 = value;
}
inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); }
inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; }
inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; }
inline void set_backVector_11(Vector3_t3722313464 value)
{
___backVector_11 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); }
inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; }
inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; }
inline void set_positiveInfinityVector_12(Vector3_t3722313464 value)
{
___positiveInfinityVector_12 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); }
inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; }
inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; }
inline void set_negativeInfinityVector_13(Vector3_t3722313464 value)
{
___negativeInfinityVector_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T3722313464_H
#ifndef DICTIONARYENTRY_T3123975638_H
#define DICTIONARYENTRY_T3123975638_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((&____key_0), value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((&____value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
#endif // DICTIONARYENTRY_T3123975638_H
#ifndef CACHINGCOMPARER_2_T2712248853_H
#define CACHINGCOMPARER_2_T2712248853_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparer`2<System.Object,System.Int32>
struct CachingComparer_2_t2712248853 : public CachingComparer_1_t1378817919
{
public:
// System.Func`2<TElement,TKey> System.Linq.CachingComparer`2::_keySelector
Func_2_t2317969963 * ____keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.CachingComparer`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Linq.CachingComparer`2::_descending
bool ____descending_2;
// TKey System.Linq.CachingComparer`2::_lastKey
int32_t ____lastKey_3;
public:
inline static int32_t get_offset_of__keySelector_0() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2712248853, ____keySelector_0)); }
inline Func_2_t2317969963 * get__keySelector_0() const { return ____keySelector_0; }
inline Func_2_t2317969963 ** get_address_of__keySelector_0() { return &____keySelector_0; }
inline void set__keySelector_0(Func_2_t2317969963 * value)
{
____keySelector_0 = value;
Il2CppCodeGenWriteBarrier((&____keySelector_0), value);
}
inline static int32_t get_offset_of__comparer_1() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2712248853, ____comparer_1)); }
inline RuntimeObject* get__comparer_1() const { return ____comparer_1; }
inline RuntimeObject** get_address_of__comparer_1() { return &____comparer_1; }
inline void set__comparer_1(RuntimeObject* value)
{
____comparer_1 = value;
Il2CppCodeGenWriteBarrier((&____comparer_1), value);
}
inline static int32_t get_offset_of__descending_2() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2712248853, ____descending_2)); }
inline bool get__descending_2() const { return ____descending_2; }
inline bool* get_address_of__descending_2() { return &____descending_2; }
inline void set__descending_2(bool value)
{
____descending_2 = value;
}
inline static int32_t get_offset_of__lastKey_3() { return static_cast<int32_t>(offsetof(CachingComparer_2_t2712248853, ____lastKey_3)); }
inline int32_t get__lastKey_3() const { return ____lastKey_3; }
inline int32_t* get_address_of__lastKey_3() { return &____lastKey_3; }
inline void set__lastKey_3(int32_t value)
{
____lastKey_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARER_2_T2712248853_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
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_t97287965, ___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_t97287965_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_t97287965_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((&___TrueString_5), value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_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((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef CHAR_T3634460470_H
#define CHAR_T3634460470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_t3634460470
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_t3634460470_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_t4116647657* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_t4116647657* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_t4116647657** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_t4116647657* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_T3634460470_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
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_t2950945753, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
union
{
struct
{
};
uint8_t Void_t1185182177__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___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(Vector2_t2156229523, ___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;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef WHEREENUMERABLEITERATOR_1_T2185640491_H
#define WHEREENUMERABLEITERATOR_1_T2185640491_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>
struct WhereEnumerableIterator_1_t2185640491 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate
Func_2_t3759279471 * ____predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREENUMERABLEITERATOR_1_T2185640491_H
#ifndef ARGUMENTEXCEPTION_T132251570_H
#define ARGUMENTEXCEPTION_T132251570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_t132251570 : public SystemException_t176217640
{
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_t132251570, ___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((&___m_paramName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_T132251570_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T620129167_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T620129167_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>
struct PrimitiveParameterExpression_1_t620129167 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T620129167_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T1377923958_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T1377923958_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>
struct PrimitiveParameterExpression_1_t1377923958 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T1377923958_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T724198482_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T724198482_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>
struct PrimitiveParameterExpression_1_t724198482 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T724198482_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T2414932369_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T2414932369_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>
struct PrimitiveParameterExpression_1_t2414932369 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T2414932369_H
#ifndef STREAMINGCONTEXTSTATES_T3580100459_H
#define STREAMINGCONTEXTSTATES_T3580100459_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t3580100459
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3580100459, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMINGCONTEXTSTATES_T3580100459_H
#ifndef EXPRESSION_1_T3066134371_H
#define EXPRESSION_1_T3066134371_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression`1<System.Object>
struct Expression_1_t3066134371 : public LambdaExpression_t3131094331
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION_1_T3066134371_H
#ifndef SEARCHOPTION_T2353013399_H
#define SEARCHOPTION_T2353013399_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SearchOption
struct SearchOption_t2353013399
{
public:
// System.Int32 System.IO.SearchOption::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SearchOption_t2353013399, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHOPTION_T2353013399_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T2677902767_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T2677902767_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>
struct PrimitiveParameterExpression_1_t2677902767 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T2677902767_H
#ifndef REWRITEACTION_T2963939851_H
#define REWRITEACTION_T2963939851_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.StackSpiller/RewriteAction
struct RewriteAction_t2963939851
{
public:
// System.Int32 System.Linq.Expressions.Compiler.StackSpiller/RewriteAction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RewriteAction_t2963939851, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // REWRITEACTION_T2963939851_H
#ifndef BINDINGFLAGS_T2721792723_H
#define BINDINGFLAGS_T2721792723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_t2721792723
{
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_t2721792723, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_T2721792723_H
#ifndef MEMBERACCESSEXCEPTION_T1734467078_H
#define MEMBERACCESSEXCEPTION_T1734467078_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MemberAccessException
struct MemberAccessException_t1734467078 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERACCESSEXCEPTION_T1734467078_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T4228895373_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T4228895373_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>
struct PrimitiveParameterExpression_1_t4228895373 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T4228895373_H
#ifndef INVALIDOPERATIONEXCEPTION_T56020091_H
#define INVALIDOPERATIONEXCEPTION_T56020091_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t56020091 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T56020091_H
#ifndef RUNTIMETYPEHANDLE_T3027515415_H
#define RUNTIMETYPEHANDLE_T3027515415_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t3027515415
{
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_t3027515415, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T3027515415_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T1119708789_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T1119708789_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>
struct PrimitiveParameterExpression_1_t1119708789 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T1119708789_H
#ifndef COMPILATIONFLAGS_T4118964477_H
#define COMPILATIONFLAGS_T4118964477_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags
struct CompilationFlags_t4118964477
{
public:
// System.Int32 System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompilationFlags_t4118964477, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPILATIONFLAGS_T4118964477_H
#ifndef LAZYTHREADSAFETYMODE_T1232456173_H
#define LAZYTHREADSAFETYMODE_T1232456173_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.LazyThreadSafetyMode
struct LazyThreadSafetyMode_t1232456173
{
public:
// System.Int32 System.Threading.LazyThreadSafetyMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LazyThreadSafetyMode_t1232456173, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAZYTHREADSAFETYMODE_T1232456173_H
#ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H
#define NOTSUPPORTEDEXCEPTION_T1314879016_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotSupportedException
struct NotSupportedException_t1314879016 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTSUPPORTEDEXCEPTION_T1314879016_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___method_info_7), value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_8), value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); }
inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; }
inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1677132599 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((&___data_9), value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
#endif // DELEGATE_T1188392813_H
#ifndef STACK_T3075535187_H
#define STACK_T3075535187_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.StackSpiller/Stack
struct Stack_t3075535187
{
public:
// System.Int32 System.Linq.Expressions.Compiler.StackSpiller/Stack::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Stack_t3075535187, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACK_T3075535187_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T3840697971_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T3840697971_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>
struct PrimitiveParameterExpression_1_t3840697971 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T3840697971_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T4231581746_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T4231581746_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>
struct PrimitiveParameterExpression_1_t4231581746 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T4231581746_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T722236001_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T722236001_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>
struct PrimitiveParameterExpression_1_t722236001 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T722236001_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T1875301356_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T1875301356_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>
struct PrimitiveParameterExpression_1_t1875301356 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T1875301356_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T3833456380_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T3833456380_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>
struct PrimitiveParameterExpression_1_t3833456380 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T3833456380_H
#ifndef SAFEHANDLE_T3273388951_H
#define SAFEHANDLE_T3273388951_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_t3273388951 : public CriticalFinalizerObject_t701527852
{
public:
// System.IntPtr System.Runtime.InteropServices.SafeHandle::handle
intptr_t ___handle_0;
// System.Int32 System.Runtime.InteropServices.SafeHandle::_state
int32_t ____state_1;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle
bool ____ownsHandle_2;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized
bool ____fullyInitialized_3;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(SafeHandle_t3273388951, ___handle_0)); }
inline intptr_t get_handle_0() const { return ___handle_0; }
inline intptr_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(intptr_t value)
{
___handle_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(SafeHandle_t3273388951, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__ownsHandle_2() { return static_cast<int32_t>(offsetof(SafeHandle_t3273388951, ____ownsHandle_2)); }
inline bool get__ownsHandle_2() const { return ____ownsHandle_2; }
inline bool* get_address_of__ownsHandle_2() { return &____ownsHandle_2; }
inline void set__ownsHandle_2(bool value)
{
____ownsHandle_2 = value;
}
inline static int32_t get_offset_of__fullyInitialized_3() { return static_cast<int32_t>(offsetof(SafeHandle_t3273388951, ____fullyInitialized_3)); }
inline bool get__fullyInitialized_3() const { return ____fullyInitialized_3; }
inline bool* get_address_of__fullyInitialized_3() { return &____fullyInitialized_3; }
inline void set__fullyInitialized_3(bool value)
{
____fullyInitialized_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEHANDLE_T3273388951_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T3458360951_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T3458360951_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>
struct PrimitiveParameterExpression_1_t3458360951 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T3458360951_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T65774861_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T65774861_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>
struct PrimitiveParameterExpression_1_t65774861 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T65774861_H
#ifndef PRIMITIVEPARAMETEREXPRESSION_1_T2950213655_H
#define PRIMITIVEPARAMETEREXPRESSION_1_T2950213655_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>
struct PrimitiveParameterExpression_1_t2950213655 : public ParameterExpression_t1118422084
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRIMITIVEPARAMETEREXPRESSION_1_T2950213655_H
#ifndef ENUMERATOR_T2190326961_H
#define ENUMERATOR_T2190326961_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>
struct Enumerator_t2190326961
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t301083084 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
DictionaryEntry_t3123975638 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___list_0)); }
inline List_1_t301083084 * get_list_0() const { return ___list_0; }
inline List_1_t301083084 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t301083084 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___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_t2190326961, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2190326961, ___current_3)); }
inline DictionaryEntry_t3123975638 get_current_3() const { return ___current_3; }
inline DictionaryEntry_t3123975638 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(DictionaryEntry_t3123975638 value)
{
___current_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T2190326961_H
#ifndef U3CCASTITERATORU3ED__34_1_T2380794792_H
#define U3CCASTITERATORU3ED__34_1_T2380794792_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>
struct U3CCastIteratorU3Ed__34_1_t2380794792 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>1__state
int32_t ___U3CU3E1__state_0;
// TResult System.Linq.Enumerable/<CastIterator>d__34`1::<>2__current
DictionaryEntry_t3123975638 ___U3CU3E2__current_1;
// System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::source
RuntimeObject* ___source_3;
// System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::<>3__source
RuntimeObject* ___U3CU3E3__source_4;
// System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__34`1::<>7__wrap1
RuntimeObject* ___U3CU3E7__wrap1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___U3CU3E2__current_1)); }
inline DictionaryEntry_t3123975638 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline DictionaryEntry_t3123975638 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(DictionaryEntry_t3123975638 value)
{
___U3CU3E2__current_1 = value;
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___source_3)); }
inline RuntimeObject* get_source_3() const { return ___source_3; }
inline RuntimeObject** get_address_of_source_3() { return &___source_3; }
inline void set_source_3(RuntimeObject* value)
{
___source_3 = value;
Il2CppCodeGenWriteBarrier((&___source_3), value);
}
inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___U3CU3E3__source_4)); }
inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; }
inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; }
inline void set_U3CU3E3__source_4(RuntimeObject* value)
{
___U3CU3E3__source_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value);
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2380794792, ___U3CU3E7__wrap1_5)); }
inline RuntimeObject* get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; }
inline RuntimeObject** get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; }
inline void set_U3CU3E7__wrap1_5(RuntimeObject* value)
{
___U3CU3E7__wrap1_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CCASTITERATORU3ED__34_1_T2380794792_H
#ifndef UNIONITERATORN_1_T1272659448_H
#define UNIONITERATORN_1_T1272659448_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIteratorN`1<System.Char>
struct UnionIteratorN_1_t1272659448 : public UnionIterator_1_t3402001247
{
public:
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<TSource>> System.Linq.Enumerable/UnionIteratorN`1::_sources
SingleLinkedNode_1_t1339374102 * ____sources_6;
// System.Int32 System.Linq.Enumerable/UnionIteratorN`1::_headIndex
int32_t ____headIndex_7;
public:
inline static int32_t get_offset_of__sources_6() { return static_cast<int32_t>(offsetof(UnionIteratorN_1_t1272659448, ____sources_6)); }
inline SingleLinkedNode_1_t1339374102 * get__sources_6() const { return ____sources_6; }
inline SingleLinkedNode_1_t1339374102 ** get_address_of__sources_6() { return &____sources_6; }
inline void set__sources_6(SingleLinkedNode_1_t1339374102 * value)
{
____sources_6 = value;
Il2CppCodeGenWriteBarrier((&____sources_6), value);
}
inline static int32_t get_offset_of__headIndex_7() { return static_cast<int32_t>(offsetof(UnionIteratorN_1_t1272659448, ____headIndex_7)); }
inline int32_t get__headIndex_7() const { return ____headIndex_7; }
inline int32_t* get_address_of__headIndex_7() { return &____headIndex_7; }
inline void set__headIndex_7(int32_t value)
{
____headIndex_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATORN_1_T1272659448_H
#ifndef ITERATOR_1_T2078335975_H
#define ITERATOR_1_T2078335975_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>
struct Iterator_1_t2078335975 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/Iterator`1::_threadId
int32_t ____threadId_0;
// System.Int32 System.Linq.Enumerable/Iterator`1::_state
int32_t ____state_1;
// TSource System.Linq.Enumerable/Iterator`1::_current
DictionaryEntry_t3123975638 ____current_2;
public:
inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t2078335975, ____threadId_0)); }
inline int32_t get__threadId_0() const { return ____threadId_0; }
inline int32_t* get_address_of__threadId_0() { return &____threadId_0; }
inline void set__threadId_0(int32_t value)
{
____threadId_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t2078335975, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t2078335975, ____current_2)); }
inline DictionaryEntry_t3123975638 get__current_2() const { return ____current_2; }
inline DictionaryEntry_t3123975638 * get_address_of__current_2() { return &____current_2; }
inline void set__current_2(DictionaryEntry_t3123975638 value)
{
____current_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T2078335975_H
#ifndef WHERELISTITERATOR_1_T944815607_H
#define WHERELISTITERATOR_1_T944815607_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereListIterator`1<System.Object>
struct WhereListIterator_1_t944815607 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1::_source
List_1_t257213610 * ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereListIterator`1::_predicate
Func_2_t3759279471 * ____predicate_4;
// System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereListIterator`1::_enumerator
Enumerator_t2146457487 ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____source_3)); }
inline List_1_t257213610 * get__source_3() const { return ____source_3; }
inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(List_1_t257213610 * value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____enumerator_5)); }
inline Enumerator_t2146457487 get__enumerator_5() const { return ____enumerator_5; }
inline Enumerator_t2146457487 * get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(Enumerator_t2146457487 value)
{
____enumerator_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERELISTITERATOR_1_T944815607_H
#ifndef UNIONITERATOR2_1_T1321734732_H
#define UNIONITERATOR2_1_T1321734732_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIterator2`1<System.Char>
struct UnionIterator2_1_t1321734732 : public UnionIterator_1_t3402001247
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1::_first
RuntimeObject* ____first_6;
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1::_second
RuntimeObject* ____second_7;
public:
inline static int32_t get_offset_of__first_6() { return static_cast<int32_t>(offsetof(UnionIterator2_1_t1321734732, ____first_6)); }
inline RuntimeObject* get__first_6() const { return ____first_6; }
inline RuntimeObject** get_address_of__first_6() { return &____first_6; }
inline void set__first_6(RuntimeObject* value)
{
____first_6 = value;
Il2CppCodeGenWriteBarrier((&____first_6), value);
}
inline static int32_t get_offset_of__second_7() { return static_cast<int32_t>(offsetof(UnionIterator2_1_t1321734732, ____second_7)); }
inline RuntimeObject* get__second_7() const { return ____second_7; }
inline RuntimeObject** get_address_of__second_7() { return &____second_7; }
inline void set__second_7(RuntimeObject* value)
{
____second_7 = value;
Il2CppCodeGenWriteBarrier((&____second_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATOR2_1_T1321734732_H
#ifndef UNIONITERATOR2_1_T767380426_H
#define UNIONITERATOR2_1_T767380426_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIterator2`1<System.Object>
struct UnionIterator2_1_t767380426 : public UnionIterator_1_t2847646941
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1::_first
RuntimeObject* ____first_6;
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1::_second
RuntimeObject* ____second_7;
public:
inline static int32_t get_offset_of__first_6() { return static_cast<int32_t>(offsetof(UnionIterator2_1_t767380426, ____first_6)); }
inline RuntimeObject* get__first_6() const { return ____first_6; }
inline RuntimeObject** get_address_of__first_6() { return &____first_6; }
inline void set__first_6(RuntimeObject* value)
{
____first_6 = value;
Il2CppCodeGenWriteBarrier((&____first_6), value);
}
inline static int32_t get_offset_of__second_7() { return static_cast<int32_t>(offsetof(UnionIterator2_1_t767380426, ____second_7)); }
inline RuntimeObject* get__second_7() const { return ____second_7; }
inline RuntimeObject** get_address_of__second_7() { return &____second_7; }
inline void set__second_7(RuntimeObject* value)
{
____second_7 = value;
Il2CppCodeGenWriteBarrier((&____second_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATOR2_1_T767380426_H
#ifndef UNIONITERATORN_1_T718305142_H
#define UNIONITERATORN_1_T718305142_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/UnionIteratorN`1<System.Object>
struct UnionIteratorN_1_t718305142 : public UnionIterator_1_t2847646941
{
public:
// System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<TSource>> System.Linq.Enumerable/UnionIteratorN`1::_sources
SingleLinkedNode_1_t785019796 * ____sources_6;
// System.Int32 System.Linq.Enumerable/UnionIteratorN`1::_headIndex
int32_t ____headIndex_7;
public:
inline static int32_t get_offset_of__sources_6() { return static_cast<int32_t>(offsetof(UnionIteratorN_1_t718305142, ____sources_6)); }
inline SingleLinkedNode_1_t785019796 * get__sources_6() const { return ____sources_6; }
inline SingleLinkedNode_1_t785019796 ** get_address_of__sources_6() { return &____sources_6; }
inline void set__sources_6(SingleLinkedNode_1_t785019796 * value)
{
____sources_6 = value;
Il2CppCodeGenWriteBarrier((&____sources_6), value);
}
inline static int32_t get_offset_of__headIndex_7() { return static_cast<int32_t>(offsetof(UnionIteratorN_1_t718305142, ____headIndex_7)); }
inline int32_t get__headIndex_7() const { return ____headIndex_7; }
inline int32_t* get_address_of__headIndex_7() { return &____headIndex_7; }
inline void set__headIndex_7(int32_t value)
{
____headIndex_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNIONITERATORN_1_T718305142_H
#ifndef RAY_T3785851493_H
#define RAY_T3785851493_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Ray
struct Ray_t3785851493
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t3722313464 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t3722313464 ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Origin_0)); }
inline Vector3_t3722313464 get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_t3722313464 * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_t3722313464 value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t3785851493, ___m_Direction_1)); }
inline Vector3_t3722313464 get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_t3722313464 * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_t3722313464 value)
{
___m_Direction_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAY_T3785851493_H
#ifndef LARGEARRAYBUILDER_1_T3034328659_H
#define LARGEARRAYBUILDER_1_T3034328659_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>
struct LargeArrayBuilder_1_t3034328659
{
public:
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity
int32_t ____maxCapacity_0;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_first
DictionaryEntryU5BU5D_t4217117203* ____first_1;
// System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers
ArrayBuilder_1_t1205246587 ____buffers_2;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_current
DictionaryEntryU5BU5D_t4217117203* ____current_3;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index
int32_t ____index_4;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count
int32_t ____count_5;
public:
inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____maxCapacity_0)); }
inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; }
inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; }
inline void set__maxCapacity_0(int32_t value)
{
____maxCapacity_0 = value;
}
inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____first_1)); }
inline DictionaryEntryU5BU5D_t4217117203* get__first_1() const { return ____first_1; }
inline DictionaryEntryU5BU5D_t4217117203** get_address_of__first_1() { return &____first_1; }
inline void set__first_1(DictionaryEntryU5BU5D_t4217117203* value)
{
____first_1 = value;
Il2CppCodeGenWriteBarrier((&____first_1), value);
}
inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____buffers_2)); }
inline ArrayBuilder_1_t1205246587 get__buffers_2() const { return ____buffers_2; }
inline ArrayBuilder_1_t1205246587 * get_address_of__buffers_2() { return &____buffers_2; }
inline void set__buffers_2(ArrayBuilder_1_t1205246587 value)
{
____buffers_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____current_3)); }
inline DictionaryEntryU5BU5D_t4217117203* get__current_3() const { return ____current_3; }
inline DictionaryEntryU5BU5D_t4217117203** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(DictionaryEntryU5BU5D_t4217117203* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((&____current_3), value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3034328659, ____count_5)); }
inline int32_t get__count_5() const { return ____count_5; }
inline int32_t* get_address_of__count_5() { return &____count_5; }
inline void set__count_5(int32_t value)
{
____count_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LARGEARRAYBUILDER_1_T3034328659_H
#ifndef LARGEARRAYBUILDER_1_T3544813491_H
#define LARGEARRAYBUILDER_1_T3544813491_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.LargeArrayBuilder`1<System.Char>
struct LargeArrayBuilder_1_t3544813491
{
public:
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity
int32_t ____maxCapacity_0;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_first
CharU5BU5D_t3528271667* ____first_1;
// System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers
ArrayBuilder_1_t516401051 ____buffers_2;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_current
CharU5BU5D_t3528271667* ____current_3;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index
int32_t ____index_4;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count
int32_t ____count_5;
public:
inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____maxCapacity_0)); }
inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; }
inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; }
inline void set__maxCapacity_0(int32_t value)
{
____maxCapacity_0 = value;
}
inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____first_1)); }
inline CharU5BU5D_t3528271667* get__first_1() const { return ____first_1; }
inline CharU5BU5D_t3528271667** get_address_of__first_1() { return &____first_1; }
inline void set__first_1(CharU5BU5D_t3528271667* value)
{
____first_1 = value;
Il2CppCodeGenWriteBarrier((&____first_1), value);
}
inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____buffers_2)); }
inline ArrayBuilder_1_t516401051 get__buffers_2() const { return ____buffers_2; }
inline ArrayBuilder_1_t516401051 * get_address_of__buffers_2() { return &____buffers_2; }
inline void set__buffers_2(ArrayBuilder_1_t516401051 value)
{
____buffers_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____current_3)); }
inline CharU5BU5D_t3528271667* get__current_3() const { return ____current_3; }
inline CharU5BU5D_t3528271667** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(CharU5BU5D_t3528271667* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((&____current_3), value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3544813491, ____count_5)); }
inline int32_t get__count_5() const { return ____count_5; }
inline int32_t* get_address_of__count_5() { return &____count_5; }
inline void set__count_5(int32_t value)
{
____count_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LARGEARRAYBUILDER_1_T3544813491_H
#ifndef LARGEARRAYBUILDER_1_T3696204514_H
#define LARGEARRAYBUILDER_1_T3696204514_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>
struct LargeArrayBuilder_1_t3696204514
{
public:
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity
int32_t ____maxCapacity_0;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_first
RayU5BU5D_t1836217960* ____first_1;
// System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers
ArrayBuilder_1_t3119314640 ____buffers_2;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_current
RayU5BU5D_t1836217960* ____current_3;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index
int32_t ____index_4;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count
int32_t ____count_5;
public:
inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____maxCapacity_0)); }
inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; }
inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; }
inline void set__maxCapacity_0(int32_t value)
{
____maxCapacity_0 = value;
}
inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____first_1)); }
inline RayU5BU5D_t1836217960* get__first_1() const { return ____first_1; }
inline RayU5BU5D_t1836217960** get_address_of__first_1() { return &____first_1; }
inline void set__first_1(RayU5BU5D_t1836217960* value)
{
____first_1 = value;
Il2CppCodeGenWriteBarrier((&____first_1), value);
}
inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____buffers_2)); }
inline ArrayBuilder_1_t3119314640 get__buffers_2() const { return ____buffers_2; }
inline ArrayBuilder_1_t3119314640 * get_address_of__buffers_2() { return &____buffers_2; }
inline void set__buffers_2(ArrayBuilder_1_t3119314640 value)
{
____buffers_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____current_3)); }
inline RayU5BU5D_t1836217960* get__current_3() const { return ____current_3; }
inline RayU5BU5D_t1836217960** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(RayU5BU5D_t1836217960* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((&____current_3), value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t3696204514, ____count_5)); }
inline int32_t get__count_5() const { return ____count_5; }
inline int32_t* get_address_of__count_5() { return &____count_5; }
inline void set__count_5(int32_t value)
{
____count_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LARGEARRAYBUILDER_1_T3696204514_H
#ifndef CACHINGCOMPARERWITHCHILD_2_T3364548056_H
#define CACHINGCOMPARERWITHCHILD_2_T3364548056_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparerWithChild`2<UnityEngine.Vector2,System.Single>
struct CachingComparerWithChild_2_t3364548056 : public CachingComparer_2_t4066783831
{
public:
// System.Linq.CachingComparer`1<TElement> System.Linq.CachingComparerWithChild`2::_child
CachingComparer_1_t454941278 * ____child_4;
public:
inline static int32_t get_offset_of__child_4() { return static_cast<int32_t>(offsetof(CachingComparerWithChild_2_t3364548056, ____child_4)); }
inline CachingComparer_1_t454941278 * get__child_4() const { return ____child_4; }
inline CachingComparer_1_t454941278 ** get_address_of__child_4() { return &____child_4; }
inline void set__child_4(CachingComparer_1_t454941278 * value)
{
____child_4 = value;
Il2CppCodeGenWriteBarrier((&____child_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARERWITHCHILD_2_T3364548056_H
#ifndef ITERATOR_1_T1484577656_H
#define ITERATOR_1_T1484577656_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Iterator_1_t1484577656 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/Iterator`1::_threadId
int32_t ____threadId_0;
// System.Int32 System.Linq.Enumerable/Iterator`1::_state
int32_t ____state_1;
// TSource System.Linq.Enumerable/Iterator`1::_current
KeyValuePair_2_t2530217319 ____current_2;
public:
inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t1484577656, ____threadId_0)); }
inline int32_t get__threadId_0() const { return ____threadId_0; }
inline int32_t* get_address_of__threadId_0() { return &____threadId_0; }
inline void set__threadId_0(int32_t value)
{
____threadId_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t1484577656, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t1484577656, ____current_2)); }
inline KeyValuePair_2_t2530217319 get__current_2() const { return ____current_2; }
inline KeyValuePair_2_t2530217319 * get_address_of__current_2() { return &____current_2; }
inline void set__current_2(KeyValuePair_2_t2530217319 value)
{
____current_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T1484577656_H
#ifndef SELECTLISTITERATOR_2_T1742702623_H
#define SELECTLISTITERATOR_2_T1742702623_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>
struct SelectListIterator_2_t1742702623 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/SelectListIterator`2::_source
List_1_t257213610 * ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectListIterator`2::_selector
Func_2_t2447130374 * ____selector_4;
// System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/SelectListIterator`2::_enumerator
Enumerator_t2146457487 ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____source_3)); }
inline List_1_t257213610 * get__source_3() const { return ____source_3; }
inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(List_1_t257213610 * value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____selector_4)); }
inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; }
inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t2447130374 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____enumerator_5)); }
inline Enumerator_t2146457487 get__enumerator_5() const { return ____enumerator_5; }
inline Enumerator_t2146457487 * get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(Enumerator_t2146457487 value)
{
____enumerator_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTLISTITERATOR_2_T1742702623_H
#ifndef CACHINGCOMPARERWITHCHILD_2_T2010013078_H
#define CACHINGCOMPARERWITHCHILD_2_T2010013078_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparerWithChild`2<System.Object,System.Int32>
struct CachingComparerWithChild_2_t2010013078 : public CachingComparer_2_t2712248853
{
public:
// System.Linq.CachingComparer`1<TElement> System.Linq.CachingComparerWithChild`2::_child
CachingComparer_1_t1378817919 * ____child_4;
public:
inline static int32_t get_offset_of__child_4() { return static_cast<int32_t>(offsetof(CachingComparerWithChild_2_t2010013078, ____child_4)); }
inline CachingComparer_1_t1378817919 * get__child_4() const { return ____child_4; }
inline CachingComparer_1_t1378817919 ** get_address_of__child_4() { return &____child_4; }
inline void set__child_4(CachingComparer_1_t1378817919 * value)
{
____child_4 = value;
Il2CppCodeGenWriteBarrier((&____child_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARERWITHCHILD_2_T2010013078_H
#ifndef CACHINGCOMPARERWITHCHILD_2_T2139173489_H
#define CACHINGCOMPARERWITHCHILD_2_T2139173489_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparerWithChild`2<System.Object,System.Object>
struct CachingComparerWithChild_2_t2139173489 : public CachingComparer_2_t2841409264
{
public:
// System.Linq.CachingComparer`1<TElement> System.Linq.CachingComparerWithChild`2::_child
CachingComparer_1_t1378817919 * ____child_4;
public:
inline static int32_t get_offset_of__child_4() { return static_cast<int32_t>(offsetof(CachingComparerWithChild_2_t2139173489, ____child_4)); }
inline CachingComparer_1_t1378817919 * get__child_4() const { return ____child_4; }
inline CachingComparer_1_t1378817919 ** get_address_of__child_4() { return &____child_4; }
inline void set__child_4(CachingComparer_1_t1378817919 * value)
{
____child_4 = value;
Il2CppCodeGenWriteBarrier((&____child_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARERWITHCHILD_2_T2139173489_H
#ifndef LARGEARRAYBUILDER_1_T2440570340_H
#define LARGEARRAYBUILDER_1_T2440570340_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct LargeArrayBuilder_1_t2440570340
{
public:
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity
int32_t ____maxCapacity_0;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_first
KeyValuePair_2U5BU5D_t118269214* ____first_1;
// System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers
ArrayBuilder_1_t1401365894 ____buffers_2;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_current
KeyValuePair_2U5BU5D_t118269214* ____current_3;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index
int32_t ____index_4;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count
int32_t ____count_5;
public:
inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____maxCapacity_0)); }
inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; }
inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; }
inline void set__maxCapacity_0(int32_t value)
{
____maxCapacity_0 = value;
}
inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____first_1)); }
inline KeyValuePair_2U5BU5D_t118269214* get__first_1() const { return ____first_1; }
inline KeyValuePair_2U5BU5D_t118269214** get_address_of__first_1() { return &____first_1; }
inline void set__first_1(KeyValuePair_2U5BU5D_t118269214* value)
{
____first_1 = value;
Il2CppCodeGenWriteBarrier((&____first_1), value);
}
inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____buffers_2)); }
inline ArrayBuilder_1_t1401365894 get__buffers_2() const { return ____buffers_2; }
inline ArrayBuilder_1_t1401365894 * get_address_of__buffers_2() { return &____buffers_2; }
inline void set__buffers_2(ArrayBuilder_1_t1401365894 value)
{
____buffers_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____current_3)); }
inline KeyValuePair_2U5BU5D_t118269214* get__current_3() const { return ____current_3; }
inline KeyValuePair_2U5BU5D_t118269214** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(KeyValuePair_2U5BU5D_t118269214* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((&____current_3), value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2440570340, ____count_5)); }
inline int32_t get__count_5() const { return ____count_5; }
inline int32_t* get_address_of__count_5() { return &____count_5; }
inline void set__count_5(int32_t value)
{
____count_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LARGEARRAYBUILDER_1_T2440570340_H
#ifndef WHERESELECTLISTITERATOR_2_T2661109023_H
#define WHERESELECTLISTITERATOR_2_T2661109023_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
struct WhereSelectListIterator_2_t2661109023 : public Iterator_1_t2034466501
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::_source
List_1_t257213610 * ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::_predicate
Func_2_t3759279471 * ____predicate_4;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::_selector
Func_2_t2447130374 * ____selector_5;
// System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::_enumerator
Enumerator_t2146457487 ____enumerator_6;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____source_3)); }
inline List_1_t257213610 * get__source_3() const { return ____source_3; }
inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(List_1_t257213610 * value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____predicate_4)); }
inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t3759279471 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____selector_5)); }
inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; }
inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; }
inline void set__selector_5(Func_2_t2447130374 * value)
{
____selector_5 = value;
Il2CppCodeGenWriteBarrier((&____selector_5), value);
}
inline static int32_t get_offset_of__enumerator_6() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____enumerator_6)); }
inline Enumerator_t2146457487 get__enumerator_6() const { return ____enumerator_6; }
inline Enumerator_t2146457487 * get_address_of__enumerator_6() { return &____enumerator_6; }
inline void set__enumerator_6(Enumerator_t2146457487 value)
{
____enumerator_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERESELECTLISTITERATOR_2_T2661109023_H
#ifndef CACHINGCOMPARERWITHCHILD_2_T3626112831_H
#define CACHINGCOMPARERWITHCHILD_2_T3626112831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.CachingComparerWithChild`2<UnityEngine.Vector3,System.Single>
struct CachingComparerWithChild_2_t3626112831 : public CachingComparer_2_t33381310
{
public:
// System.Linq.CachingComparer`1<TElement> System.Linq.CachingComparerWithChild`2::_child
CachingComparer_1_t2021025219 * ____child_4;
public:
inline static int32_t get_offset_of__child_4() { return static_cast<int32_t>(offsetof(CachingComparerWithChild_2_t3626112831, ____child_4)); }
inline CachingComparer_1_t2021025219 * get__child_4() const { return ____child_4; }
inline CachingComparer_1_t2021025219 ** get_address_of__child_4() { return &____child_4; }
inline void set__child_4(CachingComparer_1_t2021025219 * value)
{
____child_4 = value;
Il2CppCodeGenWriteBarrier((&____child_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CACHINGCOMPARERWITHCHILD_2_T3626112831_H
#ifndef LARGEARRAYBUILDER_1_T2990459185_H
#define LARGEARRAYBUILDER_1_T2990459185_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.LargeArrayBuilder`1<System.Object>
struct LargeArrayBuilder_1_t2990459185
{
public:
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_maxCapacity
int32_t ____maxCapacity_0;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_first
ObjectU5BU5D_t2843939325* ____first_1;
// System.Collections.Generic.ArrayBuilder`1<T[]> System.Collections.Generic.LargeArrayBuilder`1::_buffers
ArrayBuilder_1_t4127036005 ____buffers_2;
// T[] System.Collections.Generic.LargeArrayBuilder`1::_current
ObjectU5BU5D_t2843939325* ____current_3;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_index
int32_t ____index_4;
// System.Int32 System.Collections.Generic.LargeArrayBuilder`1::_count
int32_t ____count_5;
public:
inline static int32_t get_offset_of__maxCapacity_0() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____maxCapacity_0)); }
inline int32_t get__maxCapacity_0() const { return ____maxCapacity_0; }
inline int32_t* get_address_of__maxCapacity_0() { return &____maxCapacity_0; }
inline void set__maxCapacity_0(int32_t value)
{
____maxCapacity_0 = value;
}
inline static int32_t get_offset_of__first_1() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____first_1)); }
inline ObjectU5BU5D_t2843939325* get__first_1() const { return ____first_1; }
inline ObjectU5BU5D_t2843939325** get_address_of__first_1() { return &____first_1; }
inline void set__first_1(ObjectU5BU5D_t2843939325* value)
{
____first_1 = value;
Il2CppCodeGenWriteBarrier((&____first_1), value);
}
inline static int32_t get_offset_of__buffers_2() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____buffers_2)); }
inline ArrayBuilder_1_t4127036005 get__buffers_2() const { return ____buffers_2; }
inline ArrayBuilder_1_t4127036005 * get_address_of__buffers_2() { return &____buffers_2; }
inline void set__buffers_2(ArrayBuilder_1_t4127036005 value)
{
____buffers_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____current_3)); }
inline ObjectU5BU5D_t2843939325* get__current_3() const { return ____current_3; }
inline ObjectU5BU5D_t2843939325** get_address_of__current_3() { return &____current_3; }
inline void set__current_3(ObjectU5BU5D_t2843939325* value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((&____current_3), value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
inline static int32_t get_offset_of__count_5() { return static_cast<int32_t>(offsetof(LargeArrayBuilder_1_t2990459185, ____count_5)); }
inline int32_t get__count_5() const { return ____count_5; }
inline int32_t* get_address_of__count_5() { return &____count_5; }
inline void set__count_5(int32_t value)
{
____count_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LARGEARRAYBUILDER_1_T2990459185_H
#ifndef WHEREENUMERABLEITERATOR_1_T1635751646_H
#define WHEREENUMERABLEITERATOR_1_T1635751646_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct WhereEnumerableIterator_1_t1635751646 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate
Func_2_t1033609360 * ____predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1635751646, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1635751646, ____predicate_4)); }
inline Func_2_t1033609360 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t1033609360 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t1033609360 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t1635751646, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREENUMERABLEITERATOR_1_T1635751646_H
#ifndef SPARSEARRAYBUILDER_1_T3713953326_H
#define SPARSEARRAYBUILDER_1_T3713953326_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.SparseArrayBuilder`1<System.Object>
struct SparseArrayBuilder_1_t3713953326
{
public:
// System.Collections.Generic.LargeArrayBuilder`1<T> System.Collections.Generic.SparseArrayBuilder`1::_builder
LargeArrayBuilder_1_t2990459185 ____builder_0;
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker> System.Collections.Generic.SparseArrayBuilder`1::_markers
ArrayBuilder_1_t4177874457 ____markers_1;
// System.Int32 System.Collections.Generic.SparseArrayBuilder`1::_reservedCount
int32_t ____reservedCount_2;
public:
inline static int32_t get_offset_of__builder_0() { return static_cast<int32_t>(offsetof(SparseArrayBuilder_1_t3713953326, ____builder_0)); }
inline LargeArrayBuilder_1_t2990459185 get__builder_0() const { return ____builder_0; }
inline LargeArrayBuilder_1_t2990459185 * get_address_of__builder_0() { return &____builder_0; }
inline void set__builder_0(LargeArrayBuilder_1_t2990459185 value)
{
____builder_0 = value;
}
inline static int32_t get_offset_of__markers_1() { return static_cast<int32_t>(offsetof(SparseArrayBuilder_1_t3713953326, ____markers_1)); }
inline ArrayBuilder_1_t4177874457 get__markers_1() const { return ____markers_1; }
inline ArrayBuilder_1_t4177874457 * get_address_of__markers_1() { return &____markers_1; }
inline void set__markers_1(ArrayBuilder_1_t4177874457 value)
{
____markers_1 = value;
}
inline static int32_t get_offset_of__reservedCount_2() { return static_cast<int32_t>(offsetof(SparseArrayBuilder_1_t3713953326, ____reservedCount_2)); }
inline int32_t get__reservedCount_2() const { return ____reservedCount_2; }
inline int32_t* get_address_of__reservedCount_2() { return &____reservedCount_2; }
inline void set__reservedCount_2(int32_t value)
{
____reservedCount_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSEARRAYBUILDER_1_T3713953326_H
#ifndef STREAMINGCONTEXT_T3711869237_H
#define STREAMINGCONTEXT_T3711869237_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((&___m_additionalContext_0), value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
#endif // STREAMINGCONTEXT_T3711869237_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t3027515415 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t3027515415 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t3027515415 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t426314064 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t426314064 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t426314064 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t3940880105* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2999457153 * ___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_t426314064 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t426314064 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t426314064 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t426314064 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t426314064 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_1), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t426314064 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), 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((&___Missing_3), 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_t3940880105* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t3940880105* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2999457153 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2999457153 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2999457153 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef RESULT_T1811329589_H
#define RESULT_T1811329589_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.StackSpiller/Result
struct Result_t1811329589
{
public:
// System.Linq.Expressions.Compiler.StackSpiller/RewriteAction System.Linq.Expressions.Compiler.StackSpiller/Result::Action
int32_t ___Action_0;
// System.Linq.Expressions.Expression System.Linq.Expressions.Compiler.StackSpiller/Result::Node
Expression_t1588164026 * ___Node_1;
public:
inline static int32_t get_offset_of_Action_0() { return static_cast<int32_t>(offsetof(Result_t1811329589, ___Action_0)); }
inline int32_t get_Action_0() const { return ___Action_0; }
inline int32_t* get_address_of_Action_0() { return &___Action_0; }
inline void set_Action_0(int32_t value)
{
___Action_0 = value;
}
inline static int32_t get_offset_of_Node_1() { return static_cast<int32_t>(offsetof(Result_t1811329589, ___Node_1)); }
inline Expression_t1588164026 * get_Node_1() const { return ___Node_1; }
inline Expression_t1588164026 ** get_address_of_Node_1() { return &___Node_1; }
inline void set_Node_1(Expression_t1588164026 * value)
{
___Node_1 = value;
Il2CppCodeGenWriteBarrier((&___Node_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Linq.Expressions.Compiler.StackSpiller/Result
struct Result_t1811329589_marshaled_pinvoke
{
int32_t ___Action_0;
Expression_t1588164026 * ___Node_1;
};
// Native definition for COM marshalling of System.Linq.Expressions.Compiler.StackSpiller/Result
struct Result_t1811329589_marshaled_com
{
int32_t ___Action_0;
Expression_t1588164026 * ___Node_1;
};
#endif // RESULT_T1811329589_H
#ifndef TUPLE_4_T2753669900_H
#define TUPLE_4_T2753669900_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Func`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>,System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack>
struct Tuple_4_t2753669900 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
Func_4_t694756426 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t2753669900, ___m_Item1_0)); }
inline Func_4_t694756426 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Func_4_t694756426 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Func_4_t694756426 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t2753669900, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t2753669900, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t2753669900, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T2753669900_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t1703627840* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t1703627840* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef SELECTILISTITERATOR_2_T130090036_H
#define SELECTILISTITERATOR_2_T130090036_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectIListIterator_2_t130090036 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.IList`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIListIterator`2::_selector
Func_2_t3270419407 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t130090036, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t130090036, ____selector_4)); }
inline Func_2_t3270419407 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3270419407 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3270419407 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t130090036, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTILISTITERATOR_2_T130090036_H
#ifndef SAFEHANDLEZEROORMINUSONEISINVALID_T1182193648_H
#define SAFEHANDLEZEROORMINUSONEISINVALID_T1182193648_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_t1182193648 : public SafeHandle_t3273388951
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEHANDLEZEROORMINUSONEISINVALID_T1182193648_H
#ifndef SELECTENUMERABLEITERATOR_2_T760503204_H
#define SELECTENUMERABLEITERATOR_2_T760503204_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectEnumerableIterator_2_t760503204 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectEnumerableIterator`2::_selector
Func_2_t3270419407 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t760503204, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t760503204, ____selector_4)); }
inline Func_2_t3270419407 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3270419407 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3270419407 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t760503204, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTENUMERABLEITERATOR_2_T760503204_H
#ifndef SELECTENUMERABLEITERATOR_2_T956622511_H
#define SELECTENUMERABLEITERATOR_2_T956622511_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectEnumerableIterator_2_t956622511 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectEnumerableIterator`2::_selector
Func_2_t3466538714 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t956622511, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t956622511, ____selector_4)); }
inline Func_2_t3466538714 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3466538714 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3466538714 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t956622511, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTENUMERABLEITERATOR_2_T956622511_H
#ifndef SEARCHDATA_T2648226293_H
#define SEARCHDATA_T2648226293_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Directory/SearchData
struct SearchData_t2648226293 : public RuntimeObject
{
public:
// System.String System.IO.Directory/SearchData::fullPath
String_t* ___fullPath_0;
// System.String System.IO.Directory/SearchData::userPath
String_t* ___userPath_1;
// System.IO.SearchOption System.IO.Directory/SearchData::searchOption
int32_t ___searchOption_2;
public:
inline static int32_t get_offset_of_fullPath_0() { return static_cast<int32_t>(offsetof(SearchData_t2648226293, ___fullPath_0)); }
inline String_t* get_fullPath_0() const { return ___fullPath_0; }
inline String_t** get_address_of_fullPath_0() { return &___fullPath_0; }
inline void set_fullPath_0(String_t* value)
{
___fullPath_0 = value;
Il2CppCodeGenWriteBarrier((&___fullPath_0), value);
}
inline static int32_t get_offset_of_userPath_1() { return static_cast<int32_t>(offsetof(SearchData_t2648226293, ___userPath_1)); }
inline String_t* get_userPath_1() const { return ___userPath_1; }
inline String_t** get_address_of_userPath_1() { return &___userPath_1; }
inline void set_userPath_1(String_t* value)
{
___userPath_1 = value;
Il2CppCodeGenWriteBarrier((&___userPath_1), value);
}
inline static int32_t get_offset_of_searchOption_2() { return static_cast<int32_t>(offsetof(SearchData_t2648226293, ___searchOption_2)); }
inline int32_t get_searchOption_2() const { return ___searchOption_2; }
inline int32_t* get_address_of_searchOption_2() { return &___searchOption_2; }
inline void set_searchOption_2(int32_t value)
{
___searchOption_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEARCHDATA_T2648226293_H
#ifndef FILESYSTEMENUMERABLEITERATOR_1_T25181536_H
#define FILESYSTEMENUMERABLEITERATOR_1_T25181536_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileSystemEnumerableIterator`1<System.Object>
struct FileSystemEnumerableIterator_1_t25181536 : public Iterator_1_t3764629478
{
public:
// System.IO.SearchResultHandler`1<TSource> System.IO.FileSystemEnumerableIterator`1::_resultHandler
SearchResultHandler_1_t2377980137 * ____resultHandler_3;
// System.Collections.Generic.List`1<System.IO.Directory/SearchData> System.IO.FileSystemEnumerableIterator`1::searchStack
List_1_t4120301035 * ___searchStack_4;
// System.IO.Directory/SearchData System.IO.FileSystemEnumerableIterator`1::searchData
SearchData_t2648226293 * ___searchData_5;
// System.String System.IO.FileSystemEnumerableIterator`1::searchCriteria
String_t* ___searchCriteria_6;
// Microsoft.Win32.SafeHandles.SafeFindHandle System.IO.FileSystemEnumerableIterator`1::_hnd
SafeFindHandle_t2068834300 * ____hnd_7;
// System.Boolean System.IO.FileSystemEnumerableIterator`1::needsParentPathDiscoveryDemand
bool ___needsParentPathDiscoveryDemand_8;
// System.Boolean System.IO.FileSystemEnumerableIterator`1::empty
bool ___empty_9;
// System.String System.IO.FileSystemEnumerableIterator`1::userPath
String_t* ___userPath_10;
// System.IO.SearchOption System.IO.FileSystemEnumerableIterator`1::searchOption
int32_t ___searchOption_11;
// System.String System.IO.FileSystemEnumerableIterator`1::fullPath
String_t* ___fullPath_12;
// System.String System.IO.FileSystemEnumerableIterator`1::normalizedSearchPath
String_t* ___normalizedSearchPath_13;
// System.Boolean System.IO.FileSystemEnumerableIterator`1::_checkHost
bool ____checkHost_14;
public:
inline static int32_t get_offset_of__resultHandler_3() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ____resultHandler_3)); }
inline SearchResultHandler_1_t2377980137 * get__resultHandler_3() const { return ____resultHandler_3; }
inline SearchResultHandler_1_t2377980137 ** get_address_of__resultHandler_3() { return &____resultHandler_3; }
inline void set__resultHandler_3(SearchResultHandler_1_t2377980137 * value)
{
____resultHandler_3 = value;
Il2CppCodeGenWriteBarrier((&____resultHandler_3), value);
}
inline static int32_t get_offset_of_searchStack_4() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___searchStack_4)); }
inline List_1_t4120301035 * get_searchStack_4() const { return ___searchStack_4; }
inline List_1_t4120301035 ** get_address_of_searchStack_4() { return &___searchStack_4; }
inline void set_searchStack_4(List_1_t4120301035 * value)
{
___searchStack_4 = value;
Il2CppCodeGenWriteBarrier((&___searchStack_4), value);
}
inline static int32_t get_offset_of_searchData_5() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___searchData_5)); }
inline SearchData_t2648226293 * get_searchData_5() const { return ___searchData_5; }
inline SearchData_t2648226293 ** get_address_of_searchData_5() { return &___searchData_5; }
inline void set_searchData_5(SearchData_t2648226293 * value)
{
___searchData_5 = value;
Il2CppCodeGenWriteBarrier((&___searchData_5), value);
}
inline static int32_t get_offset_of_searchCriteria_6() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___searchCriteria_6)); }
inline String_t* get_searchCriteria_6() const { return ___searchCriteria_6; }
inline String_t** get_address_of_searchCriteria_6() { return &___searchCriteria_6; }
inline void set_searchCriteria_6(String_t* value)
{
___searchCriteria_6 = value;
Il2CppCodeGenWriteBarrier((&___searchCriteria_6), value);
}
inline static int32_t get_offset_of__hnd_7() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ____hnd_7)); }
inline SafeFindHandle_t2068834300 * get__hnd_7() const { return ____hnd_7; }
inline SafeFindHandle_t2068834300 ** get_address_of__hnd_7() { return &____hnd_7; }
inline void set__hnd_7(SafeFindHandle_t2068834300 * value)
{
____hnd_7 = value;
Il2CppCodeGenWriteBarrier((&____hnd_7), value);
}
inline static int32_t get_offset_of_needsParentPathDiscoveryDemand_8() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___needsParentPathDiscoveryDemand_8)); }
inline bool get_needsParentPathDiscoveryDemand_8() const { return ___needsParentPathDiscoveryDemand_8; }
inline bool* get_address_of_needsParentPathDiscoveryDemand_8() { return &___needsParentPathDiscoveryDemand_8; }
inline void set_needsParentPathDiscoveryDemand_8(bool value)
{
___needsParentPathDiscoveryDemand_8 = value;
}
inline static int32_t get_offset_of_empty_9() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___empty_9)); }
inline bool get_empty_9() const { return ___empty_9; }
inline bool* get_address_of_empty_9() { return &___empty_9; }
inline void set_empty_9(bool value)
{
___empty_9 = value;
}
inline static int32_t get_offset_of_userPath_10() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___userPath_10)); }
inline String_t* get_userPath_10() const { return ___userPath_10; }
inline String_t** get_address_of_userPath_10() { return &___userPath_10; }
inline void set_userPath_10(String_t* value)
{
___userPath_10 = value;
Il2CppCodeGenWriteBarrier((&___userPath_10), value);
}
inline static int32_t get_offset_of_searchOption_11() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___searchOption_11)); }
inline int32_t get_searchOption_11() const { return ___searchOption_11; }
inline int32_t* get_address_of_searchOption_11() { return &___searchOption_11; }
inline void set_searchOption_11(int32_t value)
{
___searchOption_11 = value;
}
inline static int32_t get_offset_of_fullPath_12() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___fullPath_12)); }
inline String_t* get_fullPath_12() const { return ___fullPath_12; }
inline String_t** get_address_of_fullPath_12() { return &___fullPath_12; }
inline void set_fullPath_12(String_t* value)
{
___fullPath_12 = value;
Il2CppCodeGenWriteBarrier((&___fullPath_12), value);
}
inline static int32_t get_offset_of_normalizedSearchPath_13() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ___normalizedSearchPath_13)); }
inline String_t* get_normalizedSearchPath_13() const { return ___normalizedSearchPath_13; }
inline String_t** get_address_of_normalizedSearchPath_13() { return &___normalizedSearchPath_13; }
inline void set_normalizedSearchPath_13(String_t* value)
{
___normalizedSearchPath_13 = value;
Il2CppCodeGenWriteBarrier((&___normalizedSearchPath_13), value);
}
inline static int32_t get_offset_of__checkHost_14() { return static_cast<int32_t>(offsetof(FileSystemEnumerableIterator_1_t25181536, ____checkHost_14)); }
inline bool get__checkHost_14() const { return ____checkHost_14; }
inline bool* get_address_of__checkHost_14() { return &____checkHost_14; }
inline void set__checkHost_14(bool value)
{
____checkHost_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILESYSTEMENUMERABLEITERATOR_1_T25181536_H
#ifndef ARGUMENTNULLEXCEPTION_T1615371798_H
#define ARGUMENTNULLEXCEPTION_T1615371798_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T1615371798_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997 : public ArgumentException_t132251570
{
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_t777629997, ___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((&___m_actualValue_19), value);
}
};
struct ArgumentOutOfRangeException_t777629997_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_t777629997_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((&____rangeMessage_18), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifndef ITERATOR_1_T2740211830_H
#define ITERATOR_1_T2740211830_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>
struct Iterator_1_t2740211830 : public RuntimeObject
{
public:
// System.Int32 System.Linq.Enumerable/Iterator`1::_threadId
int32_t ____threadId_0;
// System.Int32 System.Linq.Enumerable/Iterator`1::_state
int32_t ____state_1;
// TSource System.Linq.Enumerable/Iterator`1::_current
Ray_t3785851493 ____current_2;
public:
inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t2740211830, ____threadId_0)); }
inline int32_t get__threadId_0() const { return ____threadId_0; }
inline int32_t* get_address_of__threadId_0() { return &____threadId_0; }
inline void set__threadId_0(int32_t value)
{
____threadId_0 = value;
}
inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t2740211830, ____state_1)); }
inline int32_t get__state_1() const { return ____state_1; }
inline int32_t* get_address_of__state_1() { return &____state_1; }
inline void set__state_1(int32_t value)
{
____state_1 = value;
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t2740211830, ____current_2)); }
inline Ray_t3785851493 get__current_2() const { return ____current_2; }
inline Ray_t3785851493 * get_address_of__current_2() { return &____current_2; }
inline void set__current_2(Ray_t3785851493 value)
{
____current_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ITERATOR_1_T2740211830_H
#ifndef SELECTIPARTITIONITERATOR_2_T2954477804_H
#define SELECTIPARTITIONITERATOR_2_T2954477804_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectIPartitionIterator_2_t2954477804 : public Iterator_1_t1484577656
{
public:
// System.Linq.IPartition`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIPartitionIterator`2::_selector
Func_2_t3270419407 * ____selector_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2954477804, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2954477804, ____selector_4)); }
inline Func_2_t3270419407 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3270419407 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3270419407 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2954477804, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTIPARTITIONITERATOR_2_T2954477804_H
#ifndef SELECTLISTITERATOR_2_T2565991656_H
#define SELECTLISTITERATOR_2_T2565991656_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectListIterator_2_t2565991656 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/SelectListIterator`2::_source
List_1_t301083084 * ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectListIterator`2::_selector
Func_2_t3270419407 * ____selector_4;
// System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/SelectListIterator`2::_enumerator
Enumerator_t2190326961 ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t2565991656, ____source_3)); }
inline List_1_t301083084 * get__source_3() const { return ____source_3; }
inline List_1_t301083084 ** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(List_1_t301083084 * value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t2565991656, ____selector_4)); }
inline Func_2_t3270419407 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3270419407 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3270419407 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t2565991656, ____enumerator_5)); }
inline Enumerator_t2190326961 get__enumerator_5() const { return ____enumerator_5; }
inline Enumerator_t2190326961 * get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(Enumerator_t2190326961 value)
{
____enumerator_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTLISTITERATOR_2_T2565991656_H
#ifndef TUPLE_4_T2317369846_H
#define TUPLE_4_T2317369846_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Tuple`4<System.Action`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>,System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>
struct Tuple_4_t2317369846 : public RuntimeObject
{
public:
// T1 System.Tuple`4::m_Item1
Action_3_t376445962 * ___m_Item1_0;
// T2 System.Tuple`4::m_Item2
RuntimeObject * ___m_Item2_1;
// T3 System.Tuple`4::m_Item3
RuntimeObject * ___m_Item3_2;
// T4 System.Tuple`4::m_Item4
int32_t ___m_Item4_3;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_4_t2317369846, ___m_Item1_0)); }
inline Action_3_t376445962 * get_m_Item1_0() const { return ___m_Item1_0; }
inline Action_3_t376445962 ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Action_3_t376445962 * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Item1_0), value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_4_t2317369846, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Item2_1), value);
}
inline static int32_t get_offset_of_m_Item3_2() { return static_cast<int32_t>(offsetof(Tuple_4_t2317369846, ___m_Item3_2)); }
inline RuntimeObject * get_m_Item3_2() const { return ___m_Item3_2; }
inline RuntimeObject ** get_address_of_m_Item3_2() { return &___m_Item3_2; }
inline void set_m_Item3_2(RuntimeObject * value)
{
___m_Item3_2 = value;
Il2CppCodeGenWriteBarrier((&___m_Item3_2), value);
}
inline static int32_t get_offset_of_m_Item4_3() { return static_cast<int32_t>(offsetof(Tuple_4_t2317369846, ___m_Item4_3)); }
inline int32_t get_m_Item4_3() const { return ___m_Item4_3; }
inline int32_t* get_address_of_m_Item4_3() { return &___m_Item4_3; }
inline void set_m_Item4_3(int32_t value)
{
___m_Item4_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TUPLE_4_T2317369846_H
#ifndef ENUMERATOR_T2852202816_H
#define ENUMERATOR_T2852202816_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>
struct Enumerator_t2852202816
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t962958939 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
Ray_t3785851493 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___list_0)); }
inline List_1_t962958939 * get_list_0() const { return ___list_0; }
inline List_1_t962958939 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t962958939 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___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_t2852202816, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2852202816, ___current_3)); }
inline Ray_t3785851493 get_current_3() const { return ___current_3; }
inline Ray_t3785851493 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Ray_t3785851493 value)
{
___current_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T2852202816_H
#ifndef WHERESELECTENUMERABLEITERATOR_2_T2376911338_H
#define WHERESELECTENUMERABLEITERATOR_2_T2376911338_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct WhereSelectEnumerableIterator_2_t2376911338 : public Iterator_1_t1484577656
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_predicate
Func_2_t837490053 * ____predicate_4;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_selector
Func_2_t3270419407 * ____selector_5;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_enumerator
RuntimeObject* ____enumerator_6;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t2376911338, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t2376911338, ____predicate_4)); }
inline Func_2_t837490053 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t837490053 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t837490053 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t2376911338, ____selector_5)); }
inline Func_2_t3270419407 * get__selector_5() const { return ____selector_5; }
inline Func_2_t3270419407 ** get_address_of__selector_5() { return &____selector_5; }
inline void set__selector_5(Func_2_t3270419407 * value)
{
____selector_5 = value;
Il2CppCodeGenWriteBarrier((&____selector_5), value);
}
inline static int32_t get_offset_of__enumerator_6() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t2376911338, ____enumerator_6)); }
inline RuntimeObject* get__enumerator_6() const { return ____enumerator_6; }
inline RuntimeObject** get_address_of__enumerator_6() { return &____enumerator_6; }
inline void set__enumerator_6(RuntimeObject* value)
{
____enumerator_6 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERESELECTENUMERABLEITERATOR_2_T2376911338_H
#ifndef EXPRESSION0_1_T2373022017_H
#define EXPRESSION0_1_T2373022017_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression0`1<System.Object>
struct Expression0_1_t2373022017 : public Expression_1_t3066134371
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION0_1_T2373022017_H
#ifndef EXPRESSIONN_1_T953682751_H
#define EXPRESSIONN_1_T953682751_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.ExpressionN`1<System.Object>
struct ExpressionN_1_t953682751 : public Expression_1_t3066134371
{
public:
// System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.ExpressionN`1::_parameters
RuntimeObject* ____parameters_4;
public:
inline static int32_t get_offset_of__parameters_4() { return static_cast<int32_t>(offsetof(ExpressionN_1_t953682751, ____parameters_4)); }
inline RuntimeObject* get__parameters_4() const { return ____parameters_4; }
inline RuntimeObject** get_address_of__parameters_4() { return &____parameters_4; }
inline void set__parameters_4(RuntimeObject* value)
{
____parameters_4 = value;
Il2CppCodeGenWriteBarrier((&____parameters_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSIONN_1_T953682751_H
#ifndef EXPRESSION1_1_T3696744484_H
#define EXPRESSION1_1_T3696744484_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression1`1<System.Object>
struct Expression1_1_t3696744484 : public Expression_1_t3066134371
{
public:
// System.Object System.Linq.Expressions.Expression1`1::_par0
RuntimeObject * ____par0_4;
public:
inline static int32_t get_offset_of__par0_4() { return static_cast<int32_t>(offsetof(Expression1_1_t3696744484, ____par0_4)); }
inline RuntimeObject * get__par0_4() const { return ____par0_4; }
inline RuntimeObject ** get_address_of__par0_4() { return &____par0_4; }
inline void set__par0_4(RuntimeObject * value)
{
____par0_4 = value;
Il2CppCodeGenWriteBarrier((&____par0_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION1_1_T3696744484_H
#ifndef EXPRESSION2_1_T4020544379_H
#define EXPRESSION2_1_T4020544379_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression2`1<System.Object>
struct Expression2_1_t4020544379 : public Expression_1_t3066134371
{
public:
// System.Object System.Linq.Expressions.Expression2`1::_par0
RuntimeObject * ____par0_4;
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression2`1::_par1
ParameterExpression_t1118422084 * ____par1_5;
public:
inline static int32_t get_offset_of__par0_4() { return static_cast<int32_t>(offsetof(Expression2_1_t4020544379, ____par0_4)); }
inline RuntimeObject * get__par0_4() const { return ____par0_4; }
inline RuntimeObject ** get_address_of__par0_4() { return &____par0_4; }
inline void set__par0_4(RuntimeObject * value)
{
____par0_4 = value;
Il2CppCodeGenWriteBarrier((&____par0_4), value);
}
inline static int32_t get_offset_of__par1_5() { return static_cast<int32_t>(offsetof(Expression2_1_t4020544379, ____par1_5)); }
inline ParameterExpression_t1118422084 * get__par1_5() const { return ____par1_5; }
inline ParameterExpression_t1118422084 ** get_address_of__par1_5() { return &____par1_5; }
inline void set__par1_5(ParameterExpression_t1118422084 * value)
{
____par1_5 = value;
Il2CppCodeGenWriteBarrier((&____par1_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION2_1_T4020544379_H
#ifndef STACKSPILLER_T2314802664_H
#define STACKSPILLER_T2314802664_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Compiler.StackSpiller
struct StackSpiller_t2314802664 : public RuntimeObject
{
public:
// System.Linq.Expressions.StackGuard System.Linq.Expressions.Compiler.StackSpiller::_guard
StackGuard_t2865828190 * ____guard_0;
// System.Linq.Expressions.Compiler.StackSpiller/TempMaker System.Linq.Expressions.Compiler.StackSpiller::_tm
TempMaker_t2061025122 * ____tm_1;
// System.Linq.Expressions.Compiler.StackSpiller/Stack System.Linq.Expressions.Compiler.StackSpiller::_startingStack
int32_t ____startingStack_2;
// System.Linq.Expressions.Compiler.StackSpiller/RewriteAction System.Linq.Expressions.Compiler.StackSpiller::_lambdaRewrite
int32_t ____lambdaRewrite_3;
public:
inline static int32_t get_offset_of__guard_0() { return static_cast<int32_t>(offsetof(StackSpiller_t2314802664, ____guard_0)); }
inline StackGuard_t2865828190 * get__guard_0() const { return ____guard_0; }
inline StackGuard_t2865828190 ** get_address_of__guard_0() { return &____guard_0; }
inline void set__guard_0(StackGuard_t2865828190 * value)
{
____guard_0 = value;
Il2CppCodeGenWriteBarrier((&____guard_0), value);
}
inline static int32_t get_offset_of__tm_1() { return static_cast<int32_t>(offsetof(StackSpiller_t2314802664, ____tm_1)); }
inline TempMaker_t2061025122 * get__tm_1() const { return ____tm_1; }
inline TempMaker_t2061025122 ** get_address_of__tm_1() { return &____tm_1; }
inline void set__tm_1(TempMaker_t2061025122 * value)
{
____tm_1 = value;
Il2CppCodeGenWriteBarrier((&____tm_1), value);
}
inline static int32_t get_offset_of__startingStack_2() { return static_cast<int32_t>(offsetof(StackSpiller_t2314802664, ____startingStack_2)); }
inline int32_t get__startingStack_2() const { return ____startingStack_2; }
inline int32_t* get_address_of__startingStack_2() { return &____startingStack_2; }
inline void set__startingStack_2(int32_t value)
{
____startingStack_2 = value;
}
inline static int32_t get_offset_of__lambdaRewrite_3() { return static_cast<int32_t>(offsetof(StackSpiller_t2314802664, ____lambdaRewrite_3)); }
inline int32_t get__lambdaRewrite_3() const { return ____lambdaRewrite_3; }
inline int32_t* get_address_of__lambdaRewrite_3() { return &____lambdaRewrite_3; }
inline void set__lambdaRewrite_3(int32_t value)
{
____lambdaRewrite_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACKSPILLER_T2314802664_H
#ifndef MISSINGMEMBEREXCEPTION_T1385081665_H
#define MISSINGMEMBEREXCEPTION_T1385081665_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMemberException
struct MissingMemberException_t1385081665 : public MemberAccessException_t1734467078
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_17;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_18;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_t4116647657* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((&___ClassName_17), value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___MemberName_18)); }
inline String_t* get_MemberName_18() const { return ___MemberName_18; }
inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; }
inline void set_MemberName_18(String_t* value)
{
___MemberName_18 = value;
Il2CppCodeGenWriteBarrier((&___MemberName_18), value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___Signature_19)); }
inline ByteU5BU5D_t4116647657* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_t4116647657** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_t4116647657* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((&___Signature_19), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMEMBEREXCEPTION_T1385081665_H
#ifndef WHEREENUMERABLEITERATOR_1_T2229509965_H
#define WHEREENUMERABLEITERATOR_1_T2229509965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>
struct WhereEnumerableIterator_1_t2229509965 : public Iterator_1_t2078335975
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate
Func_2_t837490053 * ____predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2229509965, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2229509965, ____predicate_4)); }
inline Func_2_t837490053 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t837490053 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t837490053 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2229509965, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREENUMERABLEITERATOR_1_T2229509965_H
#ifndef SELECTARRAYITERATOR_2_T1643067185_H
#define SELECTARRAYITERATOR_2_T1643067185_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct SelectArrayIterator_2_t1643067185 : public Iterator_1_t1484577656
{
public:
// TSource[] System.Linq.Enumerable/SelectArrayIterator`2::_source
DictionaryEntryU5BU5D_t4217117203* ____source_3;
// System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectArrayIterator`2::_selector
Func_2_t3270419407 * ____selector_4;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t1643067185, ____source_3)); }
inline DictionaryEntryU5BU5D_t4217117203* get__source_3() const { return ____source_3; }
inline DictionaryEntryU5BU5D_t4217117203** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(DictionaryEntryU5BU5D_t4217117203* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t1643067185, ____selector_4)); }
inline Func_2_t3270419407 * get__selector_4() const { return ____selector_4; }
inline Func_2_t3270419407 ** get_address_of__selector_4() { return &____selector_4; }
inline void set__selector_4(Func_2_t3270419407 * value)
{
____selector_4 = value;
Il2CppCodeGenWriteBarrier((&____selector_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SELECTARRAYITERATOR_2_T1643067185_H
#ifndef EXPRESSION3_1_T1049299550_H
#define EXPRESSION3_1_T1049299550_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression3`1<System.Object>
struct Expression3_1_t1049299550 : public Expression_1_t3066134371
{
public:
// System.Object System.Linq.Expressions.Expression3`1::_par0
RuntimeObject * ____par0_4;
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression3`1::_par1
ParameterExpression_t1118422084 * ____par1_5;
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression3`1::_par2
ParameterExpression_t1118422084 * ____par2_6;
public:
inline static int32_t get_offset_of__par0_4() { return static_cast<int32_t>(offsetof(Expression3_1_t1049299550, ____par0_4)); }
inline RuntimeObject * get__par0_4() const { return ____par0_4; }
inline RuntimeObject ** get_address_of__par0_4() { return &____par0_4; }
inline void set__par0_4(RuntimeObject * value)
{
____par0_4 = value;
Il2CppCodeGenWriteBarrier((&____par0_4), value);
}
inline static int32_t get_offset_of__par1_5() { return static_cast<int32_t>(offsetof(Expression3_1_t1049299550, ____par1_5)); }
inline ParameterExpression_t1118422084 * get__par1_5() const { return ____par1_5; }
inline ParameterExpression_t1118422084 ** get_address_of__par1_5() { return &____par1_5; }
inline void set__par1_5(ParameterExpression_t1118422084 * value)
{
____par1_5 = value;
Il2CppCodeGenWriteBarrier((&____par1_5), value);
}
inline static int32_t get_offset_of__par2_6() { return static_cast<int32_t>(offsetof(Expression3_1_t1049299550, ____par2_6)); }
inline ParameterExpression_t1118422084 * get__par2_6() const { return ____par2_6; }
inline ParameterExpression_t1118422084 ** get_address_of__par2_6() { return &____par2_6; }
inline void set__par2_6(ParameterExpression_t1118422084 * value)
{
____par2_6 = value;
Il2CppCodeGenWriteBarrier((&____par2_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXPRESSION3_1_T1049299550_H
#ifndef WHERELISTITERATOR_1_T1650560936_H
#define WHERELISTITERATOR_1_T1650560936_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>
struct WhereListIterator_1_t1650560936 : public Iterator_1_t2740211830
{
public:
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1::_source
List_1_t962958939 * ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereListIterator`1::_predicate
Func_2_t2751558106 * ____predicate_4;
// System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereListIterator`1::_enumerator
Enumerator_t2852202816 ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t1650560936, ____source_3)); }
inline List_1_t962958939 * get__source_3() const { return ____source_3; }
inline List_1_t962958939 ** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(List_1_t962958939 * value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t1650560936, ____predicate_4)); }
inline Func_2_t2751558106 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t2751558106 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t2751558106 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t1650560936, ____enumerator_5)); }
inline Enumerator_t2852202816 get__enumerator_5() const { return ____enumerator_5; }
inline Enumerator_t2852202816 * get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(Enumerator_t2852202816 value)
{
____enumerator_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHERELISTITERATOR_1_T1650560936_H
#ifndef SAFEFINDHANDLE_T2068834300_H
#define SAFEFINDHANDLE_T2068834300_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Microsoft.Win32.SafeHandles.SafeFindHandle
struct SafeFindHandle_t2068834300 : public SafeHandleZeroOrMinusOneIsInvalid_t1182193648
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEFINDHANDLE_T2068834300_H
#ifndef FUNC_2_T3934069716_H
#define FUNC_2_T3934069716_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<UnityEngine.Vector3,System.Single>
struct Func_2_t3934069716 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3934069716_H
#ifndef FUNC_2_T3466538714_H
#define FUNC_2_T3466538714_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Func_2_t3466538714 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3466538714_H
#ifndef FUNC_2_T2447130374_H
#define FUNC_2_T2447130374_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Object>
struct Func_2_t2447130374 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2447130374_H
#ifndef FUNC_2_T3672504941_H
#define FUNC_2_T3672504941_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<UnityEngine.Vector2,System.Single>
struct Func_2_t3672504941 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3672504941_H
#ifndef COMPARISON_1_T2725876932_H
#define COMPARISON_1_T2725876932_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Comparison`1<System.Int32>
struct Comparison_1_t2725876932 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPARISON_1_T2725876932_H
#ifndef WHEREENUMERABLEITERATOR_1_T2891385820_H
#define WHEREENUMERABLEITERATOR_1_T2891385820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>
struct WhereEnumerableIterator_1_t2891385820 : public Iterator_1_t2740211830
{
public:
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source
RuntimeObject* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate
Func_2_t2751558106 * ____predicate_4;
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator
RuntimeObject* ____enumerator_5;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2891385820, ____source_3)); }
inline RuntimeObject* get__source_3() const { return ____source_3; }
inline RuntimeObject** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RuntimeObject* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2891385820, ____predicate_4)); }
inline Func_2_t2751558106 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t2751558106 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t2751558106 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2891385820, ____enumerator_5)); }
inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; }
inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; }
inline void set__enumerator_5(RuntimeObject* value)
{
____enumerator_5 = value;
Il2CppCodeGenWriteBarrier((&____enumerator_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREENUMERABLEITERATOR_1_T2891385820_H
#ifndef FUNC_2_T3270419407_H
#define FUNC_2_T3270419407_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Func_2_t3270419407 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3270419407_H
#ifndef FUNC_2_T2751558106_H
#define FUNC_2_T2751558106_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<UnityEngine.Ray,System.Boolean>
struct Func_2_t2751558106 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2751558106_H
#ifndef FUNC_2_T2317969963_H
#define FUNC_2_T2317969963_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Int32>
struct Func_2_t2317969963 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T2317969963_H
#ifndef FUNC_2_T837490053_H
#define FUNC_2_T837490053_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Collections.DictionaryEntry,System.Boolean>
struct Func_2_t837490053 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T837490053_H
#ifndef FUNC_2_T148644517_H
#define FUNC_2_T148644517_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Char,System.Boolean>
struct Func_2_t148644517 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T148644517_H
#ifndef FUNC_3_T3398609381_H
#define FUNC_3_T3398609381_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.Object,System.Object,System.Object>
struct Func_3_t3398609381 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T3398609381_H
#ifndef FUNC_2_T1426983263_H
#define FUNC_2_T1426983263_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Collections.Generic.IEnumerable`1<System.Object>>
struct Func_2_t1426983263 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T1426983263_H
#ifndef FUNC_2_T1033609360_H
#define FUNC_2_T1033609360_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
struct Func_2_t1033609360 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T1033609360_H
#ifndef MISSINGMETHODEXCEPTION_T1274661534_H
#define MISSINGMETHODEXCEPTION_T1274661534_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMethodException
struct MissingMethodException_t1274661534 : public MissingMemberException_t1385081665
{
public:
// System.String System.MissingMethodException::signature
String_t* ___signature_20;
public:
inline static int32_t get_offset_of_signature_20() { return static_cast<int32_t>(offsetof(MissingMethodException_t1274661534, ___signature_20)); }
inline String_t* get_signature_20() const { return ___signature_20; }
inline String_t** get_address_of_signature_20() { return &___signature_20; }
inline void set_signature_20(String_t* value)
{
___signature_20 = value;
Il2CppCodeGenWriteBarrier((&___signature_20), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMETHODEXCEPTION_T1274661534_H
#ifndef ACTION_3_T3632554945_H
#define ACTION_3_T3632554945_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action`3<System.Object,System.Object,System.Object>
struct Action_3_t3632554945 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_3_T3632554945_H
#ifndef FUNC_4_T694756426_H
#define FUNC_4_T694756426_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>
struct Func_4_t694756426 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_4_T694756426_H
#ifndef FULLEXPRESSION_1_T2654851524_H
#define FULLEXPRESSION_1_T2654851524_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.FullExpression`1<System.Object>
struct FullExpression_1_t2654851524 : public ExpressionN_1_t953682751
{
public:
// System.String System.Linq.Expressions.FullExpression`1::<NameCore>k__BackingField
String_t* ___U3CNameCoreU3Ek__BackingField_5;
// System.Boolean System.Linq.Expressions.FullExpression`1::<TailCallCore>k__BackingField
bool ___U3CTailCallCoreU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CNameCoreU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(FullExpression_1_t2654851524, ___U3CNameCoreU3Ek__BackingField_5)); }
inline String_t* get_U3CNameCoreU3Ek__BackingField_5() const { return ___U3CNameCoreU3Ek__BackingField_5; }
inline String_t** get_address_of_U3CNameCoreU3Ek__BackingField_5() { return &___U3CNameCoreU3Ek__BackingField_5; }
inline void set_U3CNameCoreU3Ek__BackingField_5(String_t* value)
{
___U3CNameCoreU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CNameCoreU3Ek__BackingField_5), value);
}
inline static int32_t get_offset_of_U3CTailCallCoreU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(FullExpression_1_t2654851524, ___U3CTailCallCoreU3Ek__BackingField_6)); }
inline bool get_U3CTailCallCoreU3Ek__BackingField_6() const { return ___U3CTailCallCoreU3Ek__BackingField_6; }
inline bool* get_address_of_U3CTailCallCoreU3Ek__BackingField_6() { return &___U3CTailCallCoreU3Ek__BackingField_6; }
inline void set_U3CTailCallCoreU3Ek__BackingField_6(bool value)
{
___U3CTailCallCoreU3Ek__BackingField_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FULLEXPRESSION_1_T2654851524_H
#ifndef FUNC_1_T2509852811_H
#define FUNC_1_T2509852811_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Object>
struct Func_1_t2509852811 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T2509852811_H
#ifndef ACTION_3_T376445962_H
#define ACTION_3_T376445962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>
struct Action_3_t376445962 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_3_T376445962_H
#ifndef FUNC_4_T1418280132_H
#define FUNC_4_T1418280132_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`4<System.Object,System.Object,System.Object,System.Object>
struct Func_4_t1418280132 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_4_T1418280132_H
#ifndef FUNC_2_T3759279471_H
#define FUNC_2_T3759279471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3759279471_H
#ifndef FUNC_3_T415791182_H
#define FUNC_3_T415791182_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`3<System.Object,System.Object,System.Boolean>
struct Func_3_t415791182 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_3_T415791182_H
#ifndef WHEREARRAYITERATOR_1_T2597673910_H
#define WHEREARRAYITERATOR_1_T2597673910_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>
struct WhereArrayIterator_1_t2597673910 : public Iterator_1_t2740211830
{
public:
// TSource[] System.Linq.Enumerable/WhereArrayIterator`1::_source
RayU5BU5D_t1836217960* ____source_3;
// System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereArrayIterator`1::_predicate
Func_2_t2751558106 * ____predicate_4;
public:
inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t2597673910, ____source_3)); }
inline RayU5BU5D_t1836217960* get__source_3() const { return ____source_3; }
inline RayU5BU5D_t1836217960** get_address_of__source_3() { return &____source_3; }
inline void set__source_3(RayU5BU5D_t1836217960* value)
{
____source_3 = value;
Il2CppCodeGenWriteBarrier((&____source_3), value);
}
inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t2597673910, ____predicate_4)); }
inline Func_2_t2751558106 * get__predicate_4() const { return ____predicate_4; }
inline Func_2_t2751558106 ** get_address_of__predicate_4() { return &____predicate_4; }
inline void set__predicate_4(Func_2_t2751558106 * value)
{
____predicate_4 = value;
Il2CppCodeGenWriteBarrier((&____predicate_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WHEREARRAYITERATOR_1_T2597673910_H
// System.String[]
struct StringU5BU5D_t1281789340 : 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(m_Items + index, 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(m_Items + index, value);
}
};
// System.Char[]
struct CharU5BU5D_t3528271667 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* 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, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t2843939325 : 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(m_Items + index, 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(m_Items + index, value);
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_t1457185986 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_t2156229523 m_Items[1];
public:
inline Vector2_t2156229523 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_t2156229523 * 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, Vector2_t2156229523 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_t2156229523 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_t2156229523 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t2156229523 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t1718750761 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_t3722313464 m_Items[1];
public:
inline Vector3_t3722313464 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_t3722313464 * 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, Vector3_t3722313464 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_t3722313464 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_t3722313464 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t3722313464 value)
{
m_Items[index] = value;
}
};
// System.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t4217117203 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DictionaryEntry_t3123975638 m_Items[1];
public:
inline DictionaryEntry_t3123975638 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DictionaryEntry_t3123975638 * 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, DictionaryEntry_t3123975638 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DictionaryEntry_t3123975638 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DictionaryEntry_t3123975638 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_t3123975638 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t118269214 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t2530217319 m_Items[1];
public:
inline KeyValuePair_2_t2530217319 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t2530217319 * 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, KeyValuePair_2_t2530217319 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t2530217319 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t2530217319 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2530217319 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Ray[]
struct RayU5BU5D_t1836217960 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Ray_t3785851493 m_Items[1];
public:
inline Ray_t3785851493 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Ray_t3785851493 * 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, Ray_t3785851493 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Ray_t3785851493 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Ray_t3785851493 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Ray_t3785851493 value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t385246372 : 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.Single[]
struct SingleU5BU5D_t1444911251 : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* 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, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.Linq.Expressions.ParameterExpression[]
struct ParameterExpressionU5BU5D_t2413162029 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterExpression_t1118422084 * m_Items[1];
public:
inline ParameterExpression_t1118422084 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterExpression_t1118422084 ** 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, ParameterExpression_t1118422084 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline ParameterExpression_t1118422084 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterExpression_t1118422084 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterExpression_t1118422084 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Linq.IGrouping`2<System.Object,System.Object>[]
struct IGrouping_2U5BU5D_t2654969873 : 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(m_Items + index, 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(m_Items + index, value);
}
};
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
extern "C" void List_1__ctor_m2321703786_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
extern "C" void List_1_Add_m3338814081_gshared (List_1_t257213610 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
extern "C" RuntimeObject * List_1_get_Item_m1328026504_gshared (List_1_t257213610 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
extern "C" void List_1_RemoveAt_m2730968292_gshared (List_1_t257213610 * __this, int32_t p0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
extern "C" int32_t List_1_get_Count_m2934127733_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T)
extern "C" void List_1_Insert_m3705215113_gshared (List_1_t257213610 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method);
// T System.Threading.Volatile::Read<System.Object>(T&)
extern "C" RuntimeObject * Volatile_Read_TisRuntimeObject_m3872089505_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___location0, const RuntimeMethod* method);
// System.Void System.Threading.Volatile::Write<System.Object>(T&,T)
extern "C" void Volatile_Write_TisRuntimeObject_m886068950_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___location0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m3439248099_gshared (Buffer_1_t932544294 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m1836940346_gshared (Buffer_1_t8667653 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Void System.Linq.Buffer`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m2075330287_gshared (Buffer_1_t1574751594 * __this, RuntimeObject* ___source0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Boolean)
extern "C" void LargeArrayBuilder_1__ctor_m2226121364_gshared (LargeArrayBuilder_1_t2440570340 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T)
extern "C" void LargeArrayBuilder_1_Add_m982335036_gshared (LargeArrayBuilder_1_t2440570340 * __this, KeyValuePair_2_t2530217319 p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* LargeArrayBuilder_1_ToArray_m3030376891_gshared (LargeArrayBuilder_1_t2440570340 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Boolean)
extern "C" void LargeArrayBuilder_1__ctor_m104969882_gshared (LargeArrayBuilder_1_t2990459185 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::Add(T)
extern "C" void LargeArrayBuilder_1_Add_m3802412589_gshared (LargeArrayBuilder_1_t2990459185 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* LargeArrayBuilder_1_ToArray_m390648332_gshared (LargeArrayBuilder_1_t2990459185 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNext()
extern "C" bool Enumerator_MoveNext_m2875527037_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::get_Current()
extern "C" DictionaryEntry_t3123975638 Enumerator_get_Current_m3966199253_gshared (Enumerator_t2190326961 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
extern "C" bool Enumerator_MoveNext_m2142368520_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
extern "C" RuntimeObject * Enumerator_get_Current_m337713592_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.SparseArrayBuilder`1<System.Object>::.ctor(System.Boolean)
extern "C" void SparseArrayBuilder_1__ctor_m3599075535_gshared (SparseArrayBuilder_1_t3713953326 * __this, bool p0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.SparseArrayBuilder`1<System.Object>::ReserveOrAdd(System.Collections.Generic.IEnumerable`1<T>)
extern "C" bool SparseArrayBuilder_1_ReserveOrAdd_m2427632886_gshared (SparseArrayBuilder_1_t3713953326 * __this, RuntimeObject* p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.ArrayBuilder`1<System.Object>::Add(T)
extern "C" void ArrayBuilder_1_Add_m1469477416_gshared (ArrayBuilder_1_t68235548 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.SparseArrayBuilder`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SparseArrayBuilder_1_ToArray_m1576911221_gshared (SparseArrayBuilder_1_t3713953326 * __this, const RuntimeMethod* method);
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker> System.Collections.Generic.SparseArrayBuilder`1<System.Object>::get_Markers()
extern "C" ArrayBuilder_1_t4177874457 SparseArrayBuilder_1_get_Markers_m716823650_gshared (SparseArrayBuilder_1_t3713953326 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker>::get_Item(System.Int32)
extern "C" Marker_t2894777777 ArrayBuilder_1_get_Item_m3563499930_gshared (ArrayBuilder_1_t4177874457 * __this, int32_t p0, const RuntimeMethod* method);
// T System.Collections.Generic.ArrayBuilder`1<System.Object>::get_Item(System.Int32)
extern "C" RuntimeObject * ArrayBuilder_1_get_Item_m2217381838_gshared (ArrayBuilder_1_t68235548 * __this, int32_t p0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker>::get_Count()
extern "C" int32_t ArrayBuilder_1_get_Count_m2587795986_gshared (ArrayBuilder_1_t4177874457 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Int32)
extern "C" void LargeArrayBuilder_1__ctor_m193325792_gshared (LargeArrayBuilder_1_t2990459185 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Int32)
extern "C" void LargeArrayBuilder_1__ctor_m2251031111_gshared (LargeArrayBuilder_1_t3696204514 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::Add(T)
extern "C" void LargeArrayBuilder_1_Add_m3560339651_gshared (LargeArrayBuilder_1_t3696204514 * __this, Ray_t3785851493 p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::ToArray()
extern "C" RayU5BU5D_t1836217960* LargeArrayBuilder_1_ToArray_m4051514523_gshared (LargeArrayBuilder_1_t3696204514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Boolean)
extern "C" void LargeArrayBuilder_1__ctor_m2700000537_gshared (LargeArrayBuilder_1_t3544813491 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::Add(T)
extern "C" void LargeArrayBuilder_1_Add_m982046608_gshared (LargeArrayBuilder_1_t3544813491 * __this, Il2CppChar p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::ToArray()
extern "C" CharU5BU5D_t3528271667* LargeArrayBuilder_1_ToArray_m1423820966_gshared (LargeArrayBuilder_1_t3544813491 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Boolean)
extern "C" void LargeArrayBuilder_1__ctor_m3992711902_gshared (LargeArrayBuilder_1_t3034328659 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::Add(T)
extern "C" void LargeArrayBuilder_1_Add_m3654651254_gshared (LargeArrayBuilder_1_t3034328659 * __this, DictionaryEntry_t3123975638 p0, const RuntimeMethod* method);
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::ToArray()
extern "C" DictionaryEntryU5BU5D_t4217117203* LargeArrayBuilder_1_ToArray_m880301710_gshared (LargeArrayBuilder_1_t3034328659 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Boolean)
extern "C" void LargeArrayBuilder_1__ctor_m2621609802_gshared (LargeArrayBuilder_1_t3696204514 * __this, bool p0, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::get_Current()
extern "C" Ray_t3785851493 Enumerator_get_Current_m1622353285_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNext()
extern "C" bool Enumerator_MoveNext_m1697727539_gshared (Enumerator_t2852202816 * __this, const RuntimeMethod* method);
// System.Void System.Comparison`1<System.Int32>::.ctor(System.Object,System.IntPtr)
extern "C" void Comparison_1__ctor_m2649066178_gshared (Comparison_1_t2725876932 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::Create(System.Comparison`1<!0>)
extern "C" Comparer_1_t155733339 * Comparer_1_Create_m3068808654_gshared (RuntimeObject * __this /* static, unused */, Comparison_1_t2725876932 * p0, const RuntimeMethod* method);
// System.Void System.Array::Sort<System.Int32>(!!0[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!!0>)
extern "C" void Array_Sort_TisInt32_t2950945753_m263117253_gshared (RuntimeObject * __this /* static, unused */, Int32U5BU5D_t385246372* p0, int32_t p1, int32_t p2, RuntimeObject* p3, const RuntimeMethod* method);
// T System.Dynamic.Utils.ExpressionUtils::ReturnObject<System.Object>(System.Object)
extern "C" RuntimeObject * ExpressionUtils_ReturnObject_TisRuntimeObject_m3195170773_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___collectionOrT0, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Dynamic.Utils.ExpressionUtils::ReturnReadOnly<System.Object>(System.Collections.Generic.IReadOnlyList`1<T>&)
extern "C" ReadOnlyCollection_1_t4292682451 * ExpressionUtils_ReturnReadOnly_TisRuntimeObject_m2071556674_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject** ___collection0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::.ctor()
#define List_1__ctor_m3635573260(__this, method) (( void (*) (List_1_t4120301035 *, const RuntimeMethod*))List_1__ctor_m2321703786_gshared)(__this, method)
// System.Int32 System.String::get_Length()
extern "C" int32_t String_get_Length_m3847582255 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.IO.Path::GetFullPathInternal(System.String)
extern "C" String_t* Path_GetFullPathInternal_m1405359470 (RuntimeObject * __this /* static, unused */, String_t* ___path0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.IO.Path::GetDirectoryName(System.String)
extern "C" String_t* Path_GetDirectoryName_m3496866581 (RuntimeObject * __this /* static, unused */, String_t* ___path0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.IO.Directory::GetDemandDir(System.String,System.Boolean)
extern "C" String_t* Directory_GetDemandDir_m3334461828 (RuntimeObject * __this /* static, unused */, String_t* ___fullPath0, bool ___thisDirOnly1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.IO.Path::Combine(System.String,System.String)
extern "C" String_t* Path_Combine_m3389272516 (RuntimeObject * __this /* static, unused */, String_t* ___path10, String_t* ___path21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.Directory/SearchData::.ctor(System.String,System.String,System.IO.SearchOption)
extern "C" void SearchData__ctor_m4162952925 (SearchData_t2648226293 * __this, String_t* ___fullPath0, String_t* ___userPath1, int32_t ___searchOption2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.IO.Path::InternalCombine(System.String,System.String)
extern "C" String_t* Path_InternalCombine_m3863307630 (RuntimeObject * __this /* static, unused */, String_t* ___path10, String_t* ___path21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Microsoft.Win32.Win32Native/WIN32_FIND_DATA::.ctor()
extern "C" void WIN32_FIND_DATA__ctor_m1509629805 (WIN32_FIND_DATA_t4232796738 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IntPtr System.IO.MonoIO::FindFirstFile(System.String,System.String&,System.Int32&,System.Int32&)
extern "C" intptr_t MonoIO_FindFirstFile_m1358799729 (RuntimeObject * __this /* static, unused */, String_t* ___pathWithPattern0, String_t** ___fileName1, int32_t* ___fileAttr2, int32_t* ___error3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Microsoft.Win32.SafeHandles.SafeFindHandle::.ctor(System.IntPtr)
extern "C" void SafeFindHandle__ctor_m3833665175 (SafeFindHandle_t2068834300 * __this, intptr_t ___preexistingHandle0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Runtime.InteropServices.SafeHandle::Dispose()
extern "C" void SafeHandle_Dispose_m817995135 (SafeHandle_t3273388951 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Add(T)
#define List_1_Add_m1559120923(__this, p0, method) (( void (*) (List_1_t4120301035 *, SearchData_t2648226293 *, const RuntimeMethod*))List_1_Add_m3338814081_gshared)(__this, p0, method)
// T System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Item(System.Int32)
#define List_1_get_Item_m3638502404(__this, p0, method) (( SearchData_t2648226293 * (*) (List_1_t4120301035 *, int32_t, const RuntimeMethod*))List_1_get_Item_m1328026504_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::RemoveAt(System.Int32)
#define List_1_RemoveAt_m762780374(__this, p0, method) (( void (*) (List_1_t4120301035 *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m2730968292_gshared)(__this, p0, method)
// System.Int32 System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Count()
#define List_1_get_Count_m958122929(__this, method) (( int32_t (*) (List_1_t4120301035 *, const RuntimeMethod*))List_1_get_Count_m2934127733_gshared)(__this, method)
// System.IntPtr System.Runtime.InteropServices.SafeHandle::DangerousGetHandle()
extern "C" intptr_t SafeHandle_DangerousGetHandle_m3697436134 (SafeHandle_t3273388951 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.IO.MonoIO::FindNextFile(System.IntPtr,System.String&,System.Int32&,System.Int32&)
extern "C" bool MonoIO_FindNextFile_m3163114833 (RuntimeObject * __this /* static, unused */, intptr_t ___hnd0, String_t** ___fileName1, int32_t* ___fileAttr2, int32_t* ___error3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.SearchResult::.ctor(System.String,System.String,Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
extern "C" void SearchResult__ctor_m203165125 (SearchResult_t2600365382 * __this, String_t* ___fullPath0, String_t* ___userPath1, WIN32_FIND_DATA_t4232796738 * ___findData2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.__Error::WinIOError(System.Int32,System.String)
extern "C" void __Error_WinIOError_m2555862149 (RuntimeObject * __this /* static, unused */, int32_t ___errorCode0, String_t* ___maybeFullPath1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.IO.FileSystemEnumerableHelpers::IsDir(Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
extern "C" bool FileSystemEnumerableHelpers_IsDir_m2524844520 (RuntimeObject * __this /* static, unused */, WIN32_FIND_DATA_t4232796738 * ___data0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Insert(System.Int32,T)
#define List_1_Insert_m2523363920(__this, p0, p1, method) (( void (*) (List_1_t4120301035 *, int32_t, SearchData_t2648226293 *, const RuntimeMethod*))List_1_Insert_m3705215113_gshared)(__this, p0, p1, method)
// System.Char[] System.IO.Path::get_TrimEndChars()
extern "C" CharU5BU5D_t3528271667* Path_get_TrimEndChars_m4264594297 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::TrimEnd(System.Char[])
extern "C" String_t* String_TrimEnd_m3824727301 (String_t* __this, CharU5BU5D_t3528271667* ___trimChars0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.String::Equals(System.String)
extern "C" bool String_Equals_m2270643605 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.Path::CheckSearchPattern(System.String)
extern "C" void Path_CheckSearchPattern_m974385397 (RuntimeObject * __this /* static, unused */, String_t* ___searchPattern0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.String::get_Chars(System.Int32)
extern "C" Il2CppChar String_get_Chars_m2986988803 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.IO.Path::IsDirectorySeparator(System.Char)
extern "C" bool Path_IsDirectorySeparator_m1029452715 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Substring(System.Int32)
extern "C" String_t* String_Substring_m2848979100 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.String,System.String)
extern "C" String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Object::.ctor()
extern "C" void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
extern "C" Thread_t2300836069 * Thread_get_CurrentThread_m4142136012 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Threading.Thread::get_ManagedThreadId()
extern "C" int32_t Thread_get_ManagedThreadId_m1068113671 (Thread_t2300836069 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.GC::SuppressFinalize(System.Object)
extern "C" void GC_SuppressFinalize_m1177400158 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.NotSupportedException::.ctor()
extern "C" void NotSupportedException__ctor_m2730133172 (NotSupportedException_t1314879016 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception)
extern "C" ExceptionDispatchInfo_t3750997369 * ExceptionDispatchInfo_Capture_m2882203257 (RuntimeObject * __this /* static, unused */, Exception_t * ___source0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Environment::GetResourceString(System.String)
extern "C" String_t* Environment_GetResourceString_m2063689938 (RuntimeObject * __this /* static, unused */, String_t* ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m282481429 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()
extern "C" void ExceptionDispatchInfo_Throw_m2689339678 (ExceptionDispatchInfo_t3750997369 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Diagnostics.Debugger::NotifyOfCrossThreadDependency()
extern "C" void Debugger_NotifyOfCrossThreadDependency_m2834057638 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Threading.Interlocked::CompareExchange(System.Object&,System.Object,System.Object)
extern "C" RuntimeObject * Interlocked_CompareExchange_m1590826108 (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___location10, RuntimeObject * ___value1, RuntimeObject * ___comparand2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// T System.Threading.Volatile::Read<System.Object>(T&)
#define Volatile_Read_TisRuntimeObject_m3872089505(__this /* static, unused */, ___location0, method) (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, RuntimeObject **, const RuntimeMethod*))Volatile_Read_TisRuntimeObject_m3872089505_gshared)(__this /* static, unused */, ___location0, method)
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
extern "C" void Monitor_Enter_m984175629 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Threading.Volatile::Write<System.Object>(T&,T)
#define Volatile_Write_TisRuntimeObject_m886068950(__this /* static, unused */, ___location0, ___value1, method) (( void (*) (RuntimeObject * /* static, unused */, RuntimeObject **, RuntimeObject *, const RuntimeMethod*))Volatile_Write_TisRuntimeObject_m886068950_gshared)(__this /* static, unused */, ___location0, ___value1, method)
// System.Void System.Threading.Monitor::Exit(System.Object)
extern "C" void Monitor_Exit_m3585316909 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Delegate::op_Equality(System.Delegate,System.Delegate)
extern "C" bool Delegate_op_Equality_m1690449587 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * ___d10, Delegate_t1188392813 * ___d21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
extern "C" Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 ___handle0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Activator::CreateInstance(System.Type)
extern "C" RuntimeObject * Activator_CreateInstance_m3631483688 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.MissingMemberException::.ctor(System.String)
extern "C" void MissingMemberException__ctor_m2571045846 (MissingMemberException_t1385081665 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
#define Buffer_1__ctor_m3439248099(__this, ___source0, method) (( void (*) (Buffer_1_t932544294 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m3439248099_gshared)(__this, ___source0, method)
// System.Void System.Linq.Buffer`1<UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
#define Buffer_1__ctor_m1836940346(__this, ___source0, method) (( void (*) (Buffer_1_t8667653 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m1836940346_gshared)(__this, ___source0, method)
// System.Void System.Linq.Buffer`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
#define Buffer_1__ctor_m2075330287(__this, ___source0, method) (( void (*) (Buffer_1_t1574751594 *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_m2075330287_gshared)(__this, ___source0, method)
// System.Exception System.Linq.Error::NotSupported()
extern "C" Exception_t * Error_NotSupported_m1072967690 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Environment::get_CurrentManagedThreadId()
extern "C" int32_t Environment_get_CurrentManagedThreadId_m3454612449 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Boolean)
#define LargeArrayBuilder_1__ctor_m2226121364(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t2440570340 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2226121364_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T)
#define LargeArrayBuilder_1_Add_m982335036(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t2440570340 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m982335036_gshared)(__this, p0, method)
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
#define LargeArrayBuilder_1_ToArray_m3030376891(__this, method) (( KeyValuePair_2U5BU5D_t118269214* (*) (LargeArrayBuilder_1_t2440570340 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m3030376891_gshared)(__this, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Boolean)
#define LargeArrayBuilder_1__ctor_m104969882(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t2990459185 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m104969882_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::Add(T)
#define LargeArrayBuilder_1_Add_m3802412589(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t2990459185 *, RuntimeObject *, const RuntimeMethod*))LargeArrayBuilder_1_Add_m3802412589_gshared)(__this, p0, method)
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Object>::ToArray()
#define LargeArrayBuilder_1_ToArray_m390648332(__this, method) (( ObjectU5BU5D_t2843939325* (*) (LargeArrayBuilder_1_t2990459185 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m390648332_gshared)(__this, method)
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::MoveNext()
#define Enumerator_MoveNext_m2875527037(__this, method) (( bool (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_MoveNext_m2875527037_gshared)(__this, method)
// !0 System.Collections.Generic.List`1/Enumerator<System.Collections.DictionaryEntry>::get_Current()
#define Enumerator_get_Current_m3966199253(__this, method) (( DictionaryEntry_t3123975638 (*) (Enumerator_t2190326961 *, const RuntimeMethod*))Enumerator_get_Current_m3966199253_gshared)(__this, method)
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
#define Enumerator_MoveNext_m2142368520(__this, method) (( bool (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_MoveNext_m2142368520_gshared)(__this, method)
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
#define Enumerator_get_Current_m337713592(__this, method) (( RuntimeObject * (*) (Enumerator_t2146457487 *, const RuntimeMethod*))Enumerator_get_Current_m337713592_gshared)(__this, method)
// System.Void System.Collections.Generic.SparseArrayBuilder`1<System.Object>::.ctor(System.Boolean)
#define SparseArrayBuilder_1__ctor_m3599075535(__this, p0, method) (( void (*) (SparseArrayBuilder_1_t3713953326 *, bool, const RuntimeMethod*))SparseArrayBuilder_1__ctor_m3599075535_gshared)(__this, p0, method)
// System.Boolean System.Collections.Generic.SparseArrayBuilder`1<System.Object>::ReserveOrAdd(System.Collections.Generic.IEnumerable`1<T>)
#define SparseArrayBuilder_1_ReserveOrAdd_m2427632886(__this, p0, method) (( bool (*) (SparseArrayBuilder_1_t3713953326 *, RuntimeObject*, const RuntimeMethod*))SparseArrayBuilder_1_ReserveOrAdd_m2427632886_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.IEnumerable`1<System.Object>>::Add(T)
#define ArrayBuilder_1_Add_m3352372406(__this, p0, method) (( void (*) (ArrayBuilder_1_t3343055733 *, RuntimeObject*, const RuntimeMethod*))ArrayBuilder_1_Add_m1469477416_gshared)(__this, p0, method)
// T[] System.Collections.Generic.SparseArrayBuilder`1<System.Object>::ToArray()
#define SparseArrayBuilder_1_ToArray_m1576911221(__this, method) (( ObjectU5BU5D_t2843939325* (*) (SparseArrayBuilder_1_t3713953326 *, const RuntimeMethod*))SparseArrayBuilder_1_ToArray_m1576911221_gshared)(__this, method)
// System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker> System.Collections.Generic.SparseArrayBuilder`1<System.Object>::get_Markers()
#define SparseArrayBuilder_1_get_Markers_m716823650(__this, method) (( ArrayBuilder_1_t4177874457 (*) (SparseArrayBuilder_1_t3713953326 *, const RuntimeMethod*))SparseArrayBuilder_1_get_Markers_m716823650_gshared)(__this, method)
// T System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker>::get_Item(System.Int32)
#define ArrayBuilder_1_get_Item_m3563499930(__this, p0, method) (( Marker_t2894777777 (*) (ArrayBuilder_1_t4177874457 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m3563499930_gshared)(__this, p0, method)
// T System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.IEnumerable`1<System.Object>>::get_Item(System.Int32)
#define ArrayBuilder_1_get_Item_m3142556344(__this, p0, method) (( RuntimeObject* (*) (ArrayBuilder_1_t3343055733 *, int32_t, const RuntimeMethod*))ArrayBuilder_1_get_Item_m2217381838_gshared)(__this, p0, method)
// System.Int32 System.Collections.Generic.Marker::get_Index()
extern "C" int32_t Marker_get_Index_m3525311458 (Marker_t2894777777 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Generic.Marker::get_Count()
extern "C" int32_t Marker_get_Count_m126194417 (Marker_t2894777777 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Generic.ArrayBuilder`1<System.Collections.Generic.Marker>::get_Count()
#define ArrayBuilder_1_get_Count_m2587795986(__this, method) (( int32_t (*) (ArrayBuilder_1_t4177874457 *, const RuntimeMethod*))ArrayBuilder_1_get_Count_m2587795986_gshared)(__this, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Object>::.ctor(System.Int32)
#define LargeArrayBuilder_1__ctor_m193325792(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t2990459185 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m193325792_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Int32)
#define LargeArrayBuilder_1__ctor_m2251031111(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3696204514 *, int32_t, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2251031111_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::Add(T)
#define LargeArrayBuilder_1_Add_m3560339651(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3696204514 *, Ray_t3785851493 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m3560339651_gshared)(__this, p0, method)
// T[] System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::ToArray()
#define LargeArrayBuilder_1_ToArray_m4051514523(__this, method) (( RayU5BU5D_t1836217960* (*) (LargeArrayBuilder_1_t3696204514 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m4051514523_gshared)(__this, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::.ctor(System.Boolean)
#define LargeArrayBuilder_1__ctor_m2700000537(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3544813491 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2700000537_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Char>::Add(T)
#define LargeArrayBuilder_1_Add_m982046608(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3544813491 *, Il2CppChar, const RuntimeMethod*))LargeArrayBuilder_1_Add_m982046608_gshared)(__this, p0, method)
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Char>::ToArray()
#define LargeArrayBuilder_1_ToArray_m1423820966(__this, method) (( CharU5BU5D_t3528271667* (*) (LargeArrayBuilder_1_t3544813491 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m1423820966_gshared)(__this, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::.ctor(System.Boolean)
#define LargeArrayBuilder_1__ctor_m3992711902(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3034328659 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m3992711902_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::Add(T)
#define LargeArrayBuilder_1_Add_m3654651254(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3034328659 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))LargeArrayBuilder_1_Add_m3654651254_gshared)(__this, p0, method)
// T[] System.Collections.Generic.LargeArrayBuilder`1<System.Collections.DictionaryEntry>::ToArray()
#define LargeArrayBuilder_1_ToArray_m880301710(__this, method) (( DictionaryEntryU5BU5D_t4217117203* (*) (LargeArrayBuilder_1_t3034328659 *, const RuntimeMethod*))LargeArrayBuilder_1_ToArray_m880301710_gshared)(__this, method)
// System.Void System.Collections.Generic.LargeArrayBuilder`1<UnityEngine.Ray>::.ctor(System.Boolean)
#define LargeArrayBuilder_1__ctor_m2621609802(__this, p0, method) (( void (*) (LargeArrayBuilder_1_t3696204514 *, bool, const RuntimeMethod*))LargeArrayBuilder_1__ctor_m2621609802_gshared)(__this, p0, method)
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::get_Current()
#define Enumerator_get_Current_m1622353285(__this, method) (( Ray_t3785851493 (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_get_Current_m1622353285_gshared)(__this, method)
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Ray>::MoveNext()
#define Enumerator_MoveNext_m1697727539(__this, method) (( bool (*) (Enumerator_t2852202816 *, const RuntimeMethod*))Enumerator_MoveNext_m1697727539_gshared)(__this, method)
// System.Void System.Comparison`1<System.Int32>::.ctor(System.Object,System.IntPtr)
#define Comparison_1__ctor_m2649066178(__this, p0, p1, method) (( void (*) (Comparison_1_t2725876932 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m2649066178_gshared)(__this, p0, p1, method)
// System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::Create(System.Comparison`1<!0>)
#define Comparer_1_Create_m3068808654(__this /* static, unused */, p0, method) (( Comparer_1_t155733339 * (*) (RuntimeObject * /* static, unused */, Comparison_1_t2725876932 *, const RuntimeMethod*))Comparer_1_Create_m3068808654_gshared)(__this /* static, unused */, p0, method)
// System.Void System.Array::Sort<System.Int32>(!!0[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!!0>)
#define Array_Sort_TisInt32_t2950945753_m263117253(__this /* static, unused */, p0, p1, p2, p3, method) (( void (*) (RuntimeObject * /* static, unused */, Int32U5BU5D_t385246372*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisInt32_t2950945753_m263117253_gshared)(__this /* static, unused */, p0, p1, p2, p3, method)
// System.Void System.Linq.Expressions.LambdaExpression::.ctor(System.Linq.Expressions.Expression)
extern "C" void LambdaExpression__ctor_m1688932709 (LambdaExpression_t3131094331 * __this, Expression_t1588164026 * ___body0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Delegate System.Linq.Expressions.Compiler.LambdaCompiler::Compile(System.Linq.Expressions.LambdaExpression)
extern "C" Delegate_t1188392813 * LambdaCompiler_Compile_m2654530048 (RuntimeObject * __this /* static, unused */, LambdaExpression_t3131094331 * ___lambda0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception System.Dynamic.Utils.ContractUtils::get_Unreachable()
extern "C" Exception_t * ContractUtils_get_Unreachable_m2799342333 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception System.Linq.Expressions.Error::ArgumentOutOfRange(System.String)
extern "C" Exception_t * Error_ArgumentOutOfRange_m1286910533 (RuntimeObject * __this /* static, unused */, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// T System.Dynamic.Utils.ExpressionUtils::ReturnObject<System.Linq.Expressions.ParameterExpression>(System.Object)
#define ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(__this /* static, unused */, ___collectionOrT0, method) (( ParameterExpression_t1118422084 * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))ExpressionUtils_ReturnObject_TisRuntimeObject_m3195170773_gshared)(__this /* static, unused */, ___collectionOrT0, method)
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Dynamic.Utils.ExpressionUtils::ReturnReadOnly(System.Linq.Expressions.IParameterProvider,System.Object&)
extern "C" ReadOnlyCollection_1_t2330998371 * ExpressionUtils_ReturnReadOnly_m918601409 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___provider0, RuntimeObject ** ___collection1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Dynamic.Utils.ExpressionUtils::ReturnReadOnly<System.Linq.Expressions.ParameterExpression>(System.Collections.Generic.IReadOnlyList`1<T>&)
#define ExpressionUtils_ReturnReadOnly_TisParameterExpression_t1118422084_m3585367294(__this /* static, unused */, ___collection0, method) (( ReadOnlyCollection_1_t2330998371 * (*) (RuntimeObject * /* static, unused */, RuntimeObject**, const RuntimeMethod*))ExpressionUtils_ReturnReadOnly_TisRuntimeObject_m2071556674_gshared)(__this /* static, unused */, ___collection0, method)
// System.String System.Linq.Expressions.LambdaExpression::get_Name()
extern "C" String_t* LambdaExpression_get_Name_m2686005759 (LambdaExpression_t3131094331 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Linq.Expressions.LambdaExpression::get_TailCall()
extern "C" bool LambdaExpression_get_TailCall_m2466890592 (LambdaExpression_t3131094331 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Linq.Expressions.ParameterExpression::.ctor(System.String)
extern "C" void ParameterExpression__ctor_m3632248322 (ParameterExpression_t1118422084 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception System.Linq.Error::ArgumentNull(System.String)
extern "C" Exception_t * Error_ArgumentNull_m219206370 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * p0, int32_t p1, RuntimeArray * p2, int32_t p3, int32_t p4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception System.Linq.Error::ArgumentOutOfRange(System.String)
extern "C" Exception_t * Error_ArgumentOutOfRange_m2535821398 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean)
extern "C" void FileSystemEnumerableIterator_1__ctor_m3232840268_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, String_t* ___path0, String_t* ___originalUserPath1, String_t* ___searchPattern2, int32_t ___searchOption3, SearchResultHandler_1_t2377980137 * ___resultHandler4, bool ___checkHost5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1__ctor_m3232840268_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
{
NullCheck((Iterator_1_t3764629478 *)__this);
(( void (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t4120301035 * L_0 = (List_1_t4120301035 *)il2cpp_codegen_object_new(List_1_t4120301035_il2cpp_TypeInfo_var);
List_1__ctor_m3635573260(L_0, /*hidden argument*/List_1__ctor_m3635573260_RuntimeMethod_var);
__this->set_searchStack_4(L_0);
String_t* L_1 = ___searchPattern2;
String_t* L_2 = (( String_t* (*) (RuntimeObject * /* static, unused */, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (String_t*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (String_t*)L_2;
String_t* L_3 = V_0;
NullCheck((String_t*)L_3);
int32_t L_4 = String_get_Length_m3847582255((String_t*)L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0028;
}
}
{
__this->set_empty_9((bool)1);
return;
}
IL_0028:
{
SearchResultHandler_1_t2377980137 * L_5 = ___resultHandler4;
__this->set__resultHandler_3(L_5);
int32_t L_6 = ___searchOption3;
__this->set_searchOption_11(L_6);
String_t* L_7 = ___path0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_8 = Path_GetFullPathInternal_m1405359470(NULL /*static, unused*/, (String_t*)L_7, /*hidden argument*/NULL);
__this->set_fullPath_12(L_8);
String_t* L_9 = (String_t*)__this->get_fullPath_12();
String_t* L_10 = V_0;
String_t* L_11 = (( String_t* (*) (RuntimeObject * /* static, unused */, String_t*, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_1 = (String_t*)L_11;
String_t* L_12 = V_1;
String_t* L_13 = Path_GetDirectoryName_m3496866581(NULL /*static, unused*/, (String_t*)L_12, /*hidden argument*/NULL);
__this->set_normalizedSearchPath_13(L_13);
StringU5BU5D_t1281789340* L_14 = (StringU5BU5D_t1281789340*)((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)2));
String_t* L_15 = (String_t*)__this->get_fullPath_12();
String_t* L_16 = Directory_GetDemandDir_m3334461828(NULL /*static, unused*/, (String_t*)L_15, (bool)1, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_16);
String_t* L_17 = (String_t*)__this->get_normalizedSearchPath_13();
String_t* L_18 = Directory_GetDemandDir_m3334461828(NULL /*static, unused*/, (String_t*)L_17, (bool)1, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_18);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_18);
bool L_19 = ___checkHost5;
__this->set__checkHost_14(L_19);
String_t* L_20 = V_1;
String_t* L_21 = (String_t*)__this->get_normalizedSearchPath_13();
String_t* L_22 = (( String_t* (*) (RuntimeObject * /* static, unused */, String_t*, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (String_t*)L_20, (String_t*)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
__this->set_searchCriteria_6(L_22);
String_t* L_23 = V_0;
String_t* L_24 = Path_GetDirectoryName_m3496866581(NULL /*static, unused*/, (String_t*)L_23, /*hidden argument*/NULL);
V_2 = (String_t*)L_24;
String_t* L_25 = ___originalUserPath1;
V_3 = (String_t*)L_25;
String_t* L_26 = V_2;
if (!L_26)
{
goto IL_00b6;
}
}
{
String_t* L_27 = V_2;
NullCheck((String_t*)L_27);
int32_t L_28 = String_get_Length_m3847582255((String_t*)L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_00b6;
}
}
{
String_t* L_29 = V_3;
String_t* L_30 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_31 = Path_Combine_m3389272516(NULL /*static, unused*/, (String_t*)L_29, (String_t*)L_30, /*hidden argument*/NULL);
V_3 = (String_t*)L_31;
}
IL_00b6:
{
String_t* L_32 = V_3;
__this->set_userPath_10(L_32);
String_t* L_33 = (String_t*)__this->get_normalizedSearchPath_13();
String_t* L_34 = (String_t*)__this->get_userPath_10();
int32_t L_35 = ___searchOption3;
SearchData_t2648226293 * L_36 = (SearchData_t2648226293 *)il2cpp_codegen_object_new(SearchData_t2648226293_il2cpp_TypeInfo_var);
SearchData__ctor_m4162952925(L_36, (String_t*)L_33, (String_t*)L_34, (int32_t)L_35, /*hidden argument*/NULL);
__this->set_searchData_5(L_36);
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::CommonInit()
extern "C" void FileSystemEnumerableIterator_1_CommonInit_m3137623192_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_CommonInit_m3137623192_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
WIN32_FIND_DATA_t4232796738 * V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
SearchResult_t2600365382 * V_4 = NULL;
{
SearchData_t2648226293 * L_0 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_0);
String_t* L_1 = (String_t*)L_0->get_fullPath_0();
String_t* L_2 = (String_t*)__this->get_searchCriteria_6();
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_3 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_1, (String_t*)L_2, /*hidden argument*/NULL);
V_0 = (String_t*)L_3;
WIN32_FIND_DATA_t4232796738 * L_4 = (WIN32_FIND_DATA_t4232796738 *)il2cpp_codegen_object_new(WIN32_FIND_DATA_t4232796738_il2cpp_TypeInfo_var);
WIN32_FIND_DATA__ctor_m1509629805(L_4, /*hidden argument*/NULL);
V_1 = (WIN32_FIND_DATA_t4232796738 *)L_4;
String_t* L_5 = V_0;
WIN32_FIND_DATA_t4232796738 * L_6 = V_1;
NullCheck(L_6);
String_t** L_7 = (String_t**)L_6->get_address_of_cFileName_1();
WIN32_FIND_DATA_t4232796738 * L_8 = V_1;
NullCheck(L_8);
int32_t* L_9 = (int32_t*)L_8->get_address_of_dwFileAttributes_0();
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_10 = MonoIO_FindFirstFile_m1358799729(NULL /*static, unused*/, (String_t*)L_5, (String_t**)(String_t**)L_7, (int32_t*)(int32_t*)L_9, (int32_t*)(int32_t*)(&V_2), /*hidden argument*/NULL);
SafeFindHandle_t2068834300 * L_11 = (SafeFindHandle_t2068834300 *)il2cpp_codegen_object_new(SafeFindHandle_t2068834300_il2cpp_TypeInfo_var);
SafeFindHandle__ctor_m3833665175(L_11, (intptr_t)L_10, /*hidden argument*/NULL);
__this->set__hnd_7(L_11);
SafeFindHandle_t2068834300 * L_12 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_12);
bool L_13 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Runtime.InteropServices.SafeHandle::get_IsInvalid() */, (SafeHandle_t3273388951 *)L_12);
if (!L_13)
{
goto IL_007c;
}
}
{
int32_t L_14 = V_2;
V_3 = (int32_t)L_14;
int32_t L_15 = V_3;
if ((((int32_t)L_15) == ((int32_t)2)))
{
goto IL_0068;
}
}
{
int32_t L_16 = V_3;
if ((((int32_t)L_16) == ((int32_t)((int32_t)18))))
{
goto IL_0068;
}
}
{
int32_t L_17 = V_3;
SearchData_t2648226293 * L_18 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_18);
String_t* L_19 = (String_t*)L_18->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, int32_t, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (int32_t)L_17, (String_t*)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
goto IL_007c;
}
IL_0068:
{
SearchData_t2648226293 * L_20 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_searchOption_2();
__this->set_empty_9((bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0));
}
IL_007c:
{
SearchData_t2648226293 * L_22 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_searchOption_2();
if (L_23)
{
goto IL_00cf;
}
}
{
bool L_24 = (bool)__this->get_empty_9();
if (!L_24)
{
goto IL_009d;
}
}
{
SafeFindHandle_t2068834300 * L_25 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_25);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_25, /*hidden argument*/NULL);
return;
}
IL_009d:
{
SearchData_t2648226293 * L_26 = (SearchData_t2648226293 *)__this->get_searchData_5();
WIN32_FIND_DATA_t4232796738 * L_27 = V_1;
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
SearchResult_t2600365382 * L_28 = (( SearchResult_t2600365382 * (*) (FileSystemEnumerableIterator_1_t25181536 *, SearchData_t2648226293 *, WIN32_FIND_DATA_t4232796738 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (SearchData_t2648226293 *)L_26, (WIN32_FIND_DATA_t4232796738 *)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_4 = (SearchResult_t2600365382 *)L_28;
SearchResultHandler_1_t2377980137 * L_29 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_30 = V_4;
NullCheck((SearchResultHandler_1_t2377980137 *)L_29);
bool L_31 = VirtFuncInvoker1< bool, SearchResult_t2600365382 * >::Invoke(4 /* System.Boolean System.IO.SearchResultHandler`1<System.Object>::IsResultIncluded(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_29, (SearchResult_t2600365382 *)L_30);
if (!L_31)
{
goto IL_00eb;
}
}
{
SearchResultHandler_1_t2377980137 * L_32 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_33 = V_4;
NullCheck((SearchResultHandler_1_t2377980137 *)L_32);
RuntimeObject * L_34 = VirtFuncInvoker1< RuntimeObject *, SearchResult_t2600365382 * >::Invoke(5 /* TSource System.IO.SearchResultHandler`1<System.Object>::CreateObject(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_32, (SearchResult_t2600365382 *)L_33);
((Iterator_1_t3764629478 *)__this)->set_current_2(L_34);
return;
}
IL_00cf:
{
SafeFindHandle_t2068834300 * L_35 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_35);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_35, /*hidden argument*/NULL);
List_1_t4120301035 * L_36 = (List_1_t4120301035 *)__this->get_searchStack_4();
SearchData_t2648226293 * L_37 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck((List_1_t4120301035 *)L_36);
List_1_Add_m1559120923((List_1_t4120301035 *)L_36, (SearchData_t2648226293 *)L_37, /*hidden argument*/List_1_Add_m1559120923_RuntimeMethod_var);
}
IL_00eb:
{
return;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean)
extern "C" void FileSystemEnumerableIterator_1__ctor_m2628860621_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, String_t* ___fullPath0, String_t* ___normalizedSearchPath1, String_t* ___searchCriteria2, String_t* ___userPath3, int32_t ___searchOption4, SearchResultHandler_1_t2377980137 * ___resultHandler5, bool ___checkHost6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1__ctor_m2628860621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Iterator_1_t3764629478 *)__this);
(( void (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
String_t* L_0 = ___fullPath0;
__this->set_fullPath_12(L_0);
String_t* L_1 = ___normalizedSearchPath1;
__this->set_normalizedSearchPath_13(L_1);
String_t* L_2 = ___searchCriteria2;
__this->set_searchCriteria_6(L_2);
SearchResultHandler_1_t2377980137 * L_3 = ___resultHandler5;
__this->set__resultHandler_3(L_3);
String_t* L_4 = ___userPath3;
__this->set_userPath_10(L_4);
int32_t L_5 = ___searchOption4;
__this->set_searchOption_11(L_5);
bool L_6 = ___checkHost6;
__this->set__checkHost_14(L_6);
List_1_t4120301035 * L_7 = (List_1_t4120301035 *)il2cpp_codegen_object_new(List_1_t4120301035_il2cpp_TypeInfo_var);
List_1__ctor_m3635573260(L_7, /*hidden argument*/List_1__ctor_m3635573260_RuntimeMethod_var);
__this->set_searchStack_4(L_7);
String_t* L_8 = ___searchCriteria2;
if (!L_8)
{
goto IL_0079;
}
}
{
StringU5BU5D_t1281789340* L_9 = (StringU5BU5D_t1281789340*)((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)2));
String_t* L_10 = ___fullPath0;
String_t* L_11 = Directory_GetDemandDir_m3334461828(NULL /*static, unused*/, (String_t*)L_10, (bool)1, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_11);
String_t* L_12 = ___normalizedSearchPath1;
String_t* L_13 = Directory_GetDemandDir_m3334461828(NULL /*static, unused*/, (String_t*)L_12, (bool)1, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_13);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_13);
String_t* L_14 = ___normalizedSearchPath1;
String_t* L_15 = ___userPath3;
int32_t L_16 = ___searchOption4;
SearchData_t2648226293 * L_17 = (SearchData_t2648226293 *)il2cpp_codegen_object_new(SearchData_t2648226293_il2cpp_TypeInfo_var);
SearchData__ctor_m4162952925(L_17, (String_t*)L_14, (String_t*)L_15, (int32_t)L_16, /*hidden argument*/NULL);
__this->set_searchData_5(L_17);
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return;
}
IL_0079:
{
__this->set_empty_9((bool)1);
return;
}
}
// System.IO.Iterator`1<TSource> System.IO.FileSystemEnumerableIterator`1<System.Object>::Clone()
extern "C" Iterator_1_t3764629478 * FileSystemEnumerableIterator_1_Clone_m2698474989_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = (String_t*)__this->get_fullPath_12();
String_t* L_1 = (String_t*)__this->get_normalizedSearchPath_13();
String_t* L_2 = (String_t*)__this->get_searchCriteria_6();
String_t* L_3 = (String_t*)__this->get_userPath_10();
int32_t L_4 = (int32_t)__this->get_searchOption_11();
SearchResultHandler_1_t2377980137 * L_5 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
bool L_6 = (bool)__this->get__checkHost_14();
FileSystemEnumerableIterator_1_t25181536 * L_7 = (FileSystemEnumerableIterator_1_t25181536 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, String_t*, String_t*, String_t*, String_t*, int32_t, SearchResultHandler_1_t2377980137 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_7, (String_t*)L_0, (String_t*)L_1, (String_t*)L_2, (String_t*)L_3, (int32_t)L_4, (SearchResultHandler_1_t2377980137 *)L_5, (bool)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
return L_7;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::Dispose(System.Boolean)
extern "C" void FileSystemEnumerableIterator_1_Dispose_m1208222860_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, bool ___disposing0, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
SafeFindHandle_t2068834300 * L_0 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
if (!L_0)
{
goto IL_0013;
}
}
IL_0008:
{
SafeFindHandle_t2068834300 * L_1 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_1);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_1, /*hidden argument*/NULL);
}
IL_0013:
{
IL2CPP_LEAVE(0x1D, FINALLY_0015);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0015;
}
FINALLY_0015:
{ // begin finally (depth: 1)
bool L_2 = ___disposing0;
NullCheck((Iterator_1_t3764629478 *)__this);
(( void (*) (Iterator_1_t3764629478 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Iterator_1_t3764629478 *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
IL2CPP_END_FINALLY(21)
} // end finally (depth: 1)
IL2CPP_CLEANUP(21)
{
IL2CPP_JUMP_TBL(0x1D, IL_001d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001d:
{
return;
}
}
// System.Boolean System.IO.FileSystemEnumerableIterator`1<System.Object>::MoveNext()
extern "C" bool FileSystemEnumerableIterator_1_MoveNext_m808852106_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_MoveNext_m808852106_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WIN32_FIND_DATA_t4232796738 * V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
int32_t V_3 = 0;
SearchResult_t2600365382 * V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
SearchResult_t2600365382 * V_8 = NULL;
{
WIN32_FIND_DATA_t4232796738 * L_0 = (WIN32_FIND_DATA_t4232796738 *)il2cpp_codegen_object_new(WIN32_FIND_DATA_t4232796738_il2cpp_TypeInfo_var);
WIN32_FIND_DATA__ctor_m1509629805(L_0, /*hidden argument*/NULL);
V_0 = (WIN32_FIND_DATA_t4232796738 *)L_0;
int32_t L_1 = (int32_t)((Iterator_1_t3764629478 *)__this)->get_state_1();
V_1 = (int32_t)L_1;
int32_t L_2 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))
{
case 0:
{
goto IL_002a;
}
case 1:
{
goto IL_0175;
}
case 2:
{
goto IL_0192;
}
case 3:
{
goto IL_0278;
}
}
}
{
goto IL_027e;
}
IL_002a:
{
bool L_3 = (bool)__this->get_empty_9();
if (!L_3)
{
goto IL_003e;
}
}
{
((Iterator_1_t3764629478 *)__this)->set_state_1(4);
goto IL_0278;
}
IL_003e:
{
SearchData_t2648226293 * L_4 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_4);
int32_t L_5 = (int32_t)L_4->get_searchOption_2();
if (L_5)
{
goto IL_0064;
}
}
{
((Iterator_1_t3764629478 *)__this)->set_state_1(3);
RuntimeObject * L_6 = (RuntimeObject *)((Iterator_1_t3764629478 *)__this)->get_current_2();
if (!L_6)
{
goto IL_0192;
}
}
{
return (bool)1;
}
IL_0064:
{
((Iterator_1_t3764629478 *)__this)->set_state_1(2);
goto IL_0175;
}
IL_0070:
{
List_1_t4120301035 * L_7 = (List_1_t4120301035 *)__this->get_searchStack_4();
NullCheck((List_1_t4120301035 *)L_7);
SearchData_t2648226293 * L_8 = List_1_get_Item_m3638502404((List_1_t4120301035 *)L_7, (int32_t)0, /*hidden argument*/List_1_get_Item_m3638502404_RuntimeMethod_var);
__this->set_searchData_5(L_8);
List_1_t4120301035 * L_9 = (List_1_t4120301035 *)__this->get_searchStack_4();
NullCheck((List_1_t4120301035 *)L_9);
List_1_RemoveAt_m762780374((List_1_t4120301035 *)L_9, (int32_t)0, /*hidden argument*/List_1_RemoveAt_m762780374_RuntimeMethod_var);
SearchData_t2648226293 * L_10 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, SearchData_t2648226293 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (SearchData_t2648226293 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
SearchData_t2648226293 * L_11 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_11);
String_t* L_12 = (String_t*)L_11->get_fullPath_0();
String_t* L_13 = (String_t*)__this->get_searchCriteria_6();
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_14 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_12, (String_t*)L_13, /*hidden argument*/NULL);
V_2 = (String_t*)L_14;
String_t* L_15 = V_2;
WIN32_FIND_DATA_t4232796738 * L_16 = V_0;
NullCheck(L_16);
String_t** L_17 = (String_t**)L_16->get_address_of_cFileName_1();
WIN32_FIND_DATA_t4232796738 * L_18 = V_0;
NullCheck(L_18);
int32_t* L_19 = (int32_t*)L_18->get_address_of_dwFileAttributes_0();
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_20 = MonoIO_FindFirstFile_m1358799729(NULL /*static, unused*/, (String_t*)L_15, (String_t**)(String_t**)L_17, (int32_t*)(int32_t*)L_19, (int32_t*)(int32_t*)(&V_3), /*hidden argument*/NULL);
SafeFindHandle_t2068834300 * L_21 = (SafeFindHandle_t2068834300 *)il2cpp_codegen_object_new(SafeFindHandle_t2068834300_il2cpp_TypeInfo_var);
SafeFindHandle__ctor_m3833665175(L_21, (intptr_t)L_20, /*hidden argument*/NULL);
__this->set__hnd_7(L_21);
SafeFindHandle_t2068834300 * L_22 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_22);
bool L_23 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Runtime.InteropServices.SafeHandle::get_IsInvalid() */, (SafeHandle_t3273388951 *)L_22);
if (!L_23)
{
goto IL_0114;
}
}
{
int32_t L_24 = V_3;
V_5 = (int32_t)L_24;
int32_t L_25 = V_5;
if ((((int32_t)L_25) == ((int32_t)2)))
{
goto IL_0175;
}
}
{
int32_t L_26 = V_5;
if ((((int32_t)L_26) == ((int32_t)((int32_t)18))))
{
goto IL_0175;
}
}
{
int32_t L_27 = V_5;
if ((((int32_t)L_27) == ((int32_t)3)))
{
goto IL_0175;
}
}
{
SafeFindHandle_t2068834300 * L_28 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_28);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_28, /*hidden argument*/NULL);
int32_t L_29 = V_5;
SearchData_t2648226293 * L_30 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_30);
String_t* L_31 = (String_t*)L_30->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, int32_t, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (int32_t)L_29, (String_t*)L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0114:
{
((Iterator_1_t3764629478 *)__this)->set_state_1(3);
__this->set_needsParentPathDiscoveryDemand_8((bool)1);
SearchData_t2648226293 * L_32 = (SearchData_t2648226293 *)__this->get_searchData_5();
WIN32_FIND_DATA_t4232796738 * L_33 = V_0;
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
SearchResult_t2600365382 * L_34 = (( SearchResult_t2600365382 * (*) (FileSystemEnumerableIterator_1_t25181536 *, SearchData_t2648226293 *, WIN32_FIND_DATA_t4232796738 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (SearchData_t2648226293 *)L_32, (WIN32_FIND_DATA_t4232796738 *)L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_4 = (SearchResult_t2600365382 *)L_34;
SearchResultHandler_1_t2377980137 * L_35 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_36 = V_4;
NullCheck((SearchResultHandler_1_t2377980137 *)L_35);
bool L_37 = VirtFuncInvoker1< bool, SearchResult_t2600365382 * >::Invoke(4 /* System.Boolean System.IO.SearchResultHandler`1<System.Object>::IsResultIncluded(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_35, (SearchResult_t2600365382 *)L_36);
if (!L_37)
{
goto IL_0192;
}
}
{
bool L_38 = (bool)__this->get_needsParentPathDiscoveryDemand_8();
if (!L_38)
{
goto IL_0160;
}
}
{
SearchData_t2648226293 * L_39 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_39);
String_t* L_40 = (String_t*)L_39->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (String_t*)L_40, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
__this->set_needsParentPathDiscoveryDemand_8((bool)0);
}
IL_0160:
{
SearchResultHandler_1_t2377980137 * L_41 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_42 = V_4;
NullCheck((SearchResultHandler_1_t2377980137 *)L_41);
RuntimeObject * L_43 = VirtFuncInvoker1< RuntimeObject *, SearchResult_t2600365382 * >::Invoke(5 /* TSource System.IO.SearchResultHandler`1<System.Object>::CreateObject(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_41, (SearchResult_t2600365382 *)L_42);
((Iterator_1_t3764629478 *)__this)->set_current_2(L_43);
return (bool)1;
}
IL_0175:
{
List_1_t4120301035 * L_44 = (List_1_t4120301035 *)__this->get_searchStack_4();
NullCheck((List_1_t4120301035 *)L_44);
int32_t L_45 = List_1_get_Count_m958122929((List_1_t4120301035 *)L_44, /*hidden argument*/List_1_get_Count_m958122929_RuntimeMethod_var);
if ((((int32_t)L_45) > ((int32_t)0)))
{
goto IL_0070;
}
}
{
((Iterator_1_t3764629478 *)__this)->set_state_1(4);
goto IL_0278;
}
IL_0192:
{
SearchData_t2648226293 * L_46 = (SearchData_t2648226293 *)__this->get_searchData_5();
if (!L_46)
{
goto IL_0256;
}
}
{
SafeFindHandle_t2068834300 * L_47 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
if (!L_47)
{
goto IL_0256;
}
}
{
goto IL_01fd;
}
IL_01aa:
{
SearchData_t2648226293 * L_48 = (SearchData_t2648226293 *)__this->get_searchData_5();
WIN32_FIND_DATA_t4232796738 * L_49 = V_0;
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
SearchResult_t2600365382 * L_50 = (( SearchResult_t2600365382 * (*) (FileSystemEnumerableIterator_1_t25181536 *, SearchData_t2648226293 *, WIN32_FIND_DATA_t4232796738 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (SearchData_t2648226293 *)L_48, (WIN32_FIND_DATA_t4232796738 *)L_49, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_8 = (SearchResult_t2600365382 *)L_50;
SearchResultHandler_1_t2377980137 * L_51 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_52 = V_8;
NullCheck((SearchResultHandler_1_t2377980137 *)L_51);
bool L_53 = VirtFuncInvoker1< bool, SearchResult_t2600365382 * >::Invoke(4 /* System.Boolean System.IO.SearchResultHandler`1<System.Object>::IsResultIncluded(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_51, (SearchResult_t2600365382 *)L_52);
if (!L_53)
{
goto IL_01fd;
}
}
{
bool L_54 = (bool)__this->get_needsParentPathDiscoveryDemand_8();
if (!L_54)
{
goto IL_01e8;
}
}
{
SearchData_t2648226293 * L_55 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_55);
String_t* L_56 = (String_t*)L_55->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (String_t*)L_56, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
__this->set_needsParentPathDiscoveryDemand_8((bool)0);
}
IL_01e8:
{
SearchResultHandler_1_t2377980137 * L_57 = (SearchResultHandler_1_t2377980137 *)__this->get__resultHandler_3();
SearchResult_t2600365382 * L_58 = V_8;
NullCheck((SearchResultHandler_1_t2377980137 *)L_57);
RuntimeObject * L_59 = VirtFuncInvoker1< RuntimeObject *, SearchResult_t2600365382 * >::Invoke(5 /* TSource System.IO.SearchResultHandler`1<System.Object>::CreateObject(System.IO.SearchResult) */, (SearchResultHandler_1_t2377980137 *)L_57, (SearchResult_t2600365382 *)L_58);
((Iterator_1_t3764629478 *)__this)->set_current_2(L_59);
return (bool)1;
}
IL_01fd:
{
SafeFindHandle_t2068834300 * L_60 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_60);
intptr_t L_61 = SafeHandle_DangerousGetHandle_m3697436134((SafeHandle_t3273388951 *)L_60, /*hidden argument*/NULL);
WIN32_FIND_DATA_t4232796738 * L_62 = V_0;
NullCheck(L_62);
String_t** L_63 = (String_t**)L_62->get_address_of_cFileName_1();
WIN32_FIND_DATA_t4232796738 * L_64 = V_0;
NullCheck(L_64);
int32_t* L_65 = (int32_t*)L_64->get_address_of_dwFileAttributes_0();
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
bool L_66 = MonoIO_FindNextFile_m3163114833(NULL /*static, unused*/, (intptr_t)L_61, (String_t**)(String_t**)L_63, (int32_t*)(int32_t*)L_65, (int32_t*)(int32_t*)(&V_6), /*hidden argument*/NULL);
if (L_66)
{
goto IL_01aa;
}
}
{
int32_t L_67 = V_6;
V_7 = (int32_t)L_67;
SafeFindHandle_t2068834300 * L_68 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
if (!L_68)
{
goto IL_0234;
}
}
{
SafeFindHandle_t2068834300 * L_69 = (SafeFindHandle_t2068834300 *)__this->get__hnd_7();
NullCheck((SafeHandle_t3273388951 *)L_69);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_69, /*hidden argument*/NULL);
}
IL_0234:
{
int32_t L_70 = V_7;
if (!L_70)
{
goto IL_0256;
}
}
{
int32_t L_71 = V_7;
if ((((int32_t)L_71) == ((int32_t)((int32_t)18))))
{
goto IL_0256;
}
}
{
int32_t L_72 = V_7;
if ((((int32_t)L_72) == ((int32_t)2)))
{
goto IL_0256;
}
}
{
int32_t L_73 = V_7;
SearchData_t2648226293 * L_74 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_74);
String_t* L_75 = (String_t*)L_74->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, int32_t, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (int32_t)L_73, (String_t*)L_75, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0256:
{
SearchData_t2648226293 * L_76 = (SearchData_t2648226293 *)__this->get_searchData_5();
NullCheck(L_76);
int32_t L_77 = (int32_t)L_76->get_searchOption_2();
if (L_77)
{
goto IL_026c;
}
}
{
((Iterator_1_t3764629478 *)__this)->set_state_1(4);
goto IL_0278;
}
IL_026c:
{
((Iterator_1_t3764629478 *)__this)->set_state_1(2);
goto IL_0175;
}
IL_0278:
{
NullCheck((Iterator_1_t3764629478 *)__this);
(( void (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
}
IL_027e:
{
return (bool)0;
}
}
// System.IO.SearchResult System.IO.FileSystemEnumerableIterator`1<System.Object>::CreateSearchResult(System.IO.Directory/SearchData,Microsoft.Win32.Win32Native/WIN32_FIND_DATA)
extern "C" SearchResult_t2600365382 * FileSystemEnumerableIterator_1_CreateSearchResult_m1408355418_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, SearchData_t2648226293 * ___localSearchData0, WIN32_FIND_DATA_t4232796738 * ___findData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_CreateSearchResult_m1408355418_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
SearchData_t2648226293 * L_0 = ___localSearchData0;
NullCheck(L_0);
String_t* L_1 = (String_t*)L_0->get_userPath_1();
WIN32_FIND_DATA_t4232796738 * L_2 = ___findData1;
NullCheck(L_2);
String_t* L_3 = (String_t*)L_2->get_cFileName_1();
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_4 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_1, (String_t*)L_3, /*hidden argument*/NULL);
V_0 = (String_t*)L_4;
SearchData_t2648226293 * L_5 = ___localSearchData0;
NullCheck(L_5);
String_t* L_6 = (String_t*)L_5->get_fullPath_0();
WIN32_FIND_DATA_t4232796738 * L_7 = ___findData1;
NullCheck(L_7);
String_t* L_8 = (String_t*)L_7->get_cFileName_1();
String_t* L_9 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_6, (String_t*)L_8, /*hidden argument*/NULL);
String_t* L_10 = V_0;
WIN32_FIND_DATA_t4232796738 * L_11 = ___findData1;
SearchResult_t2600365382 * L_12 = (SearchResult_t2600365382 *)il2cpp_codegen_object_new(SearchResult_t2600365382_il2cpp_TypeInfo_var);
SearchResult__ctor_m203165125(L_12, (String_t*)L_9, (String_t*)L_10, (WIN32_FIND_DATA_t4232796738 *)L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::HandleError(System.Int32,System.String)
extern "C" void FileSystemEnumerableIterator_1_HandleError_m3891558950_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, int32_t ___hr0, String_t* ___path1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t3764629478 *)__this);
(( void (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
int32_t L_0 = ___hr0;
String_t* L_1 = ___path1;
__Error_WinIOError_m2555862149(NULL /*static, unused*/, (int32_t)L_0, (String_t*)L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::AddSearchableDirsToStack(System.IO.Directory/SearchData)
extern "C" void FileSystemEnumerableIterator_1_AddSearchableDirsToStack_m2987866814_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, SearchData_t2648226293 * ___localSearchData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_AddSearchableDirsToStack_m2987866814_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
SafeFindHandle_t2068834300 * V_1 = NULL;
WIN32_FIND_DATA_t4232796738 * V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
String_t* V_6 = NULL;
int32_t V_7 = 0;
SearchData_t2648226293 * V_8 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
SearchData_t2648226293 * L_0 = ___localSearchData0;
NullCheck(L_0);
String_t* L_1 = (String_t*)L_0->get_fullPath_0();
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_2 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_1, (String_t*)_stringLiteral3452614534, /*hidden argument*/NULL);
V_0 = (String_t*)L_2;
V_1 = (SafeFindHandle_t2068834300 *)NULL;
WIN32_FIND_DATA_t4232796738 * L_3 = (WIN32_FIND_DATA_t4232796738 *)il2cpp_codegen_object_new(WIN32_FIND_DATA_t4232796738_il2cpp_TypeInfo_var);
WIN32_FIND_DATA__ctor_m1509629805(L_3, /*hidden argument*/NULL);
V_2 = (WIN32_FIND_DATA_t4232796738 *)L_3;
}
IL_0019:
try
{ // begin try (depth: 1)
{
String_t* L_4 = V_0;
WIN32_FIND_DATA_t4232796738 * L_5 = V_2;
NullCheck(L_5);
String_t** L_6 = (String_t**)L_5->get_address_of_cFileName_1();
WIN32_FIND_DATA_t4232796738 * L_7 = V_2;
NullCheck(L_7);
int32_t* L_8 = (int32_t*)L_7->get_address_of_dwFileAttributes_0();
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_9 = MonoIO_FindFirstFile_m1358799729(NULL /*static, unused*/, (String_t*)L_4, (String_t**)(String_t**)L_6, (int32_t*)(int32_t*)L_8, (int32_t*)(int32_t*)(&V_3), /*hidden argument*/NULL);
SafeFindHandle_t2068834300 * L_10 = (SafeFindHandle_t2068834300 *)il2cpp_codegen_object_new(SafeFindHandle_t2068834300_il2cpp_TypeInfo_var);
SafeFindHandle__ctor_m3833665175(L_10, (intptr_t)L_9, /*hidden argument*/NULL);
V_1 = (SafeFindHandle_t2068834300 *)L_10;
SafeFindHandle_t2068834300 * L_11 = V_1;
NullCheck((SafeHandle_t3273388951 *)L_11);
bool L_12 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Runtime.InteropServices.SafeHandle::get_IsInvalid() */, (SafeHandle_t3273388951 *)L_11);
if (!L_12)
{
goto IL_0061;
}
}
IL_003b:
{
int32_t L_13 = V_3;
V_5 = (int32_t)L_13;
int32_t L_14 = V_5;
if ((((int32_t)L_14) == ((int32_t)2)))
{
goto IL_004e;
}
}
IL_0043:
{
int32_t L_15 = V_5;
if ((((int32_t)L_15) == ((int32_t)((int32_t)18))))
{
goto IL_004e;
}
}
IL_0049:
{
int32_t L_16 = V_5;
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_0053;
}
}
IL_004e:
{
IL2CPP_LEAVE(0xDE, FINALLY_00d4);
}
IL_0053:
{
int32_t L_17 = V_5;
SearchData_t2648226293 * L_18 = ___localSearchData0;
NullCheck(L_18);
String_t* L_19 = (String_t*)L_18->get_fullPath_0();
NullCheck((FileSystemEnumerableIterator_1_t25181536 *)__this);
(( void (*) (FileSystemEnumerableIterator_1_t25181536 *, int32_t, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((FileSystemEnumerableIterator_1_t25181536 *)__this, (int32_t)L_17, (String_t*)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0061:
{
V_4 = (int32_t)0;
}
IL_0064:
{
WIN32_FIND_DATA_t4232796738 * L_20 = V_2;
bool L_21 = FileSystemEnumerableHelpers_IsDir_m2524844520(NULL /*static, unused*/, (WIN32_FIND_DATA_t4232796738 *)L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_00b7;
}
}
IL_006c:
{
SearchData_t2648226293 * L_22 = ___localSearchData0;
NullCheck(L_22);
String_t* L_23 = (String_t*)L_22->get_fullPath_0();
WIN32_FIND_DATA_t4232796738 * L_24 = V_2;
NullCheck(L_24);
String_t* L_25 = (String_t*)L_24->get_cFileName_1();
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_26 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_23, (String_t*)L_25, /*hidden argument*/NULL);
SearchData_t2648226293 * L_27 = ___localSearchData0;
NullCheck(L_27);
String_t* L_28 = (String_t*)L_27->get_userPath_1();
WIN32_FIND_DATA_t4232796738 * L_29 = V_2;
NullCheck(L_29);
String_t* L_30 = (String_t*)L_29->get_cFileName_1();
String_t* L_31 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_28, (String_t*)L_30, /*hidden argument*/NULL);
V_6 = (String_t*)L_31;
SearchData_t2648226293 * L_32 = ___localSearchData0;
NullCheck(L_32);
int32_t L_33 = (int32_t)L_32->get_searchOption_2();
V_7 = (int32_t)L_33;
String_t* L_34 = V_6;
int32_t L_35 = V_7;
SearchData_t2648226293 * L_36 = (SearchData_t2648226293 *)il2cpp_codegen_object_new(SearchData_t2648226293_il2cpp_TypeInfo_var);
SearchData__ctor_m4162952925(L_36, (String_t*)L_26, (String_t*)L_34, (int32_t)L_35, /*hidden argument*/NULL);
V_8 = (SearchData_t2648226293 *)L_36;
List_1_t4120301035 * L_37 = (List_1_t4120301035 *)__this->get_searchStack_4();
int32_t L_38 = V_4;
int32_t L_39 = (int32_t)L_38;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
SearchData_t2648226293 * L_40 = V_8;
NullCheck((List_1_t4120301035 *)L_37);
List_1_Insert_m2523363920((List_1_t4120301035 *)L_37, (int32_t)L_39, (SearchData_t2648226293 *)L_40, /*hidden argument*/List_1_Insert_m2523363920_RuntimeMethod_var);
}
IL_00b7:
{
SafeFindHandle_t2068834300 * L_41 = V_1;
NullCheck((SafeHandle_t3273388951 *)L_41);
intptr_t L_42 = SafeHandle_DangerousGetHandle_m3697436134((SafeHandle_t3273388951 *)L_41, /*hidden argument*/NULL);
WIN32_FIND_DATA_t4232796738 * L_43 = V_2;
NullCheck(L_43);
String_t** L_44 = (String_t**)L_43->get_address_of_cFileName_1();
WIN32_FIND_DATA_t4232796738 * L_45 = V_2;
NullCheck(L_45);
int32_t* L_46 = (int32_t*)L_45->get_address_of_dwFileAttributes_0();
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
bool L_47 = MonoIO_FindNextFile_m3163114833(NULL /*static, unused*/, (intptr_t)L_42, (String_t**)(String_t**)L_44, (int32_t*)(int32_t*)L_46, (int32_t*)(int32_t*)(&V_3), /*hidden argument*/NULL);
if (L_47)
{
goto IL_0064;
}
}
IL_00d2:
{
IL2CPP_LEAVE(0xDE, FINALLY_00d4);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00d4;
}
FINALLY_00d4:
{ // begin finally (depth: 1)
{
SafeFindHandle_t2068834300 * L_48 = V_1;
if (!L_48)
{
goto IL_00dd;
}
}
IL_00d7:
{
SafeFindHandle_t2068834300 * L_49 = V_1;
NullCheck((SafeHandle_t3273388951 *)L_49);
SafeHandle_Dispose_m817995135((SafeHandle_t3273388951 *)L_49, /*hidden argument*/NULL);
}
IL_00dd:
{
IL2CPP_END_FINALLY(212)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(212)
{
IL2CPP_JUMP_TBL(0xDE, IL_00de)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00de:
{
return;
}
}
// System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::DoDemand(System.String)
extern "C" void FileSystemEnumerableIterator_1_DoDemand_m3309936201_gshared (FileSystemEnumerableIterator_1_t25181536 * __this, String_t* ___fullPathToDemand0, const RuntimeMethod* method)
{
{
return;
}
}
// System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::NormalizeSearchPattern(System.String)
extern "C" String_t* FileSystemEnumerableIterator_1_NormalizeSearchPattern_m1627217068_gshared (RuntimeObject * __this /* static, unused */, String_t* ___searchPattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_NormalizeSearchPattern_m1627217068_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___searchPattern0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
CharU5BU5D_t3528271667* L_1 = Path_get_TrimEndChars_m4264594297(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck((String_t*)L_0);
String_t* L_2 = String_TrimEnd_m3824727301((String_t*)L_0, (CharU5BU5D_t3528271667*)L_1, /*hidden argument*/NULL);
V_0 = (String_t*)L_2;
String_t* L_3 = V_0;
NullCheck((String_t*)L_3);
bool L_4 = String_Equals_m2270643605((String_t*)L_3, (String_t*)_stringLiteral3452614530, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_001f;
}
}
{
V_0 = (String_t*)_stringLiteral3452614534;
}
IL_001f:
{
String_t* L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
Path_CheckSearchPattern_m974385397(NULL /*static, unused*/, (String_t*)L_5, /*hidden argument*/NULL);
String_t* L_6 = V_0;
return L_6;
}
}
// System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetNormalizedSearchCriteria(System.String,System.String)
extern "C" String_t* FileSystemEnumerableIterator_1_GetNormalizedSearchCriteria_m63937011_gshared (RuntimeObject * __this /* static, unused */, String_t* ___fullSearchString0, String_t* ___fullPathMod1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_GetNormalizedSearchCriteria_m63937011_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = (String_t*)NULL;
String_t* L_0 = ___fullPathMod1;
String_t* L_1 = ___fullPathMod1;
NullCheck((String_t*)L_1);
int32_t L_2 = String_get_Length_m3847582255((String_t*)L_1, /*hidden argument*/NULL);
NullCheck((String_t*)L_0);
Il2CppChar L_3 = String_get_Chars_m2986988803((String_t*)L_0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
bool L_4 = Path_IsDirectorySeparator_m1029452715(NULL /*static, unused*/, (Il2CppChar)L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0026;
}
}
{
String_t* L_5 = ___fullSearchString0;
String_t* L_6 = ___fullPathMod1;
NullCheck((String_t*)L_6);
int32_t L_7 = String_get_Length_m3847582255((String_t*)L_6, /*hidden argument*/NULL);
NullCheck((String_t*)L_5);
String_t* L_8 = String_Substring_m2848979100((String_t*)L_5, (int32_t)L_7, /*hidden argument*/NULL);
V_0 = (String_t*)L_8;
goto IL_0035;
}
IL_0026:
{
String_t* L_9 = ___fullSearchString0;
String_t* L_10 = ___fullPathMod1;
NullCheck((String_t*)L_10);
int32_t L_11 = String_get_Length_m3847582255((String_t*)L_10, /*hidden argument*/NULL);
NullCheck((String_t*)L_9);
String_t* L_12 = String_Substring_m2848979100((String_t*)L_9, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
V_0 = (String_t*)L_12;
}
IL_0035:
{
String_t* L_13 = V_0;
return L_13;
}
}
// System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetFullSearchString(System.String,System.String)
extern "C" String_t* FileSystemEnumerableIterator_1_GetFullSearchString_m3869162752_gshared (RuntimeObject * __this /* static, unused */, String_t* ___fullPath0, String_t* ___searchPattern1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FileSystemEnumerableIterator_1_GetFullSearchString_m3869162752_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Il2CppChar V_1 = 0x0;
{
String_t* L_0 = ___fullPath0;
String_t* L_1 = ___searchPattern1;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
String_t* L_2 = Path_InternalCombine_m3863307630(NULL /*static, unused*/, (String_t*)L_0, (String_t*)L_1, /*hidden argument*/NULL);
V_0 = (String_t*)L_2;
String_t* L_3 = V_0;
String_t* L_4 = V_0;
NullCheck((String_t*)L_4);
int32_t L_5 = String_get_Length_m3847582255((String_t*)L_4, /*hidden argument*/NULL);
NullCheck((String_t*)L_3);
Il2CppChar L_6 = String_get_Chars_m2986988803((String_t*)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL);
V_1 = (Il2CppChar)L_6;
Il2CppChar L_7 = V_1;
bool L_8 = Path_IsDirectorySeparator_m1029452715(NULL /*static, unused*/, (Il2CppChar)L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0027;
}
}
{
Il2CppChar L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Path_t1605229823_il2cpp_TypeInfo_var);
Il2CppChar L_10 = ((Path_t1605229823_StaticFields*)il2cpp_codegen_static_fields_for(Path_t1605229823_il2cpp_TypeInfo_var))->get_VolumeSeparatorChar_5();
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
{
goto IL_0033;
}
}
IL_0027:
{
String_t* L_11 = V_0;
String_t* L_12 = String_Concat_m3937257545(NULL /*static, unused*/, (String_t*)L_11, (String_t*)_stringLiteral3452614534, /*hidden argument*/NULL);
V_0 = (String_t*)L_12;
}
IL_0033:
{
String_t* L_13 = V_0;
return L_13;
}
}
#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.IO.Iterator`1<System.Object>::.ctor()
extern "C" void Iterator_1__ctor_m3107024526_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
Thread_t2300836069 * L_0 = Thread_get_CurrentThread_m4142136012(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck((Thread_t2300836069 *)L_0);
int32_t L_1 = Thread_get_ManagedThreadId_m1068113671((Thread_t2300836069 *)L_0, /*hidden argument*/NULL);
__this->set_threadId_0(L_1);
return;
}
}
// TSource System.IO.Iterator`1<System.Object>::get_Current()
extern "C" RuntimeObject * Iterator_1_get_Current_m3226020659_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_2();
return L_0;
}
}
// System.Void System.IO.Iterator`1<System.Object>::Dispose()
extern "C" void Iterator_1_Dispose_m1804293407_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_Dispose_m1804293407_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((Iterator_1_t3764629478 *)__this);
VirtActionInvoker1< bool >::Invoke(12 /* System.Void System.IO.Iterator`1<System.Object>::Dispose(System.Boolean) */, (Iterator_1_t3764629478 *)__this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_t959872083_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m1177400158(NULL /*static, unused*/, (RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.Iterator`1<System.Object>::Dispose(System.Boolean)
extern "C" void Iterator_1_Dispose_m768625415_gshared (Iterator_1_t3764629478 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of_current_2();
il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *));
__this->set_state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<System.Object>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m396814019_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_threadId_0();
Thread_t2300836069 * L_1 = Thread_get_CurrentThread_m4142136012(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck((Thread_t2300836069 *)L_1);
int32_t L_2 = Thread_get_ManagedThreadId_m1068113671((Thread_t2300836069 *)L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)L_2))))
{
goto IL_0023;
}
}
{
int32_t L_3 = (int32_t)__this->get_state_1();
if (L_3)
{
goto IL_0023;
}
}
{
__this->set_state_1(1);
return __this;
}
IL_0023:
{
NullCheck((Iterator_1_t3764629478 *)__this);
Iterator_1_t3764629478 * L_4 = VirtFuncInvoker0< Iterator_1_t3764629478 * >::Invoke(11 /* System.IO.Iterator`1<TSource> System.IO.Iterator`1<System.Object>::Clone() */, (Iterator_1_t3764629478 *)__this);
Iterator_1_t3764629478 * L_5 = (Iterator_1_t3764629478 *)L_4;
NullCheck(L_5);
L_5->set_state_1(1);
return L_5;
}
}
// System.Object System.IO.Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m716568830_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t3764629478 *)__this);
RuntimeObject * L_0 = (( RuntimeObject * (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_0;
}
}
// System.Collections.IEnumerator System.IO.Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m4153551952_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t3764629478 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t3764629478 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t3764629478 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_0;
}
}
// System.Void System.IO.Iterator`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m2231441267_gshared (Iterator_1_t3764629478 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m2231441267_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m2231441267_RuntimeMethod_var);
}
}
#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.IO.SearchResultHandler`1<System.Object>::.ctor()
extern "C" void SearchResultHandler_1__ctor_m4152223460_gshared (SearchResultHandler_1_t2377980137 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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
#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
#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
#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.Lazy`1/<>c<System.Object>::.cctor()
extern "C" void U3CU3Ec__cctor_m2560850839_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec_t2006413399 * L_0 = (U3CU3Ec_t2006413399 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec_t2006413399 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec_t2006413399_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Lazy`1/<>c<System.Object>::.ctor()
extern "C" void U3CU3Ec__ctor_m260543942_gshared (U3CU3Ec_t2006413399 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// T System.Lazy`1/<>c<System.Object>::<.cctor>b__27_0()
extern "C" RuntimeObject * U3CU3Ec_U3C_cctorU3Eb__27_0_m1163149182_gshared (U3CU3Ec_t2006413399 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_0 = V_0;
return L_0;
}
}
#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.Lazy`1/Boxed<System.Object>::.ctor(T)
extern "C" void Boxed__ctor_m544779780_gshared (Boxed_t2783796566 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___value0;
__this->set_m_value_0(L_0);
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.Lazy`1/LazyInternalExceptionHolder<System.Object>::.ctor(System.Exception)
extern "C" void LazyInternalExceptionHolder__ctor_m2253651404_gshared (LazyInternalExceptionHolder_t2698196110 * __this, Exception_t * ___ex0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
Exception_t * L_0 = ___ex0;
ExceptionDispatchInfo_t3750997369 * L_1 = ExceptionDispatchInfo_Capture_m2882203257(NULL /*static, unused*/, (Exception_t *)L_0, /*hidden argument*/NULL);
__this->set_m_edi_0(L_1);
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.Lazy`1<System.Object>::.ctor()
extern "C" void Lazy_1__ctor_m31876721_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
{
NullCheck((Lazy_1_t3564634513 *)__this);
(( void (*) (Lazy_1_t3564634513 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Lazy_1_t3564634513 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
return;
}
}
// System.Void System.Lazy`1<System.Object>::.ctor(System.Func`1<T>)
extern "C" void Lazy_1__ctor_m927688589_gshared (Lazy_1_t3564634513 * __this, Func_1_t2509852811 * ___valueFactory0, const RuntimeMethod* method)
{
{
Func_1_t2509852811 * L_0 = ___valueFactory0;
NullCheck((Lazy_1_t3564634513 *)__this);
(( void (*) (Lazy_1_t3564634513 *, Func_1_t2509852811 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Lazy_1_t3564634513 *)__this, (Func_1_t2509852811 *)L_0, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return;
}
}
// System.Void System.Lazy`1<System.Object>::.ctor(System.Threading.LazyThreadSafetyMode)
extern "C" void Lazy_1__ctor_m781902088_gshared (Lazy_1_t3564634513 * __this, int32_t ___mode0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___mode0;
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
RuntimeObject * L_1 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set_m_threadSafeObj_3(L_1);
return;
}
}
// System.Void System.Lazy`1<System.Object>::.ctor(System.Func`1<T>,System.Threading.LazyThreadSafetyMode)
extern "C" void Lazy_1__ctor_m430128989_gshared (Lazy_1_t3564634513 * __this, Func_1_t2509852811 * ___valueFactory0, int32_t ___mode1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1__ctor_m430128989_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
Func_1_t2509852811 * L_0 = ___valueFactory0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2198560359, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Lazy_1__ctor_m430128989_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_2 = ___mode1;
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
RuntimeObject * L_3 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set_m_threadSafeObj_3(L_3);
Func_1_t2509852811 * L_4 = ___valueFactory0;
__this->set_m_valueFactory_2(L_4);
return;
}
}
// System.Object System.Lazy`1<System.Object>::GetObjectFromMode(System.Threading.LazyThreadSafetyMode)
extern "C" RuntimeObject * Lazy_1_GetObjectFromMode_m915557523_gshared (RuntimeObject * __this /* static, unused */, int32_t ___mode0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_GetObjectFromMode_m915557523_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___mode0;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m297566312(L_1, /*hidden argument*/NULL);
return L_1;
}
IL_000a:
{
int32_t L_2 = ___mode0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_0014;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(LazyHelpers_t2803856572_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = ((LazyHelpers_t2803856572_StaticFields*)il2cpp_codegen_static_fields_for(LazyHelpers_t2803856572_il2cpp_TypeInfo_var))->get_PUBLICATION_ONLY_SENTINEL_0();
return L_3;
}
IL_0014:
{
int32_t L_4 = ___mode0;
if (!L_4)
{
goto IL_002c;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral2307952101, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, (String_t*)_stringLiteral1985170617, (String_t*)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Lazy_1_GetObjectFromMode_m915557523_RuntimeMethod_var);
}
IL_002c:
{
return NULL;
}
}
// System.Void System.Lazy`1<System.Object>::OnSerializing(System.Runtime.Serialization.StreamingContext)
extern "C" void Lazy_1_OnSerializing_m1322636353_gshared (Lazy_1_t3564634513 * __this, StreamingContext_t3711869237 ___context0, const RuntimeMethod* method)
{
{
NullCheck((Lazy_1_t3564634513 *)__this);
(( RuntimeObject * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.String System.Lazy`1<System.Object>::ToString()
extern "C" String_t* Lazy_1_ToString_m1088859750_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_ToString_m1088859750_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
NullCheck((Lazy_1_t3564634513 *)__this);
bool L_0 = (( bool (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (L_0)
{
goto IL_0013;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral3569240370, /*hidden argument*/NULL);
return L_1;
}
IL_0013:
{
NullCheck((Lazy_1_t3564634513 *)__this);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (RuntimeObject *)L_2;
NullCheck((RuntimeObject *)(V_0));
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(V_0));
return L_3;
}
}
// System.Threading.LazyThreadSafetyMode System.Lazy`1<System.Object>::get_Mode()
extern "C" int32_t Lazy_1_get_Mode_m3935276179_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_get_Mode_m3935276179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_threadSafeObj_3();
if (L_0)
{
goto IL_000a;
}
}
{
return (int32_t)(0);
}
IL_000a:
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_threadSafeObj_3();
IL2CPP_RUNTIME_CLASS_INIT(LazyHelpers_t2803856572_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = ((LazyHelpers_t2803856572_StaticFields*)il2cpp_codegen_static_fields_for(LazyHelpers_t2803856572_il2cpp_TypeInfo_var))->get_PUBLICATION_ONLY_SENTINEL_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2))))
{
goto IL_0019;
}
}
{
return (int32_t)(1);
}
IL_0019:
{
return (int32_t)(2);
}
}
// System.Boolean System.Lazy`1<System.Object>::get_IsValueCreated()
extern "C" bool Lazy_1_get_IsValueCreated_m2228898952_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_boxed_1();
if (!L_0)
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_boxed_1();
return (bool)((!(((RuntimeObject*)(Boxed_t2783796566 *)((Boxed_t2783796566 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
IL_0017:
{
return (bool)0;
}
}
// T System.Lazy`1<System.Object>::get_Value()
extern "C" RuntimeObject * Lazy_1_get_Value_m2907673513_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_get_Value_m2907673513_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Boxed_t2783796566 * V_0 = NULL;
{
V_0 = (Boxed_t2783796566 *)NULL;
RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_boxed_1();
if (!L_0)
{
goto IL_0035;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_boxed_1();
V_0 = (Boxed_t2783796566 *)((Boxed_t2783796566 *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)));
Boxed_t2783796566 * L_2 = V_0;
if (!L_2)
{
goto IL_0020;
}
}
{
Boxed_t2783796566 * L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4 = (RuntimeObject *)L_3->get_m_value_0();
return L_4;
}
IL_0020:
{
RuntimeObject * L_5 = (RuntimeObject *)__this->get_m_boxed_1();
NullCheck(((LazyInternalExceptionHolder_t2698196110 *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))));
ExceptionDispatchInfo_t3750997369 * L_6 = (ExceptionDispatchInfo_t3750997369 *)((LazyInternalExceptionHolder_t2698196110 *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))->get_m_edi_0();
NullCheck((ExceptionDispatchInfo_t3750997369 *)L_6);
ExceptionDispatchInfo_Throw_m2689339678((ExceptionDispatchInfo_t3750997369 *)L_6, /*hidden argument*/NULL);
}
IL_0035:
{
IL2CPP_RUNTIME_CLASS_INIT(Debugger_t2143709070_il2cpp_TypeInfo_var);
Debugger_NotifyOfCrossThreadDependency_m2834057638(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck((Lazy_1_t3564634513 *)__this);
RuntimeObject * L_7 = (( RuntimeObject * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_7;
}
}
// T System.Lazy`1<System.Object>::LazyInitValue()
extern "C" RuntimeObject * Lazy_1_LazyInitValue_m4220374548_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_LazyInitValue_m4220374548_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Boxed_t2783796566 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
bool V_3 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Boxed_t2783796566 *)NULL;
NullCheck((Lazy_1_t3564634513 *)__this);
int32_t L_0 = (( int32_t (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (L_1)
{
goto IL_001f;
}
}
{
NullCheck((Lazy_1_t3564634513 *)__this);
Boxed_t2783796566 * L_2 = (( Boxed_t2783796566 * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_0 = (Boxed_t2783796566 *)L_2;
Boxed_t2783796566 * L_3 = V_0;
__this->set_m_boxed_1(L_3);
goto IL_00d0;
}
IL_001f:
{
int32_t L_4 = V_1;
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_005a;
}
}
{
NullCheck((Lazy_1_t3564634513 *)__this);
Boxed_t2783796566 * L_5 = (( Boxed_t2783796566 * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_0 = (Boxed_t2783796566 *)L_5;
Boxed_t2783796566 * L_6 = V_0;
if (!L_6)
{
goto IL_003c;
}
}
{
RuntimeObject ** L_7 = (RuntimeObject **)__this->get_address_of_m_boxed_1();
Boxed_t2783796566 * L_8 = V_0;
RuntimeObject * L_9 = Interlocked_CompareExchange_m1590826108(NULL /*static, unused*/, (RuntimeObject **)(RuntimeObject **)L_7, (RuntimeObject *)L_8, (RuntimeObject *)NULL, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_004d;
}
}
IL_003c:
{
RuntimeObject * L_10 = (RuntimeObject *)__this->get_m_boxed_1();
V_0 = (Boxed_t2783796566 *)((Boxed_t2783796566 *)Castclass((RuntimeObject*)L_10, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)));
goto IL_00d0;
}
IL_004d:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_11 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
__this->set_m_valueFactory_2(L_11);
goto IL_00d0;
}
IL_005a:
{
RuntimeObject ** L_12 = (RuntimeObject **)__this->get_address_of_m_threadSafeObj_3();
RuntimeObject * L_13 = Volatile_Read_TisRuntimeObject_m3872089505(NULL /*static, unused*/, (RuntimeObject **)(RuntimeObject **)L_12, /*hidden argument*/Volatile_Read_TisRuntimeObject_m3872089505_RuntimeMethod_var);
V_2 = (RuntimeObject *)L_13;
V_3 = (bool)0;
}
IL_0068:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_14 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_15 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
if ((((RuntimeObject*)(RuntimeObject *)L_14) == ((RuntimeObject*)(Func_1_t2509852811 *)L_15)))
{
goto IL_0078;
}
}
IL_0070:
{
RuntimeObject * L_16 = V_2;
Monitor_Enter_m984175629(NULL /*static, unused*/, (RuntimeObject *)L_16, (bool*)(bool*)(&V_3), /*hidden argument*/NULL);
}
IL_0078:
{
RuntimeObject * L_17 = (RuntimeObject *)__this->get_m_boxed_1();
if (L_17)
{
goto IL_00a0;
}
}
IL_0080:
{
NullCheck((Lazy_1_t3564634513 *)__this);
Boxed_t2783796566 * L_18 = (( Boxed_t2783796566 * (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_0 = (Boxed_t2783796566 *)L_18;
Boxed_t2783796566 * L_19 = V_0;
__this->set_m_boxed_1(L_19);
RuntimeObject ** L_20 = (RuntimeObject **)__this->get_address_of_m_threadSafeObj_3();
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_21 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
Volatile_Write_TisRuntimeObject_m886068950(NULL /*static, unused*/, (RuntimeObject **)(RuntimeObject **)L_20, (RuntimeObject *)L_21, /*hidden argument*/Volatile_Write_TisRuntimeObject_m886068950_RuntimeMethod_var);
IL2CPP_LEAVE(0xD0, FINALLY_00c6);
}
IL_00a0:
{
RuntimeObject * L_22 = (RuntimeObject *)__this->get_m_boxed_1();
V_0 = (Boxed_t2783796566 *)((Boxed_t2783796566 *)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)));
Boxed_t2783796566 * L_23 = V_0;
if (L_23)
{
goto IL_00c4;
}
}
IL_00af:
{
RuntimeObject * L_24 = (RuntimeObject *)__this->get_m_boxed_1();
NullCheck(((LazyInternalExceptionHolder_t2698196110 *)IsInst((RuntimeObject*)L_24, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))));
ExceptionDispatchInfo_t3750997369 * L_25 = (ExceptionDispatchInfo_t3750997369 *)((LazyInternalExceptionHolder_t2698196110 *)IsInst((RuntimeObject*)L_24, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))->get_m_edi_0();
NullCheck((ExceptionDispatchInfo_t3750997369 *)L_25);
ExceptionDispatchInfo_Throw_m2689339678((ExceptionDispatchInfo_t3750997369 *)L_25, /*hidden argument*/NULL);
}
IL_00c4:
{
IL2CPP_LEAVE(0xD0, FINALLY_00c6);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c6;
}
FINALLY_00c6:
{ // begin finally (depth: 1)
{
bool L_26 = V_3;
if (!L_26)
{
goto IL_00cf;
}
}
IL_00c9:
{
RuntimeObject * L_27 = V_2;
Monitor_Exit_m3585316909(NULL /*static, unused*/, (RuntimeObject *)L_27, /*hidden argument*/NULL);
}
IL_00cf:
{
IL2CPP_END_FINALLY(198)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(198)
{
IL2CPP_JUMP_TBL(0xD0, IL_00d0)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00d0:
{
Boxed_t2783796566 * L_28 = V_0;
NullCheck(L_28);
RuntimeObject * L_29 = (RuntimeObject *)L_28->get_m_value_0();
return L_29;
}
}
// System.Lazy`1/Boxed<T> System.Lazy`1<System.Object>::CreateValue()
extern "C" Boxed_t2783796566 * Lazy_1_CreateValue_m2385577411_gshared (Lazy_1_t3564634513 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lazy_1_CreateValue_m2385577411_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Boxed_t2783796566 * V_0 = NULL;
int32_t V_1 = 0;
Func_1_t2509852811 * V_2 = NULL;
Boxed_t2783796566 * V_3 = NULL;
Exception_t * V_4 = NULL;
Exception_t * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (Boxed_t2783796566 *)NULL;
NullCheck((Lazy_1_t3564634513 *)__this);
int32_t L_0 = (( int32_t (*) (Lazy_1_t3564634513 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((Lazy_1_t3564634513 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_1 = (int32_t)L_0;
Func_1_t2509852811 * L_1 = (Func_1_t2509852811 *)__this->get_m_valueFactory_2();
if (!L_1)
{
goto IL_0083;
}
}
IL_0011:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0037;
}
}
IL_0015:
{
Func_1_t2509852811 * L_3 = (Func_1_t2509852811 *)__this->get_m_valueFactory_2();
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_4 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
bool L_5 = Delegate_op_Equality_m1690449587(NULL /*static, unused*/, (Delegate_t1188392813 *)L_3, (Delegate_t1188392813 *)L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0037;
}
}
IL_0027:
{
String_t* L_6 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral1706190048, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_7 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_7, (String_t*)L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Lazy_1_CreateValue_m2385577411_RuntimeMethod_var);
}
IL_0037:
{
Func_1_t2509852811 * L_8 = (Func_1_t2509852811 *)__this->get_m_valueFactory_2();
V_2 = (Func_1_t2509852811 *)L_8;
int32_t L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)1)))
{
goto IL_004f;
}
}
IL_0042:
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_10 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
__this->set_m_valueFactory_2(L_10);
goto IL_0060;
}
IL_004f:
{
Func_1_t2509852811 * L_11 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
Func_1_t2509852811 * L_12 = ((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)))->get_ALREADY_INVOKED_SENTINEL_0();
bool L_13 = Delegate_op_Equality_m1690449587(NULL /*static, unused*/, (Delegate_t1188392813 *)L_11, (Delegate_t1188392813 *)L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0060;
}
}
IL_005c:
{
V_3 = (Boxed_t2783796566 *)NULL;
goto IL_00c8;
}
IL_0060:
{
Func_1_t2509852811 * L_14 = V_2;
NullCheck((Func_1_t2509852811 *)L_14);
RuntimeObject * L_15 = (( RuntimeObject * (*) (Func_1_t2509852811 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Func_1_t2509852811 *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
Boxed_t2783796566 * L_16 = (Boxed_t2783796566 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (Boxed_t2783796566 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_16, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_0 = (Boxed_t2783796566 *)L_16;
goto IL_00c6;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_006e;
throw e;
}
CATCH_006e:
{ // begin catch(System.Exception)
{
V_4 = (Exception_t *)((Exception_t *)__exception_local);
int32_t L_17 = V_1;
if ((((int32_t)L_17) == ((int32_t)1)))
{
goto IL_0081;
}
}
IL_0074:
{
Exception_t * L_18 = V_4;
LazyInternalExceptionHolder_t2698196110 * L_19 = (LazyInternalExceptionHolder_t2698196110 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8));
(( void (*) (LazyInternalExceptionHolder_t2698196110 *, Exception_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_19, (Exception_t *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
__this->set_m_boxed_1(L_19);
}
IL_0081:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Lazy_1_CreateValue_m2385577411_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0083:
{
}
IL_0084:
try
{ // begin try (depth: 1)
RuntimeTypeHandle_t3027515415 L_20 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 15)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_20, /*hidden argument*/NULL);
RuntimeObject * L_22 = Activator_CreateInstance_m3631483688(NULL /*static, unused*/, (Type_t *)L_21, /*hidden argument*/NULL);
Boxed_t2783796566 * L_23 = (Boxed_t2783796566 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (Boxed_t2783796566 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_23, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_0 = (Boxed_t2783796566 *)L_23;
goto IL_00c6;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (MissingMethodException_t1274661534_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00a0;
throw e;
}
CATCH_00a0:
{ // begin catch(System.MissingMethodException)
{
String_t* L_24 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral2752591534, /*hidden argument*/NULL);
MissingMemberException_t1385081665 * L_25 = (MissingMemberException_t1385081665 *)il2cpp_codegen_object_new(MissingMemberException_t1385081665_il2cpp_TypeInfo_var);
MissingMemberException__ctor_m2571045846(L_25, (String_t*)L_24, /*hidden argument*/NULL);
V_5 = (Exception_t *)L_25;
int32_t L_26 = V_1;
if ((((int32_t)L_26) == ((int32_t)1)))
{
goto IL_00c3;
}
}
IL_00b6:
{
Exception_t * L_27 = V_5;
LazyInternalExceptionHolder_t2698196110 * L_28 = (LazyInternalExceptionHolder_t2698196110 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8));
(( void (*) (LazyInternalExceptionHolder_t2698196110 *, Exception_t *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_28, (Exception_t *)L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
__this->set_m_boxed_1(L_28);
}
IL_00c3:
{
Exception_t * L_29 = V_5;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Lazy_1_CreateValue_m2385577411_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_00c6:
{
Boxed_t2783796566 * L_30 = V_0;
return L_30;
}
IL_00c8:
{
Boxed_t2783796566 * L_31 = V_3;
return L_31;
}
}
// System.Void System.Lazy`1<System.Object>::.cctor()
extern "C" void Lazy_1__cctor_m1782917505_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 16));
U3CU3Ec_t2006413399 * L_0 = ((U3CU3Ec_t2006413399_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 16)))->get_U3CU3E9_0();
intptr_t L_1 = (intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17);
Func_1_t2509852811 * L_2 = (Func_1_t2509852811 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 18));
(( void (*) (Func_1_t2509852811 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 19)->methodPointer)(L_2, (RuntimeObject *)L_0, (intptr_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 19));
((Lazy_1_t3564634513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set_ALREADY_INVOKED_SENTINEL_0(L_2);
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.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m3439248099_gshared (Buffer_1_t932544294 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
{
RuntimeObject* L_0 = ___source0;
RuntimeObject* L_1 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)));
V_0 = (RuntimeObject*)L_1;
if (!L_1)
{
goto IL_0022;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
ObjectU5BU5D_t2843939325* L_3 = InterfaceFuncInvoker0< ObjectU5BU5D_t2843939325* >::Invoke(0 /* TElement[] System.Linq.IIListProvider`1<System.Object>::ToArray() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (RuntimeObject*)L_2);
V_1 = (ObjectU5BU5D_t2843939325*)L_3;
ObjectU5BU5D_t2843939325* L_4 = V_1;
__this->set__items_0(L_4);
ObjectU5BU5D_t2843939325* L_5 = V_1;
NullCheck(L_5);
__this->set__count_1((((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))));
return;
}
IL_0022:
{
RuntimeObject* L_6 = ___source0;
int32_t* L_7 = (int32_t*)__this->get_address_of__count_1();
ObjectU5BU5D_t2843939325* L_8 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_6, (int32_t*)(int32_t*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set__items_0(L_8);
return;
}
}
extern "C" void Buffer_1__ctor_m3439248099_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
Buffer_1_t932544294 * _thisAdjusted = reinterpret_cast<Buffer_1_t932544294 *>(__this + 1);
Buffer_1__ctor_m3439248099(_thisAdjusted, ___source0, 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.Linq.Buffer`1<UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m1836940346_gshared (Buffer_1_t8667653 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
Vector2U5BU5D_t1457185986* V_1 = NULL;
{
RuntimeObject* L_0 = ___source0;
RuntimeObject* L_1 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)));
V_0 = (RuntimeObject*)L_1;
if (!L_1)
{
goto IL_0022;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
Vector2U5BU5D_t1457185986* L_3 = InterfaceFuncInvoker0< Vector2U5BU5D_t1457185986* >::Invoke(0 /* TElement[] System.Linq.IIListProvider`1<UnityEngine.Vector2>::ToArray() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (RuntimeObject*)L_2);
V_1 = (Vector2U5BU5D_t1457185986*)L_3;
Vector2U5BU5D_t1457185986* L_4 = V_1;
__this->set__items_0(L_4);
Vector2U5BU5D_t1457185986* L_5 = V_1;
NullCheck(L_5);
__this->set__count_1((((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))));
return;
}
IL_0022:
{
RuntimeObject* L_6 = ___source0;
int32_t* L_7 = (int32_t*)__this->get_address_of__count_1();
Vector2U5BU5D_t1457185986* L_8 = (( Vector2U5BU5D_t1457185986* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_6, (int32_t*)(int32_t*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set__items_0(L_8);
return;
}
}
extern "C" void Buffer_1__ctor_m1836940346_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
Buffer_1_t8667653 * _thisAdjusted = reinterpret_cast<Buffer_1_t8667653 *>(__this + 1);
Buffer_1__ctor_m1836940346(_thisAdjusted, ___source0, 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.Linq.Buffer`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>)
extern "C" void Buffer_1__ctor_m2075330287_gshared (Buffer_1_t1574751594 * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
Vector3U5BU5D_t1718750761* V_1 = NULL;
{
RuntimeObject* L_0 = ___source0;
RuntimeObject* L_1 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)));
V_0 = (RuntimeObject*)L_1;
if (!L_1)
{
goto IL_0022;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
Vector3U5BU5D_t1718750761* L_3 = InterfaceFuncInvoker0< Vector3U5BU5D_t1718750761* >::Invoke(0 /* TElement[] System.Linq.IIListProvider`1<UnityEngine.Vector3>::ToArray() */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (RuntimeObject*)L_2);
V_1 = (Vector3U5BU5D_t1718750761*)L_3;
Vector3U5BU5D_t1718750761* L_4 = V_1;
__this->set__items_0(L_4);
Vector3U5BU5D_t1718750761* L_5 = V_1;
NullCheck(L_5);
__this->set__count_1((((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length)))));
return;
}
IL_0022:
{
RuntimeObject* L_6 = ___source0;
int32_t* L_7 = (int32_t*)__this->get_address_of__count_1();
Vector3U5BU5D_t1718750761* L_8 = (( Vector3U5BU5D_t1718750761* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_6, (int32_t*)(int32_t*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set__items_0(L_8);
return;
}
}
extern "C" void Buffer_1__ctor_m2075330287_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
Buffer_1_t1574751594 * _thisAdjusted = reinterpret_cast<Buffer_1_t1574751594 *>(__this + 1);
Buffer_1__ctor_m2075330287(_thisAdjusted, ___source0, 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.Linq.CachingComparer`1<System.Object>::.ctor()
extern "C" void CachingComparer_1__ctor_m368776016_gshared (CachingComparer_1_t1378817919 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Linq.CachingComparer`1<UnityEngine.Vector2>::.ctor()
extern "C" void CachingComparer_1__ctor_m3132819659_gshared (CachingComparer_1_t454941278 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Linq.CachingComparer`1<UnityEngine.Vector3>::.ctor()
extern "C" void CachingComparer_1__ctor_m3132816462_gshared (CachingComparer_1_t2021025219 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Linq.CachingComparer`2<System.Object,System.Int32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
extern "C" void CachingComparer_2__ctor_m3341089146_gshared (CachingComparer_2_t2712248853 * __this, Func_2_t2317969963 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
NullCheck((CachingComparer_1_t1378817919 *)__this);
(( void (*) (CachingComparer_1_t1378817919 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_1_t1378817919 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t2317969963 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
return;
}
}
// System.Int32 System.Linq.CachingComparer`2<System.Object,System.Int32>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparer_2_Compare_m3427904112_gshared (CachingComparer_2_t2712248853 * __this, RuntimeObject * ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t2317969963 * L_0 = (Func_2_t2317969963 *)__this->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2317969963 *)L_0);
int32_t L_2 = (( int32_t (*) (Func_2_t2317969963 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t2317969963 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (int32_t)L_2;
bool L_3 = (bool)__this->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)__this->get__comparer_1();
int32_t L_5 = V_0;
int32_t L_6 = (int32_t)__this->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_4, (int32_t)L_5, (int32_t)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__comparer_1();
int32_t L_9 = (int32_t)__this->get__lastKey_3();
int32_t L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_8, (int32_t)L_9, (int32_t)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
bool L_12 = ___cacheLower1;
int32_t L_13 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)((((int32_t)L_13) < ((int32_t)0))? 1 : 0)))))
{
goto IL_004a;
}
}
{
int32_t L_14 = V_0;
__this->set__lastKey_3(L_14);
}
IL_004a:
{
int32_t L_15 = V_1;
return L_15;
}
}
// System.Void System.Linq.CachingComparer`2<System.Object,System.Int32>::SetElement(TElement)
extern "C" void CachingComparer_2_SetElement_m1265669563_gshared (CachingComparer_2_t2712248853 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
{
Func_2_t2317969963 * L_0 = (Func_2_t2317969963 *)__this->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2317969963 *)L_0);
int32_t L_2 = (( int32_t (*) (Func_2_t2317969963 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t2317969963 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set__lastKey_3(L_2);
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.Linq.CachingComparer`2<System.Object,System.Object>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
extern "C" void CachingComparer_2__ctor_m35813242_gshared (CachingComparer_2_t2841409264 * __this, Func_2_t2447130374 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
NullCheck((CachingComparer_1_t1378817919 *)__this);
(( void (*) (CachingComparer_1_t1378817919 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_1_t1378817919 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t2447130374 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
return;
}
}
// System.Int32 System.Linq.CachingComparer`2<System.Object,System.Object>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparer_2_Compare_m464691470_gshared (CachingComparer_2_t2841409264 * __this, RuntimeObject * ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t2447130374 * L_0 = (Func_2_t2447130374 *)__this->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2447130374 *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t2447130374 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject *)L_2;
bool L_3 = (bool)__this->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)__this->get__comparer_1();
RuntimeObject * L_5 = V_0;
RuntimeObject * L_6 = (RuntimeObject *)__this->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_4, (RuntimeObject *)L_5, (RuntimeObject *)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__comparer_1();
RuntimeObject * L_9 = (RuntimeObject *)__this->get__lastKey_3();
RuntimeObject * L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
bool L_12 = ___cacheLower1;
int32_t L_13 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)((((int32_t)L_13) < ((int32_t)0))? 1 : 0)))))
{
goto IL_004a;
}
}
{
RuntimeObject * L_14 = V_0;
__this->set__lastKey_3(L_14);
}
IL_004a:
{
int32_t L_15 = V_1;
return L_15;
}
}
// System.Void System.Linq.CachingComparer`2<System.Object,System.Object>::SetElement(TElement)
extern "C" void CachingComparer_2_SetElement_m4108298066_gshared (CachingComparer_2_t2841409264 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
{
Func_2_t2447130374 * L_0 = (Func_2_t2447130374 *)__this->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2447130374 *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t2447130374 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set__lastKey_3(L_2);
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.Linq.CachingComparer`2<UnityEngine.Vector2,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
extern "C" void CachingComparer_2__ctor_m1285312215_gshared (CachingComparer_2_t4066783831 * __this, Func_2_t3672504941 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
NullCheck((CachingComparer_1_t454941278 *)__this);
(( void (*) (CachingComparer_1_t454941278 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_1_t454941278 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t3672504941 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
return;
}
}
// System.Int32 System.Linq.CachingComparer`2<UnityEngine.Vector2,System.Single>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparer_2_Compare_m4038830749_gshared (CachingComparer_2_t4066783831 * __this, Vector2_t2156229523 ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t3672504941 * L_0 = (Func_2_t3672504941 *)__this->get__keySelector_0();
Vector2_t2156229523 L_1 = ___element0;
NullCheck((Func_2_t3672504941 *)L_0);
float L_2 = (( float (*) (Func_2_t3672504941 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t3672504941 *)L_0, (Vector2_t2156229523 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (float)L_2;
bool L_3 = (bool)__this->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)__this->get__comparer_1();
float L_5 = V_0;
float L_6 = (float)__this->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_4, (float)L_5, (float)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__comparer_1();
float L_9 = (float)__this->get__lastKey_3();
float L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_8, (float)L_9, (float)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
bool L_12 = ___cacheLower1;
int32_t L_13 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)((((int32_t)L_13) < ((int32_t)0))? 1 : 0)))))
{
goto IL_004a;
}
}
{
float L_14 = V_0;
__this->set__lastKey_3(L_14);
}
IL_004a:
{
int32_t L_15 = V_1;
return L_15;
}
}
// System.Void System.Linq.CachingComparer`2<UnityEngine.Vector2,System.Single>::SetElement(TElement)
extern "C" void CachingComparer_2_SetElement_m323424526_gshared (CachingComparer_2_t4066783831 * __this, Vector2_t2156229523 ___element0, const RuntimeMethod* method)
{
{
Func_2_t3672504941 * L_0 = (Func_2_t3672504941 *)__this->get__keySelector_0();
Vector2_t2156229523 L_1 = ___element0;
NullCheck((Func_2_t3672504941 *)L_0);
float L_2 = (( float (*) (Func_2_t3672504941 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t3672504941 *)L_0, (Vector2_t2156229523 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set__lastKey_3(L_2);
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.Linq.CachingComparer`2<UnityEngine.Vector3,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
extern "C" void CachingComparer_2__ctor_m2485067193_gshared (CachingComparer_2_t33381310 * __this, Func_2_t3934069716 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
NullCheck((CachingComparer_1_t2021025219 *)__this);
(( void (*) (CachingComparer_1_t2021025219 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_1_t2021025219 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t3934069716 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
return;
}
}
// System.Int32 System.Linq.CachingComparer`2<UnityEngine.Vector3,System.Single>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparer_2_Compare_m2373354029_gshared (CachingComparer_2_t33381310 * __this, Vector3_t3722313464 ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t3934069716 * L_0 = (Func_2_t3934069716 *)__this->get__keySelector_0();
Vector3_t3722313464 L_1 = ___element0;
NullCheck((Func_2_t3934069716 *)L_0);
float L_2 = (( float (*) (Func_2_t3934069716 *, Vector3_t3722313464 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t3934069716 *)L_0, (Vector3_t3722313464 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (float)L_2;
bool L_3 = (bool)__this->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)__this->get__comparer_1();
float L_5 = V_0;
float L_6 = (float)__this->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_4, (float)L_5, (float)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__comparer_1();
float L_9 = (float)__this->get__lastKey_3();
float L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_8, (float)L_9, (float)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
bool L_12 = ___cacheLower1;
int32_t L_13 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)((((int32_t)L_13) < ((int32_t)0))? 1 : 0)))))
{
goto IL_004a;
}
}
{
float L_14 = V_0;
__this->set__lastKey_3(L_14);
}
IL_004a:
{
int32_t L_15 = V_1;
return L_15;
}
}
// System.Void System.Linq.CachingComparer`2<UnityEngine.Vector3,System.Single>::SetElement(TElement)
extern "C" void CachingComparer_2_SetElement_m3282216209_gshared (CachingComparer_2_t33381310 * __this, Vector3_t3722313464 ___element0, const RuntimeMethod* method)
{
{
Func_2_t3934069716 * L_0 = (Func_2_t3934069716 *)__this->get__keySelector_0();
Vector3_t3722313464 L_1 = ___element0;
NullCheck((Func_2_t3934069716 *)L_0);
float L_2 = (( float (*) (Func_2_t3934069716 *, Vector3_t3722313464 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Func_2_t3934069716 *)L_0, (Vector3_t3722313464 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
__this->set__lastKey_3(L_2);
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.Linq.CachingComparerWithChild`2<System.Object,System.Int32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.CachingComparer`1<TElement>)
extern "C" void CachingComparerWithChild_2__ctor_m2362989616_gshared (CachingComparerWithChild_2_t2010013078 * __this, Func_2_t2317969963 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, CachingComparer_1_t1378817919 * ___child3, const RuntimeMethod* method)
{
{
Func_2_t2317969963 * L_0 = ___keySelector0;
RuntimeObject* L_1 = ___comparer1;
bool L_2 = ___descending2;
NullCheck((CachingComparer_2_t2712248853 *)__this);
(( void (*) (CachingComparer_2_t2712248853 *, Func_2_t2317969963 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_2_t2712248853 *)__this, (Func_2_t2317969963 *)L_0, (RuntimeObject*)L_1, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CachingComparer_1_t1378817919 * L_3 = ___child3;
__this->set__child_4(L_3);
return;
}
}
// System.Int32 System.Linq.CachingComparerWithChild`2<System.Object,System.Int32>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparerWithChild_2_Compare_m3819745285_gshared (CachingComparerWithChild_2_t2010013078 * __this, RuntimeObject * ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t2317969963 * L_0 = (Func_2_t2317969963 *)((CachingComparer_2_t2712248853 *)__this)->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2317969963 *)L_0);
int32_t L_2 = (( int32_t (*) (Func_2_t2317969963 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t2317969963 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
V_0 = (int32_t)L_2;
bool L_3 = (bool)((CachingComparer_2_t2712248853 *)__this)->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)((CachingComparer_2_t2712248853 *)__this)->get__comparer_1();
int32_t L_5 = V_0;
int32_t L_6 = (int32_t)((CachingComparer_2_t2712248853 *)__this)->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_4, (int32_t)L_5, (int32_t)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)((CachingComparer_2_t2712248853 *)__this)->get__comparer_1();
int32_t L_9 = (int32_t)((CachingComparer_2_t2712248853 *)__this)->get__lastKey_3();
int32_t L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8, (int32_t)L_9, (int32_t)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_004d;
}
}
{
CachingComparer_1_t1378817919 * L_13 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_14 = ___element0;
bool L_15 = ___cacheLower1;
NullCheck((CachingComparer_1_t1378817919 *)L_13);
int32_t L_16 = VirtFuncInvoker2< int32_t, RuntimeObject *, bool >::Invoke(4 /* System.Int32 System.Linq.CachingComparer`1<System.Object>::Compare(TElement,System.Boolean) */, (CachingComparer_1_t1378817919 *)L_13, (RuntimeObject *)L_14, (bool)L_15);
return L_16;
}
IL_004d:
{
bool L_17 = ___cacheLower1;
int32_t L_18 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)))))
{
goto IL_0067;
}
}
{
int32_t L_19 = V_0;
((CachingComparer_2_t2712248853 *)__this)->set__lastKey_3(L_19);
CachingComparer_1_t1378817919 * L_20 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_21 = ___element0;
NullCheck((CachingComparer_1_t1378817919 *)L_20);
VirtActionInvoker1< RuntimeObject * >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<System.Object>::SetElement(TElement) */, (CachingComparer_1_t1378817919 *)L_20, (RuntimeObject *)L_21);
}
IL_0067:
{
int32_t L_22 = V_1;
return L_22;
}
}
// System.Void System.Linq.CachingComparerWithChild`2<System.Object,System.Int32>::SetElement(TElement)
extern "C" void CachingComparerWithChild_2_SetElement_m3123677967_gshared (CachingComparerWithChild_2_t2010013078 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___element0;
NullCheck((CachingComparer_2_t2712248853 *)__this);
(( void (*) (CachingComparer_2_t2712248853 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((CachingComparer_2_t2712248853 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
CachingComparer_1_t1378817919 * L_1 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_2 = ___element0;
NullCheck((CachingComparer_1_t1378817919 *)L_1);
VirtActionInvoker1< RuntimeObject * >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<System.Object>::SetElement(TElement) */, (CachingComparer_1_t1378817919 *)L_1, (RuntimeObject *)L_2);
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.Linq.CachingComparerWithChild`2<System.Object,System.Object>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.CachingComparer`1<TElement>)
extern "C" void CachingComparerWithChild_2__ctor_m2479719590_gshared (CachingComparerWithChild_2_t2139173489 * __this, Func_2_t2447130374 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, CachingComparer_1_t1378817919 * ___child3, const RuntimeMethod* method)
{
{
Func_2_t2447130374 * L_0 = ___keySelector0;
RuntimeObject* L_1 = ___comparer1;
bool L_2 = ___descending2;
NullCheck((CachingComparer_2_t2841409264 *)__this);
(( void (*) (CachingComparer_2_t2841409264 *, Func_2_t2447130374 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_2_t2841409264 *)__this, (Func_2_t2447130374 *)L_0, (RuntimeObject*)L_1, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CachingComparer_1_t1378817919 * L_3 = ___child3;
__this->set__child_4(L_3);
return;
}
}
// System.Int32 System.Linq.CachingComparerWithChild`2<System.Object,System.Object>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparerWithChild_2_Compare_m741207413_gshared (CachingComparerWithChild_2_t2139173489 * __this, RuntimeObject * ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t2447130374 * L_0 = (Func_2_t2447130374 *)((CachingComparer_2_t2841409264 *)__this)->get__keySelector_0();
RuntimeObject * L_1 = ___element0;
NullCheck((Func_2_t2447130374 *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t2447130374 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
V_0 = (RuntimeObject *)L_2;
bool L_3 = (bool)((CachingComparer_2_t2841409264 *)__this)->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)((CachingComparer_2_t2841409264 *)__this)->get__comparer_1();
RuntimeObject * L_5 = V_0;
RuntimeObject * L_6 = (RuntimeObject *)((CachingComparer_2_t2841409264 *)__this)->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_4, (RuntimeObject *)L_5, (RuntimeObject *)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)((CachingComparer_2_t2841409264 *)__this)->get__comparer_1();
RuntimeObject * L_9 = (RuntimeObject *)((CachingComparer_2_t2841409264 *)__this)->get__lastKey_3();
RuntimeObject * L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_004d;
}
}
{
CachingComparer_1_t1378817919 * L_13 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_14 = ___element0;
bool L_15 = ___cacheLower1;
NullCheck((CachingComparer_1_t1378817919 *)L_13);
int32_t L_16 = VirtFuncInvoker2< int32_t, RuntimeObject *, bool >::Invoke(4 /* System.Int32 System.Linq.CachingComparer`1<System.Object>::Compare(TElement,System.Boolean) */, (CachingComparer_1_t1378817919 *)L_13, (RuntimeObject *)L_14, (bool)L_15);
return L_16;
}
IL_004d:
{
bool L_17 = ___cacheLower1;
int32_t L_18 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)))))
{
goto IL_0067;
}
}
{
RuntimeObject * L_19 = V_0;
((CachingComparer_2_t2841409264 *)__this)->set__lastKey_3(L_19);
CachingComparer_1_t1378817919 * L_20 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_21 = ___element0;
NullCheck((CachingComparer_1_t1378817919 *)L_20);
VirtActionInvoker1< RuntimeObject * >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<System.Object>::SetElement(TElement) */, (CachingComparer_1_t1378817919 *)L_20, (RuntimeObject *)L_21);
}
IL_0067:
{
int32_t L_22 = V_1;
return L_22;
}
}
// System.Void System.Linq.CachingComparerWithChild`2<System.Object,System.Object>::SetElement(TElement)
extern "C" void CachingComparerWithChild_2_SetElement_m3298530176_gshared (CachingComparerWithChild_2_t2139173489 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___element0;
NullCheck((CachingComparer_2_t2841409264 *)__this);
(( void (*) (CachingComparer_2_t2841409264 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((CachingComparer_2_t2841409264 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
CachingComparer_1_t1378817919 * L_1 = (CachingComparer_1_t1378817919 *)__this->get__child_4();
RuntimeObject * L_2 = ___element0;
NullCheck((CachingComparer_1_t1378817919 *)L_1);
VirtActionInvoker1< RuntimeObject * >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<System.Object>::SetElement(TElement) */, (CachingComparer_1_t1378817919 *)L_1, (RuntimeObject *)L_2);
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.Linq.CachingComparerWithChild`2<UnityEngine.Vector2,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.CachingComparer`1<TElement>)
extern "C" void CachingComparerWithChild_2__ctor_m714499546_gshared (CachingComparerWithChild_2_t3364548056 * __this, Func_2_t3672504941 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, CachingComparer_1_t454941278 * ___child3, const RuntimeMethod* method)
{
{
Func_2_t3672504941 * L_0 = ___keySelector0;
RuntimeObject* L_1 = ___comparer1;
bool L_2 = ___descending2;
NullCheck((CachingComparer_2_t4066783831 *)__this);
(( void (*) (CachingComparer_2_t4066783831 *, Func_2_t3672504941 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_2_t4066783831 *)__this, (Func_2_t3672504941 *)L_0, (RuntimeObject*)L_1, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CachingComparer_1_t454941278 * L_3 = ___child3;
__this->set__child_4(L_3);
return;
}
}
// System.Int32 System.Linq.CachingComparerWithChild`2<UnityEngine.Vector2,System.Single>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparerWithChild_2_Compare_m1616620100_gshared (CachingComparerWithChild_2_t3364548056 * __this, Vector2_t2156229523 ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t3672504941 * L_0 = (Func_2_t3672504941 *)((CachingComparer_2_t4066783831 *)__this)->get__keySelector_0();
Vector2_t2156229523 L_1 = ___element0;
NullCheck((Func_2_t3672504941 *)L_0);
float L_2 = (( float (*) (Func_2_t3672504941 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t3672504941 *)L_0, (Vector2_t2156229523 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
V_0 = (float)L_2;
bool L_3 = (bool)((CachingComparer_2_t4066783831 *)__this)->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)((CachingComparer_2_t4066783831 *)__this)->get__comparer_1();
float L_5 = V_0;
float L_6 = (float)((CachingComparer_2_t4066783831 *)__this)->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_4, (float)L_5, (float)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)((CachingComparer_2_t4066783831 *)__this)->get__comparer_1();
float L_9 = (float)((CachingComparer_2_t4066783831 *)__this)->get__lastKey_3();
float L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8, (float)L_9, (float)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_004d;
}
}
{
CachingComparer_1_t454941278 * L_13 = (CachingComparer_1_t454941278 *)__this->get__child_4();
Vector2_t2156229523 L_14 = ___element0;
bool L_15 = ___cacheLower1;
NullCheck((CachingComparer_1_t454941278 *)L_13);
int32_t L_16 = VirtFuncInvoker2< int32_t, Vector2_t2156229523 , bool >::Invoke(4 /* System.Int32 System.Linq.CachingComparer`1<UnityEngine.Vector2>::Compare(TElement,System.Boolean) */, (CachingComparer_1_t454941278 *)L_13, (Vector2_t2156229523 )L_14, (bool)L_15);
return L_16;
}
IL_004d:
{
bool L_17 = ___cacheLower1;
int32_t L_18 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)))))
{
goto IL_0067;
}
}
{
float L_19 = V_0;
((CachingComparer_2_t4066783831 *)__this)->set__lastKey_3(L_19);
CachingComparer_1_t454941278 * L_20 = (CachingComparer_1_t454941278 *)__this->get__child_4();
Vector2_t2156229523 L_21 = ___element0;
NullCheck((CachingComparer_1_t454941278 *)L_20);
VirtActionInvoker1< Vector2_t2156229523 >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<UnityEngine.Vector2>::SetElement(TElement) */, (CachingComparer_1_t454941278 *)L_20, (Vector2_t2156229523 )L_21);
}
IL_0067:
{
int32_t L_22 = V_1;
return L_22;
}
}
// System.Void System.Linq.CachingComparerWithChild`2<UnityEngine.Vector2,System.Single>::SetElement(TElement)
extern "C" void CachingComparerWithChild_2_SetElement_m3512286775_gshared (CachingComparerWithChild_2_t3364548056 * __this, Vector2_t2156229523 ___element0, const RuntimeMethod* method)
{
{
Vector2_t2156229523 L_0 = ___element0;
NullCheck((CachingComparer_2_t4066783831 *)__this);
(( void (*) (CachingComparer_2_t4066783831 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((CachingComparer_2_t4066783831 *)__this, (Vector2_t2156229523 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
CachingComparer_1_t454941278 * L_1 = (CachingComparer_1_t454941278 *)__this->get__child_4();
Vector2_t2156229523 L_2 = ___element0;
NullCheck((CachingComparer_1_t454941278 *)L_1);
VirtActionInvoker1< Vector2_t2156229523 >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<UnityEngine.Vector2>::SetElement(TElement) */, (CachingComparer_1_t454941278 *)L_1, (Vector2_t2156229523 )L_2);
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.Linq.CachingComparerWithChild`2<UnityEngine.Vector3,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.CachingComparer`1<TElement>)
extern "C" void CachingComparerWithChild_2__ctor_m2854784206_gshared (CachingComparerWithChild_2_t3626112831 * __this, Func_2_t3934069716 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, CachingComparer_1_t2021025219 * ___child3, const RuntimeMethod* method)
{
{
Func_2_t3934069716 * L_0 = ___keySelector0;
RuntimeObject* L_1 = ___comparer1;
bool L_2 = ___descending2;
NullCheck((CachingComparer_2_t33381310 *)__this);
(( void (*) (CachingComparer_2_t33381310 *, Func_2_t3934069716 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((CachingComparer_2_t33381310 *)__this, (Func_2_t3934069716 *)L_0, (RuntimeObject*)L_1, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CachingComparer_1_t2021025219 * L_3 = ___child3;
__this->set__child_4(L_3);
return;
}
}
// System.Int32 System.Linq.CachingComparerWithChild`2<UnityEngine.Vector3,System.Single>::Compare(TElement,System.Boolean)
extern "C" int32_t CachingComparerWithChild_2_Compare_m719019543_gshared (CachingComparerWithChild_2_t3626112831 * __this, Vector3_t3722313464 ___element0, bool ___cacheLower1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
Func_2_t3934069716 * L_0 = (Func_2_t3934069716 *)((CachingComparer_2_t33381310 *)__this)->get__keySelector_0();
Vector3_t3722313464 L_1 = ___element0;
NullCheck((Func_2_t3934069716 *)L_0);
float L_2 = (( float (*) (Func_2_t3934069716 *, Vector3_t3722313464 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t3934069716 *)L_0, (Vector3_t3722313464 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
V_0 = (float)L_2;
bool L_3 = (bool)((CachingComparer_2_t33381310 *)__this)->get__descending_2();
if (L_3)
{
goto IL_0029;
}
}
{
RuntimeObject* L_4 = (RuntimeObject*)((CachingComparer_2_t33381310 *)__this)->get__comparer_1();
float L_5 = V_0;
float L_6 = (float)((CachingComparer_2_t33381310 *)__this)->get__lastKey_3();
NullCheck((RuntimeObject*)L_4);
int32_t L_7 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_4, (float)L_5, (float)L_6);
G_B3_0 = L_7;
goto IL_003b;
}
IL_0029:
{
RuntimeObject* L_8 = (RuntimeObject*)((CachingComparer_2_t33381310 *)__this)->get__comparer_1();
float L_9 = (float)((CachingComparer_2_t33381310 *)__this)->get__lastKey_3();
float L_10 = V_0;
NullCheck((RuntimeObject*)L_8);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8, (float)L_9, (float)L_10);
G_B3_0 = L_11;
}
IL_003b:
{
V_1 = (int32_t)G_B3_0;
int32_t L_12 = V_1;
if (L_12)
{
goto IL_004d;
}
}
{
CachingComparer_1_t2021025219 * L_13 = (CachingComparer_1_t2021025219 *)__this->get__child_4();
Vector3_t3722313464 L_14 = ___element0;
bool L_15 = ___cacheLower1;
NullCheck((CachingComparer_1_t2021025219 *)L_13);
int32_t L_16 = VirtFuncInvoker2< int32_t, Vector3_t3722313464 , bool >::Invoke(4 /* System.Int32 System.Linq.CachingComparer`1<UnityEngine.Vector3>::Compare(TElement,System.Boolean) */, (CachingComparer_1_t2021025219 *)L_13, (Vector3_t3722313464 )L_14, (bool)L_15);
return L_16;
}
IL_004d:
{
bool L_17 = ___cacheLower1;
int32_t L_18 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)))))
{
goto IL_0067;
}
}
{
float L_19 = V_0;
((CachingComparer_2_t33381310 *)__this)->set__lastKey_3(L_19);
CachingComparer_1_t2021025219 * L_20 = (CachingComparer_1_t2021025219 *)__this->get__child_4();
Vector3_t3722313464 L_21 = ___element0;
NullCheck((CachingComparer_1_t2021025219 *)L_20);
VirtActionInvoker1< Vector3_t3722313464 >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<UnityEngine.Vector3>::SetElement(TElement) */, (CachingComparer_1_t2021025219 *)L_20, (Vector3_t3722313464 )L_21);
}
IL_0067:
{
int32_t L_22 = V_1;
return L_22;
}
}
// System.Void System.Linq.CachingComparerWithChild`2<UnityEngine.Vector3,System.Single>::SetElement(TElement)
extern "C" void CachingComparerWithChild_2_SetElement_m3180861878_gshared (CachingComparerWithChild_2_t3626112831 * __this, Vector3_t3722313464 ___element0, const RuntimeMethod* method)
{
{
Vector3_t3722313464 L_0 = ___element0;
NullCheck((CachingComparer_2_t33381310 *)__this);
(( void (*) (CachingComparer_2_t33381310 *, Vector3_t3722313464 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((CachingComparer_2_t33381310 *)__this, (Vector3_t3722313464 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
CachingComparer_1_t2021025219 * L_1 = (CachingComparer_1_t2021025219 *)__this->get__child_4();
Vector3_t3722313464 L_2 = ___element0;
NullCheck((CachingComparer_1_t2021025219 *)L_1);
VirtActionInvoker1< Vector3_t3722313464 >::Invoke(5 /* System.Void System.Linq.CachingComparer`1<UnityEngine.Vector3>::SetElement(TElement) */, (CachingComparer_1_t2021025219 *)L_1, (Vector3_t3722313464 )L_2);
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.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::.ctor()
extern "C" void EmptyPartition_1__ctor_m4170571666_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_GetEnumerator_m2069673159_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.IEnumerator System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_System_Collections_IEnumerable_GetEnumerator_m4176629897_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::MoveNext()
extern "C" bool EmptyPartition_1_MoveNext_m2830277942_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::get_Current()
extern "C" DictionaryEntry_t3123975638 EmptyPartition_1_get_Current_m2996983978_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(DictionaryEntry_t3123975638 ));
DictionaryEntry_t3123975638 L_0 = V_0;
return L_0;
}
}
// System.Object System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * EmptyPartition_1_System_Collections_IEnumerator_get_Current_m2774479903_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(DictionaryEntry_t3123975638 ));
DictionaryEntry_t3123975638 L_0 = V_0;
DictionaryEntry_t3123975638 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_1);
return L_2;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
extern "C" void EmptyPartition_1_System_Collections_IEnumerator_Reset_m3733115514_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyPartition_1_System_Collections_IEnumerator_Reset_m3733115514_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyPartition_1_System_Collections_IEnumerator_Reset_m3733115514_RuntimeMethod_var);
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::System.IDisposable.Dispose()
extern "C" void EmptyPartition_1_System_IDisposable_Dispose_m85663191_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" DictionaryEntry_t3123975638 EmptyPartition_1_TryGetElementAt_m2842914032_gshared (EmptyPartition_1_t2757184672 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found1;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(DictionaryEntry_t3123975638 ));
DictionaryEntry_t3123975638 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::TryGetFirst(System.Boolean&)
extern "C" DictionaryEntry_t3123975638 EmptyPartition_1_TryGetFirst_m1982951067_gshared (EmptyPartition_1_t2757184672 * __this, bool* ___found0, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(DictionaryEntry_t3123975638 ));
DictionaryEntry_t3123975638 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::TryGetLast(System.Boolean&)
extern "C" DictionaryEntry_t3123975638 EmptyPartition_1_TryGetLast_m2069936327_gshared (EmptyPartition_1_t2757184672 * __this, bool* ___found0, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(DictionaryEntry_t3123975638 ));
DictionaryEntry_t3123975638 L_1 = V_0;
return L_1;
}
}
// TElement[] System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::ToArray()
extern "C" DictionaryEntryU5BU5D_t4217117203* EmptyPartition_1_ToArray_m578732672_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
DictionaryEntryU5BU5D_t4217117203* L_0 = (( DictionaryEntryU5BU5D_t4217117203* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_0;
}
}
// System.Collections.Generic.List`1<TElement> System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::ToList()
extern "C" List_1_t301083084 * EmptyPartition_1_ToList_m240270116_gshared (EmptyPartition_1_t2757184672 * __this, const RuntimeMethod* method)
{
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Int32 System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::GetCount(System.Boolean)
extern "C" int32_t EmptyPartition_1_GetCount_m700652209_gshared (EmptyPartition_1_t2757184672 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.DictionaryEntry>::.cctor()
extern "C" void EmptyPartition_1__cctor_m24920023_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
EmptyPartition_1_t2757184672 * L_0 = (EmptyPartition_1_t2757184672 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (EmptyPartition_1_t2757184672 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
((EmptyPartition_1_t2757184672_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))->set_Instance_0(L_0);
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.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
extern "C" void EmptyPartition_1__ctor_m275519022_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_GetEnumerator_m2365040334_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.IEnumerator System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_System_Collections_IEnumerable_GetEnumerator_m3248602084_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool EmptyPartition_1_MoveNext_m2365371069_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
extern "C" KeyValuePair_2_t2530217319 EmptyPartition_1_get_Current_m456712_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_0 = V_0;
return L_0;
}
}
// System.Object System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * EmptyPartition_1_System_Collections_IEnumerator_get_Current_m150476704_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_0 = V_0;
KeyValuePair_2_t2530217319 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_1);
return L_2;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void EmptyPartition_1_System_Collections_IEnumerator_Reset_m944359954_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyPartition_1_System_Collections_IEnumerator_Reset_m944359954_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyPartition_1_System_Collections_IEnumerator_Reset_m944359954_RuntimeMethod_var);
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.IDisposable.Dispose()
extern "C" void EmptyPartition_1_System_IDisposable_Dispose_m3492674962_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 EmptyPartition_1_TryGetElementAt_m2497710296_gshared (EmptyPartition_1_t2163426353 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found1;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetFirst(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 EmptyPartition_1_TryGetFirst_m559482675_gshared (EmptyPartition_1_t2163426353 * __this, bool* ___found0, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetLast(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 EmptyPartition_1_TryGetLast_m1441299256_gshared (EmptyPartition_1_t2163426353 * __this, bool* ___found0, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_1 = V_0;
return L_1;
}
}
// TElement[] System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* EmptyPartition_1_ToArray_m595655386_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2U5BU5D_t118269214* L_0 = (( KeyValuePair_2U5BU5D_t118269214* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_0;
}
}
// System.Collections.Generic.List`1<TElement> System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * EmptyPartition_1_ToList_m2227413023_gshared (EmptyPartition_1_t2163426353 * __this, const RuntimeMethod* method)
{
{
List_1_t4002292061 * L_0 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Int32 System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t EmptyPartition_1_GetCount_m2087578991_gshared (EmptyPartition_1_t2163426353 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.cctor()
extern "C" void EmptyPartition_1__cctor_m3326397427_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
EmptyPartition_1_t2163426353 * L_0 = (EmptyPartition_1_t2163426353 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (EmptyPartition_1_t2163426353 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
((EmptyPartition_1_t2163426353_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))->set_Instance_0(L_0);
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.Linq.EmptyPartition`1<System.Object>::.ctor()
extern "C" void EmptyPartition_1__ctor_m1324556942_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.EmptyPartition`1<System.Object>::GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_GetEnumerator_m4034385110_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.IEnumerator System.Linq.EmptyPartition`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_System_Collections_IEnumerable_GetEnumerator_m1943512692_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Linq.EmptyPartition`1<System.Object>::MoveNext()
extern "C" bool EmptyPartition_1_MoveNext_m3027126934_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// TElement System.Linq.EmptyPartition`1<System.Object>::get_Current()
extern "C" RuntimeObject * EmptyPartition_1_get_Current_m4265207326_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_0 = V_0;
return L_0;
}
}
// System.Object System.Linq.EmptyPartition`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * EmptyPartition_1_System_Collections_IEnumerator_get_Current_m1601347863_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_0 = V_0;
return L_0;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void EmptyPartition_1_System_Collections_IEnumerator_Reset_m1113105900_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyPartition_1_System_Collections_IEnumerator_Reset_m1113105900_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyPartition_1_System_Collections_IEnumerator_Reset_m1113105900_RuntimeMethod_var);
}
}
// System.Void System.Linq.EmptyPartition`1<System.Object>::System.IDisposable.Dispose()
extern "C" void EmptyPartition_1_System_IDisposable_Dispose_m3117725665_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// TElement System.Linq.EmptyPartition`1<System.Object>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" RuntimeObject * EmptyPartition_1_TryGetElementAt_m3940163582_gshared (EmptyPartition_1_t2713315198 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
bool* L_0 = ___found1;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Object>::TryGetFirst(System.Boolean&)
extern "C" RuntimeObject * EmptyPartition_1_TryGetFirst_m593080765_gshared (EmptyPartition_1_t2713315198 * __this, bool* ___found0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<System.Object>::TryGetLast(System.Boolean&)
extern "C" RuntimeObject * EmptyPartition_1_TryGetLast_m2150537268_gshared (EmptyPartition_1_t2713315198 * __this, bool* ___found0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_1 = V_0;
return L_1;
}
}
// TElement[] System.Linq.EmptyPartition`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* EmptyPartition_1_ToArray_m1773565891_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_0;
}
}
// System.Collections.Generic.List`1<TElement> System.Linq.EmptyPartition`1<System.Object>::ToList()
extern "C" List_1_t257213610 * EmptyPartition_1_ToList_m2944878630_gshared (EmptyPartition_1_t2713315198 * __this, const RuntimeMethod* method)
{
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Int32 System.Linq.EmptyPartition`1<System.Object>::GetCount(System.Boolean)
extern "C" int32_t EmptyPartition_1_GetCount_m3325448135_gshared (EmptyPartition_1_t2713315198 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Void System.Linq.EmptyPartition`1<System.Object>::.cctor()
extern "C" void EmptyPartition_1__cctor_m1677634983_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
EmptyPartition_1_t2713315198 * L_0 = (EmptyPartition_1_t2713315198 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (EmptyPartition_1_t2713315198 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
((EmptyPartition_1_t2713315198_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))->set_Instance_0(L_0);
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.Linq.EmptyPartition`1<UnityEngine.Ray>::.ctor()
extern "C" void EmptyPartition_1__ctor_m3454558495_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.EmptyPartition`1<UnityEngine.Ray>::GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_GetEnumerator_m2841442048_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.IEnumerator System.Linq.EmptyPartition`1<UnityEngine.Ray>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* EmptyPartition_1_System_Collections_IEnumerable_GetEnumerator_m3017943730_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Linq.EmptyPartition`1<UnityEngine.Ray>::MoveNext()
extern "C" bool EmptyPartition_1_MoveNext_m3527948209_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// TElement System.Linq.EmptyPartition`1<UnityEngine.Ray>::get_Current()
extern "C" Ray_t3785851493 EmptyPartition_1_get_Current_m559141384_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
Ray_t3785851493 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t3785851493 ));
Ray_t3785851493 L_0 = V_0;
return L_0;
}
}
// System.Object System.Linq.EmptyPartition`1<UnityEngine.Ray>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * EmptyPartition_1_System_Collections_IEnumerator_get_Current_m2051492582_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
Ray_t3785851493 V_0;
memset(&V_0, 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t3785851493 ));
Ray_t3785851493 L_0 = V_0;
Ray_t3785851493 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_1);
return L_2;
}
}
// System.Void System.Linq.EmptyPartition`1<UnityEngine.Ray>::System.Collections.IEnumerator.Reset()
extern "C" void EmptyPartition_1_System_Collections_IEnumerator_Reset_m400612218_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EmptyPartition_1_System_Collections_IEnumerator_Reset_m400612218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, EmptyPartition_1_System_Collections_IEnumerator_Reset_m400612218_RuntimeMethod_var);
}
}
// System.Void System.Linq.EmptyPartition`1<UnityEngine.Ray>::System.IDisposable.Dispose()
extern "C" void EmptyPartition_1_System_IDisposable_Dispose_m3639569699_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// TElement System.Linq.EmptyPartition`1<UnityEngine.Ray>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" Ray_t3785851493 EmptyPartition_1_TryGetElementAt_m3815154181_gshared (EmptyPartition_1_t3419060527 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
Ray_t3785851493 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found1;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t3785851493 ));
Ray_t3785851493 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<UnityEngine.Ray>::TryGetFirst(System.Boolean&)
extern "C" Ray_t3785851493 EmptyPartition_1_TryGetFirst_m2649955484_gshared (EmptyPartition_1_t3419060527 * __this, bool* ___found0, const RuntimeMethod* method)
{
Ray_t3785851493 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t3785851493 ));
Ray_t3785851493 L_1 = V_0;
return L_1;
}
}
// TElement System.Linq.EmptyPartition`1<UnityEngine.Ray>::TryGetLast(System.Boolean&)
extern "C" Ray_t3785851493 EmptyPartition_1_TryGetLast_m3105323548_gshared (EmptyPartition_1_t3419060527 * __this, bool* ___found0, const RuntimeMethod* method)
{
Ray_t3785851493 V_0;
memset(&V_0, 0, sizeof(V_0));
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t3785851493 ));
Ray_t3785851493 L_1 = V_0;
return L_1;
}
}
// TElement[] System.Linq.EmptyPartition`1<UnityEngine.Ray>::ToArray()
extern "C" RayU5BU5D_t1836217960* EmptyPartition_1_ToArray_m3357972257_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
RayU5BU5D_t1836217960* L_0 = (( RayU5BU5D_t1836217960* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_0;
}
}
// System.Collections.Generic.List`1<TElement> System.Linq.EmptyPartition`1<UnityEngine.Ray>::ToList()
extern "C" List_1_t962958939 * EmptyPartition_1_ToList_m2432462464_gshared (EmptyPartition_1_t3419060527 * __this, const RuntimeMethod* method)
{
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Int32 System.Linq.EmptyPartition`1<UnityEngine.Ray>::GetCount(System.Boolean)
extern "C" int32_t EmptyPartition_1_GetCount_m718360808_gshared (EmptyPartition_1_t3419060527 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Void System.Linq.EmptyPartition`1<UnityEngine.Ray>::.cctor()
extern "C" void EmptyPartition_1__cctor_m3362940958_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
EmptyPartition_1_t3419060527 * L_0 = (EmptyPartition_1_t3419060527 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (EmptyPartition_1_t3419060527 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
((EmptyPartition_1_t3419060527_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6)))->set_Instance_0(L_0);
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.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::.ctor(System.Int32)
extern "C" void U3CCastIteratorU3Ed__34_1__ctor_m2875754823_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
int32_t L_1 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_U3CU3El__initialThreadId_2(L_1);
return;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.IDisposable.Dispose()
extern "C" void U3CCastIteratorU3Ed__34_1_System_IDisposable_Dispose_m27720270_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001a;
}
}
IL_0010:
{
}
IL_0011:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x1A, FINALLY_0013);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0013;
}
FINALLY_0013:
{ // begin finally (depth: 1)
NullCheck((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2380794792 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IL2CPP_END_FINALLY(19)
} // end finally (depth: 1)
IL2CPP_CLEANUP(19)
{
IL2CPP_JUMP_TBL(0x1A, IL_001a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001a:
{
return;
}
}
// System.Boolean System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::MoveNext()
extern "C" bool U3CCastIteratorU3Ed__34_1_MoveNext_m2630395722_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_MoveNext_m2630395722_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0012;
}
}
IL_000a:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0057;
}
}
IL_000e:
{
V_0 = (bool)0;
goto IL_0084;
}
IL_0012:
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_3 = (RuntimeObject*)__this->get_source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set_U3CU3E7__wrap1_5(L_4);
__this->set_U3CU3E1__state_0(((int32_t)-3));
goto IL_005f;
}
IL_0034:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
V_2 = (RuntimeObject *)L_6;
RuntimeObject * L_7 = V_2;
__this->set_U3CU3E2__current_1(((*(DictionaryEntry_t3123975638 *)((DictionaryEntry_t3123975638 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))))));
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_0084;
}
IL_0057:
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
}
IL_005f:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0034;
}
}
IL_006c:
{
NullCheck((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2380794792 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set_U3CU3E7__wrap1_5((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_0084;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_007d;
}
FAULT_007d:
{ // begin fault (depth: 1)
NullCheck((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2380794792 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
IL2CPP_END_FINALLY(125)
} // end fault
IL2CPP_CLEANUP(125)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0084:
{
bool L_10 = V_0;
return L_10;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::<>m__Finally1()
extern "C" void U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m422500470_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m422500470_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
}
IL_001c:
{
return;
}
}
// TResult System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.Collections.Generic.IEnumerator<TResult>.get_Current()
extern "C" DictionaryEntry_t3123975638 U3CCastIteratorU3Ed__34_1_System_Collections_Generic_IEnumeratorU3CTResultU3E_get_Current_m2792367241_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_t3123975638 L_0 = (DictionaryEntry_t3123975638 )__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
extern "C" void U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m2243177754_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m2243177754_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m2243177754_RuntimeMethod_var);
}
}
// System.Object System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_get_Current_m4205268222_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_t3123975638 L_0 = (DictionaryEntry_t3123975638 )__this->get_U3CU3E2__current_1();
DictionaryEntry_t3123975638 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
extern "C" RuntimeObject* U3CCastIteratorU3Ed__34_1_System_Collections_Generic_IEnumerableU3CTResultU3E_GetEnumerator_m2792059496_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
U3CCastIteratorU3Ed__34_1_t2380794792 * V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = (int32_t)__this->get_U3CU3El__initialThreadId_2();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->set_U3CU3E1__state_0(0);
V_0 = (U3CCastIteratorU3Ed__34_1_t2380794792 *)__this;
goto IL_0029;
}
IL_0022:
{
U3CCastIteratorU3Ed__34_1_t2380794792 * L_3 = (U3CCastIteratorU3Ed__34_1_t2380794792 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (U3CCastIteratorU3Ed__34_1_t2380794792 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (U3CCastIteratorU3Ed__34_1_t2380794792 *)L_3;
}
IL_0029:
{
U3CCastIteratorU3Ed__34_1_t2380794792 * L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E3__source_4();
NullCheck(L_4);
L_4->set_source_3(L_5);
U3CCastIteratorU3Ed__34_1_t2380794792 * L_6 = V_0;
return L_6;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__34`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerable_GetEnumerator_m1302012913_gshared (U3CCastIteratorU3Ed__34_1_t2380794792 * __this, const RuntimeMethod* method)
{
{
NullCheck((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (U3CCastIteratorU3Ed__34_1_t2380794792 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2380794792 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
#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.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::.ctor(System.Int32)
extern "C" void U3CCastIteratorU3Ed__34_1__ctor_m1080907965_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
int32_t L_1 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_U3CU3El__initialThreadId_2(L_1);
return;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.IDisposable.Dispose()
extern "C" void U3CCastIteratorU3Ed__34_1_System_IDisposable_Dispose_m2751810117_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001a;
}
}
IL_0010:
{
}
IL_0011:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x1A, FINALLY_0013);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0013;
}
FINALLY_0013:
{ // begin finally (depth: 1)
NullCheck((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IL2CPP_END_FINALLY(19)
} // end finally (depth: 1)
IL2CPP_CLEANUP(19)
{
IL2CPP_JUMP_TBL(0x1A, IL_001a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001a:
{
return;
}
}
// System.Boolean System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::MoveNext()
extern "C" bool U3CCastIteratorU3Ed__34_1_MoveNext_m1350060915_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_MoveNext_m1350060915_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0012;
}
}
IL_000a:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0057;
}
}
IL_000e:
{
V_0 = (bool)0;
goto IL_0084;
}
IL_0012:
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_3 = (RuntimeObject*)__this->get_source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set_U3CU3E7__wrap1_5(L_4);
__this->set_U3CU3E1__state_0(((int32_t)-3));
goto IL_005f;
}
IL_0034:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
V_2 = (RuntimeObject *)L_6;
RuntimeObject * L_7 = V_2;
__this->set_U3CU3E2__current_1(((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))));
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_0084;
}
IL_0057:
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
}
IL_005f:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0034;
}
}
IL_006c:
{
NullCheck((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set_U3CU3E7__wrap1_5((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_0084;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_007d;
}
FAULT_007d:
{ // begin fault (depth: 1)
NullCheck((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this);
(( void (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
IL2CPP_END_FINALLY(125)
} // end fault
IL2CPP_CLEANUP(125)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0084:
{
bool L_10 = V_0;
return L_10;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::<>m__Finally1()
extern "C" void U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m1170799485_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_U3CU3Em__Finally1_m1170799485_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
}
IL_001c:
{
return;
}
}
// TResult System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current()
extern "C" RuntimeObject * U3CCastIteratorU3Ed__34_1_System_Collections_Generic_IEnumeratorU3CTResultU3E_get_Current_m2054378988_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m1970766840_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m1970766840_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_Reset_m1970766840_RuntimeMethod_var);
}
}
// System.Object System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerator_get_Current_m1871889621_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
extern "C" RuntimeObject* U3CCastIteratorU3Ed__34_1_System_Collections_Generic_IEnumerableU3CTResultU3E_GetEnumerator_m1909478283_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
U3CCastIteratorU3Ed__34_1_t2336925318 * V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = (int32_t)__this->get_U3CU3El__initialThreadId_2();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->set_U3CU3E1__state_0(0);
V_0 = (U3CCastIteratorU3Ed__34_1_t2336925318 *)__this;
goto IL_0029;
}
IL_0022:
{
U3CCastIteratorU3Ed__34_1_t2336925318 * L_3 = (U3CCastIteratorU3Ed__34_1_t2336925318 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (U3CCastIteratorU3Ed__34_1_t2336925318 *)L_3;
}
IL_0029:
{
U3CCastIteratorU3Ed__34_1_t2336925318 * L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E3__source_4();
NullCheck(L_4);
L_4->set_source_3(L_5);
U3CCastIteratorU3Ed__34_1_t2336925318 * L_6 = V_0;
return L_6;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__34`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* U3CCastIteratorU3Ed__34_1_System_Collections_IEnumerable_GetEnumerator_m2380902406_gshared (U3CCastIteratorU3Ed__34_1_t2336925318 * __this, const RuntimeMethod* method)
{
{
NullCheck((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((U3CCastIteratorU3Ed__34_1_t2336925318 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
#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.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::.ctor(System.Int32)
extern "C" void U3COfTypeIteratorU3Ed__32_1__ctor_m818071991_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
int32_t L_1 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_U3CU3El__initialThreadId_2(L_1);
return;
}
}
// System.Void System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.IDisposable.Dispose()
extern "C" void U3COfTypeIteratorU3Ed__32_1_System_IDisposable_Dispose_m770835778_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001a;
}
}
IL_0010:
{
}
IL_0011:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x1A, FINALLY_0013);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0013;
}
FINALLY_0013:
{ // begin finally (depth: 1)
NullCheck((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this);
(( void (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IL2CPP_END_FINALLY(19)
} // end finally (depth: 1)
IL2CPP_CLEANUP(19)
{
IL2CPP_JUMP_TBL(0x1A, IL_001a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001a:
{
return;
}
}
// System.Boolean System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::MoveNext()
extern "C" bool U3COfTypeIteratorU3Ed__32_1_MoveNext_m3609008656_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3COfTypeIteratorU3Ed__32_1_MoveNext_m3609008656_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0012;
}
}
IL_000a:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_005f;
}
}
IL_000e:
{
V_0 = (bool)0;
goto IL_008c;
}
IL_0012:
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_3 = (RuntimeObject*)__this->get_source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set_U3CU3E7__wrap1_5(L_4);
__this->set_U3CU3E1__state_0(((int32_t)-3));
goto IL_0067;
}
IL_0034:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
V_2 = (RuntimeObject *)L_6;
RuntimeObject * L_7 = V_2;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))))
{
goto IL_0067;
}
}
IL_0048:
{
RuntimeObject * L_8 = V_2;
__this->set_U3CU3E2__current_1(((RuntimeObject *)Castclass((RuntimeObject*)L_8, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1))));
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_008c;
}
IL_005f:
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
}
IL_0067:
{
RuntimeObject* L_9 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0034;
}
}
IL_0074:
{
NullCheck((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this);
(( void (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set_U3CU3E7__wrap1_5((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_008c;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_0085;
}
FAULT_0085:
{ // begin fault (depth: 1)
NullCheck((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this);
(( void (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
IL2CPP_END_FINALLY(133)
} // end fault
IL2CPP_CLEANUP(133)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_008c:
{
bool L_11 = V_0;
return L_11;
}
}
// System.Void System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::<>m__Finally1()
extern "C" void U3COfTypeIteratorU3Ed__32_1_U3CU3Em__Finally1_m1858632295_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3COfTypeIteratorU3Ed__32_1_U3CU3Em__Finally1_m1858632295_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3CU3E7__wrap1_5();
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
}
IL_001c:
{
return;
}
}
// TResult System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current()
extern "C" RuntimeObject * U3COfTypeIteratorU3Ed__32_1_System_Collections_Generic_IEnumeratorU3CTResultU3E_get_Current_m344540859_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_Reset_m2881299708_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_Reset_m2881299708_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_Reset_m2881299708_RuntimeMethod_var);
}
}
// System.Object System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerator_get_Current_m1555142817_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
extern "C" RuntimeObject* U3COfTypeIteratorU3Ed__32_1_System_Collections_Generic_IEnumerableU3CTResultU3E_GetEnumerator_m3054214528_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
U3COfTypeIteratorU3Ed__32_1_t2611376587 * V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = (int32_t)__this->get_U3CU3El__initialThreadId_2();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->set_U3CU3E1__state_0(0);
V_0 = (U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this;
goto IL_0029;
}
IL_0022:
{
U3COfTypeIteratorU3Ed__32_1_t2611376587 * L_3 = (U3COfTypeIteratorU3Ed__32_1_t2611376587 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (U3COfTypeIteratorU3Ed__32_1_t2611376587 *)L_3;
}
IL_0029:
{
U3COfTypeIteratorU3Ed__32_1_t2611376587 * L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E3__source_4();
NullCheck(L_4);
L_4->set_source_3(L_5);
U3COfTypeIteratorU3Ed__32_1_t2611376587 * L_6 = V_0;
return L_6;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* U3COfTypeIteratorU3Ed__32_1_System_Collections_IEnumerable_GetEnumerator_m4081693265_gshared (U3COfTypeIteratorU3Ed__32_1_t2611376587 * __this, const RuntimeMethod* method)
{
{
NullCheck((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((U3COfTypeIteratorU3Ed__32_1_t2611376587 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
#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.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::.ctor(System.Int32)
extern "C" void U3CZipIteratorU3Ed__236_3__ctor_m837336_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
int32_t L_1 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_U3CU3El__initialThreadId_2(L_1);
return;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.IDisposable.Dispose()
extern "C" void U3CZipIteratorU3Ed__236_3_System_IDisposable_Dispose_m486147753_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)-4)))) > ((uint32_t)1))))
{
goto IL_0012;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_002f;
}
}
IL_0012:
{
}
IL_0013:
try
{ // begin try (depth: 1)
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)-4))))
{
goto IL_001e;
}
}
IL_0018:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_001e;
}
}
IL_001c:
{
IL2CPP_LEAVE(0x2F, FINALLY_0028);
}
IL_001e:
{
}
IL_001f:
try
{ // begin try (depth: 2)
IL2CPP_LEAVE(0x2F, FINALLY_0021);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0021;
}
FINALLY_0021:
{ // begin finally (depth: 2)
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IL2CPP_END_FINALLY(33)
} // end finally (depth: 2)
IL2CPP_CLEANUP(33)
{
IL2CPP_END_CLEANUP(0x2F, FINALLY_0028);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0028;
}
FINALLY_0028:
{ // begin finally (depth: 1)
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
IL2CPP_END_FINALLY(40)
} // end finally (depth: 1)
IL2CPP_CLEANUP(40)
{
IL2CPP_JUMP_TBL(0x2F, IL_002f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002f:
{
return;
}
}
// System.Boolean System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::MoveNext()
extern "C" bool U3CZipIteratorU3Ed__236_3_MoveNext_m1816982793_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_MoveNext_m1816982793_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
IL_000a:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0082;
}
}
IL_000e:
{
V_0 = (bool)0;
goto IL_00c9;
}
IL_0015:
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_3 = (RuntimeObject*)__this->get_first_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3);
__this->set_U3Ce1U3E5__1_9(L_4);
__this->set_U3CU3E1__state_0(((int32_t)-3));
RuntimeObject* L_5 = (RuntimeObject*)__this->get_second_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_5);
__this->set_U3Ce2U3E5__2_10(L_6);
__this->set_U3CU3E1__state_0(((int32_t)-4));
goto IL_008a;
}
IL_0050:
{
Func_3_t415791182 * L_7 = (Func_3_t415791182 *)__this->get_resultSelector_7();
RuntimeObject* L_8 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8);
RuntimeObject* L_10 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_10);
NullCheck((Func_3_t415791182 *)L_7);
bool L_12 = (( bool (*) (Func_3_t415791182 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_3_t415791182 *)L_7, (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
__this->set_U3CU3E2__current_1(L_12);
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_00c9;
}
IL_0082:
{
__this->set_U3CU3E1__state_0(((int32_t)-4));
}
IL_008a:
{
RuntimeObject* L_13 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (!L_14)
{
goto IL_00a4;
}
}
IL_0097:
{
RuntimeObject* L_15 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_15);
bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0050;
}
}
IL_00a4:
{
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set_U3Ce2U3E5__2_10((RuntimeObject*)NULL);
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
__this->set_U3Ce1U3E5__1_9((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_00c9;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_00c2;
}
FAULT_00c2:
{ // begin fault (depth: 1)
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
IL2CPP_END_FINALLY(194)
} // end fault
IL2CPP_CLEANUP(194)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c9:
{
bool L_17 = V_0;
return L_17;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::<>m__Finally1()
extern "C" void U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m1076864441_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m1076864441_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
}
IL_001a:
{
return;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::<>m__Finally2()
extern "C" void U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m3805747796_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m3805747796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
if (!L_0)
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
}
IL_001b:
{
return;
}
}
// TResult System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.Collections.Generic.IEnumerator<TResult>.get_Current()
extern "C" bool U3CZipIteratorU3Ed__236_3_System_Collections_Generic_IEnumeratorU3CTResultU3E_get_Current_m4103989104_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
extern "C" void U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m1310433548_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m1310433548_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m1310433548_RuntimeMethod_var);
}
}
// System.Object System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_get_Current_m2116290344_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_U3CU3E2__current_1();
bool L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), &L_1);
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
extern "C" RuntimeObject* U3CZipIteratorU3Ed__236_3_System_Collections_Generic_IEnumerableU3CTResultU3E_GetEnumerator_m3454626208_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
U3CZipIteratorU3Ed__236_3_t96320846 * V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = (int32_t)__this->get_U3CU3El__initialThreadId_2();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->set_U3CU3E1__state_0(0);
V_0 = (U3CZipIteratorU3Ed__236_3_t96320846 *)__this;
goto IL_0029;
}
IL_0022:
{
U3CZipIteratorU3Ed__236_3_t96320846 * L_3 = (U3CZipIteratorU3Ed__236_3_t96320846 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9));
(( void (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(L_3, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_0 = (U3CZipIteratorU3Ed__236_3_t96320846 *)L_3;
}
IL_0029:
{
U3CZipIteratorU3Ed__236_3_t96320846 * L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E3__first_4();
NullCheck(L_4);
L_4->set_first_3(L_5);
U3CZipIteratorU3Ed__236_3_t96320846 * L_6 = V_0;
RuntimeObject* L_7 = (RuntimeObject*)__this->get_U3CU3E3__second_6();
NullCheck(L_6);
L_6->set_second_5(L_7);
U3CZipIteratorU3Ed__236_3_t96320846 * L_8 = V_0;
Func_3_t415791182 * L_9 = (Func_3_t415791182 *)__this->get_U3CU3E3__resultSelector_8();
NullCheck(L_8);
L_8->set_resultSelector_7(L_9);
U3CZipIteratorU3Ed__236_3_t96320846 * L_10 = V_0;
return L_10;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Boolean>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerable_GetEnumerator_m2980059552_gshared (U3CZipIteratorU3Ed__236_3_t96320846 * __this, const RuntimeMethod* method)
{
{
NullCheck((U3CZipIteratorU3Ed__236_3_t96320846 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (U3CZipIteratorU3Ed__236_3_t96320846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((U3CZipIteratorU3Ed__236_3_t96320846 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_0;
}
}
#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.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::.ctor(System.Int32)
extern "C" void U3CZipIteratorU3Ed__236_3__ctor_m1753544174_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
int32_t L_1 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_U3CU3El__initialThreadId_2(L_1);
return;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.IDisposable.Dispose()
extern "C" void U3CZipIteratorU3Ed__236_3_System_IDisposable_Dispose_m1927409564_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)-4)))) > ((uint32_t)1))))
{
goto IL_0012;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_002f;
}
}
IL_0012:
{
}
IL_0013:
try
{ // begin try (depth: 1)
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)-4))))
{
goto IL_001e;
}
}
IL_0018:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_001e;
}
}
IL_001c:
{
IL2CPP_LEAVE(0x2F, FINALLY_0028);
}
IL_001e:
{
}
IL_001f:
try
{ // begin try (depth: 2)
IL2CPP_LEAVE(0x2F, FINALLY_0021);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0021;
}
FINALLY_0021:
{ // begin finally (depth: 2)
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IL2CPP_END_FINALLY(33)
} // end finally (depth: 2)
IL2CPP_CLEANUP(33)
{
IL2CPP_END_CLEANUP(0x2F, FINALLY_0028);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0028;
}
FINALLY_0028:
{ // begin finally (depth: 1)
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
IL2CPP_END_FINALLY(40)
} // end finally (depth: 1)
IL2CPP_CLEANUP(40)
{
IL2CPP_JUMP_TBL(0x2F, IL_002f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002f:
{
return;
}
}
// System.Boolean System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::MoveNext()
extern "C" bool U3CZipIteratorU3Ed__236_3_MoveNext_m3903008563_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_MoveNext_m3903008563_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_1 = (int32_t)L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
IL_000a:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0082;
}
}
IL_000e:
{
V_0 = (bool)0;
goto IL_00c9;
}
IL_0015:
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_3 = (RuntimeObject*)__this->get_first_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (RuntimeObject*)L_3);
__this->set_U3Ce1U3E5__1_9(L_4);
__this->set_U3CU3E1__state_0(((int32_t)-3));
RuntimeObject* L_5 = (RuntimeObject*)__this->get_second_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3), (RuntimeObject*)L_5);
__this->set_U3Ce2U3E5__2_10(L_6);
__this->set_U3CU3E1__state_0(((int32_t)-4));
goto IL_008a;
}
IL_0050:
{
Func_3_t3398609381 * L_7 = (Func_3_t3398609381 *)__this->get_resultSelector_7();
RuntimeObject* L_8 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8);
RuntimeObject* L_10 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_10);
NullCheck((Func_3_t3398609381 *)L_7);
RuntimeObject * L_12 = (( RuntimeObject * (*) (Func_3_t3398609381 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_3_t3398609381 *)L_7, (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
__this->set_U3CU3E2__current_1(L_12);
__this->set_U3CU3E1__state_0(1);
V_0 = (bool)1;
goto IL_00c9;
}
IL_0082:
{
__this->set_U3CU3E1__state_0(((int32_t)-4));
}
IL_008a:
{
RuntimeObject* L_13 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (!L_14)
{
goto IL_00a4;
}
}
IL_0097:
{
RuntimeObject* L_15 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_15);
bool L_16 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
if (L_16)
{
goto IL_0050;
}
}
IL_00a4:
{
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
__this->set_U3Ce2U3E5__2_10((RuntimeObject*)NULL);
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
__this->set_U3Ce1U3E5__1_9((RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_00c9;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FAULT_00c2;
}
FAULT_00c2:
{ // begin fault (depth: 1)
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
IL2CPP_END_FINALLY(194)
} // end fault
IL2CPP_CLEANUP(194)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c9:
{
bool L_17 = V_0;
return L_17;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::<>m__Finally1()
extern "C" void U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m2419129058_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally1_m2419129058_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_U3CU3E1__state_0((-1));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_U3Ce1U3E5__1_9();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
}
IL_001a:
{
return;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::<>m__Finally2()
extern "C" void U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m2419325666_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_U3CU3Em__Finally2_m2419325666_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_U3CU3E1__state_0(((int32_t)-3));
RuntimeObject* L_0 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
if (!L_0)
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get_U3Ce2U3E5__2_10();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
}
IL_001b:
{
return;
}
}
// TResult System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current()
extern "C" RuntimeObject * U3CZipIteratorU3Ed__236_3_System_Collections_Generic_IEnumeratorU3CTResultU3E_get_Current_m2488815758_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m4173235672_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m4173235672_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_Reset_m4173235672_RuntimeMethod_var);
}
}
// System.Object System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerator_get_Current_m3434574415_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
extern "C" RuntimeObject* U3CZipIteratorU3Ed__236_3_System_Collections_Generic_IEnumerableU3CTResultU3E_GetEnumerator_m24637357_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
U3CZipIteratorU3Ed__236_3_t3079139045 * V_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = (int32_t)__this->get_U3CU3El__initialThreadId_2();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->set_U3CU3E1__state_0(0);
V_0 = (U3CZipIteratorU3Ed__236_3_t3079139045 *)__this;
goto IL_0029;
}
IL_0022:
{
U3CZipIteratorU3Ed__236_3_t3079139045 * L_3 = (U3CZipIteratorU3Ed__236_3_t3079139045 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9));
(( void (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(L_3, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_0 = (U3CZipIteratorU3Ed__236_3_t3079139045 *)L_3;
}
IL_0029:
{
U3CZipIteratorU3Ed__236_3_t3079139045 * L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)__this->get_U3CU3E3__first_4();
NullCheck(L_4);
L_4->set_first_3(L_5);
U3CZipIteratorU3Ed__236_3_t3079139045 * L_6 = V_0;
RuntimeObject* L_7 = (RuntimeObject*)__this->get_U3CU3E3__second_6();
NullCheck(L_6);
L_6->set_second_5(L_7);
U3CZipIteratorU3Ed__236_3_t3079139045 * L_8 = V_0;
Func_3_t3398609381 * L_9 = (Func_3_t3398609381 *)__this->get_U3CU3E3__resultSelector_8();
NullCheck(L_8);
L_8->set_resultSelector_7(L_9);
U3CZipIteratorU3Ed__236_3_t3079139045 * L_10 = V_0;
return L_10;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/<ZipIterator>d__236`3<System.Object,System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* U3CZipIteratorU3Ed__236_3_System_Collections_IEnumerable_GetEnumerator_m3042939067_gshared (U3CZipIteratorU3Ed__236_3_t3079139045 * __this, const RuntimeMethod* method)
{
{
NullCheck((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (U3CZipIteratorU3Ed__236_3_t3079139045 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((U3CZipIteratorU3Ed__236_3_t3079139045 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_0;
}
}
#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.Linq.Enumerable/Iterator`1<System.Char>::.ctor()
extern "C" void Iterator_1__ctor_m1480409028_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set__threadId_0(L_0);
return;
}
}
// TSource System.Linq.Enumerable/Iterator`1<System.Char>::get_Current()
extern "C" Il2CppChar Iterator_1_get_Current_m965409121_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get__current_2();
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose()
extern "C" void Iterator_1_Dispose_m172456093_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = (Il2CppChar*)__this->get_address_of__current_2();
il2cpp_codegen_initobj(L_0, sizeof(Il2CppChar));
__this->set__state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Char>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m381843590_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
Iterator_1_t2588820807 * G_B4_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__state_1();
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = (int32_t)__this->get__threadId_0();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
IL_0015:
{
NullCheck((Iterator_1_t2588820807 *)__this);
Iterator_1_t2588820807 * L_3 = VirtFuncInvoker0< Iterator_1_t2588820807 * >::Invoke(11 /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Char>::Clone() */, (Iterator_1_t2588820807 *)__this);
G_B4_0 = L_3;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = __this;
}
IL_001e:
{
Iterator_1_t2588820807 * L_4 = (Iterator_1_t2588820807 *)G_B4_0;
NullCheck(L_4);
L_4->set__state_1(1);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Char>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* Iterator_1_Where_m3593116308_gshared (Iterator_1_t2588820807 * __this, Func_2_t148644517 * ___predicate0, const RuntimeMethod* method)
{
{
Func_2_t148644517 * L_0 = ___predicate0;
WhereEnumerableIterator_1_t2739994797 * L_1 = (WhereEnumerableIterator_1_t2739994797 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (WhereEnumerableIterator_1_t2739994797 *, RuntimeObject*, Func_2_t148644517 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t148644517 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Object System.Linq.Enumerable/Iterator`1<System.Char>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m3299259701_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2588820807 *)__this);
Il2CppChar L_0 = (( Il2CppChar (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_1);
return L_2;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Char>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m2610373035_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2588820807 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Char>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m3089157613_gshared (Iterator_1_t2588820807 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m3089157613_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m3089157613_RuntimeMethod_var);
}
}
#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.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::.ctor()
extern "C" void Iterator_1__ctor_m2419643334_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set__threadId_0(L_0);
return;
}
}
// TSource System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::get_Current()
extern "C" DictionaryEntry_t3123975638 Iterator_1_get_Current_m1841868796_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_t3123975638 L_0 = (DictionaryEntry_t3123975638 )__this->get__current_2();
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::Dispose()
extern "C" void Iterator_1_Dispose_m101278873_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
{
DictionaryEntry_t3123975638 * L_0 = (DictionaryEntry_t3123975638 *)__this->get_address_of__current_2();
il2cpp_codegen_initobj(L_0, sizeof(DictionaryEntry_t3123975638 ));
__this->set__state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m4127302831_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
Iterator_1_t2078335975 * G_B4_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__state_1();
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = (int32_t)__this->get__threadId_0();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
IL_0015:
{
NullCheck((Iterator_1_t2078335975 *)__this);
Iterator_1_t2078335975 * L_3 = VirtFuncInvoker0< Iterator_1_t2078335975 * >::Invoke(11 /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::Clone() */, (Iterator_1_t2078335975 *)__this);
G_B4_0 = L_3;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = __this;
}
IL_001e:
{
Iterator_1_t2078335975 * L_4 = (Iterator_1_t2078335975 *)G_B4_0;
NullCheck(L_4);
L_4->set__state_1(1);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* Iterator_1_Where_m2092277878_gshared (Iterator_1_t2078335975 * __this, Func_2_t837490053 * ___predicate0, const RuntimeMethod* method)
{
{
Func_2_t837490053 * L_0 = ___predicate0;
WhereEnumerableIterator_1_t2229509965 * L_1 = (WhereEnumerableIterator_1_t2229509965 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (WhereEnumerableIterator_1_t2229509965 *, RuntimeObject*, Func_2_t837490053 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t837490053 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Object System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m2321364664_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2078335975 *)__this);
DictionaryEntry_t3123975638 L_0 = (( DictionaryEntry_t3123975638 (*) (Iterator_1_t2078335975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Iterator_1_t2078335975 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
DictionaryEntry_t3123975638 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_1);
return L_2;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m773252142_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2078335975 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t2078335975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Iterator_1_t2078335975 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m6790728_gshared (Iterator_1_t2078335975 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m6790728_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m6790728_RuntimeMethod_var);
}
}
#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.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
extern "C" void Iterator_1__ctor_m693774339_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set__threadId_0(L_0);
return;
}
}
// TSource System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
extern "C" KeyValuePair_2_t2530217319 Iterator_1_get_Current_m2095114607_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t2530217319 L_0 = (KeyValuePair_2_t2530217319 )__this->get__current_2();
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void Iterator_1_Dispose_m3566902763_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t2530217319 * L_0 = (KeyValuePair_2_t2530217319 *)__this->get_address_of__current_2();
il2cpp_codegen_initobj(L_0, sizeof(KeyValuePair_2_t2530217319 ));
__this->set__state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m1838651557_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
Iterator_1_t1484577656 * G_B4_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__state_1();
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = (int32_t)__this->get__threadId_0();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
IL_0015:
{
NullCheck((Iterator_1_t1484577656 *)__this);
Iterator_1_t1484577656 * L_3 = VirtFuncInvoker0< Iterator_1_t1484577656 * >::Invoke(11 /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone() */, (Iterator_1_t1484577656 *)__this);
G_B4_0 = L_3;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = __this;
}
IL_001e:
{
Iterator_1_t1484577656 * L_4 = (Iterator_1_t1484577656 *)G_B4_0;
NullCheck(L_4);
L_4->set__state_1(1);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* Iterator_1_Where_m2679016702_gshared (Iterator_1_t1484577656 * __this, Func_2_t1033609360 * ___predicate0, const RuntimeMethod* method)
{
{
Func_2_t1033609360 * L_0 = ___predicate0;
WhereEnumerableIterator_1_t1635751646 * L_1 = (WhereEnumerableIterator_1_t1635751646 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (WhereEnumerableIterator_1_t1635751646 *, RuntimeObject*, Func_2_t1033609360 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t1033609360 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Object System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m4020877125_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
KeyValuePair_2_t2530217319 L_0 = (( KeyValuePair_2_t2530217319 (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
KeyValuePair_2_t2530217319 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_1);
return L_2;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m1563948712_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m4174779311_gshared (Iterator_1_t1484577656 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m4174779311_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m4174779311_RuntimeMethod_var);
}
}
#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.Linq.Enumerable/Iterator`1<System.Object>::.ctor()
extern "C" void Iterator_1__ctor_m374079053_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set__threadId_0(L_0);
return;
}
}
// TSource System.Linq.Enumerable/Iterator`1<System.Object>::get_Current()
extern "C" RuntimeObject * Iterator_1_get_Current_m208940386_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_2();
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose()
extern "C" void Iterator_1_Dispose_m274730813_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__current_2();
il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *));
__this->set__state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m4184209818_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
Iterator_1_t2034466501 * G_B4_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__state_1();
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = (int32_t)__this->get__threadId_0();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
IL_0015:
{
NullCheck((Iterator_1_t2034466501 *)__this);
Iterator_1_t2034466501 * L_3 = VirtFuncInvoker0< Iterator_1_t2034466501 * >::Invoke(11 /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Clone() */, (Iterator_1_t2034466501 *)__this);
G_B4_0 = L_3;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = __this;
}
IL_001e:
{
Iterator_1_t2034466501 * L_4 = (Iterator_1_t2034466501 *)G_B4_0;
NullCheck(L_4);
L_4->set__state_1(1);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* Iterator_1_Where_m3853384958_gshared (Iterator_1_t2034466501 * __this, Func_2_t3759279471 * ___predicate0, const RuntimeMethod* method)
{
{
Func_2_t3759279471 * L_0 = ___predicate0;
WhereEnumerableIterator_1_t2185640491 * L_1 = (WhereEnumerableIterator_1_t2185640491 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (WhereEnumerableIterator_1_t2185640491 *, RuntimeObject*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t3759279471 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Object System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m1841106287_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
RuntimeObject * L_0 = (( RuntimeObject * (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m1813022145_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m2523254832_gshared (Iterator_1_t2034466501 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m2523254832_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m2523254832_RuntimeMethod_var);
}
}
#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.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::.ctor()
extern "C" void Iterator_1__ctor_m2958259103_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set__threadId_0(L_0);
return;
}
}
// TSource System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::get_Current()
extern "C" Ray_t3785851493 Iterator_1_get_Current_m4237267243_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
{
Ray_t3785851493 L_0 = (Ray_t3785851493 )__this->get__current_2();
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Dispose()
extern "C" void Iterator_1_Dispose_m705651954_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
{
Ray_t3785851493 * L_0 = (Ray_t3785851493 *)__this->get_address_of__current_2();
il2cpp_codegen_initobj(L_0, sizeof(Ray_t3785851493 ));
__this->set__state_1((-1));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::GetEnumerator()
extern "C" RuntimeObject* Iterator_1_GetEnumerator_m3408152577_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
Iterator_1_t2740211830 * G_B4_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__state_1();
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = (int32_t)__this->get__threadId_0();
int32_t L_2 = Environment_get_CurrentManagedThreadId_m3454612449(NULL /*static, unused*/, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
IL_0015:
{
NullCheck((Iterator_1_t2740211830 *)__this);
Iterator_1_t2740211830 * L_3 = VirtFuncInvoker0< Iterator_1_t2740211830 * >::Invoke(11 /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Clone() */, (Iterator_1_t2740211830 *)__this);
G_B4_0 = L_3;
goto IL_001e;
}
IL_001d:
{
G_B4_0 = __this;
}
IL_001e:
{
Iterator_1_t2740211830 * L_4 = (Iterator_1_t2740211830 *)G_B4_0;
NullCheck(L_4);
L_4->set__state_1(1);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* Iterator_1_Where_m2001696234_gshared (Iterator_1_t2740211830 * __this, Func_2_t2751558106 * ___predicate0, const RuntimeMethod* method)
{
{
Func_2_t2751558106 * L_0 = ___predicate0;
WhereEnumerableIterator_1_t2891385820 * L_1 = (WhereEnumerableIterator_1_t2891385820 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (WhereEnumerableIterator_1_t2891385820 *, RuntimeObject*, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t2751558106 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Object System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * Iterator_1_System_Collections_IEnumerator_get_Current_m2446919313_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2740211830 *)__this);
Ray_t3785851493 L_0 = (( Ray_t3785851493 (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
Ray_t3785851493 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), &L_1);
return L_2;
}
}
// System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Iterator_1_System_Collections_IEnumerable_GetEnumerator_m1928497675_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2740211830 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_0;
}
}
// System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::System.Collections.IEnumerator.Reset()
extern "C" void Iterator_1_System_Collections_IEnumerator_Reset_m2805409862_gshared (Iterator_1_t2740211830 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Iterator_1_System_Collections_IEnumerator_Reset_m2805409862_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Iterator_1_System_Collections_IEnumerator_Reset_m2805409862_RuntimeMethod_var);
}
}
#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.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(TSource[],System.Func`2<TSource,TResult>)
extern "C" void SelectArrayIterator_2__ctor_m3415729862_gshared (SelectArrayIterator_2_t1643067185 * __this, DictionaryEntryU5BU5D_t4217117203* ___source0, Func_2_t3270419407 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DictionaryEntryU5BU5D_t4217117203* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3270419407 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectArrayIterator_2_Clone_m1968224958_gshared (SelectArrayIterator_2_t1643067185 * __this, const RuntimeMethod* method)
{
{
DictionaryEntryU5BU5D_t4217117203* L_0 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
SelectArrayIterator_2_t1643067185 * L_2 = (SelectArrayIterator_2_t1643067185 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectArrayIterator_2_t1643067185 *, DictionaryEntryU5BU5D_t4217117203*, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (DictionaryEntryU5BU5D_t4217117203*)L_0, (Func_2_t3270419407 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectArrayIterator_2_MoveNext_m3207850643_gshared (SelectArrayIterator_2_t1643067185 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
int32_t L_1 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
DictionaryEntryU5BU5D_t4217117203* L_2 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_2);
if (!((int32_t)((int32_t)((((int32_t)L_0) < ((int32_t)1))? 1 : 0)|(int32_t)((((int32_t)L_1) == ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length)))), (int32_t)1))))? 1 : 0))))
{
goto IL_0026;
}
}
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
return (bool)0;
}
IL_0026:
{
int32_t L_3 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_1 = (int32_t)L_3;
int32_t L_4 = V_1;
((Iterator_1_t1484577656 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t L_5 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1));
Func_2_t3270419407 * L_6 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_7 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
DictionaryEntry_t3123975638 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Func_2_t3270419407 *)L_6);
KeyValuePair_2_t2530217319 L_11 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_6, (DictionaryEntry_t3123975638 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_11);
return (bool)1;
}
}
// TResult[] System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectArrayIterator_2_ToArray_m2917801920_gshared (SelectArrayIterator_2_t1643067185 * __this, const RuntimeMethod* method)
{
KeyValuePair_2U5BU5D_t118269214* V_0 = NULL;
int32_t V_1 = 0;
{
DictionaryEntryU5BU5D_t4217117203* L_0 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_0);
V_0 = (KeyValuePair_2U5BU5D_t118269214*)((KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))));
V_1 = (int32_t)0;
goto IL_0034;
}
IL_0012:
{
KeyValuePair_2U5BU5D_t118269214* L_1 = V_0;
int32_t L_2 = V_1;
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_4 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
DictionaryEntry_t3123975638 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t3270419407 *)L_3);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (KeyValuePair_2_t2530217319 )L_8);
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0034:
{
int32_t L_10 = V_1;
KeyValuePair_2U5BU5D_t118269214* L_11 = V_0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))))))
{
goto IL_0012;
}
}
{
KeyValuePair_2U5BU5D_t118269214* L_12 = V_0;
return L_12;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectArrayIterator_2_ToList_m664023846_gshared (SelectArrayIterator_2_t1643067185 * __this, const RuntimeMethod* method)
{
DictionaryEntryU5BU5D_t4217117203* V_0 = NULL;
List_1_t4002292061 * V_1 = NULL;
int32_t V_2 = 0;
{
DictionaryEntryU5BU5D_t4217117203* L_0 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
V_0 = (DictionaryEntryU5BU5D_t4217117203*)L_0;
DictionaryEntryU5BU5D_t4217117203* L_1 = V_0;
NullCheck(L_1);
List_1_t4002292061 * L_2 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (List_1_t4002292061 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_1 = (List_1_t4002292061 *)L_2;
V_2 = (int32_t)0;
goto IL_0030;
}
IL_0014:
{
List_1_t4002292061 * L_3 = V_1;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_5 = V_0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
DictionaryEntry_t3123975638 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck((List_1_t4002292061 *)L_3);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t4002292061 *)L_3, (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0030:
{
int32_t L_11 = V_2;
DictionaryEntryU5BU5D_t4217117203* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0014;
}
}
{
List_1_t4002292061 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectArrayIterator_2_GetCount_m312621225_gshared (SelectArrayIterator_2_t1643067185 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
DictionaryEntryU5BU5D_t4217117203* V_0 = NULL;
int32_t V_1 = 0;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_002d;
}
}
{
DictionaryEntryU5BU5D_t4217117203* L_1 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
V_0 = (DictionaryEntryU5BU5D_t4217117203*)L_1;
V_1 = (int32_t)0;
goto IL_0027;
}
IL_000e:
{
DictionaryEntryU5BU5D_t4217117203* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
DictionaryEntry_t3123975638 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (DictionaryEntry_t3123975638 )L_5;
Func_2_t3270419407 * L_6 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_7 = V_2;
NullCheck((Func_2_t3270419407 *)L_6);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_6, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0027:
{
int32_t L_9 = V_1;
DictionaryEntryU5BU5D_t4217117203* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_000e;
}
}
IL_002d:
{
DictionaryEntryU5BU5D_t4217117203* L_11 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_11);
return (((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))));
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectArrayIterator_2_TryGetElementAt_m4000501117_gshared (SelectArrayIterator_2_t1643067185 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
DictionaryEntryU5BU5D_t4217117203* L_1 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_1);
if ((!(((uint32_t)L_0) < ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))))))
{
goto IL_0026;
}
}
{
bool* L_2 = ___found1;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_4 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
int32_t L_5 = ___index0;
NullCheck(L_4);
int32_t L_6 = L_5;
DictionaryEntry_t3123975638 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t3270419407 *)L_3);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_8;
}
IL_0026:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetFirst(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectArrayIterator_2_TryGetFirst_m3977257204_gshared (SelectArrayIterator_2_t1643067185 * __this, bool* ___found0, const RuntimeMethod* method)
{
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)1;
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_2 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_2);
int32_t L_3 = 0;
DictionaryEntry_t3123975638 L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
NullCheck((Func_2_t3270419407 *)L_1);
KeyValuePair_2_t2530217319 L_5 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_1, (DictionaryEntry_t3123975638 )L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_5;
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetLast(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectArrayIterator_2_TryGetLast_m2976240509_gshared (SelectArrayIterator_2_t1643067185 * __this, bool* ___found0, const RuntimeMethod* method)
{
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)1;
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntryU5BU5D_t4217117203* L_2 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
DictionaryEntryU5BU5D_t4217117203* L_3 = (DictionaryEntryU5BU5D_t4217117203*)__this->get__source_3();
NullCheck(L_3);
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)1));
DictionaryEntry_t3123975638 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck((Func_2_t3270419407 *)L_1);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3270419407 *)L_1, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_6;
}
}
#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.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::.ctor(TSource[],System.Func`2<TSource,TResult>)
extern "C" void SelectArrayIterator_2__ctor_m623539725_gshared (SelectArrayIterator_2_t819778152 * __this, ObjectU5BU5D_t2843939325* ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ObjectU5BU5D_t2843939325* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2447130374 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectArrayIterator_2_Clone_m1894810258_gshared (SelectArrayIterator_2_t819778152 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
SelectArrayIterator_2_t819778152 * L_2 = (SelectArrayIterator_2_t819778152 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectArrayIterator_2_t819778152 *, ObjectU5BU5D_t2843939325*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t2447130374 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectArrayIterator_2_MoveNext_m1546943899_gshared (SelectArrayIterator_2_t819778152 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
int32_t L_1 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_2);
if (!((int32_t)((int32_t)((((int32_t)L_0) < ((int32_t)1))? 1 : 0)|(int32_t)((((int32_t)L_1) == ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length)))), (int32_t)1))))? 1 : 0))))
{
goto IL_0026;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
return (bool)0;
}
IL_0026:
{
int32_t L_3 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_1 = (int32_t)L_3;
int32_t L_4 = V_1;
((Iterator_1_t2034466501 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t L_5 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1));
Func_2_t2447130374 * L_6 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_7 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Func_2_t2447130374 *)L_6);
RuntimeObject * L_11 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_11);
return (bool)1;
}
}
// TResult[] System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectArrayIterator_2_ToArray_m2773337652_gshared (SelectArrayIterator_2_t819778152 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_0);
V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))));
V_1 = (int32_t)0;
goto IL_0034;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_1 = V_0;
int32_t L_2 = V_1;
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t2447130374 *)L_3);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (RuntimeObject *)L_8);
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0034:
{
int32_t L_10 = V_1;
ObjectU5BU5D_t2843939325* L_11 = V_0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))))))
{
goto IL_0012;
}
}
{
ObjectU5BU5D_t2843939325* L_12 = V_0;
return L_12;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectArrayIterator_2_ToList_m3952854846_gshared (SelectArrayIterator_2_t819778152 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
List_1_t257213610 * V_1 = NULL;
int32_t V_2 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_0 = (ObjectU5BU5D_t2843939325*)L_0;
ObjectU5BU5D_t2843939325* L_1 = V_0;
NullCheck(L_1);
List_1_t257213610 * L_2 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_1 = (List_1_t257213610 *)L_2;
V_2 = (int32_t)0;
goto IL_0030;
}
IL_0014:
{
List_1_t257213610 * L_3 = V_1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_5 = V_0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck((List_1_t257213610 *)L_3);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_3, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0030:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t2843939325* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0014;
}
}
{
List_1_t257213610 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectArrayIterator_2_GetCount_m2180995122_gshared (SelectArrayIterator_2_t819778152 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_002d;
}
}
{
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_0 = (ObjectU5BU5D_t2843939325*)L_1;
V_1 = (int32_t)0;
goto IL_0027;
}
IL_000e:
{
ObjectU5BU5D_t2843939325* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (RuntimeObject *)L_5;
Func_2_t2447130374 * L_6 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_7 = V_2;
NullCheck((Func_2_t2447130374 *)L_6);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0027:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t2843939325* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_000e;
}
}
IL_002d:
{
ObjectU5BU5D_t2843939325* L_11 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_11);
return (((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))));
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" RuntimeObject * SelectArrayIterator_2_TryGetElementAt_m3795460227_gshared (SelectArrayIterator_2_t819778152 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_1);
if ((!(((uint32_t)L_0) < ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))))))
{
goto IL_0026;
}
}
{
bool* L_2 = ___found1;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
int32_t L_5 = ___index0;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t2447130374 *)L_3);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_8;
}
IL_0026:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::TryGetFirst(System.Boolean&)
extern "C" RuntimeObject * SelectArrayIterator_2_TryGetFirst_m2215273228_gshared (SelectArrayIterator_2_t819778152 * __this, bool* ___found0, const RuntimeMethod* method)
{
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)1;
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_2);
int32_t L_3 = 0;
RuntimeObject * L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
NullCheck((Func_2_t2447130374 *)L_1);
RuntimeObject * L_5 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_1, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_5;
}
}
// TResult System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::TryGetLast(System.Boolean&)
extern "C" RuntimeObject * SelectArrayIterator_2_TryGetLast_m605526328_gshared (SelectArrayIterator_2_t819778152 * __this, bool* ___found0, const RuntimeMethod* method)
{
{
bool* L_0 = ___found0;
*((int8_t*)(L_0)) = (int8_t)1;
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_3);
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)1));
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck((Func_2_t2447130374 *)L_1);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_1, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_6;
}
}
#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.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectEnumerableIterator_2__ctor_m3076153172_gshared (SelectEnumerableIterator_2_t760503204 * __this, RuntimeObject* ___source0, Func_2_t3270419407 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3270419407 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectEnumerableIterator_2_Clone_m1781680563_gshared (SelectEnumerableIterator_2_t760503204 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
SelectEnumerableIterator_2_t760503204 * L_2 = (SelectEnumerableIterator_2_t760503204 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectEnumerableIterator_2_t760503204 *, RuntimeObject*, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t3270419407 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void SelectEnumerableIterator_2_Dispose_m3862804282_gshared (SelectEnumerableIterator_2_t760503204 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_Dispose_m3862804282_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Boolean System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectEnumerableIterator_2_MoveNext_m1500635119_gshared (SelectEnumerableIterator_2_t760503204 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_MoveNext_m1500635119_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
DictionaryEntry_t3123975638 L_9 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_8);
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_10 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectEnumerableIterator_2_ToArray_m1883646757_gshared (SelectEnumerableIterator_2_t760503204 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToArray_m1883646757_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2440570340 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2226121364((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (DictionaryEntry_t3123975638 )L_3;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_5 = V_2;
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
LargeArrayBuilder_1_Add_m982335036((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0030:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
KeyValuePair_2U5BU5D_t118269214* L_11 = LargeArrayBuilder_1_ToArray_m3030376891((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_11;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectEnumerableIterator_2_ToList_m1958580226_gshared (SelectEnumerableIterator_2_t760503204 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToList_m1958580226_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4002292061 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t4002292061 * L_0 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t4002292061 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
List_1_t4002292061 * L_5 = V_0;
Func_2_t3270419407 * L_6 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_7 = V_2;
NullCheck((Func_2_t3270419407 *)L_6);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_6, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t4002292061 *)L_5);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t4002292061 *)L_5, (KeyValuePair_2_t2530217319 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_002d:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0014;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
List_1_t4002292061 * L_13 = V_0;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectEnumerableIterator_2_GetCount_m357576939_gshared (SelectEnumerableIterator_2_t760503204 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_GetCount_m357576939_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t3270419407 * L_5 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_6 = V_2;
NullCheck((Func_2_t3270419407 *)L_5);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_7 = V_0;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, SelectEnumerableIterator_2_GetCount_m357576939_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002d:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0015;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
int32_t L_12 = V_0;
return L_12;
}
}
#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.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectEnumerableIterator_2__ctor_m1300772613_gshared (SelectEnumerableIterator_2_t956622511 * __this, RuntimeObject* ___source0, Func_2_t3466538714 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3466538714 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectEnumerableIterator_2_Clone_m646357888_gshared (SelectEnumerableIterator_2_t956622511 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3466538714 * L_1 = (Func_2_t3466538714 *)__this->get__selector_4();
SelectEnumerableIterator_2_t956622511 * L_2 = (SelectEnumerableIterator_2_t956622511 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectEnumerableIterator_2_t956622511 *, RuntimeObject*, Func_2_t3466538714 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t3466538714 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void SelectEnumerableIterator_2_Dispose_m3571586847_gshared (SelectEnumerableIterator_2_t956622511 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_Dispose_m3571586847_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Boolean System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectEnumerableIterator_2_MoveNext_m2562910218_gshared (SelectEnumerableIterator_2_t956622511 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_MoveNext_m2562910218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t3466538714 * L_7 = (Func_2_t3466538714 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
KeyValuePair_2_t2530217319 L_9 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_8);
NullCheck((Func_2_t3466538714 *)L_7);
KeyValuePair_2_t2530217319 L_10 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3466538714 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3466538714 *)L_7, (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectEnumerableIterator_2_ToArray_m675881335_gshared (SelectEnumerableIterator_2_t956622511 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToArray_m675881335_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2440570340 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2226121364((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
KeyValuePair_2_t2530217319 L_3 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (KeyValuePair_2_t2530217319 )L_3;
Func_2_t3466538714 * L_4 = (Func_2_t3466538714 *)__this->get__selector_4();
KeyValuePair_2_t2530217319 L_5 = V_2;
NullCheck((Func_2_t3466538714 *)L_4);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3466538714 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3466538714 *)L_4, (KeyValuePair_2_t2530217319 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
LargeArrayBuilder_1_Add_m982335036((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0030:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
KeyValuePair_2U5BU5D_t118269214* L_11 = LargeArrayBuilder_1_ToArray_m3030376891((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_11;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectEnumerableIterator_2_ToList_m2709422520_gshared (SelectEnumerableIterator_2_t956622511 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToList_m2709422520_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4002292061 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t4002292061 * L_0 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t4002292061 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
KeyValuePair_2_t2530217319 L_4 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (KeyValuePair_2_t2530217319 )L_4;
List_1_t4002292061 * L_5 = V_0;
Func_2_t3466538714 * L_6 = (Func_2_t3466538714 *)__this->get__selector_4();
KeyValuePair_2_t2530217319 L_7 = V_2;
NullCheck((Func_2_t3466538714 *)L_6);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3466538714 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3466538714 *)L_6, (KeyValuePair_2_t2530217319 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t4002292061 *)L_5);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t4002292061 *)L_5, (KeyValuePair_2_t2530217319 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_002d:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0014;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
List_1_t4002292061 * L_13 = V_0;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectEnumerableIterator_2_GetCount_m2168038858_gshared (SelectEnumerableIterator_2_t956622511 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_GetCount_m2168038858_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
KeyValuePair_2_t2530217319 L_4 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (KeyValuePair_2_t2530217319 )L_4;
Func_2_t3466538714 * L_5 = (Func_2_t3466538714 *)__this->get__selector_4();
KeyValuePair_2_t2530217319 L_6 = V_2;
NullCheck((Func_2_t3466538714 *)L_5);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3466538714 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3466538714 *)L_5, (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_7 = V_0;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, SelectEnumerableIterator_2_GetCount_m2168038858_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002d:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0015;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
int32_t L_12 = V_0;
return L_12;
}
}
#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.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectEnumerableIterator_2__ctor_m1944375350_gshared (SelectEnumerableIterator_2_t4232181467 * __this, RuntimeObject* ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2447130374 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectEnumerableIterator_2_Clone_m1317343610_gshared (SelectEnumerableIterator_2_t4232181467 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
SelectEnumerableIterator_2_t4232181467 * L_2 = (SelectEnumerableIterator_2_t4232181467 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectEnumerableIterator_2_t4232181467 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::Dispose()
extern "C" void SelectEnumerableIterator_2_Dispose_m2790816898_gshared (SelectEnumerableIterator_2_t4232181467 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_Dispose_m2790816898_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Boolean System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectEnumerableIterator_2_MoveNext_m1563322355_gshared (SelectEnumerableIterator_2_t4232181467 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_MoveNext_m1563322355_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_8);
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectEnumerableIterator_2_ToArray_m3280562849_gshared (SelectEnumerableIterator_2_t4232181467 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToArray_m3280562849_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m104969882((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (RuntimeObject *)L_3;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0030:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
ObjectU5BU5D_t2843939325* L_11 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_11;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectEnumerableIterator_2_ToList_m1184928937_gshared (SelectEnumerableIterator_2_t4232181467 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_ToList_m1184928937_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t257213610 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t257213610 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
List_1_t257213610 * L_5 = V_0;
Func_2_t2447130374 * L_6 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_7 = V_2;
NullCheck((Func_2_t2447130374 *)L_6);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t257213610 *)L_5);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t257213610 *)L_5, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_002d:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0014;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
List_1_t257213610 * L_13 = V_0;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectEnumerableIterator_2_GetCount_m149151510_gshared (SelectEnumerableIterator_2_t4232181467 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectEnumerableIterator_2_GetCount_m149151510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
Func_2_t2447130374 * L_5 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t2447130374 *)L_5);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_7 = V_0;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, SelectEnumerableIterator_2_GetCount_m149151510_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002d:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0015;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
int32_t L_12 = V_0;
return L_12;
}
}
#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.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IList`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectIListIterator_2__ctor_m3687113827_gshared (SelectIListIterator_2_t130090036 * __this, RuntimeObject* ___source0, Func_2_t3270419407 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3270419407 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectIListIterator_2_Clone_m2557005930_gshared (SelectIListIterator_2_t130090036 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
SelectIListIterator_2_t130090036 * L_2 = (SelectIListIterator_2_t130090036 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectIListIterator_2_t130090036 *, RuntimeObject*, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t3270419407 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectIListIterator_2_MoveNext_m4196171901_gshared (SelectIListIterator_2_t130090036 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIListIterator_2_MoveNext_m4196171901_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
DictionaryEntry_t3123975638 L_9 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_8);
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_10 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// System.Void System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void SelectIListIterator_2_Dispose_m3100268919_gshared (SelectIListIterator_2_t130090036 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIListIterator_2_Dispose_m3100268919_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return;
}
}
// TResult[] System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectIListIterator_2_ToArray_m3830241284_gshared (SelectIListIterator_2_t130090036 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
KeyValuePair_2U5BU5D_t118269214* V_1 = NULL;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (L_2)
{
goto IL_0015;
}
}
{
KeyValuePair_2U5BU5D_t118269214* L_3 = (( KeyValuePair_2U5BU5D_t118269214* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_3;
}
IL_0015:
{
int32_t L_4 = V_0;
V_1 = (KeyValuePair_2U5BU5D_t118269214*)((KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (uint32_t)L_4));
V_2 = (int32_t)0;
goto IL_0042;
}
IL_0020:
{
KeyValuePair_2U5BU5D_t118269214* L_5 = V_1;
int32_t L_6 = V_2;
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__source_3();
int32_t L_9 = V_2;
NullCheck((RuntimeObject*)L_8);
DictionaryEntry_t3123975638 L_10 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_8, (int32_t)L_9);
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_11 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (KeyValuePair_2_t2530217319 )L_11);
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0042:
{
int32_t L_13 = V_2;
KeyValuePair_2U5BU5D_t118269214* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0020;
}
}
{
KeyValuePair_2U5BU5D_t118269214* L_15 = V_1;
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectIListIterator_2_ToList_m3933437014_gshared (SelectIListIterator_2_t130090036 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
List_1_t4002292061 * V_1 = NULL;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
List_1_t4002292061 * L_3 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12));
(( void (*) (List_1_t4002292061 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_3, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_1 = (List_1_t4002292061 *)L_3;
V_2 = (int32_t)0;
goto IL_0038;
}
IL_0017:
{
List_1_t4002292061 * L_4 = V_1;
Func_2_t3270419407 * L_5 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_6 = (RuntimeObject*)__this->get__source_3();
int32_t L_7 = V_2;
NullCheck((RuntimeObject*)L_6);
DictionaryEntry_t3123975638 L_8 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_6, (int32_t)L_7);
NullCheck((Func_2_t3270419407 *)L_5);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_5, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((List_1_t4002292061 *)L_4);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t4002292061 *)L_4, (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0038:
{
int32_t L_11 = V_2;
int32_t L_12 = V_0;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0017;
}
}
{
List_1_t4002292061 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectIListIterator_2_GetCount_m885313721_gshared (SelectIListIterator_2_t130090036 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
bool L_2 = ___onlyIfCheap0;
if (L_2)
{
goto IL_0033;
}
}
{
V_1 = (int32_t)0;
goto IL_002f;
}
IL_0013:
{
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_4 = (RuntimeObject*)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck((RuntimeObject*)L_4);
DictionaryEntry_t3123975638 L_6 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_4, (int32_t)L_5);
NullCheck((Func_2_t3270419407 *)L_3);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002f:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
IL_0033:
{
int32_t L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIListIterator_2_TryGetElementAt_m3366412195_gshared (SelectIListIterator_2_t130090036 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_1);
if ((!(((uint32_t)L_0) < ((uint32_t)L_2))))
{
goto IL_0029;
}
}
{
bool* L_3 = ___found1;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_5 = (RuntimeObject*)__this->get__source_3();
int32_t L_6 = ___index0;
NullCheck((RuntimeObject*)L_5);
DictionaryEntry_t3123975638 L_7 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_5, (int32_t)L_6);
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
IL_0029:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetFirst(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIListIterator_2_TryGetFirst_m4235623572_gshared (SelectIListIterator_2_t130090036 * __this, bool* ___found0, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
if (!L_1)
{
goto IL_0028;
}
}
{
bool* L_2 = ___found0;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_4 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_4);
DictionaryEntry_t3123975638 L_5 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_4, (int32_t)0);
NullCheck((Func_2_t3270419407 *)L_3);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_6;
}
IL_0028:
{
bool* L_7 = ___found0;
*((int8_t*)(L_7)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_8 = V_0;
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetLast(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIListIterator_2_TryGetLast_m3204209618_gshared (SelectIListIterator_2_t130090036 * __this, bool* ___found0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
KeyValuePair_2_t2530217319 V_1;
memset(&V_1, 0, sizeof(V_1));
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Collections.DictionaryEntry>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_002c;
}
}
{
bool* L_3 = ___found0;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_5 = (RuntimeObject*)__this->get__source_3();
int32_t L_6 = V_0;
NullCheck((RuntimeObject*)L_5);
DictionaryEntry_t3123975638 L_7 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Collections.DictionaryEntry>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)));
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
IL_002c:
{
bool* L_9 = ___found0;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_1), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_10 = V_1;
return L_10;
}
}
#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.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IList`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectIListIterator_2__ctor_m187568293_gshared (SelectIListIterator_2_t3601768299 * __this, RuntimeObject* ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2447130374 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectIListIterator_2_Clone_m614505362_gshared (SelectIListIterator_2_t3601768299 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
SelectIListIterator_2_t3601768299 * L_2 = (SelectIListIterator_2_t3601768299 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectIListIterator_2_t3601768299 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectIListIterator_2_MoveNext_m4209761780_gshared (SelectIListIterator_2_t3601768299 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIListIterator_2_MoveNext_m4209761780_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_8);
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// System.Void System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::Dispose()
extern "C" void SelectIListIterator_2_Dispose_m1388706584_gshared (SelectIListIterator_2_t3601768299 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIListIterator_2_Dispose_m1388706584_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return;
}
}
// TResult[] System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectIListIterator_2_ToArray_m2011540596_gshared (SelectIListIterator_2_t3601768299 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (L_2)
{
goto IL_0015;
}
}
{
ObjectU5BU5D_t2843939325* L_3 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_3;
}
IL_0015:
{
int32_t L_4 = V_0;
V_1 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (uint32_t)L_4));
V_2 = (int32_t)0;
goto IL_0042;
}
IL_0020:
{
ObjectU5BU5D_t2843939325* L_5 = V_1;
int32_t L_6 = V_2;
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__source_3();
int32_t L_9 = V_2;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_8, (int32_t)L_9);
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_11 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)L_11);
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0042:
{
int32_t L_13 = V_2;
ObjectU5BU5D_t2843939325* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0020;
}
}
{
ObjectU5BU5D_t2843939325* L_15 = V_1;
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectIListIterator_2_ToList_m907852024_gshared (SelectIListIterator_2_t3601768299 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
List_1_t257213610 * V_1 = NULL;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
List_1_t257213610 * L_3 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12));
(( void (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_3, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_1 = (List_1_t257213610 *)L_3;
V_2 = (int32_t)0;
goto IL_0038;
}
IL_0017:
{
List_1_t257213610 * L_4 = V_1;
Func_2_t2447130374 * L_5 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_6 = (RuntimeObject*)__this->get__source_3();
int32_t L_7 = V_2;
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_6, (int32_t)L_7);
NullCheck((Func_2_t2447130374 *)L_5);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_5, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((List_1_t257213610 *)L_4);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t257213610 *)L_4, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0038:
{
int32_t L_11 = V_2;
int32_t L_12 = V_0;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0017;
}
}
{
List_1_t257213610 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectIListIterator_2_GetCount_m2783411396_gshared (SelectIListIterator_2_t3601768299 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
bool L_2 = ___onlyIfCheap0;
if (L_2)
{
goto IL_0033;
}
}
{
V_1 = (int32_t)0;
goto IL_002f;
}
IL_0013:
{
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_4 = (RuntimeObject*)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck((RuntimeObject*)L_4);
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_4, (int32_t)L_5);
NullCheck((Func_2_t2447130374 *)L_3);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002f:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
IL_0033:
{
int32_t L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" RuntimeObject * SelectIListIterator_2_TryGetElementAt_m2987796583_gshared (SelectIListIterator_2_t3601768299 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_1);
if ((!(((uint32_t)L_0) < ((uint32_t)L_2))))
{
goto IL_0029;
}
}
{
bool* L_3 = ___found1;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_5 = (RuntimeObject*)__this->get__source_3();
int32_t L_6 = ___index0;
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_5, (int32_t)L_6);
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
IL_0029:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::TryGetFirst(System.Boolean&)
extern "C" RuntimeObject * SelectIListIterator_2_TryGetFirst_m3430082063_gshared (SelectIListIterator_2_t3601768299 * __this, bool* ___found0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
if (!L_1)
{
goto IL_0028;
}
}
{
bool* L_2 = ___found0;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_4 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_4, (int32_t)0);
NullCheck((Func_2_t2447130374 *)L_3);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_6;
}
IL_0028:
{
bool* L_7 = ___found0;
*((int8_t*)(L_7)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_8 = V_0;
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::TryGetLast(System.Boolean&)
extern "C" RuntimeObject * SelectIListIterator_2_TryGetLast_m2318008031_gshared (SelectIListIterator_2_t3601768299 * __this, bool* ___found0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_002c;
}
}
{
bool* L_3 = ___found0;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_5 = (RuntimeObject*)__this->get__source_3();
int32_t L_6 = V_0;
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_7 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)));
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
IL_002c:
{
bool* L_9 = ___found0;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_10 = V_1;
return L_10;
}
}
#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.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Linq.IPartition`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectIPartitionIterator_2__ctor_m1294395231_gshared (SelectIPartitionIterator_2_t2954477804 * __this, RuntimeObject* ___source0, Func_2_t3270419407 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3270419407 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectIPartitionIterator_2_Clone_m2144683163_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
SelectIPartitionIterator_2_t2954477804 * L_2 = (SelectIPartitionIterator_2_t2954477804 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectIPartitionIterator_2_t2954477804 *, RuntimeObject*, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t3270419407 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectIPartitionIterator_2_MoveNext_m2485470954_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_MoveNext_m2485470954_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
DictionaryEntry_t3123975638 L_9 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_8);
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_10 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// System.Void System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void SelectIPartitionIterator_2_Dispose_m405696305_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_Dispose_m405696305_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIPartitionIterator_2_TryGetElementAt_m2269338986_gshared (SelectIPartitionIterator_2_t2954477804 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
bool V_0 = false;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
DictionaryEntry_t3123975638 L_2 = InterfaceFuncInvoker2< DictionaryEntry_t3123975638 , int32_t, bool* >::Invoke(0 /* TElement System.Linq.IPartition`1<System.Collections.DictionaryEntry>::TryGetElementAt(System.Int32,System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (int32_t)L_1, (bool*)(bool*)(&V_0));
V_1 = (DictionaryEntry_t3123975638 )L_2;
bool* L_3 = ___found1;
bool L_4 = V_0;
*((int8_t*)(L_3)) = (int8_t)L_4;
bool L_5 = V_0;
if (L_5)
{
goto IL_001f;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_6 = V_2;
return L_6;
}
IL_001f:
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_8 = V_1;
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_9;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetFirst(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIPartitionIterator_2_TryGetFirst_m308715622_gshared (SelectIPartitionIterator_2_t2954477804 * __this, bool* ___found0, const RuntimeMethod* method)
{
bool V_0 = false;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
DictionaryEntry_t3123975638 L_1 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , bool* >::Invoke(1 /* TElement System.Linq.IPartition`1<System.Collections.DictionaryEntry>::TryGetFirst(System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (bool*)(bool*)(&V_0));
V_1 = (DictionaryEntry_t3123975638 )L_1;
bool* L_2 = ___found0;
bool L_3 = V_0;
*((int8_t*)(L_2)) = (int8_t)L_3;
bool L_4 = V_0;
if (L_4)
{
goto IL_001e;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_5 = V_2;
return L_5;
}
IL_001e:
{
Func_2_t3270419407 * L_6 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_7 = V_1;
NullCheck((Func_2_t3270419407 *)L_6);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_6, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetLast(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectIPartitionIterator_2_TryGetLast_m3505464966_gshared (SelectIPartitionIterator_2_t2954477804 * __this, bool* ___found0, const RuntimeMethod* method)
{
bool V_0 = false;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
DictionaryEntry_t3123975638 L_1 = InterfaceFuncInvoker1< DictionaryEntry_t3123975638 , bool* >::Invoke(2 /* TElement System.Linq.IPartition`1<System.Collections.DictionaryEntry>::TryGetLast(System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (bool*)(bool*)(&V_0));
V_1 = (DictionaryEntry_t3123975638 )L_1;
bool* L_2 = ___found0;
bool L_3 = V_0;
*((int8_t*)(L_2)) = (int8_t)L_3;
bool L_4 = V_0;
if (L_4)
{
goto IL_001e;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_5 = V_2;
return L_5;
}
IL_001e:
{
Func_2_t3270419407 * L_6 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_7 = V_1;
NullCheck((Func_2_t3270419407 *)L_6);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_6, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::LazyToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectIPartitionIterator_2_LazyToArray_m2882688373_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_LazyToArray_m2882688373_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2440570340 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2226121364((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_2);
V_2 = (DictionaryEntry_t3123975638 )L_3;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_5 = V_2;
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
LargeArrayBuilder_1_Add_m982335036((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
}
IL_0030:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
KeyValuePair_2U5BU5D_t118269214* L_11 = LargeArrayBuilder_1_ToArray_m3030376891((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_11;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::PreallocatingToArray(System.Int32)
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectIPartitionIterator_2_PreallocatingToArray_m4096222762_gshared (SelectIPartitionIterator_2_t2954477804 * __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_PreallocatingToArray_m4096222762_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2U5BU5D_t118269214* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
DictionaryEntry_t3123975638 V_3;
memset(&V_3, 0, sizeof(V_3));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = ___count0;
V_0 = (KeyValuePair_2U5BU5D_t118269214*)((KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12), (uint32_t)L_0));
V_1 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_1);
V_2 = (RuntimeObject*)L_2;
}
IL_0015:
try
{ // begin try (depth: 1)
{
goto IL_0035;
}
IL_0017:
{
RuntimeObject* L_3 = V_2;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
V_3 = (DictionaryEntry_t3123975638 )L_4;
KeyValuePair_2U5BU5D_t118269214* L_5 = V_0;
int32_t L_6 = V_1;
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_8 = V_3;
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (KeyValuePair_2_t2530217319 )L_9);
int32_t L_10 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0035:
{
RuntimeObject* L_11 = V_2;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0017;
}
}
IL_003d:
{
IL2CPP_LEAVE(0x49, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
RuntimeObject* L_13 = V_2;
if (!L_13)
{
goto IL_0048;
}
}
IL_0042:
{
RuntimeObject* L_14 = V_2;
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
}
IL_0048:
{
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x49, IL_0049)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0049:
{
KeyValuePair_2U5BU5D_t118269214* L_15 = V_0;
return L_15;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectIPartitionIterator_2_ToArray_m442913566_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Collections.DictionaryEntry>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_0, (bool)1);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_001d;
}
}
{
goto IL_0023;
}
IL_0016:
{
NullCheck((SelectIPartitionIterator_2_t2954477804 *)__this);
KeyValuePair_2U5BU5D_t118269214* L_4 = (( KeyValuePair_2U5BU5D_t118269214* (*) (SelectIPartitionIterator_2_t2954477804 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((SelectIPartitionIterator_2_t2954477804 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
return L_4;
}
IL_001d:
{
KeyValuePair_2U5BU5D_t118269214* L_5 = (( KeyValuePair_2U5BU5D_t118269214* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
return L_5;
}
IL_0023:
{
int32_t L_6 = V_0;
NullCheck((SelectIPartitionIterator_2_t2954477804 *)__this);
KeyValuePair_2U5BU5D_t118269214* L_7 = (( KeyValuePair_2U5BU5D_t118269214* (*) (SelectIPartitionIterator_2_t2954477804 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((SelectIPartitionIterator_2_t2954477804 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
return L_7;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectIPartitionIterator_2_ToList_m531909262_gshared (SelectIPartitionIterator_2_t2954477804 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_ToList_m531909262_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
List_1_t4002292061 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
DictionaryEntry_t3123975638 V_3;
memset(&V_3, 0, sizeof(V_3));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Collections.DictionaryEntry>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_0, (bool)1);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_001e;
}
}
{
goto IL_0024;
}
IL_0016:
{
List_1_t4002292061 * L_4 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)(L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
V_1 = (List_1_t4002292061 *)L_4;
goto IL_002b;
}
IL_001e:
{
List_1_t4002292061 * L_5 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)(L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
return L_5;
}
IL_0024:
{
int32_t L_6 = V_0;
List_1_t4002292061 * L_7 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t4002292061 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(L_7, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19));
V_1 = (List_1_t4002292061 *)L_7;
}
IL_002b:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_8);
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8);
V_2 = (RuntimeObject*)L_9;
}
IL_0037:
try
{ // begin try (depth: 1)
{
goto IL_0052;
}
IL_0039:
{
RuntimeObject* L_10 = V_2;
NullCheck((RuntimeObject*)L_10);
DictionaryEntry_t3123975638 L_11 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_10);
V_3 = (DictionaryEntry_t3123975638 )L_11;
List_1_t4002292061 * L_12 = V_1;
Func_2_t3270419407 * L_13 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_14 = V_3;
NullCheck((Func_2_t3270419407 *)L_13);
KeyValuePair_2_t2530217319 L_15 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_13, (DictionaryEntry_t3123975638 )L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((List_1_t4002292061 *)L_12);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((List_1_t4002292061 *)L_12, (KeyValuePair_2_t2530217319 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20));
}
IL_0052:
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
if (L_17)
{
goto IL_0039;
}
}
IL_005a:
{
IL2CPP_LEAVE(0x66, FINALLY_005c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_005c;
}
FINALLY_005c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_18 = V_2;
if (!L_18)
{
goto IL_0065;
}
}
IL_005f:
{
RuntimeObject* L_19 = V_2;
NullCheck((RuntimeObject*)L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
}
IL_0065:
{
IL2CPP_END_FINALLY(92)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(92)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0066:
{
List_1_t4002292061 * L_20 = V_1;
return L_20;
}
}
// System.Int32 System.Linq.Enumerable/SelectIPartitionIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectIPartitionIterator_2_GetCount_m3814325761_gshared (SelectIPartitionIterator_2_t2954477804 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_GetCount_m3814325761_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_0039;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_1);
V_0 = (RuntimeObject*)L_2;
}
IL_000f:
try
{ // begin try (depth: 1)
{
goto IL_0025;
}
IL_0011:
{
RuntimeObject* L_3 = V_0;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
V_1 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t3270419407 * L_5 = (Func_2_t3270419407 *)__this->get__selector_4();
DictionaryEntry_t3123975638 L_6 = V_1;
NullCheck((Func_2_t3270419407 *)L_5);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t3270419407 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
}
IL_0025:
{
RuntimeObject* L_7 = V_0;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0011;
}
}
IL_002d:
{
IL2CPP_LEAVE(0x39, FINALLY_002f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002f;
}
FINALLY_002f:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_0;
if (!L_9)
{
goto IL_0038;
}
}
IL_0032:
{
RuntimeObject* L_10 = V_0;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0038:
{
IL2CPP_END_FINALLY(47)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(47)
{
IL2CPP_JUMP_TBL(0x39, IL_0039)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0039:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__source_3();
bool L_12 = ___onlyIfCheap0;
NullCheck((RuntimeObject*)L_11);
int32_t L_13 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Collections.DictionaryEntry>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_11, (bool)L_12);
return L_13;
}
}
#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.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::.ctor(System.Linq.IPartition`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectIPartitionIterator_2__ctor_m1653123252_gshared (SelectIPartitionIterator_2_t2131188771 * __this, RuntimeObject* ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2447130374 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectIPartitionIterator_2_Clone_m2925309097_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
SelectIPartitionIterator_2_t2131188771 * L_2 = (SelectIPartitionIterator_2_t2131188771 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectIPartitionIterator_2_t2131188771 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectIPartitionIterator_2_MoveNext_m3403270584_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_MoveNext_m3403270584_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
}
IL_0029:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject* L_8 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_8);
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// System.Void System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::Dispose()
extern "C" void SelectIPartitionIterator_2_Dispose_m1751187625_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_Dispose_m1751187625_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" RuntimeObject * SelectIPartitionIterator_2_TryGetElementAt_m1620325504_gshared (SelectIPartitionIterator_2_t2131188771 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
bool V_0 = false;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
RuntimeObject * L_2 = InterfaceFuncInvoker2< RuntimeObject *, int32_t, bool* >::Invoke(0 /* TElement System.Linq.IPartition`1<System.Object>::TryGetElementAt(System.Int32,System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (int32_t)L_1, (bool*)(bool*)(&V_0));
V_1 = (RuntimeObject *)L_2;
bool* L_3 = ___found1;
bool L_4 = V_0;
*((int8_t*)(L_3)) = (int8_t)L_4;
bool L_5 = V_0;
if (L_5)
{
goto IL_001f;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_6 = V_2;
return L_6;
}
IL_001f:
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_8 = V_1;
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_9;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::TryGetFirst(System.Boolean&)
extern "C" RuntimeObject * SelectIPartitionIterator_2_TryGetFirst_m2295832775_gshared (SelectIPartitionIterator_2_t2131188771 * __this, bool* ___found0, const RuntimeMethod* method)
{
bool V_0 = false;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject * L_1 = InterfaceFuncInvoker1< RuntimeObject *, bool* >::Invoke(1 /* TElement System.Linq.IPartition`1<System.Object>::TryGetFirst(System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (bool*)(bool*)(&V_0));
V_1 = (RuntimeObject *)L_1;
bool* L_2 = ___found0;
bool L_3 = V_0;
*((int8_t*)(L_2)) = (int8_t)L_3;
bool L_4 = V_0;
if (L_4)
{
goto IL_001e;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_5 = V_2;
return L_5;
}
IL_001e:
{
Func_2_t2447130374 * L_6 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_7 = V_1;
NullCheck((Func_2_t2447130374 *)L_6);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::TryGetLast(System.Boolean&)
extern "C" RuntimeObject * SelectIPartitionIterator_2_TryGetLast_m3162752631_gshared (SelectIPartitionIterator_2_t2131188771 * __this, bool* ___found0, const RuntimeMethod* method)
{
bool V_0 = false;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject * L_1 = InterfaceFuncInvoker1< RuntimeObject *, bool* >::Invoke(2 /* TElement System.Linq.IPartition`1<System.Object>::TryGetLast(System.Boolean&) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_0, (bool*)(bool*)(&V_0));
V_1 = (RuntimeObject *)L_1;
bool* L_2 = ___found0;
bool L_3 = V_0;
*((int8_t*)(L_2)) = (int8_t)L_3;
bool L_4 = V_0;
if (L_4)
{
goto IL_001e;
}
}
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_5 = V_2;
return L_5;
}
IL_001e:
{
Func_2_t2447130374 * L_6 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_7 = V_1;
NullCheck((Func_2_t2447130374 *)L_6);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_8;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::LazyToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectIPartitionIterator_2_LazyToArray_m24814827_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_LazyToArray_m24814827_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m104969882((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_2);
V_2 = (RuntimeObject *)L_3;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
}
IL_0030:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0016;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
ObjectU5BU5D_t2843939325* L_11 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_11;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::PreallocatingToArray(System.Int32)
extern "C" ObjectU5BU5D_t2843939325* SelectIPartitionIterator_2_PreallocatingToArray_m2279286047_gshared (SelectIPartitionIterator_2_t2131188771 * __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_PreallocatingToArray_m2279286047_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = ___count0;
V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12), (uint32_t)L_0));
V_1 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_1);
V_2 = (RuntimeObject*)L_2;
}
IL_0015:
try
{ // begin try (depth: 1)
{
goto IL_0035;
}
IL_0017:
{
RuntimeObject* L_3 = V_2;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
V_3 = (RuntimeObject *)L_4;
ObjectU5BU5D_t2843939325* L_5 = V_0;
int32_t L_6 = V_1;
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_8 = V_3;
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)L_9);
int32_t L_10 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0035:
{
RuntimeObject* L_11 = V_2;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0017;
}
}
IL_003d:
{
IL2CPP_LEAVE(0x49, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
RuntimeObject* L_13 = V_2;
if (!L_13)
{
goto IL_0048;
}
}
IL_0042:
{
RuntimeObject* L_14 = V_2;
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
}
IL_0048:
{
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x49, IL_0049)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0049:
{
ObjectU5BU5D_t2843939325* L_15 = V_0;
return L_15;
}
}
// TResult[] System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectIPartitionIterator_2_ToArray_m1485375029_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Object>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_0, (bool)1);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_001d;
}
}
{
goto IL_0023;
}
IL_0016:
{
NullCheck((SelectIPartitionIterator_2_t2131188771 *)__this);
ObjectU5BU5D_t2843939325* L_4 = (( ObjectU5BU5D_t2843939325* (*) (SelectIPartitionIterator_2_t2131188771 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((SelectIPartitionIterator_2_t2131188771 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
return L_4;
}
IL_001d:
{
ObjectU5BU5D_t2843939325* L_5 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
return L_5;
}
IL_0023:
{
int32_t L_6 = V_0;
NullCheck((SelectIPartitionIterator_2_t2131188771 *)__this);
ObjectU5BU5D_t2843939325* L_7 = (( ObjectU5BU5D_t2843939325* (*) (SelectIPartitionIterator_2_t2131188771 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((SelectIPartitionIterator_2_t2131188771 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
return L_7;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectIPartitionIterator_2_ToList_m1963142377_gshared (SelectIPartitionIterator_2_t2131188771 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_ToList_m1963142377_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
List_1_t257213610 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Object>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_0, (bool)1);
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_001e;
}
}
{
goto IL_0024;
}
IL_0016:
{
List_1_t257213610 * L_4 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)(L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
V_1 = (List_1_t257213610 *)L_4;
goto IL_002b;
}
IL_001e:
{
List_1_t257213610 * L_5 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)(L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18));
return L_5;
}
IL_0024:
{
int32_t L_6 = V_0;
List_1_t257213610 * L_7 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17));
(( void (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(L_7, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19));
V_1 = (List_1_t257213610 *)L_7;
}
IL_002b:
{
RuntimeObject* L_8 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_8);
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_8);
V_2 = (RuntimeObject*)L_9;
}
IL_0037:
try
{ // begin try (depth: 1)
{
goto IL_0052;
}
IL_0039:
{
RuntimeObject* L_10 = V_2;
NullCheck((RuntimeObject*)L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_10);
V_3 = (RuntimeObject *)L_11;
List_1_t257213610 * L_12 = V_1;
Func_2_t2447130374 * L_13 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_14 = V_3;
NullCheck((Func_2_t2447130374 *)L_13);
RuntimeObject * L_15 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_13, (RuntimeObject *)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((List_1_t257213610 *)L_12);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((List_1_t257213610 *)L_12, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20));
}
IL_0052:
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
if (L_17)
{
goto IL_0039;
}
}
IL_005a:
{
IL2CPP_LEAVE(0x66, FINALLY_005c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_005c;
}
FINALLY_005c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_18 = V_2;
if (!L_18)
{
goto IL_0065;
}
}
IL_005f:
{
RuntimeObject* L_19 = V_2;
NullCheck((RuntimeObject*)L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
}
IL_0065:
{
IL2CPP_END_FINALLY(92)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(92)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0066:
{
List_1_t257213610 * L_20 = V_1;
return L_20;
}
}
// System.Int32 System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectIPartitionIterator_2_GetCount_m842092247_gshared (SelectIPartitionIterator_2_t2131188771 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectIPartitionIterator_2_GetCount_m842092247_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_0039;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_1);
V_0 = (RuntimeObject*)L_2;
}
IL_000f:
try
{ // begin try (depth: 1)
{
goto IL_0025;
}
IL_0011:
{
RuntimeObject* L_3 = V_0;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
V_1 = (RuntimeObject *)L_4;
Func_2_t2447130374 * L_5 = (Func_2_t2447130374 *)__this->get__selector_4();
RuntimeObject * L_6 = V_1;
NullCheck((Func_2_t2447130374 *)L_5);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
}
IL_0025:
{
RuntimeObject* L_7 = V_0;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0011;
}
}
IL_002d:
{
IL2CPP_LEAVE(0x39, FINALLY_002f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002f;
}
FINALLY_002f:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_0;
if (!L_9)
{
goto IL_0038;
}
}
IL_0032:
{
RuntimeObject* L_10 = V_0;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_0038:
{
IL2CPP_END_FINALLY(47)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(47)
{
IL2CPP_JUMP_TBL(0x39, IL_0039)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0039:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__source_3();
bool L_12 = ___onlyIfCheap0;
NullCheck((RuntimeObject*)L_11);
int32_t L_13 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(2 /* System.Int32 System.Linq.IIListProvider`1<System.Object>::GetCount(System.Boolean) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13), (RuntimeObject*)L_11, (bool)L_12);
return L_13;
}
}
#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.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectListIterator_2__ctor_m2541052279_gshared (SelectListIterator_2_t2565991656 * __this, List_1_t301083084 * ___source0, Func_2_t3270419407 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t301083084 * L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3270419407 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * SelectListIterator_2_Clone_m963722903_gshared (SelectListIterator_2_t2565991656 * __this, const RuntimeMethod* method)
{
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
Func_2_t3270419407 * L_1 = (Func_2_t3270419407 *)__this->get__selector_4();
SelectListIterator_2_t2565991656 * L_2 = (SelectListIterator_2_t2565991656 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectListIterator_2_t2565991656 *, List_1_t301083084 *, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (List_1_t301083084 *)L_0, (Func_2_t3270419407 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool SelectListIterator_2_MoveNext_m4104038772_gshared (SelectListIterator_2_t2565991656 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
List_1_t301083084 * L_3 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_3);
Enumerator_t2190326961 L_4 = (( Enumerator_t2190326961 (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t301083084 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
}
IL_0029:
{
Enumerator_t2190326961 * L_5 = (Enumerator_t2190326961 *)__this->get_address_of__enumerator_5();
bool L_6 = Enumerator_MoveNext_m2875527037((Enumerator_t2190326961 *)(Enumerator_t2190326961 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
Enumerator_t2190326961 * L_8 = (Enumerator_t2190326961 *)__this->get_address_of__enumerator_5();
DictionaryEntry_t3123975638 L_9 = Enumerator_get_Current_m3966199253((Enumerator_t2190326961 *)(Enumerator_t2190326961 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_10 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* SelectListIterator_2_ToArray_m1733111365_gshared (SelectListIterator_2_t2565991656 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
KeyValuePair_2U5BU5D_t118269214* V_1 = NULL;
int32_t V_2 = 0;
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (L_2)
{
goto IL_0015;
}
}
{
KeyValuePair_2U5BU5D_t118269214* L_3 = (( KeyValuePair_2U5BU5D_t118269214* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_3;
}
IL_0015:
{
int32_t L_4 = V_0;
V_1 = (KeyValuePair_2U5BU5D_t118269214*)((KeyValuePair_2U5BU5D_t118269214*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (uint32_t)L_4));
V_2 = (int32_t)0;
goto IL_0042;
}
IL_0020:
{
KeyValuePair_2U5BU5D_t118269214* L_5 = V_1;
int32_t L_6 = V_2;
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_8 = (List_1_t301083084 *)__this->get__source_3();
int32_t L_9 = V_2;
NullCheck((List_1_t301083084 *)L_8);
DictionaryEntry_t3123975638 L_10 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_8, (int32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_11 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (KeyValuePair_2_t2530217319 )L_11);
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0042:
{
int32_t L_13 = V_2;
KeyValuePair_2U5BU5D_t118269214* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0020;
}
}
{
KeyValuePair_2U5BU5D_t118269214* L_15 = V_1;
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * SelectListIterator_2_ToList_m3155326254_gshared (SelectListIterator_2_t2565991656 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
List_1_t4002292061 * V_1 = NULL;
int32_t V_2 = 0;
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
List_1_t4002292061 * L_3 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13));
(( void (*) (List_1_t4002292061 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_3, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
V_1 = (List_1_t4002292061 *)L_3;
V_2 = (int32_t)0;
goto IL_0038;
}
IL_0017:
{
List_1_t4002292061 * L_4 = V_1;
Func_2_t3270419407 * L_5 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_6 = (List_1_t301083084 *)__this->get__source_3();
int32_t L_7 = V_2;
NullCheck((List_1_t301083084 *)L_6);
DictionaryEntry_t3123975638 L_8 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_5);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_5, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t4002292061 *)L_4);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((List_1_t4002292061 *)L_4, (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0038:
{
int32_t L_11 = V_2;
int32_t L_12 = V_0;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0017;
}
}
{
List_1_t4002292061 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t SelectListIterator_2_GetCount_m1483956162_gshared (SelectListIterator_2_t2565991656 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
bool L_2 = ___onlyIfCheap0;
if (L_2)
{
goto IL_0033;
}
}
{
V_1 = (int32_t)0;
goto IL_002f;
}
IL_0013:
{
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_4 = (List_1_t301083084 *)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck((List_1_t301083084 *)L_4);
DictionaryEntry_t3123975638 L_6 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_4, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_3);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002f:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
IL_0033:
{
int32_t L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectListIterator_2_TryGetElementAt_m876464443_gshared (SelectListIterator_2_t2565991656 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
List_1_t301083084 * L_1 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if ((!(((uint32_t)L_0) < ((uint32_t)L_2))))
{
goto IL_0029;
}
}
{
bool* L_3 = ___found1;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_5 = (List_1_t301083084 *)__this->get__source_3();
int32_t L_6 = ___index0;
NullCheck((List_1_t301083084 *)L_5);
DictionaryEntry_t3123975638 L_7 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_8;
}
IL_0029:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetFirst(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectListIterator_2_TryGetFirst_m1293288055_gshared (SelectListIterator_2_t2565991656 * __this, bool* ___found0, const RuntimeMethod* method)
{
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if (!L_1)
{
goto IL_0028;
}
}
{
bool* L_2 = ___found0;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t3270419407 * L_3 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_4 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_4);
DictionaryEntry_t3123975638 L_5 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_3);
KeyValuePair_2_t2530217319 L_6 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_3, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_6;
}
IL_0028:
{
bool* L_7 = ___found0;
*((int8_t*)(L_7)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_8 = V_0;
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::TryGetLast(System.Boolean&)
extern "C" KeyValuePair_2_t2530217319 SelectListIterator_2_TryGetLast_m3800486358_gshared (SelectListIterator_2_t2565991656 * __this, bool* ___found0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
KeyValuePair_2_t2530217319 V_1;
memset(&V_1, 0, sizeof(V_1));
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)__this->get__source_3();
NullCheck((List_1_t301083084 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t301083084 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_002c;
}
}
{
bool* L_3 = ___found0;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t3270419407 * L_4 = (Func_2_t3270419407 *)__this->get__selector_4();
List_1_t301083084 * L_5 = (List_1_t301083084 *)__this->get__source_3();
int32_t L_6 = V_0;
NullCheck((List_1_t301083084 *)L_5);
DictionaryEntry_t3123975638 L_7 = (( DictionaryEntry_t3123975638 (*) (List_1_t301083084 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t301083084 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t3270419407 *)L_4);
KeyValuePair_2_t2530217319 L_8 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3270419407 *)L_4, (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_8;
}
IL_002c:
{
bool* L_9 = ___found0;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_1), sizeof(KeyValuePair_2_t2530217319 ));
KeyValuePair_2_t2530217319 L_10 = V_1;
return L_10;
}
}
#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.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,TResult>)
extern "C" void SelectListIterator_2__ctor_m1396350295_gshared (SelectListIterator_2_t1742702623 * __this, List_1_t257213610 * ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t257213610 * L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2447130374 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectListIterator_2_Clone_m3141305114_gshared (SelectListIterator_2_t1742702623 * __this, const RuntimeMethod* method)
{
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4();
SelectListIterator_2_t1742702623 * L_2 = (SelectListIterator_2_t1742702623 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectListIterator_2_t1742702623 *, List_1_t257213610 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (List_1_t257213610 *)L_0, (Func_2_t2447130374 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Boolean System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectListIterator_2_MoveNext_m3296767953_gshared (SelectListIterator_2_t1742702623 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0029;
}
}
{
goto IL_005a;
}
IL_0011:
{
List_1_t257213610 * L_3 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_3);
Enumerator_t2146457487 L_4 = (( Enumerator_t2146457487 (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
}
IL_0029:
{
Enumerator_t2146457487 * L_5 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_5();
bool L_6 = Enumerator_MoveNext_m2142368520((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_0054;
}
}
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
Enumerator_t2146457487 * L_8 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_5();
RuntimeObject * L_9 = Enumerator_get_Current_m337713592((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_0054:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_005a:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectListIterator_2_ToArray_m2579775491_gshared (SelectListIterator_2_t1742702623 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (L_2)
{
goto IL_0015;
}
}
{
ObjectU5BU5D_t2843939325* L_3 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_3;
}
IL_0015:
{
int32_t L_4 = V_0;
V_1 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (uint32_t)L_4));
V_2 = (int32_t)0;
goto IL_0042;
}
IL_0020:
{
ObjectU5BU5D_t2843939325* L_5 = V_1;
int32_t L_6 = V_2;
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_8 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_9 = V_2;
NullCheck((List_1_t257213610 *)L_8);
RuntimeObject * L_10 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_8, (int32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_11 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)L_11);
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0042:
{
int32_t L_13 = V_2;
ObjectU5BU5D_t2843939325* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0020;
}
}
{
ObjectU5BU5D_t2843939325* L_15 = V_1;
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectListIterator_2_ToList_m2016497570_gshared (SelectListIterator_2_t1742702623 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
List_1_t257213610 * V_1 = NULL;
int32_t V_2 = 0;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
List_1_t257213610 * L_3 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 13));
(( void (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(L_3, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
V_1 = (List_1_t257213610 *)L_3;
V_2 = (int32_t)0;
goto IL_0038;
}
IL_0017:
{
List_1_t257213610 * L_4 = V_1;
Func_2_t2447130374 * L_5 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_6 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_7 = V_2;
NullCheck((List_1_t257213610 *)L_6);
RuntimeObject * L_8 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_5);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_5, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t257213610 *)L_4);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((List_1_t257213610 *)L_4, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0038:
{
int32_t L_11 = V_2;
int32_t L_12 = V_0;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0017;
}
}
{
List_1_t257213610 * L_13 = V_1;
return L_13;
}
}
// System.Int32 System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectListIterator_2_GetCount_m2827964842_gshared (SelectListIterator_2_t1742702623 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
bool L_2 = ___onlyIfCheap0;
if (L_2)
{
goto IL_0033;
}
}
{
V_1 = (int32_t)0;
goto IL_002f;
}
IL_0013:
{
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_4 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_5 = V_1;
NullCheck((List_1_t257213610 *)L_4);
RuntimeObject * L_6 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_4, (int32_t)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_3);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002f:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
IL_0033:
{
int32_t L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::TryGetElementAt(System.Int32,System.Boolean&)
extern "C" RuntimeObject * SelectListIterator_2_TryGetElementAt_m3949705530_gshared (SelectListIterator_2_t1742702623 * __this, int32_t ___index0, bool* ___found1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if ((!(((uint32_t)L_0) < ((uint32_t)L_2))))
{
goto IL_0029;
}
}
{
bool* L_3 = ___found1;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_5 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_6 = ___index0;
NullCheck((List_1_t257213610 *)L_5);
RuntimeObject * L_7 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_8;
}
IL_0029:
{
bool* L_9 = ___found1;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_10 = V_0;
return L_10;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::TryGetFirst(System.Boolean&)
extern "C" RuntimeObject * SelectListIterator_2_TryGetFirst_m2392574845_gshared (SelectListIterator_2_t1742702623 * __this, bool* ___found0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if (!L_1)
{
goto IL_0028;
}
}
{
bool* L_2 = ___found0;
*((int8_t*)(L_2)) = (int8_t)1;
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_4 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_4);
RuntimeObject * L_5 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_3);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_6;
}
IL_0028:
{
bool* L_7 = ___found0;
*((int8_t*)(L_7)) = (int8_t)0;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_8 = V_0;
return L_8;
}
}
// TResult System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::TryGetLast(System.Boolean&)
extern "C" RuntimeObject * SelectListIterator_2_TryGetLast_m491821547_gshared (SelectListIterator_2_t1742702623 * __this, bool* ___found0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_0 = (int32_t)L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_002c;
}
}
{
bool* L_3 = ___found0;
*((int8_t*)(L_3)) = (int8_t)1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)__this->get__selector_4();
List_1_t257213610 * L_5 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_6 = V_0;
NullCheck((List_1_t257213610 *)L_5);
RuntimeObject * L_7 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_5, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
NullCheck((Func_2_t2447130374 *)L_4);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2447130374 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_8;
}
IL_002c:
{
bool* L_9 = ___found0;
*((int8_t*)(L_9)) = (int8_t)0;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_10 = V_1;
return L_10;
}
}
#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.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Collections.Generic.IEnumerable`1<TResult>>)
extern "C" void SelectManySingleSelectorIterator_2__ctor_m564398177_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, RuntimeObject* ___source0, Func_2_t1426983263 * ___selector1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t1426983263 * L_1 = ___selector1;
__this->set__selector_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * SelectManySingleSelectorIterator_2_Clone_m1574800785_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t1426983263 * L_1 = (Func_2_t1426983263 *)__this->get__selector_4();
SelectManySingleSelectorIterator_2_t963716220 * L_2 = (SelectManySingleSelectorIterator_2_t963716220 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (SelectManySingleSelectorIterator_2_t963716220 *, RuntimeObject*, Func_2_t1426983263 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t1426983263 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::Dispose()
extern "C" void SelectManySingleSelectorIterator_2_Dispose_m3642031398_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectManySingleSelectorIterator_2_Dispose_m3642031398_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__subEnumerator_6();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__subEnumerator_6();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__subEnumerator_6((RuntimeObject*)NULL);
}
IL_001a:
{
RuntimeObject* L_2 = (RuntimeObject*)__this->get__sourceEnumerator_5();
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__sourceEnumerator_5();
NullCheck((RuntimeObject*)L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
__this->set__sourceEnumerator_5((RuntimeObject*)NULL);
}
IL_0034:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t SelectManySingleSelectorIterator_2_GetCount_m3920743042_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectManySingleSelectorIterator_2_GetCount_m3920743042_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
int32_t L_5 = V_0;
Func_2_t1426983263 * L_6 = (Func_2_t1426983263 *)__this->get__selector_4();
RuntimeObject * L_7 = V_2;
NullCheck((Func_2_t1426983263 *)L_6);
RuntimeObject* L_8 = (( RuntimeObject* (*) (Func_2_t1426983263 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1426983263 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
int32_t L_9 = (( int32_t (*) (RuntimeObject * /* static, unused */, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
if (((int64_t)L_5 + (int64_t)L_9 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_5 + (int64_t)L_9 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, SelectManySingleSelectorIterator_2_GetCount_m3920743042_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_9));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0015;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
int32_t L_14 = V_0;
return L_14;
}
}
// System.Boolean System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool SelectManySingleSelectorIterator_2_MoveNext_m1777559799_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectManySingleSelectorIterator_2_MoveNext_m1777559799_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)))
{
case 0:
{
goto IL_0020;
}
case 1:
{
goto IL_0038;
}
case 2:
{
goto IL_006f;
}
}
}
{
goto IL_00aa;
}
IL_0020:
{
RuntimeObject* L_2 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_2);
__this->set__sourceEnumerator_5(L_3);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
}
IL_0038:
{
RuntimeObject* L_4 = (RuntimeObject*)__this->get__sourceEnumerator_5();
NullCheck((RuntimeObject*)L_4);
bool L_5 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
if (!L_5)
{
goto IL_00aa;
}
}
{
RuntimeObject* L_6 = (RuntimeObject*)__this->get__sourceEnumerator_5();
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_6);
V_1 = (RuntimeObject *)L_7;
Func_2_t1426983263 * L_8 = (Func_2_t1426983263 *)__this->get__selector_4();
RuntimeObject * L_9 = V_1;
NullCheck((Func_2_t1426983263 *)L_8);
RuntimeObject* L_10 = (( RuntimeObject* (*) (Func_2_t1426983263 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1426983263 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((RuntimeObject*)L_10);
RuntimeObject* L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9), (RuntimeObject*)L_10);
__this->set__subEnumerator_6(L_11);
((Iterator_1_t2034466501 *)__this)->set__state_1(3);
}
IL_006f:
{
RuntimeObject* L_12 = (RuntimeObject*)__this->get__subEnumerator_6();
NullCheck((RuntimeObject*)L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
if (L_13)
{
goto IL_0097;
}
}
{
RuntimeObject* L_14 = (RuntimeObject*)__this->get__subEnumerator_6();
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
__this->set__subEnumerator_6((RuntimeObject*)NULL);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
goto IL_0038;
}
IL_0097:
{
RuntimeObject* L_15 = (RuntimeObject*)__this->get__subEnumerator_6();
NullCheck((RuntimeObject*)L_15);
RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10), (RuntimeObject*)L_15);
((Iterator_1_t2034466501 *)__this)->set__current_2(L_16);
return (bool)1;
}
IL_00aa:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SelectManySingleSelectorIterator_2_ToArray_m2521061925_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectManySingleSelectorIterator_2_ToArray_m2521061925_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SparseArrayBuilder_1_t3713953326 V_0;
memset(&V_0, 0, sizeof(V_0));
ArrayBuilder_1_t3343055733 V_1;
memset(&V_1, 0, sizeof(V_1));
ObjectU5BU5D_t2843939325* V_2 = NULL;
ArrayBuilder_1_t4177874457 V_3;
memset(&V_3, 0, sizeof(V_3));
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
int32_t V_7 = 0;
Marker_t2894777777 V_8;
memset(&V_8, 0, sizeof(V_8));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
SparseArrayBuilder_1__ctor_m3599075535((SparseArrayBuilder_1_t3713953326 *)(SparseArrayBuilder_1_t3713953326 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
il2cpp_codegen_initobj((&V_1), sizeof(ArrayBuilder_1_t3343055733 ));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_4 = (RuntimeObject*)L_1;
}
IL_001d:
try
{ // begin try (depth: 1)
{
goto IL_004b;
}
IL_001f:
{
RuntimeObject* L_2 = V_4;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_5 = (RuntimeObject *)L_3;
Func_2_t1426983263 * L_4 = (Func_2_t1426983263 *)__this->get__selector_4();
RuntimeObject * L_5 = V_5;
NullCheck((Func_2_t1426983263 *)L_4);
RuntimeObject* L_6 = (( RuntimeObject* (*) (Func_2_t1426983263 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1426983263 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
V_6 = (RuntimeObject*)L_6;
RuntimeObject* L_7 = V_6;
bool L_8 = SparseArrayBuilder_1_ReserveOrAdd_m2427632886((SparseArrayBuilder_1_t3713953326 *)(SparseArrayBuilder_1_t3713953326 *)(&V_0), (RuntimeObject*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
if (!L_8)
{
goto IL_004b;
}
}
IL_0042:
{
RuntimeObject* L_9 = V_6;
ArrayBuilder_1_Add_m3352372406((ArrayBuilder_1_t3343055733 *)(ArrayBuilder_1_t3343055733 *)(&V_1), (RuntimeObject*)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_004b:
{
RuntimeObject* L_10 = V_4;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_001f;
}
}
IL_0054:
{
IL2CPP_LEAVE(0x62, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_4;
if (!L_12)
{
goto IL_0061;
}
}
IL_005a:
{
RuntimeObject* L_13 = V_4;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0061:
{
IL2CPP_END_FINALLY(86)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x62, IL_0062)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0062:
{
ObjectU5BU5D_t2843939325* L_14 = SparseArrayBuilder_1_ToArray_m1576911221((SparseArrayBuilder_1_t3713953326 *)(SparseArrayBuilder_1_t3713953326 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
V_2 = (ObjectU5BU5D_t2843939325*)L_14;
ArrayBuilder_1_t4177874457 L_15 = SparseArrayBuilder_1_get_Markers_m716823650((SparseArrayBuilder_1_t3713953326 *)(SparseArrayBuilder_1_t3713953326 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
V_3 = (ArrayBuilder_1_t4177874457 )L_15;
V_7 = (int32_t)0;
goto IL_00a5;
}
IL_0077:
{
int32_t L_16 = V_7;
Marker_t2894777777 L_17 = ArrayBuilder_1_get_Item_m3563499930((ArrayBuilder_1_t4177874457 *)(ArrayBuilder_1_t4177874457 *)(&V_3), (int32_t)L_16, /*hidden argument*/ArrayBuilder_1_get_Item_m3563499930_RuntimeMethod_var);
V_8 = (Marker_t2894777777 )L_17;
int32_t L_18 = V_7;
RuntimeObject* L_19 = ArrayBuilder_1_get_Item_m3142556344((ArrayBuilder_1_t3343055733 *)(ArrayBuilder_1_t3343055733 *)(&V_1), (int32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
ObjectU5BU5D_t2843939325* L_20 = V_2;
int32_t L_21 = Marker_get_Index_m3525311458((Marker_t2894777777 *)(Marker_t2894777777 *)(&V_8), /*hidden argument*/NULL);
int32_t L_22 = Marker_get_Count_m126194417((Marker_t2894777777 *)(Marker_t2894777777 *)(&V_8), /*hidden argument*/NULL);
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject*, ObjectU5BU5D_t2843939325*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_19, (ObjectU5BU5D_t2843939325*)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
int32_t L_23 = V_7;
V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_00a5:
{
int32_t L_24 = V_7;
int32_t L_25 = ArrayBuilder_1_get_Count_m2587795986((ArrayBuilder_1_t4177874457 *)(ArrayBuilder_1_t4177874457 *)(&V_3), /*hidden argument*/ArrayBuilder_1_get_Count_m2587795986_RuntimeMethod_var);
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_0077;
}
}
{
ObjectU5BU5D_t2843939325* L_26 = V_2;
return L_26;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/SelectManySingleSelectorIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * SelectManySingleSelectorIterator_2_ToList_m2597685119_gshared (SelectManySingleSelectorIterator_2_t963716220 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SelectManySingleSelectorIterator_2_ToList_m2597685119_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t257213610 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 18));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 19));
V_0 = (List_1_t257213610 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
List_1_t257213610 * L_5 = V_0;
Func_2_t1426983263 * L_6 = (Func_2_t1426983263 *)__this->get__selector_4();
RuntimeObject * L_7 = V_2;
NullCheck((Func_2_t1426983263 *)L_6);
RuntimeObject* L_8 = (( RuntimeObject* (*) (Func_2_t1426983263 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1426983263 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((List_1_t257213610 *)L_5);
(( void (*) (List_1_t257213610 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)->methodPointer)((List_1_t257213610 *)L_5, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20));
}
IL_002d:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0014;
}
}
IL_0035:
{
IL2CPP_LEAVE(0x41, FINALLY_0037);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0037;
}
FINALLY_0037:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0040:
{
IL2CPP_END_FINALLY(55)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(55)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
List_1_t257213610 * L_13 = V_0;
return L_13;
}
}
#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.Linq.Enumerable/UnionIterator`1<System.Char>::.ctor(System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIterator_1__ctor_m1456386432_gshared (UnionIterator_1_t3402001247 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2588820807 *)__this);
(( void (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___comparer0;
__this->set__comparer_3(L_0);
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Char>::Dispose()
extern "C" void UnionIterator_1_Dispose_m3312131536_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_Dispose_m3312131536_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_4();
if (!L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_4((RuntimeObject*)NULL);
__this->set__set_5((Set_1_t329142533 *)NULL);
}
IL_0021:
{
NullCheck((Iterator_1_t2588820807 *)__this);
(( void (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Char>::SetEnumerator(System.Collections.Generic.IEnumerator`1<TSource>)
extern "C" void UnionIterator_1_SetEnumerator_m1125297949_gshared (UnionIterator_1_t3402001247 * __this, RuntimeObject* ___enumerator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_SetEnumerator_m1125297949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_4();
RuntimeObject* L_1 = (RuntimeObject*)L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0011;
}
IL_000c:
{
NullCheck((RuntimeObject*)G_B2_0);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)G_B2_0);
}
IL_0011:
{
RuntimeObject* L_2 = ___enumerator0;
__this->set__enumerator_4(L_2);
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Char>::StoreFirst()
extern "C" void UnionIterator_1_StoreFirst_m3241527884_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
Set_1_t329142533 * V_0 = NULL;
Il2CppChar V_1 = 0x0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_3();
Set_1_t329142533 * L_1 = (Set_1_t329142533 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (Set_1_t329142533 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (Set_1_t329142533 *)L_1;
RuntimeObject* L_2 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_2);
Il2CppChar L_3 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_2);
V_1 = (Il2CppChar)L_3;
Set_1_t329142533 * L_4 = V_0;
Il2CppChar L_5 = V_1;
NullCheck((Set_1_t329142533 *)L_4);
(( bool (*) (Set_1_t329142533 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t329142533 *)L_4, (Il2CppChar)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
Il2CppChar L_6 = V_1;
((Iterator_1_t2588820807 *)__this)->set__current_2(L_6);
Set_1_t329142533 * L_7 = V_0;
__this->set__set_5(L_7);
return;
}
}
// System.Boolean System.Linq.Enumerable/UnionIterator`1<System.Char>::GetNext()
extern "C" bool UnionIterator_1_GetNext_m1279570535_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_GetNext_m1279570535_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Set_1_t329142533 * V_0 = NULL;
Il2CppChar V_1 = 0x0;
{
Set_1_t329142533 * L_0 = (Set_1_t329142533 *)__this->get__set_5();
V_0 = (Set_1_t329142533 *)L_0;
goto IL_0027;
}
IL_0009:
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_1);
Il2CppChar L_2 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (Il2CppChar)L_2;
Set_1_t329142533 * L_3 = V_0;
Il2CppChar L_4 = V_1;
NullCheck((Set_1_t329142533 *)L_3);
bool L_5 = (( bool (*) (Set_1_t329142533 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t329142533 *)L_3, (Il2CppChar)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if (!L_5)
{
goto IL_0027;
}
}
{
Il2CppChar L_6 = V_1;
((Iterator_1_t2588820807 *)__this)->set__current_2(L_6);
return (bool)1;
}
IL_0027:
{
RuntimeObject* L_7 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0009;
}
}
{
return (bool)0;
}
}
// System.Boolean System.Linq.Enumerable/UnionIterator`1<System.Char>::MoveNext()
extern "C" bool UnionIterator_1_MoveNext_m375289487_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_MoveNext_m375289487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
{
goto IL_0053;
}
}
{
NullCheck((UnionIterator_1_t3402001247 *)__this);
RuntimeObject* L_1 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::GetEnumerable(System.Int32) */, (UnionIterator_1_t3402001247 *)__this, (int32_t)0);
V_0 = (RuntimeObject*)L_1;
goto IL_004e;
}
IL_0013:
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_2);
V_1 = (RuntimeObject*)L_3;
int32_t L_4 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
((Iterator_1_t2588820807 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
RuntimeObject* L_5 = V_1;
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_003f;
}
}
{
RuntimeObject* L_7 = V_1;
NullCheck((UnionIterator_1_t3402001247 *)__this);
(( void (*) (UnionIterator_1_t3402001247 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((UnionIterator_1_t3402001247 *)__this, (RuntimeObject*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
NullCheck((UnionIterator_1_t3402001247 *)__this);
(( void (*) (UnionIterator_1_t3402001247 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((UnionIterator_1_t3402001247 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return (bool)1;
}
IL_003f:
{
int32_t L_8 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
NullCheck((UnionIterator_1_t3402001247 *)__this);
RuntimeObject* L_9 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::GetEnumerable(System.Int32) */, (UnionIterator_1_t3402001247 *)__this, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)));
V_0 = (RuntimeObject*)L_9;
}
IL_004e:
{
RuntimeObject* L_10 = V_0;
if (L_10)
{
goto IL_0013;
}
}
{
goto IL_0094;
}
IL_0053:
{
int32_t L_11 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0094;
}
}
IL_005c:
{
NullCheck((UnionIterator_1_t3402001247 *)__this);
bool L_12 = (( bool (*) (UnionIterator_1_t3402001247 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((UnionIterator_1_t3402001247 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
if (!L_12)
{
goto IL_0066;
}
}
{
return (bool)1;
}
IL_0066:
{
int32_t L_13 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
NullCheck((UnionIterator_1_t3402001247 *)__this);
RuntimeObject* L_14 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::GetEnumerable(System.Int32) */, (UnionIterator_1_t3402001247 *)__this, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)));
V_2 = (RuntimeObject*)L_14;
RuntimeObject* L_15 = V_2;
if (!L_15)
{
goto IL_0094;
}
}
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
RuntimeObject* L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_16);
NullCheck((UnionIterator_1_t3402001247 *)__this);
(( void (*) (UnionIterator_1_t3402001247 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((UnionIterator_1_t3402001247 *)__this, (RuntimeObject*)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_18 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
((Iterator_1_t2588820807 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
goto IL_005c;
}
IL_0094:
{
NullCheck((Iterator_1_t2588820807 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t2588820807 *)__this);
return (bool)0;
}
}
// System.Linq.Set`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::FillSet()
extern "C" Set_1_t329142533 * UnionIterator_1_FillSet_m2793201565_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
Set_1_t329142533 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_3();
Set_1_t329142533 * L_1 = (Set_1_t329142533 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (Set_1_t329142533 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (Set_1_t329142533 *)L_1;
V_1 = (int32_t)0;
}
IL_000e:
{
int32_t L_2 = V_1;
NullCheck((UnionIterator_1_t3402001247 *)__this);
RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::GetEnumerable(System.Int32) */, (UnionIterator_1_t3402001247 *)__this, (int32_t)L_2);
V_2 = (RuntimeObject*)L_3;
RuntimeObject* L_4 = V_2;
if (L_4)
{
goto IL_001b;
}
}
{
Set_1_t329142533 * L_5 = V_0;
return L_5;
}
IL_001b:
{
Set_1_t329142533 * L_6 = V_0;
RuntimeObject* L_7 = V_2;
NullCheck((Set_1_t329142533 *)L_6);
(( void (*) (Set_1_t329142533 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Set_1_t329142533 *)L_6, (RuntimeObject*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
goto IL_000e;
}
}
// TSource[] System.Linq.Enumerable/UnionIterator`1<System.Char>::ToArray()
extern "C" CharU5BU5D_t3528271667* UnionIterator_1_ToArray_m1391168839_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
{
NullCheck((UnionIterator_1_t3402001247 *)__this);
Set_1_t329142533 * L_0 = (( Set_1_t329142533 * (*) (UnionIterator_1_t3402001247 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t3402001247 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t329142533 *)L_0);
CharU5BU5D_t3528271667* L_1 = (( CharU5BU5D_t3528271667* (*) (Set_1_t329142533 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((Set_1_t329142533 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
return L_1;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Char>::ToList()
extern "C" List_1_t811567916 * UnionIterator_1_ToList_m2593088018_gshared (UnionIterator_1_t3402001247 * __this, const RuntimeMethod* method)
{
{
NullCheck((UnionIterator_1_t3402001247 *)__this);
Set_1_t329142533 * L_0 = (( Set_1_t329142533 * (*) (UnionIterator_1_t3402001247 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t3402001247 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t329142533 *)L_0);
List_1_t811567916 * L_1 = (( List_1_t811567916 * (*) (Set_1_t329142533 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((Set_1_t329142533 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
return L_1;
}
}
// System.Int32 System.Linq.Enumerable/UnionIterator`1<System.Char>::GetCount(System.Boolean)
extern "C" int32_t UnionIterator_1_GetCount_m83266941_gshared (UnionIterator_1_t3402001247 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_000f;
}
}
{
NullCheck((UnionIterator_1_t3402001247 *)__this);
Set_1_t329142533 * L_1 = (( Set_1_t329142533 * (*) (UnionIterator_1_t3402001247 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t3402001247 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t329142533 *)L_1);
int32_t L_2 = (( int32_t (*) (Set_1_t329142533 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Set_1_t329142533 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
return L_2;
}
IL_000f:
{
return (-1);
}
}
#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.Linq.Enumerable/UnionIterator`1<System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIterator_1__ctor_m2074701123_gshared (UnionIterator_1_t2847646941 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___comparer0;
__this->set__comparer_3(L_0);
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Object>::Dispose()
extern "C" void UnionIterator_1_Dispose_m745608159_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_Dispose_m745608159_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_4();
if (!L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_4((RuntimeObject*)NULL);
__this->set__set_5((Set_1_t4069755523 *)NULL);
}
IL_0021:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Object>::SetEnumerator(System.Collections.Generic.IEnumerator`1<TSource>)
extern "C" void UnionIterator_1_SetEnumerator_m3710368852_gshared (UnionIterator_1_t2847646941 * __this, RuntimeObject* ___enumerator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_SetEnumerator_m3710368852_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_4();
RuntimeObject* L_1 = (RuntimeObject*)L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0011;
}
IL_000c:
{
NullCheck((RuntimeObject*)G_B2_0);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)G_B2_0);
}
IL_0011:
{
RuntimeObject* L_2 = ___enumerator0;
__this->set__enumerator_4(L_2);
return;
}
}
// System.Void System.Linq.Enumerable/UnionIterator`1<System.Object>::StoreFirst()
extern "C" void UnionIterator_1_StoreFirst_m329119166_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
Set_1_t4069755523 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_3();
Set_1_t4069755523 * L_1 = (Set_1_t4069755523 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (Set_1_t4069755523 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (Set_1_t4069755523 *)L_1;
RuntimeObject* L_2 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_2);
V_1 = (RuntimeObject *)L_3;
Set_1_t4069755523 * L_4 = V_0;
RuntimeObject * L_5 = V_1;
NullCheck((Set_1_t4069755523 *)L_4);
(( bool (*) (Set_1_t4069755523 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t4069755523 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
RuntimeObject * L_6 = V_1;
((Iterator_1_t2034466501 *)__this)->set__current_2(L_6);
Set_1_t4069755523 * L_7 = V_0;
__this->set__set_5(L_7);
return;
}
}
// System.Boolean System.Linq.Enumerable/UnionIterator`1<System.Object>::GetNext()
extern "C" bool UnionIterator_1_GetNext_m235872769_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_GetNext_m235872769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Set_1_t4069755523 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
Set_1_t4069755523 * L_0 = (Set_1_t4069755523 *)__this->get__set_5();
V_0 = (Set_1_t4069755523 *)L_0;
goto IL_0027;
}
IL_0009:
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_1);
RuntimeObject * L_2 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject *)L_2;
Set_1_t4069755523 * L_3 = V_0;
RuntimeObject * L_4 = V_1;
NullCheck((Set_1_t4069755523 *)L_3);
bool L_5 = (( bool (*) (Set_1_t4069755523 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t4069755523 *)L_3, (RuntimeObject *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if (!L_5)
{
goto IL_0027;
}
}
{
RuntimeObject * L_6 = V_1;
((Iterator_1_t2034466501 *)__this)->set__current_2(L_6);
return (bool)1;
}
IL_0027:
{
RuntimeObject* L_7 = (RuntimeObject*)__this->get__enumerator_4();
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_0009;
}
}
{
return (bool)0;
}
}
// System.Boolean System.Linq.Enumerable/UnionIterator`1<System.Object>::MoveNext()
extern "C" bool UnionIterator_1_MoveNext_m4242229629_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnionIterator_1_MoveNext_m4242229629_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
{
goto IL_0053;
}
}
{
NullCheck((UnionIterator_1_t2847646941 *)__this);
RuntimeObject* L_1 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::GetEnumerable(System.Int32) */, (UnionIterator_1_t2847646941 *)__this, (int32_t)0);
V_0 = (RuntimeObject*)L_1;
goto IL_004e;
}
IL_0013:
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_2);
V_1 = (RuntimeObject*)L_3;
int32_t L_4 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
((Iterator_1_t2034466501 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
RuntimeObject* L_5 = V_1;
NullCheck((RuntimeObject*)L_5);
bool L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_5);
if (!L_6)
{
goto IL_003f;
}
}
{
RuntimeObject* L_7 = V_1;
NullCheck((UnionIterator_1_t2847646941 *)__this);
(( void (*) (UnionIterator_1_t2847646941 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((UnionIterator_1_t2847646941 *)__this, (RuntimeObject*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
NullCheck((UnionIterator_1_t2847646941 *)__this);
(( void (*) (UnionIterator_1_t2847646941 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)((UnionIterator_1_t2847646941 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return (bool)1;
}
IL_003f:
{
int32_t L_8 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
NullCheck((UnionIterator_1_t2847646941 *)__this);
RuntimeObject* L_9 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::GetEnumerable(System.Int32) */, (UnionIterator_1_t2847646941 *)__this, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)));
V_0 = (RuntimeObject*)L_9;
}
IL_004e:
{
RuntimeObject* L_10 = V_0;
if (L_10)
{
goto IL_0013;
}
}
{
goto IL_0094;
}
IL_0053:
{
int32_t L_11 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0094;
}
}
IL_005c:
{
NullCheck((UnionIterator_1_t2847646941 *)__this);
bool L_12 = (( bool (*) (UnionIterator_1_t2847646941 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((UnionIterator_1_t2847646941 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
if (!L_12)
{
goto IL_0066;
}
}
{
return (bool)1;
}
IL_0066:
{
int32_t L_13 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
NullCheck((UnionIterator_1_t2847646941 *)__this);
RuntimeObject* L_14 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::GetEnumerable(System.Int32) */, (UnionIterator_1_t2847646941 *)__this, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)));
V_2 = (RuntimeObject*)L_14;
RuntimeObject* L_15 = V_2;
if (!L_15)
{
goto IL_0094;
}
}
{
RuntimeObject* L_16 = V_2;
NullCheck((RuntimeObject*)L_16);
RuntimeObject* L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8), (RuntimeObject*)L_16);
NullCheck((UnionIterator_1_t2847646941 *)__this);
(( void (*) (UnionIterator_1_t2847646941 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((UnionIterator_1_t2847646941 *)__this, (RuntimeObject*)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_18 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
((Iterator_1_t2034466501 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
goto IL_005c;
}
IL_0094:
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
return (bool)0;
}
}
// System.Linq.Set`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::FillSet()
extern "C" Set_1_t4069755523 * UnionIterator_1_FillSet_m552649502_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
Set_1_t4069755523 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_3();
Set_1_t4069755523 * L_1 = (Set_1_t4069755523 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (Set_1_t4069755523 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_0 = (Set_1_t4069755523 *)L_1;
V_1 = (int32_t)0;
}
IL_000e:
{
int32_t L_2 = V_1;
NullCheck((UnionIterator_1_t2847646941 *)__this);
RuntimeObject* L_3 = VirtFuncInvoker1< RuntimeObject*, int32_t >::Invoke(19 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::GetEnumerable(System.Int32) */, (UnionIterator_1_t2847646941 *)__this, (int32_t)L_2);
V_2 = (RuntimeObject*)L_3;
RuntimeObject* L_4 = V_2;
if (L_4)
{
goto IL_001b;
}
}
{
Set_1_t4069755523 * L_5 = V_0;
return L_5;
}
IL_001b:
{
Set_1_t4069755523 * L_6 = V_0;
RuntimeObject* L_7 = V_2;
NullCheck((Set_1_t4069755523 *)L_6);
(( void (*) (Set_1_t4069755523 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Set_1_t4069755523 *)L_6, (RuntimeObject*)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
goto IL_000e;
}
}
// TSource[] System.Linq.Enumerable/UnionIterator`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* UnionIterator_1_ToArray_m1560549058_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
{
NullCheck((UnionIterator_1_t2847646941 *)__this);
Set_1_t4069755523 * L_0 = (( Set_1_t4069755523 * (*) (UnionIterator_1_t2847646941 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t2847646941 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t4069755523 *)L_0);
ObjectU5BU5D_t2843939325* L_1 = (( ObjectU5BU5D_t2843939325* (*) (Set_1_t4069755523 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((Set_1_t4069755523 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
return L_1;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/UnionIterator`1<System.Object>::ToList()
extern "C" List_1_t257213610 * UnionIterator_1_ToList_m2876085498_gshared (UnionIterator_1_t2847646941 * __this, const RuntimeMethod* method)
{
{
NullCheck((UnionIterator_1_t2847646941 *)__this);
Set_1_t4069755523 * L_0 = (( Set_1_t4069755523 * (*) (UnionIterator_1_t2847646941 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t2847646941 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t4069755523 *)L_0);
List_1_t257213610 * L_1 = (( List_1_t257213610 * (*) (Set_1_t4069755523 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)((Set_1_t4069755523 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
return L_1;
}
}
// System.Int32 System.Linq.Enumerable/UnionIterator`1<System.Object>::GetCount(System.Boolean)
extern "C" int32_t UnionIterator_1_GetCount_m3748804620_gshared (UnionIterator_1_t2847646941 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_000f;
}
}
{
NullCheck((UnionIterator_1_t2847646941 *)__this);
Set_1_t4069755523 * L_1 = (( Set_1_t4069755523 * (*) (UnionIterator_1_t2847646941 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((UnionIterator_1_t2847646941 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
NullCheck((Set_1_t4069755523 *)L_1);
int32_t L_2 = (( int32_t (*) (Set_1_t4069755523 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Set_1_t4069755523 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
return L_2;
}
IL_000f:
{
return (-1);
}
}
#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.Linq.Enumerable/UnionIterator2`1<System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIterator2_1__ctor_m832565037_gshared (UnionIterator2_1_t1321734732 * __this, RuntimeObject* ___first0, RuntimeObject* ___second1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___comparer2;
NullCheck((UnionIterator_1_t3402001247 *)__this);
(( void (*) (UnionIterator_1_t3402001247 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnionIterator_1_t3402001247 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_1 = ___first0;
__this->set__first_6(L_1);
RuntimeObject* L_2 = ___second1;
__this->set__second_7(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Char>::Clone()
extern "C" Iterator_1_t2588820807 * UnionIterator2_1_Clone_m1092059002_gshared (UnionIterator2_1_t1321734732 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__first_6();
RuntimeObject* L_1 = (RuntimeObject*)__this->get__second_7();
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t3402001247 *)__this)->get__comparer_3();
UnionIterator2_1_t1321734732 * L_3 = (UnionIterator2_1_t1321734732 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIterator2_1_t1321734732 *, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (RuntimeObject*)L_0, (RuntimeObject*)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_3;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Char>::GetEnumerable(System.Int32)
extern "C" RuntimeObject* UnionIterator2_1_GetEnumerable_m3932698187_gshared (UnionIterator2_1_t1321734732 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0009;
}
}
{
int32_t L_1 = ___index0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0010;
}
}
{
goto IL_0017;
}
IL_0009:
{
RuntimeObject* L_2 = (RuntimeObject*)__this->get__first_6();
return L_2;
}
IL_0010:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__second_7();
return L_3;
}
IL_0017:
{
return (RuntimeObject*)NULL;
}
}
// System.Linq.Enumerable/UnionIterator`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Char>::Union(System.Collections.Generic.IEnumerable`1<TSource>)
extern "C" UnionIterator_1_t3402001247 * UnionIterator2_1_Union_m4094657135_gshared (UnionIterator2_1_t1321734732 * __this, RuntimeObject* ___next0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__first_6();
SingleLinkedNode_1_t1339374102 * L_1 = (SingleLinkedNode_1_t1339374102 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5));
(( void (*) (SingleLinkedNode_1_t1339374102 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
RuntimeObject* L_2 = (RuntimeObject*)__this->get__second_7();
NullCheck((SingleLinkedNode_1_t1339374102 *)L_1);
SingleLinkedNode_1_t1339374102 * L_3 = (( SingleLinkedNode_1_t1339374102 * (*) (SingleLinkedNode_1_t1339374102 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SingleLinkedNode_1_t1339374102 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
RuntimeObject* L_4 = ___next0;
NullCheck((SingleLinkedNode_1_t1339374102 *)L_3);
SingleLinkedNode_1_t1339374102 * L_5 = (( SingleLinkedNode_1_t1339374102 * (*) (SingleLinkedNode_1_t1339374102 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SingleLinkedNode_1_t1339374102 *)L_3, (RuntimeObject*)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
RuntimeObject* L_6 = (RuntimeObject*)((UnionIterator_1_t3402001247 *)__this)->get__comparer_3();
UnionIteratorN_1_t1272659448 * L_7 = (UnionIteratorN_1_t1272659448 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8));
(( void (*) (UnionIteratorN_1_t1272659448 *, SingleLinkedNode_1_t1339374102 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(L_7, (SingleLinkedNode_1_t1339374102 *)L_5, (int32_t)2, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_7;
}
}
#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.Linq.Enumerable/UnionIterator2`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIterator2_1__ctor_m4294640512_gshared (UnionIterator2_1_t767380426 * __this, RuntimeObject* ___first0, RuntimeObject* ___second1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___comparer2;
NullCheck((UnionIterator_1_t2847646941 *)__this);
(( void (*) (UnionIterator_1_t2847646941 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnionIterator_1_t2847646941 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_1 = ___first0;
__this->set__first_6(L_1);
RuntimeObject* L_2 = ___second1;
__this->set__second_7(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * UnionIterator2_1_Clone_m3694072997_gshared (UnionIterator2_1_t767380426 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__first_6();
RuntimeObject* L_1 = (RuntimeObject*)__this->get__second_7();
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t2847646941 *)__this)->get__comparer_3();
UnionIterator2_1_t767380426 * L_3 = (UnionIterator2_1_t767380426 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIterator2_1_t767380426 *, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (RuntimeObject*)L_0, (RuntimeObject*)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_3;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Object>::GetEnumerable(System.Int32)
extern "C" RuntimeObject* UnionIterator2_1_GetEnumerable_m3722855478_gshared (UnionIterator2_1_t767380426 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0009;
}
}
{
int32_t L_1 = ___index0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0010;
}
}
{
goto IL_0017;
}
IL_0009:
{
RuntimeObject* L_2 = (RuntimeObject*)__this->get__first_6();
return L_2;
}
IL_0010:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__second_7();
return L_3;
}
IL_0017:
{
return (RuntimeObject*)NULL;
}
}
// System.Linq.Enumerable/UnionIterator`1<TSource> System.Linq.Enumerable/UnionIterator2`1<System.Object>::Union(System.Collections.Generic.IEnumerable`1<TSource>)
extern "C" UnionIterator_1_t2847646941 * UnionIterator2_1_Union_m3761667175_gshared (UnionIterator2_1_t767380426 * __this, RuntimeObject* ___next0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__first_6();
SingleLinkedNode_1_t785019796 * L_1 = (SingleLinkedNode_1_t785019796 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5));
(( void (*) (SingleLinkedNode_1_t785019796 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)(L_1, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
RuntimeObject* L_2 = (RuntimeObject*)__this->get__second_7();
NullCheck((SingleLinkedNode_1_t785019796 *)L_1);
SingleLinkedNode_1_t785019796 * L_3 = (( SingleLinkedNode_1_t785019796 * (*) (SingleLinkedNode_1_t785019796 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SingleLinkedNode_1_t785019796 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
RuntimeObject* L_4 = ___next0;
NullCheck((SingleLinkedNode_1_t785019796 *)L_3);
SingleLinkedNode_1_t785019796 * L_5 = (( SingleLinkedNode_1_t785019796 * (*) (SingleLinkedNode_1_t785019796 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((SingleLinkedNode_1_t785019796 *)L_3, (RuntimeObject*)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
RuntimeObject* L_6 = (RuntimeObject*)((UnionIterator_1_t2847646941 *)__this)->get__comparer_3();
UnionIteratorN_1_t718305142 * L_7 = (UnionIteratorN_1_t718305142 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8));
(( void (*) (UnionIteratorN_1_t718305142 *, SingleLinkedNode_1_t785019796 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)(L_7, (SingleLinkedNode_1_t785019796 *)L_5, (int32_t)2, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_7;
}
}
#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.Linq.Enumerable/UnionIteratorN`1<System.Char>::.ctor(System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<TSource>>,System.Int32,System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIteratorN_1__ctor_m1088637715_gshared (UnionIteratorN_1_t1272659448 * __this, SingleLinkedNode_1_t1339374102 * ___sources0, int32_t ___headIndex1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___comparer2;
NullCheck((UnionIterator_1_t3402001247 *)__this);
(( void (*) (UnionIterator_1_t3402001247 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnionIterator_1_t3402001247 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SingleLinkedNode_1_t1339374102 * L_1 = ___sources0;
__this->set__sources_6(L_1);
int32_t L_2 = ___headIndex1;
__this->set__headIndex_7(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Char>::Clone()
extern "C" Iterator_1_t2588820807 * UnionIteratorN_1_Clone_m2271401880_gshared (UnionIteratorN_1_t1272659448 * __this, const RuntimeMethod* method)
{
{
SingleLinkedNode_1_t1339374102 * L_0 = (SingleLinkedNode_1_t1339374102 *)__this->get__sources_6();
int32_t L_1 = (int32_t)__this->get__headIndex_7();
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t3402001247 *)__this)->get__comparer_3();
UnionIteratorN_1_t1272659448 * L_3 = (UnionIteratorN_1_t1272659448 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIteratorN_1_t1272659448 *, SingleLinkedNode_1_t1339374102 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (SingleLinkedNode_1_t1339374102 *)L_0, (int32_t)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_3;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Char>::GetEnumerable(System.Int32)
extern "C" RuntimeObject* UnionIteratorN_1_GetEnumerable_m3036892948_gshared (UnionIteratorN_1_t1272659448 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__headIndex_7();
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
SingleLinkedNode_1_t1339374102 * L_2 = (SingleLinkedNode_1_t1339374102 *)__this->get__sources_6();
int32_t L_3 = (int32_t)__this->get__headIndex_7();
int32_t L_4 = ___index0;
NullCheck((SingleLinkedNode_1_t1339374102 *)L_2);
SingleLinkedNode_1_t1339374102 * L_5 = (( SingleLinkedNode_1_t1339374102 * (*) (SingleLinkedNode_1_t1339374102 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((SingleLinkedNode_1_t1339374102 *)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck((SingleLinkedNode_1_t1339374102 *)L_5);
RuntimeObject* L_6 = (( RuntimeObject* (*) (SingleLinkedNode_1_t1339374102 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((SingleLinkedNode_1_t1339374102 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_6;
}
IL_0022:
{
return (RuntimeObject*)NULL;
}
}
// System.Linq.Enumerable/UnionIterator`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Char>::Union(System.Collections.Generic.IEnumerable`1<TSource>)
extern "C" UnionIterator_1_t3402001247 * UnionIteratorN_1_Union_m2780482306_gshared (UnionIteratorN_1_t1272659448 * __this, RuntimeObject* ___next0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__headIndex_7();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)2147483645)))))
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = ___next0;
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t3402001247 *)__this)->get__comparer_3();
UnionIterator2_1_t1321734732 * L_3 = (UnionIterator2_1_t1321734732 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (UnionIterator2_1_t1321734732 *, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_3, (RuntimeObject*)__this, (RuntimeObject*)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_3;
}
IL_001b:
{
SingleLinkedNode_1_t1339374102 * L_4 = (SingleLinkedNode_1_t1339374102 *)__this->get__sources_6();
RuntimeObject* L_5 = ___next0;
NullCheck((SingleLinkedNode_1_t1339374102 *)L_4);
SingleLinkedNode_1_t1339374102 * L_6 = (( SingleLinkedNode_1_t1339374102 * (*) (SingleLinkedNode_1_t1339374102 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((SingleLinkedNode_1_t1339374102 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_7 = (int32_t)__this->get__headIndex_7();
RuntimeObject* L_8 = (RuntimeObject*)((UnionIterator_1_t3402001247 *)__this)->get__comparer_3();
UnionIteratorN_1_t1272659448 * L_9 = (UnionIteratorN_1_t1272659448 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIteratorN_1_t1272659448 *, SingleLinkedNode_1_t1339374102 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_9, (SingleLinkedNode_1_t1339374102 *)L_6, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_9;
}
}
#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.Linq.Enumerable/UnionIteratorN`1<System.Object>::.ctor(System.Linq.SingleLinkedNode`1<System.Collections.Generic.IEnumerable`1<TSource>>,System.Int32,System.Collections.Generic.IEqualityComparer`1<TSource>)
extern "C" void UnionIteratorN_1__ctor_m4119218285_gshared (UnionIteratorN_1_t718305142 * __this, SingleLinkedNode_1_t785019796 * ___sources0, int32_t ___headIndex1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___comparer2;
NullCheck((UnionIterator_1_t2847646941 *)__this);
(( void (*) (UnionIterator_1_t2847646941 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((UnionIterator_1_t2847646941 *)__this, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SingleLinkedNode_1_t785019796 * L_1 = ___sources0;
__this->set__sources_6(L_1);
int32_t L_2 = ___headIndex1;
__this->set__headIndex_7(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * UnionIteratorN_1_Clone_m1648276427_gshared (UnionIteratorN_1_t718305142 * __this, const RuntimeMethod* method)
{
{
SingleLinkedNode_1_t785019796 * L_0 = (SingleLinkedNode_1_t785019796 *)__this->get__sources_6();
int32_t L_1 = (int32_t)__this->get__headIndex_7();
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t2847646941 *)__this)->get__comparer_3();
UnionIteratorN_1_t718305142 * L_3 = (UnionIteratorN_1_t718305142 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIteratorN_1_t718305142 *, SingleLinkedNode_1_t785019796 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_3, (SingleLinkedNode_1_t785019796 *)L_0, (int32_t)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_3;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Object>::GetEnumerable(System.Int32)
extern "C" RuntimeObject* UnionIteratorN_1_GetEnumerable_m3891809794_gshared (UnionIteratorN_1_t718305142 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__headIndex_7();
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
SingleLinkedNode_1_t785019796 * L_2 = (SingleLinkedNode_1_t785019796 *)__this->get__sources_6();
int32_t L_3 = (int32_t)__this->get__headIndex_7();
int32_t L_4 = ___index0;
NullCheck((SingleLinkedNode_1_t785019796 *)L_2);
SingleLinkedNode_1_t785019796 * L_5 = (( SingleLinkedNode_1_t785019796 * (*) (SingleLinkedNode_1_t785019796 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((SingleLinkedNode_1_t785019796 *)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck((SingleLinkedNode_1_t785019796 *)L_5);
RuntimeObject* L_6 = (( RuntimeObject* (*) (SingleLinkedNode_1_t785019796 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((SingleLinkedNode_1_t785019796 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
return L_6;
}
IL_0022:
{
return (RuntimeObject*)NULL;
}
}
// System.Linq.Enumerable/UnionIterator`1<TSource> System.Linq.Enumerable/UnionIteratorN`1<System.Object>::Union(System.Collections.Generic.IEnumerable`1<TSource>)
extern "C" UnionIterator_1_t2847646941 * UnionIteratorN_1_Union_m4070762018_gshared (UnionIteratorN_1_t718305142 * __this, RuntimeObject* ___next0, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__headIndex_7();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)2147483645)))))
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = ___next0;
RuntimeObject* L_2 = (RuntimeObject*)((UnionIterator_1_t2847646941 *)__this)->get__comparer_3();
UnionIterator2_1_t767380426 * L_3 = (UnionIterator2_1_t767380426 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7));
(( void (*) (UnionIterator2_1_t767380426 *, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_3, (RuntimeObject*)__this, (RuntimeObject*)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_3;
}
IL_001b:
{
SingleLinkedNode_1_t785019796 * L_4 = (SingleLinkedNode_1_t785019796 *)__this->get__sources_6();
RuntimeObject* L_5 = ___next0;
NullCheck((SingleLinkedNode_1_t785019796 *)L_4);
SingleLinkedNode_1_t785019796 * L_6 = (( SingleLinkedNode_1_t785019796 * (*) (SingleLinkedNode_1_t785019796 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((SingleLinkedNode_1_t785019796 *)L_4, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
int32_t L_7 = (int32_t)__this->get__headIndex_7();
RuntimeObject* L_8 = (RuntimeObject*)((UnionIterator_1_t2847646941 *)__this)->get__comparer_3();
UnionIteratorN_1_t718305142 * L_9 = (UnionIteratorN_1_t718305142 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3));
(( void (*) (UnionIteratorN_1_t718305142 *, SingleLinkedNode_1_t785019796 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(L_9, (SingleLinkedNode_1_t785019796 *)L_6, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_9;
}
}
#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.Linq.Enumerable/WhereArrayIterator`1<System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>)
extern "C" void WhereArrayIterator_1__ctor_m4004479980_gshared (WhereArrayIterator_1_t1891928581 * __this, ObjectU5BU5D_t2843939325* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ObjectU5BU5D_t2843939325* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereArrayIterator_1_Clone_m4263839054_gshared (WhereArrayIterator_1_t1891928581 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
WhereArrayIterator_1_t1891928581 * L_2 = (WhereArrayIterator_1_t1891928581 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereArrayIterator_1_t1891928581 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t3759279471 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Int32 System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereArrayIterator_1_GetCount_m789606869_gshared (WhereArrayIterator_1_t1891928581 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereArrayIterator_1_GetCount_m789606869_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_0030;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_002c;
}
}
{
int32_t L_9 = V_0;
if (((int64_t)L_9 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_9 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereArrayIterator_1_GetCount_m789606869_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002c:
{
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0030:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t2843939325* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0012;
}
}
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::MoveNext()
extern "C" bool WhereArrayIterator_1_MoveNext_m957314425_gshared (WhereArrayIterator_1_t1891928581 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
RuntimeObject * V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
goto IL_0043;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (RuntimeObject *)L_5;
int32_t L_6 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_3 = (int32_t)L_6;
int32_t L_7 = V_3;
((Iterator_1_t2034466501 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
int32_t L_8 = V_3;
V_0 = (int32_t)L_8;
Func_2_t3759279471 * L_9 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_10 = V_2;
NullCheck((Func_2_t3759279471 *)L_9);
bool L_11 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_11)
{
goto IL_0043;
}
}
{
RuntimeObject * L_12 = V_2;
((Iterator_1_t2034466501 *)__this)->set__current_2(L_12);
return (bool)1;
}
IL_0043:
{
int32_t L_13 = V_0;
ObjectU5BU5D_t2843939325* L_14 = V_1;
NullCheck(L_14);
if ((!(((uint32_t)L_13) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))))
{
goto IL_0012;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereArrayIterator_1_ToArray_m2818187344_gshared (WhereArrayIterator_1_t1891928581 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_0);
LargeArrayBuilder_1__ctor_m193325792((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_003c;
}
IL_001a:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_0038;
}
}
{
RuntimeObject * L_9 = V_3;
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0038:
{
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003c:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t2843939325* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_001a;
}
}
{
ObjectU5BU5D_t2843939325* L_13 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_13;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::ToList()
extern "C" List_1_t257213610 * WhereArrayIterator_1_ToList_m1525457237_gshared (WhereArrayIterator_1_t1891928581 * __this, const RuntimeMethod* method)
{
List_1_t257213610 * V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_0 = (List_1_t257213610 *)L_0;
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_0032;
}
IL_0011:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_002e;
}
}
{
List_1_t257213610 * L_9 = V_0;
RuntimeObject * L_10 = V_3;
NullCheck((List_1_t257213610 *)L_9);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((List_1_t257213610 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
}
IL_002e:
{
int32_t L_11 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0032:
{
int32_t L_12 = V_2;
ObjectU5BU5D_t2843939325* L_13 = V_1;
NullCheck(L_13);
if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length)))))))
{
goto IL_0011;
}
}
{
List_1_t257213610 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereArrayIterator_1_Where_m3717560039_gshared (WhereArrayIterator_1_t1891928581 * __this, Func_2_t3759279471 * ___predicate0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t3759279471 * L_2 = ___predicate0;
Func_2_t3759279471 * L_3 = (( Func_2_t3759279471 * (*) (RuntimeObject * /* static, unused */, Func_2_t3759279471 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(NULL /*static, unused*/, (Func_2_t3759279471 *)L_1, (Func_2_t3759279471 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
WhereArrayIterator_1_t1891928581 * L_4 = (WhereArrayIterator_1_t1891928581 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereArrayIterator_1_t1891928581 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t3759279471 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>)
extern "C" void WhereArrayIterator_1__ctor_m854723143_gshared (WhereArrayIterator_1_t2597673910 * __this, RayU5BU5D_t1836217960* ___source0, Func_2_t2751558106 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2740211830 *)__this);
(( void (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RayU5BU5D_t1836217960* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2751558106 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::Clone()
extern "C" Iterator_1_t2740211830 * WhereArrayIterator_1_Clone_m535293328_gshared (WhereArrayIterator_1_t2597673910 * __this, const RuntimeMethod* method)
{
{
RayU5BU5D_t1836217960* L_0 = (RayU5BU5D_t1836217960*)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
WhereArrayIterator_1_t2597673910 * L_2 = (WhereArrayIterator_1_t2597673910 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereArrayIterator_1_t2597673910 *, RayU5BU5D_t1836217960*, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RayU5BU5D_t1836217960*)L_0, (Func_2_t2751558106 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Int32 System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::GetCount(System.Boolean)
extern "C" int32_t WhereArrayIterator_1_GetCount_m380671501_gshared (WhereArrayIterator_1_t2597673910 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereArrayIterator_1_GetCount_m380671501_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RayU5BU5D_t1836217960* V_1 = NULL;
int32_t V_2 = 0;
Ray_t3785851493 V_3;
memset(&V_3, 0, sizeof(V_3));
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__source_3();
V_1 = (RayU5BU5D_t1836217960*)L_1;
V_2 = (int32_t)0;
goto IL_0030;
}
IL_0012:
{
RayU5BU5D_t1836217960* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
Ray_t3785851493 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (Ray_t3785851493 )L_5;
Func_2_t2751558106 * L_6 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_7 = V_3;
NullCheck((Func_2_t2751558106 *)L_6);
bool L_8 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t2751558106 *)L_6, (Ray_t3785851493 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_002c;
}
}
{
int32_t L_9 = V_0;
if (((int64_t)L_9 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_9 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereArrayIterator_1_GetCount_m380671501_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002c:
{
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0030:
{
int32_t L_11 = V_2;
RayU5BU5D_t1836217960* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_0012;
}
}
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::MoveNext()
extern "C" bool WhereArrayIterator_1_MoveNext_m4268205214_gshared (WhereArrayIterator_1_t2597673910 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RayU5BU5D_t1836217960* V_1 = NULL;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
int32_t V_3 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2740211830 *)__this)->get__state_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__source_3();
V_1 = (RayU5BU5D_t1836217960*)L_1;
goto IL_0043;
}
IL_0012:
{
RayU5BU5D_t1836217960* L_2 = V_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
Ray_t3785851493 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (Ray_t3785851493 )L_5;
int32_t L_6 = (int32_t)((Iterator_1_t2740211830 *)__this)->get__state_1();
V_3 = (int32_t)L_6;
int32_t L_7 = V_3;
((Iterator_1_t2740211830 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
int32_t L_8 = V_3;
V_0 = (int32_t)L_8;
Func_2_t2751558106 * L_9 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_10 = V_2;
NullCheck((Func_2_t2751558106 *)L_9);
bool L_11 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t2751558106 *)L_9, (Ray_t3785851493 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_11)
{
goto IL_0043;
}
}
{
Ray_t3785851493 L_12 = V_2;
((Iterator_1_t2740211830 *)__this)->set__current_2(L_12);
return (bool)1;
}
IL_0043:
{
int32_t L_13 = V_0;
RayU5BU5D_t1836217960* L_14 = V_1;
NullCheck(L_14);
if ((!(((uint32_t)L_13) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))))
{
goto IL_0012;
}
}
{
NullCheck((Iterator_1_t2740211830 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Dispose() */, (Iterator_1_t2740211830 *)__this);
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::ToArray()
extern "C" RayU5BU5D_t1836217960* WhereArrayIterator_1_ToArray_m3815615477_gshared (WhereArrayIterator_1_t2597673910 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t3696204514 V_0;
memset(&V_0, 0, sizeof(V_0));
RayU5BU5D_t1836217960* V_1 = NULL;
int32_t V_2 = 0;
Ray_t3785851493 V_3;
memset(&V_3, 0, sizeof(V_3));
{
RayU5BU5D_t1836217960* L_0 = (RayU5BU5D_t1836217960*)__this->get__source_3();
NullCheck(L_0);
LargeArrayBuilder_1__ctor_m2251031111((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__source_3();
V_1 = (RayU5BU5D_t1836217960*)L_1;
V_2 = (int32_t)0;
goto IL_003c;
}
IL_001a:
{
RayU5BU5D_t1836217960* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
Ray_t3785851493 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (Ray_t3785851493 )L_5;
Func_2_t2751558106 * L_6 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_7 = V_3;
NullCheck((Func_2_t2751558106 *)L_6);
bool L_8 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t2751558106 *)L_6, (Ray_t3785851493 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_0038;
}
}
{
Ray_t3785851493 L_9 = V_3;
LargeArrayBuilder_1_Add_m3560339651((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (Ray_t3785851493 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
}
IL_0038:
{
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003c:
{
int32_t L_11 = V_2;
RayU5BU5D_t1836217960* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))))))
{
goto IL_001a;
}
}
{
RayU5BU5D_t1836217960* L_13 = LargeArrayBuilder_1_ToArray_m4051514523((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_13;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::ToList()
extern "C" List_1_t962958939 * WhereArrayIterator_1_ToList_m757231644_gshared (WhereArrayIterator_1_t2597673910 * __this, const RuntimeMethod* method)
{
List_1_t962958939 * V_0 = NULL;
RayU5BU5D_t1836217960* V_1 = NULL;
int32_t V_2 = 0;
Ray_t3785851493 V_3;
memset(&V_3, 0, sizeof(V_3));
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 9));
(( void (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
V_0 = (List_1_t962958939 *)L_0;
RayU5BU5D_t1836217960* L_1 = (RayU5BU5D_t1836217960*)__this->get__source_3();
V_1 = (RayU5BU5D_t1836217960*)L_1;
V_2 = (int32_t)0;
goto IL_0032;
}
IL_0011:
{
RayU5BU5D_t1836217960* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
Ray_t3785851493 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (Ray_t3785851493 )L_5;
Func_2_t2751558106 * L_6 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_7 = V_3;
NullCheck((Func_2_t2751558106 *)L_6);
bool L_8 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t2751558106 *)L_6, (Ray_t3785851493 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_002e;
}
}
{
List_1_t962958939 * L_9 = V_0;
Ray_t3785851493 L_10 = V_3;
NullCheck((List_1_t962958939 *)L_9);
(( void (*) (List_1_t962958939 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)((List_1_t962958939 *)L_9, (Ray_t3785851493 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
}
IL_002e:
{
int32_t L_11 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0032:
{
int32_t L_12 = V_2;
RayU5BU5D_t1836217960* L_13 = V_1;
NullCheck(L_13);
if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length)))))))
{
goto IL_0011;
}
}
{
List_1_t962958939 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<UnityEngine.Ray>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereArrayIterator_1_Where_m87672171_gshared (WhereArrayIterator_1_t2597673910 * __this, Func_2_t2751558106 * ___predicate0, const RuntimeMethod* method)
{
{
RayU5BU5D_t1836217960* L_0 = (RayU5BU5D_t1836217960*)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
Func_2_t2751558106 * L_2 = ___predicate0;
Func_2_t2751558106 * L_3 = (( Func_2_t2751558106 * (*) (RuntimeObject * /* static, unused */, Func_2_t2751558106 *, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(NULL /*static, unused*/, (Func_2_t2751558106 *)L_1, (Func_2_t2751558106 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
WhereArrayIterator_1_t2597673910 * L_4 = (WhereArrayIterator_1_t2597673910 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereArrayIterator_1_t2597673910 *, RayU5BU5D_t1836217960*, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RayU5BU5D_t1836217960*)L_0, (Func_2_t2751558106 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereEnumerableIterator_1__ctor_m2227081078_gshared (WhereEnumerableIterator_1_t2739994797 * __this, RuntimeObject* ___source0, Func_2_t148644517 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2588820807 *)__this);
(( void (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t148644517 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::Clone()
extern "C" Iterator_1_t2588820807 * WhereEnumerableIterator_1_Clone_m3869903719_gshared (WhereEnumerableIterator_1_t2739994797 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t148644517 * L_1 = (Func_2_t148644517 *)__this->get__predicate_4();
WhereEnumerableIterator_1_t2739994797 * L_2 = (WhereEnumerableIterator_1_t2739994797 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2739994797 *, RuntimeObject*, Func_2_t148644517 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t148644517 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::Dispose()
extern "C" void WhereEnumerableIterator_1_Dispose_m1100994620_gshared (WhereEnumerableIterator_1_t2739994797 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_Dispose_m1100994620_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2588820807 *)__this);
(( void (*) (Iterator_1_t2588820807 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2588820807 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::GetCount(System.Boolean)
extern "C" int32_t WhereEnumerableIterator_1_GetCount_m3749642994_gshared (WhereEnumerableIterator_1_t2739994797 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_GetCount_m3749642994_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
Il2CppChar V_2 = 0x0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002e;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
Il2CppChar L_4 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (Il2CppChar)L_4;
Func_2_t148644517 * L_5 = (Func_2_t148644517 *)__this->get__predicate_4();
Il2CppChar L_6 = V_2;
NullCheck((Func_2_t148644517 *)L_5);
bool L_7 = (( bool (*) (Func_2_t148644517 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t148644517 *)L_5, (Il2CppChar)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_002e;
}
}
IL_002a:
{
int32_t L_8 = V_0;
if (((int64_t)L_8 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_8 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereEnumerableIterator_1_GetCount_m3749642994_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0015;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0041;
}
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::MoveNext()
extern "C" bool WhereEnumerableIterator_1_MoveNext_m3690423142_gshared (WhereEnumerableIterator_1_t2739994797 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_MoveNext_m3690423142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2588820807 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2588820807 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
Il2CppChar L_6 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (Il2CppChar)L_6;
Func_2_t148644517 * L_7 = (Func_2_t148644517 *)__this->get__predicate_4();
Il2CppChar L_8 = V_1;
NullCheck((Func_2_t148644517 *)L_7);
bool L_9 = (( bool (*) (Func_2_t148644517 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t148644517 *)L_7, (Il2CppChar)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_004e;
}
}
{
Il2CppChar L_10 = V_1;
((Iterator_1_t2588820807 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2588820807 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t2588820807 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::ToArray()
extern "C" CharU5BU5D_t3528271667* WhereEnumerableIterator_1_ToArray_m2832206161_gshared (WhereEnumerableIterator_1_t2739994797 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToArray_m2832206161_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t3544813491 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
Il2CppChar V_2 = 0x0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2700000537((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0033;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
Il2CppChar L_3 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (Il2CppChar)L_3;
Func_2_t148644517 * L_4 = (Func_2_t148644517 *)__this->get__predicate_4();
Il2CppChar L_5 = V_2;
NullCheck((Func_2_t148644517 *)L_4);
bool L_6 = (( bool (*) (Func_2_t148644517 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t148644517 *)L_4, (Il2CppChar)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_0033;
}
}
IL_002b:
{
Il2CppChar L_7 = V_2;
LargeArrayBuilder_1_Add_m982046608((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)(&V_0), (Il2CppChar)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0033:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x47, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0046;
}
}
IL_0040:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(61)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
CharU5BU5D_t3528271667* L_12 = LargeArrayBuilder_1_ToArray_m1423820966((LargeArrayBuilder_1_t3544813491 *)(LargeArrayBuilder_1_t3544813491 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_12;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::ToList()
extern "C" List_1_t811567916 * WhereEnumerableIterator_1_ToList_m3300074515_gshared (WhereEnumerableIterator_1_t2739994797 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToList_m3300074515_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t811567916 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
Il2CppChar V_2 = 0x0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t811567916 * L_0 = (List_1_t811567916 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t811567916 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t811567916 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
Il2CppChar L_4 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (Il2CppChar)L_4;
Func_2_t148644517 * L_5 = (Func_2_t148644517 *)__this->get__predicate_4();
Il2CppChar L_6 = V_2;
NullCheck((Func_2_t148644517 *)L_5);
bool L_7 = (( bool (*) (Func_2_t148644517 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t148644517 *)L_5, (Il2CppChar)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_0030;
}
}
IL_0029:
{
List_1_t811567916 * L_8 = V_0;
Il2CppChar L_9 = V_2;
NullCheck((List_1_t811567916 *)L_8);
(( void (*) (List_1_t811567916 *, Il2CppChar, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t811567916 *)L_8, (Il2CppChar)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0014;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
List_1_t811567916 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereEnumerableIterator_1_Where_m1417051289_gshared (WhereEnumerableIterator_1_t2739994797 * __this, Func_2_t148644517 * ___predicate0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t148644517 * L_1 = (Func_2_t148644517 *)__this->get__predicate_4();
Func_2_t148644517 * L_2 = ___predicate0;
Func_2_t148644517 * L_3 = (( Func_2_t148644517 * (*) (RuntimeObject * /* static, unused */, Func_2_t148644517 *, Func_2_t148644517 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(NULL /*static, unused*/, (Func_2_t148644517 *)L_1, (Func_2_t148644517 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
WhereEnumerableIterator_1_t2739994797 * L_4 = (WhereEnumerableIterator_1_t2739994797 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2739994797 *, RuntimeObject*, Func_2_t148644517 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t148644517 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereEnumerableIterator_1__ctor_m354328402_gshared (WhereEnumerableIterator_1_t2229509965 * __this, RuntimeObject* ___source0, Func_2_t837490053 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2078335975 *)__this);
(( void (*) (Iterator_1_t2078335975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2078335975 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t837490053 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::Clone()
extern "C" Iterator_1_t2078335975 * WhereEnumerableIterator_1_Clone_m1330620074_gshared (WhereEnumerableIterator_1_t2229509965 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t837490053 * L_1 = (Func_2_t837490053 *)__this->get__predicate_4();
WhereEnumerableIterator_1_t2229509965 * L_2 = (WhereEnumerableIterator_1_t2229509965 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2229509965 *, RuntimeObject*, Func_2_t837490053 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t837490053 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::Dispose()
extern "C" void WhereEnumerableIterator_1_Dispose_m3543618726_gshared (WhereEnumerableIterator_1_t2229509965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_Dispose_m3543618726_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2078335975 *)__this);
(( void (*) (Iterator_1_t2078335975 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2078335975 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::GetCount(System.Boolean)
extern "C" int32_t WhereEnumerableIterator_1_GetCount_m3525502306_gshared (WhereEnumerableIterator_1_t2229509965 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_GetCount_m3525502306_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002e;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t837490053 * L_5 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_6 = V_2;
NullCheck((Func_2_t837490053 *)L_5);
bool L_7 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_002e;
}
}
IL_002a:
{
int32_t L_8 = V_0;
if (((int64_t)L_8 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_8 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereEnumerableIterator_1_GetCount_m3525502306_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0015;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0041;
}
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::MoveNext()
extern "C" bool WhereEnumerableIterator_1_MoveNext_m3233381382_gshared (WhereEnumerableIterator_1_t2229509965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_MoveNext_m3233381382_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
{
int32_t L_0 = (int32_t)((Iterator_1_t2078335975 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2078335975 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
DictionaryEntry_t3123975638 L_6 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (DictionaryEntry_t3123975638 )L_6;
Func_2_t837490053 * L_7 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_8 = V_1;
NullCheck((Func_2_t837490053 *)L_7);
bool L_9 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_7, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_004e;
}
}
{
DictionaryEntry_t3123975638 L_10 = V_1;
((Iterator_1_t2078335975 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2078335975 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.DictionaryEntry>::Dispose() */, (Iterator_1_t2078335975 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::ToArray()
extern "C" DictionaryEntryU5BU5D_t4217117203* WhereEnumerableIterator_1_ToArray_m2710082339_gshared (WhereEnumerableIterator_1_t2229509965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToArray_m2710082339_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t3034328659 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m3992711902((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0033;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (DictionaryEntry_t3123975638 )L_3;
Func_2_t837490053 * L_4 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_5 = V_2;
NullCheck((Func_2_t837490053 *)L_4);
bool L_6 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_4, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_0033;
}
}
IL_002b:
{
DictionaryEntry_t3123975638 L_7 = V_2;
LargeArrayBuilder_1_Add_m3654651254((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)(&V_0), (DictionaryEntry_t3123975638 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0033:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x47, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0046;
}
}
IL_0040:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(61)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
DictionaryEntryU5BU5D_t4217117203* L_12 = LargeArrayBuilder_1_ToArray_m880301710((LargeArrayBuilder_1_t3034328659 *)(LargeArrayBuilder_1_t3034328659 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_12;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::ToList()
extern "C" List_1_t301083084 * WhereEnumerableIterator_1_ToList_m1855233425_gshared (WhereEnumerableIterator_1_t2229509965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToList_m1855233425_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t301083084 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t301083084 * L_0 = (List_1_t301083084 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t301083084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t301083084 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t837490053 * L_5 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_6 = V_2;
NullCheck((Func_2_t837490053 *)L_5);
bool L_7 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_0030;
}
}
IL_0029:
{
List_1_t301083084 * L_8 = V_0;
DictionaryEntry_t3123975638 L_9 = V_2;
NullCheck((List_1_t301083084 *)L_8);
(( void (*) (List_1_t301083084 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t301083084 *)L_8, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0014;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
List_1_t301083084 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.DictionaryEntry>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereEnumerableIterator_1_Where_m2663142798_gshared (WhereEnumerableIterator_1_t2229509965 * __this, Func_2_t837490053 * ___predicate0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t837490053 * L_1 = (Func_2_t837490053 *)__this->get__predicate_4();
Func_2_t837490053 * L_2 = ___predicate0;
Func_2_t837490053 * L_3 = (( Func_2_t837490053 * (*) (RuntimeObject * /* static, unused */, Func_2_t837490053 *, Func_2_t837490053 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(NULL /*static, unused*/, (Func_2_t837490053 *)L_1, (Func_2_t837490053 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
WhereEnumerableIterator_1_t2229509965 * L_4 = (WhereEnumerableIterator_1_t2229509965 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2229509965 *, RuntimeObject*, Func_2_t837490053 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t837490053 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereEnumerableIterator_1__ctor_m1719019443_gshared (WhereEnumerableIterator_1_t1635751646 * __this, RuntimeObject* ___source0, Func_2_t1033609360 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t1033609360 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * WhereEnumerableIterator_1_Clone_m4047447265_gshared (WhereEnumerableIterator_1_t1635751646 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t1033609360 * L_1 = (Func_2_t1033609360 *)__this->get__predicate_4();
WhereEnumerableIterator_1_t1635751646 * L_2 = (WhereEnumerableIterator_1_t1635751646 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t1635751646 *, RuntimeObject*, Func_2_t1033609360 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t1033609360 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void WhereEnumerableIterator_1_Dispose_m361728903_gshared (WhereEnumerableIterator_1_t1635751646 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_Dispose_m361728903_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t WhereEnumerableIterator_1_GetCount_m2061906979_gshared (WhereEnumerableIterator_1_t1635751646 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_GetCount_m2061906979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002e;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
KeyValuePair_2_t2530217319 L_4 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (KeyValuePair_2_t2530217319 )L_4;
Func_2_t1033609360 * L_5 = (Func_2_t1033609360 *)__this->get__predicate_4();
KeyValuePair_2_t2530217319 L_6 = V_2;
NullCheck((Func_2_t1033609360 *)L_5);
bool L_7 = (( bool (*) (Func_2_t1033609360 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1033609360 *)L_5, (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_002e;
}
}
IL_002a:
{
int32_t L_8 = V_0;
if (((int64_t)L_8 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_8 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereEnumerableIterator_1_GetCount_m2061906979_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0015;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0041;
}
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool WhereEnumerableIterator_1_MoveNext_m3939683622_gshared (WhereEnumerableIterator_1_t1635751646 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_MoveNext_m3939683622_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
KeyValuePair_2_t2530217319 V_1;
memset(&V_1, 0, sizeof(V_1));
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
KeyValuePair_2_t2530217319 L_6 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (KeyValuePair_2_t2530217319 )L_6;
Func_2_t1033609360 * L_7 = (Func_2_t1033609360 *)__this->get__predicate_4();
KeyValuePair_2_t2530217319 L_8 = V_1;
NullCheck((Func_2_t1033609360 *)L_7);
bool L_9 = (( bool (*) (Func_2_t1033609360 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1033609360 *)L_7, (KeyValuePair_2_t2530217319 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_004e;
}
}
{
KeyValuePair_2_t2530217319 L_10 = V_1;
((Iterator_1_t1484577656 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* WhereEnumerableIterator_1_ToArray_m2449119527_gshared (WhereEnumerableIterator_1_t1635751646 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToArray_m2449119527_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2440570340 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2226121364((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0033;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
KeyValuePair_2_t2530217319 L_3 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (KeyValuePair_2_t2530217319 )L_3;
Func_2_t1033609360 * L_4 = (Func_2_t1033609360 *)__this->get__predicate_4();
KeyValuePair_2_t2530217319 L_5 = V_2;
NullCheck((Func_2_t1033609360 *)L_4);
bool L_6 = (( bool (*) (Func_2_t1033609360 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1033609360 *)L_4, (KeyValuePair_2_t2530217319 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_0033;
}
}
IL_002b:
{
KeyValuePair_2_t2530217319 L_7 = V_2;
LargeArrayBuilder_1_Add_m982335036((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (KeyValuePair_2_t2530217319 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0033:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x47, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0046;
}
}
IL_0040:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(61)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
KeyValuePair_2U5BU5D_t118269214* L_12 = LargeArrayBuilder_1_ToArray_m3030376891((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_12;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * WhereEnumerableIterator_1_ToList_m214883435_gshared (WhereEnumerableIterator_1_t1635751646 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToList_m214883435_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4002292061 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t2530217319 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t4002292061 * L_0 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t4002292061 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
KeyValuePair_2_t2530217319 L_4 = InterfaceFuncInvoker0< KeyValuePair_2_t2530217319 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (KeyValuePair_2_t2530217319 )L_4;
Func_2_t1033609360 * L_5 = (Func_2_t1033609360 *)__this->get__predicate_4();
KeyValuePair_2_t2530217319 L_6 = V_2;
NullCheck((Func_2_t1033609360 *)L_5);
bool L_7 = (( bool (*) (Func_2_t1033609360 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t1033609360 *)L_5, (KeyValuePair_2_t2530217319 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_0030;
}
}
IL_0029:
{
List_1_t4002292061 * L_8 = V_0;
KeyValuePair_2_t2530217319 L_9 = V_2;
NullCheck((List_1_t4002292061 *)L_8);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t4002292061 *)L_8, (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0014;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
List_1_t4002292061 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereEnumerableIterator_1_Where_m1220644173_gshared (WhereEnumerableIterator_1_t1635751646 * __this, Func_2_t1033609360 * ___predicate0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t1033609360 * L_1 = (Func_2_t1033609360 *)__this->get__predicate_4();
Func_2_t1033609360 * L_2 = ___predicate0;
Func_2_t1033609360 * L_3 = (( Func_2_t1033609360 * (*) (RuntimeObject * /* static, unused */, Func_2_t1033609360 *, Func_2_t1033609360 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(NULL /*static, unused*/, (Func_2_t1033609360 *)L_1, (Func_2_t1033609360 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
WhereEnumerableIterator_1_t1635751646 * L_4 = (WhereEnumerableIterator_1_t1635751646 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t1635751646 *, RuntimeObject*, Func_2_t1033609360 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t1033609360 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereEnumerableIterator_1__ctor_m3671748724_gshared (WhereEnumerableIterator_1_t2185640491 * __this, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereEnumerableIterator_1_Clone_m1045240548_gshared (WhereEnumerableIterator_1_t2185640491 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
WhereEnumerableIterator_1_t2185640491 * L_2 = (WhereEnumerableIterator_1_t2185640491 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2185640491 *, RuntimeObject*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t3759279471 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Dispose()
extern "C" void WhereEnumerableIterator_1_Dispose_m971371404_gshared (WhereEnumerableIterator_1_t2185640491 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_Dispose_m971371404_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereEnumerableIterator_1_GetCount_m2032778046_gshared (WhereEnumerableIterator_1_t2185640491 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_GetCount_m2032778046_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002e;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_002e;
}
}
IL_002a:
{
int32_t L_8 = V_0;
if (((int64_t)L_8 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_8 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereEnumerableIterator_1_GetCount_m2032778046_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0015;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0041;
}
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::MoveNext()
extern "C" bool WhereEnumerableIterator_1_MoveNext_m636622806_gshared (WhereEnumerableIterator_1_t2185640491 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_MoveNext_m636622806_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (RuntimeObject *)L_6;
Func_2_t3759279471 * L_7 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_8 = V_1;
NullCheck((Func_2_t3759279471 *)L_7);
bool L_9 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_004e;
}
}
{
RuntimeObject * L_10 = V_1;
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereEnumerableIterator_1_ToArray_m3619612416_gshared (WhereEnumerableIterator_1_t2185640491 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToArray_m3619612416_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m104969882((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0033;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_0033;
}
}
IL_002b:
{
RuntimeObject * L_7 = V_2;
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0033:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x47, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0046;
}
}
IL_0040:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(61)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
ObjectU5BU5D_t2843939325* L_12 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_12;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::ToList()
extern "C" List_1_t257213610 * WhereEnumerableIterator_1_ToList_m3259850534_gshared (WhereEnumerableIterator_1_t2185640491 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToList_m3259850534_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t257213610 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t257213610 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_0030;
}
}
IL_0029:
{
List_1_t257213610 * L_8 = V_0;
RuntimeObject * L_9 = V_2;
NullCheck((List_1_t257213610 *)L_8);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t257213610 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0014;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
List_1_t257213610 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereEnumerableIterator_1_Where_m1411528466_gshared (WhereEnumerableIterator_1_t2185640491 * __this, Func_2_t3759279471 * ___predicate0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t3759279471 * L_2 = ___predicate0;
Func_2_t3759279471 * L_3 = (( Func_2_t3759279471 * (*) (RuntimeObject * /* static, unused */, Func_2_t3759279471 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(NULL /*static, unused*/, (Func_2_t3759279471 *)L_1, (Func_2_t3759279471 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
WhereEnumerableIterator_1_t2185640491 * L_4 = (WhereEnumerableIterator_1_t2185640491 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2185640491 *, RuntimeObject*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t3759279471 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereEnumerableIterator_1__ctor_m4203103782_gshared (WhereEnumerableIterator_1_t2891385820 * __this, RuntimeObject* ___source0, Func_2_t2751558106 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2740211830 *)__this);
(( void (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2751558106 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::Clone()
extern "C" Iterator_1_t2740211830 * WhereEnumerableIterator_1_Clone_m319174650_gshared (WhereEnumerableIterator_1_t2891385820 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
WhereEnumerableIterator_1_t2891385820 * L_2 = (WhereEnumerableIterator_1_t2891385820 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2891385820 *, RuntimeObject*, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_t2751558106 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::Dispose()
extern "C" void WhereEnumerableIterator_1_Dispose_m4085193722_gshared (WhereEnumerableIterator_1_t2891385820 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_Dispose_m4085193722_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_5();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_5((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2740211830 *)__this);
(( void (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::GetCount(System.Boolean)
extern "C" int32_t WhereEnumerableIterator_1_GetCount_m1909005400_gshared (WhereEnumerableIterator_1_t2891385820 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_GetCount_m1909005400_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_002e;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
Ray_t3785851493 L_4 = InterfaceFuncInvoker0< Ray_t3785851493 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (Ray_t3785851493 )L_4;
Func_2_t2751558106 * L_5 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_6 = V_2;
NullCheck((Func_2_t2751558106 *)L_5);
bool L_7 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2751558106 *)L_5, (Ray_t3785851493 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_002e;
}
}
IL_002a:
{
int32_t L_8 = V_0;
if (((int64_t)L_8 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_8 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereEnumerableIterator_1_GetCount_m1909005400_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_0015;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_0041;
}
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
int32_t L_13 = V_0;
return L_13;
}
}
// System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::MoveNext()
extern "C" bool WhereEnumerableIterator_1_MoveNext_m3780527305_gshared (WhereEnumerableIterator_1_t2891385820 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_MoveNext_m3780527305_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Ray_t3785851493 V_1;
memset(&V_1, 0, sizeof(V_1));
{
int32_t L_0 = (int32_t)((Iterator_1_t2740211830 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_5(L_4);
((Iterator_1_t2740211830 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_5);
Ray_t3785851493 L_6 = InterfaceFuncInvoker0< Ray_t3785851493 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (Ray_t3785851493 )L_6;
Func_2_t2751558106 * L_7 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_8 = V_1;
NullCheck((Func_2_t2751558106 *)L_7);
bool L_9 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2751558106 *)L_7, (Ray_t3785851493 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_004e;
}
}
{
Ray_t3785851493 L_10 = V_1;
((Iterator_1_t2740211830 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
RuntimeObject* L_11 = (RuntimeObject*)__this->get__enumerator_5();
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2740211830 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Dispose() */, (Iterator_1_t2740211830 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::ToArray()
extern "C" RayU5BU5D_t1836217960* WhereEnumerableIterator_1_ToArray_m3710798724_gshared (WhereEnumerableIterator_1_t2891385820 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToArray_m3710798724_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t3696204514 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2621609802((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0033;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
Ray_t3785851493 L_3 = InterfaceFuncInvoker0< Ray_t3785851493 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (Ray_t3785851493 )L_3;
Func_2_t2751558106 * L_4 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_5 = V_2;
NullCheck((Func_2_t2751558106 *)L_4);
bool L_6 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2751558106 *)L_4, (Ray_t3785851493 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_0033;
}
}
IL_002b:
{
Ray_t3785851493 L_7 = V_2;
LargeArrayBuilder_1_Add_m3560339651((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (Ray_t3785851493 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
}
IL_0033:
{
RuntimeObject* L_8 = V_1;
NullCheck((RuntimeObject*)L_8);
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_8);
if (L_9)
{
goto IL_0016;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x47, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0046;
}
}
IL_0040:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
}
IL_0046:
{
IL2CPP_END_FINALLY(61)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x47, IL_0047)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0047:
{
RayU5BU5D_t1836217960* L_12 = LargeArrayBuilder_1_ToArray_m4051514523((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
return L_12;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::ToList()
extern "C" List_1_t962958939 * WhereEnumerableIterator_1_ToList_m3036752262_gshared (WhereEnumerableIterator_1_t2891385820 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereEnumerableIterator_1_ToList_m3036752262_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t962958939 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11));
(( void (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_0 = (List_1_t962958939 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<UnityEngine.Ray>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0030;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
Ray_t3785851493 L_4 = InterfaceFuncInvoker0< Ray_t3785851493 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<UnityEngine.Ray>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (Ray_t3785851493 )L_4;
Func_2_t2751558106 * L_5 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_6 = V_2;
NullCheck((Func_2_t2751558106 *)L_5);
bool L_7 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t2751558106 *)L_5, (Ray_t3785851493 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_0030;
}
}
IL_0029:
{
List_1_t962958939 * L_8 = V_0;
Ray_t3785851493 L_9 = V_2;
NullCheck((List_1_t962958939 *)L_8);
(( void (*) (List_1_t962958939 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((List_1_t962958939 *)L_8, (Ray_t3785851493 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0030:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0014;
}
}
IL_0038:
{
IL2CPP_LEAVE(0x44, FINALLY_003a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
IL_003d:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0043:
{
IL2CPP_END_FINALLY(58)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x44, IL_0044)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0044:
{
List_1_t962958939 * L_14 = V_0;
return L_14;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Ray>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereEnumerableIterator_1_Where_m2827345722_gshared (WhereEnumerableIterator_1_t2891385820 * __this, Func_2_t2751558106 * ___predicate0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
Func_2_t2751558106 * L_2 = ___predicate0;
Func_2_t2751558106 * L_3 = (( Func_2_t2751558106 * (*) (RuntimeObject * /* static, unused */, Func_2_t2751558106 *, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)(NULL /*static, unused*/, (Func_2_t2751558106 *)L_1, (Func_2_t2751558106 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
WhereEnumerableIterator_1_t2891385820 * L_4 = (WhereEnumerableIterator_1_t2891385820 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereEnumerableIterator_1_t2891385820 *, RuntimeObject*, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t2751558106 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereListIterator`1<System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereListIterator_1__ctor_m3342232529_gshared (WhereListIterator_1_t944815607 * __this, List_1_t257213610 * ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t257213610 * L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereListIterator_1_Clone_m1279809785_gshared (WhereListIterator_1_t944815607 * __this, const RuntimeMethod* method)
{
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
WhereListIterator_1_t944815607 * L_2 = (WhereListIterator_1_t944815607 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereListIterator_1_t944815607 *, List_1_t257213610 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (List_1_t257213610 *)L_0, (Func_2_t3759279471 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Int32 System.Linq.Enumerable/WhereListIterator`1<System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereListIterator_1_GetCount_m797833796_gshared (WhereListIterator_1_t944815607 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereListIterator_1_GetCount_m797833796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
V_1 = (int32_t)0;
goto IL_002e;
}
IL_000b:
{
List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t257213610 *)L_1);
RuntimeObject * L_3 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_002a;
}
}
{
int32_t L_7 = V_0;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereListIterator_1_GetCount_m797833796_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002a:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
int32_t L_9 = V_1;
List_1_t257213610 * L_10 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_10);
int32_t L_11 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t257213610 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_000b;
}
}
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Boolean System.Linq.Enumerable/WhereListIterator`1<System.Object>::MoveNext()
extern "C" bool WhereListIterator_1_MoveNext_m692640690_gshared (WhereListIterator_1_t944815607 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
List_1_t257213610 * L_3 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_3);
Enumerator_t2146457487 L_4 = (( Enumerator_t2146457487 (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t257213610 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
__this->set__enumerator_5(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
Enumerator_t2146457487 * L_5 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_5();
RuntimeObject * L_6 = Enumerator_get_Current_m337713592((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_1 = (RuntimeObject *)L_6;
Func_2_t3759279471 * L_7 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_8 = V_1;
NullCheck((Func_2_t3759279471 *)L_7);
bool L_9 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_9)
{
goto IL_004e;
}
}
{
RuntimeObject * L_10 = V_1;
((Iterator_1_t2034466501 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
Enumerator_t2146457487 * L_11 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_5();
bool L_12 = Enumerator_MoveNext_m2142368520((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereListIterator`1<System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereListIterator_1_ToArray_m3583453102_gshared (WhereListIterator_1_t944815607 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
LargeArrayBuilder_1__ctor_m193325792((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_1 = (int32_t)0;
goto IL_003d;
}
IL_0016:
{
List_1_t257213610 * L_2 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_3 = V_1;
NullCheck((List_1_t257213610 *)L_2);
RuntimeObject * L_4 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_7)
{
goto IL_0039;
}
}
{
RuntimeObject * L_8 = V_2;
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
}
IL_0039:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_003d:
{
int32_t L_10 = V_1;
List_1_t257213610 * L_11 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_11);
int32_t L_12 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t257213610 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_0016;
}
}
{
ObjectU5BU5D_t2843939325* L_13 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
return L_13;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::ToList()
extern "C" List_1_t257213610 * WhereListIterator_1_ToList_m617676971_gshared (WhereListIterator_1_t944815607 * __this, const RuntimeMethod* method)
{
List_1_t257213610 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
V_0 = (List_1_t257213610 *)L_0;
V_1 = (int32_t)0;
goto IL_0030;
}
IL_000a:
{
List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t257213610 *)L_1);
RuntimeObject * L_3 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_002c;
}
}
{
List_1_t257213610 * L_7 = V_0;
RuntimeObject * L_8 = V_2;
NullCheck((List_1_t257213610 *)L_7);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((List_1_t257213610 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
}
IL_002c:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0030:
{
int32_t L_10 = V_1;
List_1_t257213610 * L_11 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_11);
int32_t L_12 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t257213610 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_000a;
}
}
{
List_1_t257213610 * L_13 = V_0;
return L_13;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereListIterator_1_Where_m3410236558_gshared (WhereListIterator_1_t944815607 * __this, Func_2_t3759279471 * ___predicate0, const RuntimeMethod* method)
{
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t3759279471 * L_2 = ___predicate0;
Func_2_t3759279471 * L_3 = (( Func_2_t3759279471 * (*) (RuntimeObject * /* static, unused */, Func_2_t3759279471 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (Func_2_t3759279471 *)L_1, (Func_2_t3759279471 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
WhereListIterator_1_t944815607 * L_4 = (WhereListIterator_1_t944815607 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereListIterator_1_t944815607 *, List_1_t257213610 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (List_1_t257213610 *)L_0, (Func_2_t3759279471 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" void WhereListIterator_1__ctor_m2031638893_gshared (WhereListIterator_1_t1650560936 * __this, List_1_t962958939 * ___source0, Func_2_t2751558106 * ___predicate1, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2740211830 *)__this);
(( void (*) (Iterator_1_t2740211830 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2740211830 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t962958939 * L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t2751558106 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::Clone()
extern "C" Iterator_1_t2740211830 * WhereListIterator_1_Clone_m1902367588_gshared (WhereListIterator_1_t1650560936 * __this, const RuntimeMethod* method)
{
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
WhereListIterator_1_t1650560936 * L_2 = (WhereListIterator_1_t1650560936 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereListIterator_1_t1650560936 *, List_1_t962958939 *, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_2, (List_1_t962958939 *)L_0, (Func_2_t2751558106 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Int32 System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::GetCount(System.Boolean)
extern "C" int32_t WhereListIterator_1_GetCount_m4136058776_gshared (WhereListIterator_1_t1650560936 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereListIterator_1_GetCount_m4136058776_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
V_1 = (int32_t)0;
goto IL_002e;
}
IL_000b:
{
List_1_t962958939 * L_1 = (List_1_t962958939 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t962958939 *)L_1);
Ray_t3785851493 L_3 = (( Ray_t3785851493 (*) (List_1_t962958939 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t962958939 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (Ray_t3785851493 )L_3;
Func_2_t2751558106 * L_4 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_5 = V_2;
NullCheck((Func_2_t2751558106 *)L_4);
bool L_6 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2751558106 *)L_4, (Ray_t3785851493 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_002a;
}
}
{
int32_t L_7 = V_0;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereListIterator_1_GetCount_m4136058776_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002a:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
int32_t L_9 = V_1;
List_1_t962958939 * L_10 = (List_1_t962958939 *)__this->get__source_3();
NullCheck((List_1_t962958939 *)L_10);
int32_t L_11 = (( int32_t (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t962958939 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_000b;
}
}
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Boolean System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::MoveNext()
extern "C" bool WhereListIterator_1_MoveNext_m1327932533_gshared (WhereListIterator_1_t1650560936 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Ray_t3785851493 V_1;
memset(&V_1, 0, sizeof(V_1));
{
int32_t L_0 = (int32_t)((Iterator_1_t2740211830 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_004e;
}
}
{
goto IL_0061;
}
IL_0011:
{
List_1_t962958939 * L_3 = (List_1_t962958939 *)__this->get__source_3();
NullCheck((List_1_t962958939 *)L_3);
Enumerator_t2852202816 L_4 = (( Enumerator_t2852202816 (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t962958939 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
__this->set__enumerator_5(L_4);
((Iterator_1_t2740211830 *)__this)->set__state_1(2);
goto IL_004e;
}
IL_002b:
{
Enumerator_t2852202816 * L_5 = (Enumerator_t2852202816 *)__this->get_address_of__enumerator_5();
Ray_t3785851493 L_6 = Enumerator_get_Current_m1622353285((Enumerator_t2852202816 *)(Enumerator_t2852202816 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
V_1 = (Ray_t3785851493 )L_6;
Func_2_t2751558106 * L_7 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_8 = V_1;
NullCheck((Func_2_t2751558106 *)L_7);
bool L_9 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2751558106 *)L_7, (Ray_t3785851493 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_9)
{
goto IL_004e;
}
}
{
Ray_t3785851493 L_10 = V_1;
((Iterator_1_t2740211830 *)__this)->set__current_2(L_10);
return (bool)1;
}
IL_004e:
{
Enumerator_t2852202816 * L_11 = (Enumerator_t2852202816 *)__this->get_address_of__enumerator_5();
bool L_12 = Enumerator_MoveNext_m1697727539((Enumerator_t2852202816 *)(Enumerator_t2852202816 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
if (L_12)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2740211830 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Ray>::Dispose() */, (Iterator_1_t2740211830 *)__this);
}
IL_0061:
{
return (bool)0;
}
}
// TSource[] System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::ToArray()
extern "C" RayU5BU5D_t1836217960* WhereListIterator_1_ToArray_m462742430_gshared (WhereListIterator_1_t1650560936 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t3696204514 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)__this->get__source_3();
NullCheck((List_1_t962958939 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t962958939 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
LargeArrayBuilder_1__ctor_m2251031111((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_1 = (int32_t)0;
goto IL_003d;
}
IL_0016:
{
List_1_t962958939 * L_2 = (List_1_t962958939 *)__this->get__source_3();
int32_t L_3 = V_1;
NullCheck((List_1_t962958939 *)L_2);
Ray_t3785851493 L_4 = (( Ray_t3785851493 (*) (List_1_t962958939 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t962958939 *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (Ray_t3785851493 )L_4;
Func_2_t2751558106 * L_5 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_6 = V_2;
NullCheck((Func_2_t2751558106 *)L_5);
bool L_7 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2751558106 *)L_5, (Ray_t3785851493 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_7)
{
goto IL_0039;
}
}
{
Ray_t3785851493 L_8 = V_2;
LargeArrayBuilder_1_Add_m3560339651((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), (Ray_t3785851493 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
}
IL_0039:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_003d:
{
int32_t L_10 = V_1;
List_1_t962958939 * L_11 = (List_1_t962958939 *)__this->get__source_3();
NullCheck((List_1_t962958939 *)L_11);
int32_t L_12 = (( int32_t (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t962958939 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_0016;
}
}
{
RayU5BU5D_t1836217960* L_13 = LargeArrayBuilder_1_ToArray_m4051514523((LargeArrayBuilder_1_t3696204514 *)(LargeArrayBuilder_1_t3696204514 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
return L_13;
}
}
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::ToList()
extern "C" List_1_t962958939 * WhereListIterator_1_ToList_m2531471090_gshared (WhereListIterator_1_t1650560936 * __this, const RuntimeMethod* method)
{
List_1_t962958939 * V_0 = NULL;
int32_t V_1 = 0;
Ray_t3785851493 V_2;
memset(&V_2, 0, sizeof(V_2));
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14));
(( void (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15));
V_0 = (List_1_t962958939 *)L_0;
V_1 = (int32_t)0;
goto IL_0030;
}
IL_000a:
{
List_1_t962958939 * L_1 = (List_1_t962958939 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t962958939 *)L_1);
Ray_t3785851493 L_3 = (( Ray_t3785851493 (*) (List_1_t962958939 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t962958939 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (Ray_t3785851493 )L_3;
Func_2_t2751558106 * L_4 = (Func_2_t2751558106 *)__this->get__predicate_4();
Ray_t3785851493 L_5 = V_2;
NullCheck((Func_2_t2751558106 *)L_4);
bool L_6 = (( bool (*) (Func_2_t2751558106 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2751558106 *)L_4, (Ray_t3785851493 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_002c;
}
}
{
List_1_t962958939 * L_7 = V_0;
Ray_t3785851493 L_8 = V_2;
NullCheck((List_1_t962958939 *)L_7);
(( void (*) (List_1_t962958939 *, Ray_t3785851493 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((List_1_t962958939 *)L_7, (Ray_t3785851493 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
}
IL_002c:
{
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0030:
{
int32_t L_10 = V_1;
List_1_t962958939 * L_11 = (List_1_t962958939 *)__this->get__source_3();
NullCheck((List_1_t962958939 *)L_11);
int32_t L_12 = (( int32_t (*) (List_1_t962958939 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((List_1_t962958939 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_000a;
}
}
{
List_1_t962958939 * L_13 = V_0;
return L_13;
}
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<UnityEngine.Ray>::Where(System.Func`2<TSource,System.Boolean>)
extern "C" RuntimeObject* WhereListIterator_1_Where_m1947868463_gshared (WhereListIterator_1_t1650560936 * __this, Func_2_t2751558106 * ___predicate0, const RuntimeMethod* method)
{
{
List_1_t962958939 * L_0 = (List_1_t962958939 *)__this->get__source_3();
Func_2_t2751558106 * L_1 = (Func_2_t2751558106 *)__this->get__predicate_4();
Func_2_t2751558106 * L_2 = ___predicate0;
Func_2_t2751558106 * L_3 = (( Func_2_t2751558106 * (*) (RuntimeObject * /* static, unused */, Func_2_t2751558106 *, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)(NULL /*static, unused*/, (Func_2_t2751558106 *)L_1, (Func_2_t2751558106 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
WhereListIterator_1_t1650560936 * L_4 = (WhereListIterator_1_t1650560936 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereListIterator_1_t1650560936 *, List_1_t962958939 *, Func_2_t2751558106 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_4, (List_1_t962958939 *)L_0, (Func_2_t2751558106 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_4;
}
}
#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.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
extern "C" void WhereSelectArrayIterator_2__ctor_m1718565287_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, ObjectU5BU5D_t2843939325* ___source0, Func_2_t3759279471 * ___predicate1, Func_2_t2447130374 * ___selector2, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ObjectU5BU5D_t2843939325* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
Func_2_t2447130374 * L_2 = ___selector2;
__this->set__selector_5(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereSelectArrayIterator_2_Clone_m3562124008_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5();
WhereSelectArrayIterator_2_t1355832803 * L_3 = (WhereSelectArrayIterator_2_t1355832803 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereSelectArrayIterator_2_t1355832803 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_3, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_3;
}
}
// System.Int32 System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereSelectArrayIterator_2_GetCount_m3733009541_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectArrayIterator_2_GetCount_m3733009541_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_003d;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_0039;
}
}
{
Func_2_t2447130374 * L_9 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_10 = V_3;
NullCheck((Func_2_t2447130374 *)L_9);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
int32_t L_11 = V_0;
if (((int64_t)L_11 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_11 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereSelectArrayIterator_2_GetCount_m3733009541_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0039:
{
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_003d:
{
int32_t L_13 = V_2;
ObjectU5BU5D_t2843939325* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_0012;
}
}
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.Boolean System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool WhereSelectArrayIterator_2_MoveNext_m640095741_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
RuntimeObject * V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
goto IL_004e;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (RuntimeObject *)L_5;
int32_t L_6 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_3 = (int32_t)L_6;
int32_t L_7 = V_3;
((Iterator_1_t2034466501 *)__this)->set__state_1(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
int32_t L_8 = V_3;
V_0 = (int32_t)L_8;
Func_2_t3759279471 * L_9 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_10 = V_2;
NullCheck((Func_2_t3759279471 *)L_9);
bool L_11 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_11)
{
goto IL_004e;
}
}
{
Func_2_t2447130374 * L_12 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_13 = V_2;
NullCheck((Func_2_t2447130374 *)L_12);
RuntimeObject * L_14 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_14);
return (bool)1;
}
IL_004e:
{
int32_t L_15 = V_0;
ObjectU5BU5D_t2843939325* L_16 = V_1;
NullCheck(L_16);
if ((!(((uint32_t)L_15) >= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))))))))
{
goto IL_0012;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereSelectArrayIterator_2_ToArray_m296971978_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
NullCheck(L_0);
LargeArrayBuilder_1__ctor_m193325792((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_0043;
}
}
{
Func_2_t2447130374 * L_9 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_10 = V_3;
NullCheck((Func_2_t2447130374 *)L_9);
RuntimeObject * L_11 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
}
IL_0043:
{
int32_t L_12 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0047:
{
int32_t L_13 = V_2;
ObjectU5BU5D_t2843939325* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
{
goto IL_001a;
}
}
{
ObjectU5BU5D_t2843939325* L_15 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * WhereSelectArrayIterator_2_ToList_m1267969927_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, const RuntimeMethod* method)
{
List_1_t257213610 * V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 10));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
V_0 = (List_1_t257213610 *)L_0;
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__source_3();
V_1 = (ObjectU5BU5D_t2843939325*)L_1;
V_2 = (int32_t)0;
goto IL_003d;
}
IL_0011:
{
ObjectU5BU5D_t2843939325* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = (RuntimeObject *)L_5;
Func_2_t3759279471 * L_6 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_7 = V_3;
NullCheck((Func_2_t3759279471 *)L_6);
bool L_8 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Func_2_t3759279471 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if (!L_8)
{
goto IL_0039;
}
}
{
List_1_t257213610 * L_9 = V_0;
Func_2_t2447130374 * L_10 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_11 = V_3;
NullCheck((Func_2_t2447130374 *)L_10);
RuntimeObject * L_12 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t2447130374 *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
NullCheck((List_1_t257213610 *)L_9);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((List_1_t257213610 *)L_9, (RuntimeObject *)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
}
IL_0039:
{
int32_t L_13 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_003d:
{
int32_t L_14 = V_2;
ObjectU5BU5D_t2843939325* L_15 = V_1;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length)))))))
{
goto IL_0011;
}
}
{
List_1_t257213610 * L_16 = V_0;
return L_16;
}
}
#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.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
extern "C" void WhereSelectEnumerableIterator_2__ctor_m3884287629_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, RuntimeObject* ___source0, Func_2_t837490053 * ___predicate1, Func_2_t3270419407 * ___selector2, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t837490053 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
Func_2_t3270419407 * L_2 = ___selector2;
__this->set__selector_5(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Clone()
extern "C" Iterator_1_t1484577656 * WhereSelectEnumerableIterator_2_Clone_m3084627467_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t837490053 * L_1 = (Func_2_t837490053 *)__this->get__predicate_4();
Func_2_t3270419407 * L_2 = (Func_2_t3270419407 *)__this->get__selector_5();
WhereSelectEnumerableIterator_2_t2376911338 * L_3 = (WhereSelectEnumerableIterator_2_t2376911338 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereSelectEnumerableIterator_2_t2376911338 *, RuntimeObject*, Func_2_t837490053 *, Func_2_t3270419407 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_3, (RuntimeObject*)L_0, (Func_2_t837490053 *)L_1, (Func_2_t3270419407 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_3;
}
}
// System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void WhereSelectEnumerableIterator_2_Dispose_m1175004086_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_Dispose_m1175004086_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_6();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_6((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t1484577656 *)__this);
(( void (*) (Iterator_1_t1484577656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t1484577656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetCount(System.Boolean)
extern "C" int32_t WhereSelectEnumerableIterator_2_GetCount_m845042880_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_GetCount_m845042880_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_003b;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t837490053 * L_5 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_6 = V_2;
NullCheck((Func_2_t837490053 *)L_5);
bool L_7 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_003b;
}
}
IL_002a:
{
Func_2_t3270419407 * L_8 = (Func_2_t3270419407 *)__this->get__selector_5();
DictionaryEntry_t3123975638 L_9 = V_2;
NullCheck((Func_2_t3270419407 *)L_8);
(( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t3270419407 *)L_8, (DictionaryEntry_t3123975638 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
int32_t L_10 = V_0;
if (((int64_t)L_10 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_10 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereSelectEnumerableIterator_2_GetCount_m845042880_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003b:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0015;
}
}
IL_0043:
{
IL2CPP_LEAVE(0x4F, FINALLY_0045);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0045;
}
FINALLY_0045:
{ // begin finally (depth: 1)
{
RuntimeObject* L_13 = V_1;
if (!L_13)
{
goto IL_004e;
}
}
IL_0048:
{
RuntimeObject* L_14 = V_1;
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
}
IL_004e:
{
IL2CPP_END_FINALLY(69)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(69)
{
IL2CPP_JUMP_TBL(0x4F, IL_004f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004f:
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool WhereSelectEnumerableIterator_2_MoveNext_m3459919702_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_MoveNext_m3459919702_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DictionaryEntry_t3123975638 V_1;
memset(&V_1, 0, sizeof(V_1));
{
int32_t L_0 = (int32_t)((Iterator_1_t1484577656 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0059;
}
}
{
goto IL_006c;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_6(L_4);
((Iterator_1_t1484577656 *)__this)->set__state_1(2);
goto IL_0059;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_5);
DictionaryEntry_t3123975638 L_6 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (DictionaryEntry_t3123975638 )L_6;
Func_2_t837490053 * L_7 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_8 = V_1;
NullCheck((Func_2_t837490053 *)L_7);
bool L_9 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_7, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_0059;
}
}
{
Func_2_t3270419407 * L_10 = (Func_2_t3270419407 *)__this->get__selector_5();
DictionaryEntry_t3123975638 L_11 = V_1;
NullCheck((Func_2_t3270419407 *)L_10);
KeyValuePair_2_t2530217319 L_12 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t3270419407 *)L_10, (DictionaryEntry_t3123975638 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
((Iterator_1_t1484577656 *)__this)->set__current_2(L_12);
return (bool)1;
}
IL_0059:
{
RuntimeObject* L_13 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (L_14)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t1484577656 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t1484577656 *)__this);
}
IL_006c:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToArray()
extern "C" KeyValuePair_2U5BU5D_t118269214* WhereSelectEnumerableIterator_2_ToArray_m3396048257_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_ToArray_m3396048257_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2440570340 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m2226121364((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_003e;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
DictionaryEntry_t3123975638 L_3 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (DictionaryEntry_t3123975638 )L_3;
Func_2_t837490053 * L_4 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_5 = V_2;
NullCheck((Func_2_t837490053 *)L_4);
bool L_6 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_4, (DictionaryEntry_t3123975638 )L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_003e;
}
}
IL_002b:
{
Func_2_t3270419407 * L_7 = (Func_2_t3270419407 *)__this->get__selector_5();
DictionaryEntry_t3123975638 L_8 = V_2;
NullCheck((Func_2_t3270419407 *)L_7);
KeyValuePair_2_t2530217319 L_9 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t3270419407 *)L_7, (DictionaryEntry_t3123975638 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
LargeArrayBuilder_1_Add_m982335036((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), (KeyValuePair_2_t2530217319 )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
}
IL_003e:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0016;
}
}
IL_0046:
{
IL2CPP_LEAVE(0x52, FINALLY_0048);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0048;
}
FINALLY_0048:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
IL_004b:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0051:
{
IL2CPP_END_FINALLY(72)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(72)
{
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0052:
{
KeyValuePair_2U5BU5D_t118269214* L_14 = LargeArrayBuilder_1_ToArray_m3030376891((LargeArrayBuilder_1_t2440570340 *)(LargeArrayBuilder_1_t2440570340 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_14;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.DictionaryEntry,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ToList()
extern "C" List_1_t4002292061 * WhereSelectEnumerableIterator_2_ToList_m3156119266_gshared (WhereSelectEnumerableIterator_2_t2376911338 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_ToList_m3156119266_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t4002292061 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
DictionaryEntry_t3123975638 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t4002292061 * L_0 = (List_1_t4002292061 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12));
(( void (*) (List_1_t4002292061 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_0 = (List_1_t4002292061 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Collections.DictionaryEntry>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_003b;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
DictionaryEntry_t3123975638 L_4 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (DictionaryEntry_t3123975638 )L_4;
Func_2_t837490053 * L_5 = (Func_2_t837490053 *)__this->get__predicate_4();
DictionaryEntry_t3123975638 L_6 = V_2;
NullCheck((Func_2_t837490053 *)L_5);
bool L_7 = (( bool (*) (Func_2_t837490053 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t837490053 *)L_5, (DictionaryEntry_t3123975638 )L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_003b;
}
}
IL_0029:
{
List_1_t4002292061 * L_8 = V_0;
Func_2_t3270419407 * L_9 = (Func_2_t3270419407 *)__this->get__selector_5();
DictionaryEntry_t3123975638 L_10 = V_2;
NullCheck((Func_2_t3270419407 *)L_9);
KeyValuePair_2_t2530217319 L_11 = (( KeyValuePair_2_t2530217319 (*) (Func_2_t3270419407 *, DictionaryEntry_t3123975638 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t3270419407 *)L_9, (DictionaryEntry_t3123975638 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
NullCheck((List_1_t4002292061 *)L_8);
(( void (*) (List_1_t4002292061 *, KeyValuePair_2_t2530217319 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t4002292061 *)L_8, (KeyValuePair_2_t2530217319 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
if (L_13)
{
goto IL_0014;
}
}
IL_0043:
{
IL2CPP_LEAVE(0x4F, FINALLY_0045);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0045;
}
FINALLY_0045:
{ // begin finally (depth: 1)
{
RuntimeObject* L_14 = V_1;
if (!L_14)
{
goto IL_004e;
}
}
IL_0048:
{
RuntimeObject* L_15 = V_1;
NullCheck((RuntimeObject*)L_15);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
}
IL_004e:
{
IL2CPP_END_FINALLY(69)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(69)
{
IL2CPP_JUMP_TBL(0x4F, IL_004f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004f:
{
List_1_t4002292061 * L_16 = V_0;
return L_16;
}
}
#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.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
extern "C" void WhereSelectEnumerableIterator_2__ctor_m2965477945_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, Func_2_t2447130374 * ___selector2, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
Func_2_t2447130374 * L_2 = ___selector2;
__this->set__selector_5(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereSelectEnumerableIterator_2_Clone_m3427254451_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5();
WhereSelectEnumerableIterator_2_t1553622305 * L_3 = (WhereSelectEnumerableIterator_2_t1553622305 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereSelectEnumerableIterator_2_t1553622305 *, RuntimeObject*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_3, (RuntimeObject*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_3;
}
}
// System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Dispose()
extern "C" void WhereSelectEnumerableIterator_2_Dispose_m1978152592_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_Dispose_m1978152592_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__enumerator_6();
if (!L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
__this->set__enumerator_6((RuntimeObject*)NULL);
}
IL_001a:
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// System.Int32 System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereSelectEnumerableIterator_2_GetCount_m1765228792_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_GetCount_m1765228792_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0013:
try
{ // begin try (depth: 1)
{
goto IL_003b;
}
IL_0015:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_003b;
}
}
IL_002a:
{
Func_2_t2447130374 * L_8 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_9 = V_2;
NullCheck((Func_2_t2447130374 *)L_8);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t2447130374 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
int32_t L_10 = V_0;
if (((int64_t)L_10 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_10 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereSelectEnumerableIterator_2_GetCount_m1765228792_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003b:
{
RuntimeObject* L_11 = V_1;
NullCheck((RuntimeObject*)L_11);
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11);
if (L_12)
{
goto IL_0015;
}
}
IL_0043:
{
IL2CPP_LEAVE(0x4F, FINALLY_0045);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0045;
}
FINALLY_0045:
{ // begin finally (depth: 1)
{
RuntimeObject* L_13 = V_1;
if (!L_13)
{
goto IL_004e;
}
}
IL_0048:
{
RuntimeObject* L_14 = V_1;
NullCheck((RuntimeObject*)L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
}
IL_004e:
{
IL2CPP_END_FINALLY(69)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(69)
{
IL2CPP_JUMP_TBL(0x4F, IL_004f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004f:
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool WhereSelectEnumerableIterator_2_MoveNext_m423116621_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_MoveNext_m423116621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0059;
}
}
{
goto IL_006c;
}
IL_0011:
{
RuntimeObject* L_3 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_3);
__this->set__enumerator_6(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
goto IL_0059;
}
IL_002b:
{
RuntimeObject* L_5 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_5);
RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_5);
V_1 = (RuntimeObject *)L_6;
Func_2_t3759279471 * L_7 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_8 = V_1;
NullCheck((Func_2_t3759279471 *)L_7);
bool L_9 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_9)
{
goto IL_0059;
}
}
{
Func_2_t2447130374 * L_10 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_11 = V_1;
NullCheck((Func_2_t2447130374 *)L_10);
RuntimeObject * L_12 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t2447130374 *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_12);
return (bool)1;
}
IL_0059:
{
RuntimeObject* L_13 = (RuntimeObject*)__this->get__enumerator_6();
NullCheck((RuntimeObject*)L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
if (L_14)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_006c:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereSelectEnumerableIterator_2_ToArray_m2685513056_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_ToArray_m2685513056_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
LargeArrayBuilder_1__ctor_m104969882((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_003e;
}
IL_0016:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_2);
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_6)
{
goto IL_003e;
}
}
IL_002b:
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_8 = V_2;
NullCheck((Func_2_t2447130374 *)L_7);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
}
IL_003e:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
if (L_11)
{
goto IL_0016;
}
}
IL_0046:
{
IL2CPP_LEAVE(0x52, FINALLY_0048);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0048;
}
FINALLY_0048:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_0051;
}
}
IL_004b:
{
RuntimeObject* L_13 = V_1;
NullCheck((RuntimeObject*)L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_13);
}
IL_0051:
{
IL2CPP_END_FINALLY(72)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(72)
{
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0052:
{
ObjectU5BU5D_t2843939325* L_14 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11));
return L_14;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * WhereSelectEnumerableIterator_2_ToList_m174395360_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectEnumerableIterator_2_ToList_m174395360_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t257213610 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 12));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
V_0 = (List_1_t257213610 *)L_0;
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_3();
NullCheck((RuntimeObject*)L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1);
V_1 = (RuntimeObject*)L_2;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_003b;
}
IL_0014:
{
RuntimeObject* L_3 = V_1;
NullCheck((RuntimeObject*)L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (RuntimeObject*)L_3);
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if (!L_7)
{
goto IL_003b;
}
}
IL_0029:
{
List_1_t257213610 * L_8 = V_0;
Func_2_t2447130374 * L_9 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_10 = V_2;
NullCheck((Func_2_t2447130374 *)L_9);
RuntimeObject * L_11 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_2_t2447130374 *)L_9, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
NullCheck((List_1_t257213610 *)L_8);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14)->methodPointer)((List_1_t257213610 *)L_8, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
}
IL_003b:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
if (L_13)
{
goto IL_0014;
}
}
IL_0043:
{
IL2CPP_LEAVE(0x4F, FINALLY_0045);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0045;
}
FINALLY_0045:
{ // begin finally (depth: 1)
{
RuntimeObject* L_14 = V_1;
if (!L_14)
{
goto IL_004e;
}
}
IL_0048:
{
RuntimeObject* L_15 = V_1;
NullCheck((RuntimeObject*)L_15);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
}
IL_004e:
{
IL2CPP_END_FINALLY(69)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(69)
{
IL2CPP_JUMP_TBL(0x4F, IL_004f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004f:
{
List_1_t257213610 * L_16 = V_0;
return L_16;
}
}
#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.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
extern "C" void WhereSelectListIterator_2__ctor_m2913380632_gshared (WhereSelectListIterator_2_t2661109023 * __this, List_1_t257213610 * ___source0, Func_2_t3759279471 * ___predicate1, Func_2_t2447130374 * ___selector2, const RuntimeMethod* method)
{
{
NullCheck((Iterator_1_t2034466501 *)__this);
(( void (*) (Iterator_1_t2034466501 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Iterator_1_t2034466501 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
List_1_t257213610 * L_0 = ___source0;
__this->set__source_3(L_0);
Func_2_t3759279471 * L_1 = ___predicate1;
__this->set__predicate_4(L_1);
Func_2_t2447130374 * L_2 = ___selector2;
__this->set__selector_5(L_2);
return;
}
}
// System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Clone()
extern "C" Iterator_1_t2034466501 * WhereSelectListIterator_2_Clone_m3068079525_gshared (WhereSelectListIterator_2_t2661109023 * __this, const RuntimeMethod* method)
{
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4();
Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5();
WhereSelectListIterator_2_t2661109023 * L_3 = (WhereSelectListIterator_2_t2661109023 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2));
(( void (*) (WhereSelectListIterator_2_t2661109023 *, List_1_t257213610 *, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)(L_3, (List_1_t257213610 *)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_3;
}
}
// System.Int32 System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t WhereSelectListIterator_2_GetCount_m2170117351_gshared (WhereSelectListIterator_2_t2661109023 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WhereSelectListIterator_2_GetCount_m2170117351_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
bool L_0 = ___onlyIfCheap0;
if (!L_0)
{
goto IL_0005;
}
}
{
return (-1);
}
IL_0005:
{
V_0 = (int32_t)0;
V_1 = (int32_t)0;
goto IL_003b;
}
IL_000b:
{
List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t257213610 *)L_1);
RuntimeObject * L_3 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_0037;
}
}
{
Func_2_t2447130374 * L_7 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_8 = V_2;
NullCheck((Func_2_t2447130374 *)L_7);
(( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
int32_t L_9 = V_0;
if (((int64_t)L_9 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_9 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, WhereSelectListIterator_2_GetCount_m2170117351_RuntimeMethod_var);
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0037:
{
int32_t L_10 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003b:
{
int32_t L_11 = V_1;
List_1_t257213610 * L_12 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_12);
int32_t L_13 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t257213610 *)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_000b;
}
}
{
int32_t L_14 = V_0;
return L_14;
}
}
// System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::MoveNext()
extern "C" bool WhereSelectListIterator_2_MoveNext_m2801215361_gshared (WhereSelectListIterator_2_t2661109023 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = (int32_t)((Iterator_1_t2034466501 *)__this)->get__state_1();
V_0 = (int32_t)L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0011;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0059;
}
}
{
goto IL_006c;
}
IL_0011:
{
List_1_t257213610 * L_3 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_3);
Enumerator_t2146457487 L_4 = (( Enumerator_t2146457487 (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((List_1_t257213610 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
__this->set__enumerator_6(L_4);
((Iterator_1_t2034466501 *)__this)->set__state_1(2);
goto IL_0059;
}
IL_002b:
{
Enumerator_t2146457487 * L_5 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_6();
RuntimeObject * L_6 = Enumerator_get_Current_m337713592((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9));
V_1 = (RuntimeObject *)L_6;
Func_2_t3759279471 * L_7 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_8 = V_1;
NullCheck((Func_2_t3759279471 *)L_7);
bool L_9 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_9)
{
goto IL_0059;
}
}
{
Func_2_t2447130374 * L_10 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_11 = V_1;
NullCheck((Func_2_t2447130374 *)L_10);
RuntimeObject * L_12 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
((Iterator_1_t2034466501 *)__this)->set__current_2(L_12);
return (bool)1;
}
IL_0059:
{
Enumerator_t2146457487 * L_13 = (Enumerator_t2146457487 *)__this->get_address_of__enumerator_6();
bool L_14 = Enumerator_MoveNext_m2142368520((Enumerator_t2146457487 *)(Enumerator_t2146457487 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10));
if (L_14)
{
goto IL_002b;
}
}
{
NullCheck((Iterator_1_t2034466501 *)__this);
VirtActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t2034466501 *)__this);
}
IL_006c:
{
return (bool)0;
}
}
// TResult[] System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::ToArray()
extern "C" ObjectU5BU5D_t2843939325* WhereSelectListIterator_2_ToArray_m3607324252_gshared (WhereSelectListIterator_2_t2661109023 * __this, const RuntimeMethod* method)
{
LargeArrayBuilder_1_t2990459185 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_0);
int32_t L_1 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t257213610 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
LargeArrayBuilder_1__ctor_m193325792((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12));
V_1 = (int32_t)0;
goto IL_0048;
}
IL_0016:
{
List_1_t257213610 * L_2 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_3 = V_1;
NullCheck((List_1_t257213610 *)L_2);
RuntimeObject * L_4 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_4;
Func_2_t3759279471 * L_5 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_6 = V_2;
NullCheck((Func_2_t3759279471 *)L_5);
bool L_7 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_5, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_7)
{
goto IL_0044;
}
}
{
Func_2_t2447130374 * L_8 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_9 = V_2;
NullCheck((Func_2_t2447130374 *)L_8);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
LargeArrayBuilder_1_Add_m3802412589((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13));
}
IL_0044:
{
int32_t L_11 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0048:
{
int32_t L_12 = V_1;
List_1_t257213610 * L_13 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_13);
int32_t L_14 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t257213610 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_0016;
}
}
{
ObjectU5BU5D_t2843939325* L_15 = LargeArrayBuilder_1_ToArray_m390648332((LargeArrayBuilder_1_t2990459185 *)(LargeArrayBuilder_1_t2990459185 *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 14));
return L_15;
}
}
// System.Collections.Generic.List`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::ToList()
extern "C" List_1_t257213610 * WhereSelectListIterator_2_ToList_m3851121678_gshared (WhereSelectListIterator_2_t2661109023 * __this, const RuntimeMethod* method)
{
List_1_t257213610 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
List_1_t257213610 * L_0 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 15));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16));
V_0 = (List_1_t257213610 *)L_0;
V_1 = (int32_t)0;
goto IL_003b;
}
IL_000a:
{
List_1_t257213610 * L_1 = (List_1_t257213610 *)__this->get__source_3();
int32_t L_2 = V_1;
NullCheck((List_1_t257213610 *)L_1);
RuntimeObject * L_3 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((List_1_t257213610 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
V_2 = (RuntimeObject *)L_3;
Func_2_t3759279471 * L_4 = (Func_2_t3759279471 *)__this->get__predicate_4();
RuntimeObject * L_5 = V_2;
NullCheck((Func_2_t3759279471 *)L_4);
bool L_6 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_2_t3759279471 *)L_4, (RuntimeObject *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (!L_6)
{
goto IL_0037;
}
}
{
List_1_t257213610 * L_7 = V_0;
Func_2_t2447130374 * L_8 = (Func_2_t2447130374 *)__this->get__selector_5();
RuntimeObject * L_9 = V_2;
NullCheck((Func_2_t2447130374 *)L_8);
RuntimeObject * L_10 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Func_2_t2447130374 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((List_1_t257213610 *)L_7);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17)->methodPointer)((List_1_t257213610 *)L_7, (RuntimeObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 17));
}
IL_0037:
{
int32_t L_11 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_003b:
{
int32_t L_12 = V_1;
List_1_t257213610 * L_13 = (List_1_t257213610 *)__this->get__source_3();
NullCheck((List_1_t257213610 *)L_13);
int32_t L_14 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((List_1_t257213610 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_000a;
}
}
{
List_1_t257213610 * L_15 = V_0;
return L_15;
}
}
#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.Int32[] System.Linq.EnumerableSorter`1<System.Object>::ComputeMap(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_ComputeMap_m3213864270_gshared (EnumerableSorter_1_t3733250914 * __this, ObjectU5BU5D_t2843939325* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_1_ComputeMap_m3213864270_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
VirtActionInvoker2< ObjectU5BU5D_t2843939325*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t3733250914 *)__this, (ObjectU5BU5D_t2843939325*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
V_0 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_2));
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_5);
int32_t L_6 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_001b:
{
int32_t L_7 = V_1;
Int32U5BU5D_t385246372* L_8 = V_0;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t385246372* L_9 = V_0;
return L_9;
}
}
// System.Int32[] System.Linq.EnumerableSorter`1<System.Object>::Sort(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_Sort_m387425277_gshared (EnumerableSorter_1_t3733250914 * __this, ObjectU5BU5D_t2843939325* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
Int32U5BU5D_t385246372* V_0 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
Int32U5BU5D_t385246372* L_2 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t3733250914 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t3733250914 *)__this, (ObjectU5BU5D_t2843939325*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
V_0 = (Int32U5BU5D_t385246372*)L_2;
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
VirtActionInvoker3< Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(6 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::QuickSort(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)));
Int32U5BU5D_t385246372* L_5 = V_0;
return L_5;
}
}
// TElement System.Linq.EnumerableSorter`1<System.Object>::ElementAt(TElement[],System.Int32,System.Int32)
extern "C" RuntimeObject * EnumerableSorter_1_ElementAt_m1369912729_gshared (EnumerableSorter_1_t3733250914 * __this, ObjectU5BU5D_t2843939325* ___elements0, int32_t ___count1, int32_t ___idx2, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = ___elements0;
ObjectU5BU5D_t2843939325* L_1 = ___elements0;
int32_t L_2 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
Int32U5BU5D_t385246372* L_3 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t3733250914 *, ObjectU5BU5D_t2843939325*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t3733250914 *)__this, (ObjectU5BU5D_t2843939325*)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
int32_t L_4 = ___count1;
int32_t L_5 = ___idx2;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
int32_t L_6 = VirtFuncInvoker3< int32_t, Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(7 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::QuickSelect(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)), (int32_t)L_5);
NullCheck(L_0);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
return L_8;
}
}
// System.Void System.Linq.EnumerableSorter`1<System.Object>::.ctor()
extern "C" void EnumerableSorter_1__ctor_m3037757785_gshared (EnumerableSorter_1_t3733250914 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Int32[] System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::ComputeMap(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_ComputeMap_m2386998619_gshared (EnumerableSorter_1_t2809374273 * __this, Vector2U5BU5D_t1457185986* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_1_ComputeMap_m2386998619_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
int32_t V_1 = 0;
{
Vector2U5BU5D_t1457185986* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
VirtActionInvoker2< Vector2U5BU5D_t1457185986*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t2809374273 *)__this, (Vector2U5BU5D_t1457185986*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
V_0 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_2));
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_5);
int32_t L_6 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_001b:
{
int32_t L_7 = V_1;
Int32U5BU5D_t385246372* L_8 = V_0;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t385246372* L_9 = V_0;
return L_9;
}
}
// System.Int32[] System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::Sort(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_Sort_m2871035939_gshared (EnumerableSorter_1_t2809374273 * __this, Vector2U5BU5D_t1457185986* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
Int32U5BU5D_t385246372* V_0 = NULL;
{
Vector2U5BU5D_t1457185986* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
Int32U5BU5D_t385246372* L_2 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t2809374273 *, Vector2U5BU5D_t1457185986*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t2809374273 *)__this, (Vector2U5BU5D_t1457185986*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
V_0 = (Int32U5BU5D_t385246372*)L_2;
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = ___count1;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
VirtActionInvoker3< Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(6 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::QuickSort(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t2809374273 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)));
Int32U5BU5D_t385246372* L_5 = V_0;
return L_5;
}
}
// TElement System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::ElementAt(TElement[],System.Int32,System.Int32)
extern "C" Vector2_t2156229523 EnumerableSorter_1_ElementAt_m3101901881_gshared (EnumerableSorter_1_t2809374273 * __this, Vector2U5BU5D_t1457185986* ___elements0, int32_t ___count1, int32_t ___idx2, const RuntimeMethod* method)
{
{
Vector2U5BU5D_t1457185986* L_0 = ___elements0;
Vector2U5BU5D_t1457185986* L_1 = ___elements0;
int32_t L_2 = ___count1;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
Int32U5BU5D_t385246372* L_3 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t2809374273 *, Vector2U5BU5D_t1457185986*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t2809374273 *)__this, (Vector2U5BU5D_t1457185986*)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
int32_t L_4 = ___count1;
int32_t L_5 = ___idx2;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
int32_t L_6 = VirtFuncInvoker3< int32_t, Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(7 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::QuickSelect(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t2809374273 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)), (int32_t)L_5);
NullCheck(L_0);
int32_t L_7 = L_6;
Vector2_t2156229523 L_8 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
return L_8;
}
}
// System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::.ctor()
extern "C" void EnumerableSorter_1__ctor_m1878746857_gshared (EnumerableSorter_1_t2809374273 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Int32[] System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::ComputeMap(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_ComputeMap_m4245224842_gshared (EnumerableSorter_1_t80490918 * __this, Vector3U5BU5D_t1718750761* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_1_ComputeMap_m4245224842_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
int32_t V_1 = 0;
{
Vector3U5BU5D_t1718750761* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
VirtActionInvoker2< Vector3U5BU5D_t1718750761*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t80490918 *)__this, (Vector3U5BU5D_t1718750761*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
V_0 = (Int32U5BU5D_t385246372*)((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_2));
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_5);
int32_t L_6 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_001b:
{
int32_t L_7 = V_1;
Int32U5BU5D_t385246372* L_8 = V_0;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t385246372* L_9 = V_0;
return L_9;
}
}
// System.Int32[] System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::Sort(TElement[],System.Int32)
extern "C" Int32U5BU5D_t385246372* EnumerableSorter_1_Sort_m1702965538_gshared (EnumerableSorter_1_t80490918 * __this, Vector3U5BU5D_t1718750761* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
Int32U5BU5D_t385246372* V_0 = NULL;
{
Vector3U5BU5D_t1718750761* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
Int32U5BU5D_t385246372* L_2 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t80490918 *, Vector3U5BU5D_t1718750761*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t80490918 *)__this, (Vector3U5BU5D_t1718750761*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
V_0 = (Int32U5BU5D_t385246372*)L_2;
Int32U5BU5D_t385246372* L_3 = V_0;
int32_t L_4 = ___count1;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
VirtActionInvoker3< Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(6 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::QuickSort(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t80490918 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)));
Int32U5BU5D_t385246372* L_5 = V_0;
return L_5;
}
}
// TElement System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::ElementAt(TElement[],System.Int32,System.Int32)
extern "C" Vector3_t3722313464 EnumerableSorter_1_ElementAt_m2390391865_gshared (EnumerableSorter_1_t80490918 * __this, Vector3U5BU5D_t1718750761* ___elements0, int32_t ___count1, int32_t ___idx2, const RuntimeMethod* method)
{
{
Vector3U5BU5D_t1718750761* L_0 = ___elements0;
Vector3U5BU5D_t1718750761* L_1 = ___elements0;
int32_t L_2 = ___count1;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
Int32U5BU5D_t385246372* L_3 = (( Int32U5BU5D_t385246372* (*) (EnumerableSorter_1_t80490918 *, Vector3U5BU5D_t1718750761*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t80490918 *)__this, (Vector3U5BU5D_t1718750761*)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
int32_t L_4 = ___count1;
int32_t L_5 = ___idx2;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
int32_t L_6 = VirtFuncInvoker3< int32_t, Int32U5BU5D_t385246372*, int32_t, int32_t >::Invoke(7 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::QuickSelect(System.Int32[],System.Int32,System.Int32) */, (EnumerableSorter_1_t80490918 *)__this, (Int32U5BU5D_t385246372*)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)), (int32_t)L_5);
NullCheck(L_0);
int32_t L_7 = L_6;
Vector3_t3722313464 L_8 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
return L_8;
}
}
// System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::.ctor()
extern "C" void EnumerableSorter_1__ctor_m1811703529_gshared (EnumerableSorter_1_t80490918 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Linq.EnumerableSorter`2<System.Object,System.Int32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
extern "C" void EnumerableSorter_2__ctor_m2467716664_gshared (EnumerableSorter_2_t935421103 * __this, Func_2_t2317969963 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_t3733250914 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
(( void (*) (EnumerableSorter_1_t3733250914 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_t3733250914 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t2317969963 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
EnumerableSorter_1_t3733250914 * L_3 = ___next3;
__this->set__next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Int32>::ComputeKeys(TElement[],System.Int32)
extern "C" void EnumerableSorter_2_ComputeKeys_m1656612990_gshared (EnumerableSorter_2_t935421103 * __this, ObjectU5BU5D_t2843939325* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
EnumerableSorter_1_t3733250914 * G_B5_0 = NULL;
EnumerableSorter_1_t3733250914 * G_B4_0 = NULL;
{
int32_t L_0 = ___count1;
__this->set__keys_4(((Int32U5BU5D_t385246372*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0)));
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
Int32U5BU5D_t385246372* L_1 = (Int32U5BU5D_t385246372*)__this->get__keys_4();
int32_t L_2 = V_0;
Func_2_t2317969963 * L_3 = (Func_2_t2317969963 *)__this->get__keySelector_0();
ObjectU5BU5D_t2843939325* L_4 = ___elements0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t2317969963 *)L_3);
int32_t L_8 = (( int32_t (*) (Func_2_t2317969963 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t2317969963 *)L_3, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)L_8);
int32_t L_9 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0032:
{
int32_t L_10 = V_0;
int32_t L_11 = ___count1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_t3733250914 * L_12 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
EnumerableSorter_1_t3733250914 * L_13 = (EnumerableSorter_1_t3733250914 *)L_12;
G_B4_0 = L_13;
if (L_13)
{
G_B5_0 = L_13;
goto IL_0041;
}
}
{
return;
}
IL_0041:
{
ObjectU5BU5D_t2843939325* L_14 = ___elements0;
int32_t L_15 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)G_B5_0);
VirtActionInvoker2< ObjectU5BU5D_t2843939325*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t3733250914 *)G_B5_0, (ObjectU5BU5D_t2843939325*)L_14, (int32_t)L_15);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Int32>::CompareAnyKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareAnyKeys_m716222207_gshared (EnumerableSorter_2_t935421103 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_1();
Int32U5BU5D_t385246372* L_1 = (Int32U5BU5D_t385246372*)__this->get__keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Int32U5BU5D_t385246372* L_5 = (Int32U5BU5D_t385246372*)__this->get__keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (int32_t)L_4, (int32_t)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_t3733250914 * L_11 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_t3733250914 * L_14 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_t3733250914 *)L_14);
int32_t L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)L_14, (int32_t)L_15, (int32_t)L_16);
return L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get__descending_2();
int32_t L_19 = V_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((((int32_t)L_19) > ((int32_t)0))? 1 : 0)))))
{
goto IL_004f;
}
}
{
return (-1);
}
IL_004f:
{
return 1;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Int32>::CompareKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareKeys_m2840121542_gshared (EnumerableSorter_2_t935421103 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index10;
int32_t L_1 = ___index21;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_000d;
}
}
{
int32_t L_2 = ___index10;
int32_t L_3 = ___index21;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)__this, (int32_t)L_2, (int32_t)L_3);
return L_4;
}
IL_000d:
{
return 0;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Int32>::QuickSort(System.Int32[],System.Int32,System.Int32)
extern "C" void EnumerableSorter_2_QuickSort_m311121746_gshared (EnumerableSorter_2_t935421103 * __this, Int32U5BU5D_t385246372* ___keys0, int32_t ___lo1, int32_t ___hi2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_2_QuickSort_m311121746_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t385246372* L_0 = ___keys0;
int32_t L_1 = ___lo1;
int32_t L_2 = ___hi2;
int32_t L_3 = ___lo1;
intptr_t L_4 = (intptr_t)GetVirtualMethodInfo(__this, 5);
Comparison_1_t2725876932 * L_5 = (Comparison_1_t2725876932 *)il2cpp_codegen_object_new(Comparison_1_t2725876932_il2cpp_TypeInfo_var);
Comparison_1__ctor_m2649066178(L_5, (RuntimeObject *)__this, (intptr_t)L_4, /*hidden argument*/Comparison_1__ctor_m2649066178_RuntimeMethod_var);
Comparer_1_t155733339 * L_6 = Comparer_1_Create_m3068808654(NULL /*static, unused*/, (Comparison_1_t2725876932 *)L_5, /*hidden argument*/Comparer_1_Create_m3068808654_RuntimeMethod_var);
Array_Sort_TisInt32_t2950945753_m263117253(NULL /*static, unused*/, (Int32U5BU5D_t385246372*)L_0, (int32_t)L_1, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), (RuntimeObject*)L_6, /*hidden argument*/Array_Sort_TisInt32_t2950945753_m263117253_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Int32>::QuickSelect(System.Int32[],System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_QuickSelect_m786860554_gshared (EnumerableSorter_2_t935421103 * __this, Int32U5BU5D_t385246372* ___map0, int32_t ___right1, int32_t ___idx2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = (int32_t)0;
}
IL_0002:
{
int32_t L_0 = V_0;
V_1 = (int32_t)L_0;
int32_t L_1 = ___right1;
V_2 = (int32_t)L_1;
Int32U5BU5D_t385246372* L_2 = ___map0;
int32_t L_3 = V_1;
int32_t L_4 = V_2;
int32_t L_5 = V_1;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = (int32_t)L_7;
goto IL_0016;
}
IL_0012:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0016:
{
int32_t L_9 = V_1;
Int32U5BU5D_t385246372* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_002f;
}
}
{
int32_t L_11 = V_3;
Int32U5BU5D_t385246372* L_12 = ___map0;
int32_t L_13 = V_1;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_2_t935421103 *)__this);
int32_t L_16 = (( int32_t (*) (EnumerableSorter_2_t935421103 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t935421103 *)__this, (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
goto IL_002f;
}
IL_002b:
{
int32_t L_17 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002f:
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_19 = V_3;
Int32U5BU5D_t385246372* L_20 = ___map0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_2_t935421103 *)__this);
int32_t L_24 = (( int32_t (*) (EnumerableSorter_2_t935421103 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t935421103 *)__this, (int32_t)L_19, (int32_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0040:
{
int32_t L_25 = V_1;
int32_t L_26 = V_2;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0064;
}
}
{
int32_t L_27 = V_1;
int32_t L_28 = V_2;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0058;
}
}
{
Int32U5BU5D_t385246372* L_29 = ___map0;
int32_t L_30 = V_1;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_4 = (int32_t)L_32;
Int32U5BU5D_t385246372* L_33 = ___map0;
int32_t L_34 = V_1;
Int32U5BU5D_t385246372* L_35 = ___map0;
int32_t L_36 = V_2;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t385246372* L_39 = ___map0;
int32_t L_40 = V_2;
int32_t L_41 = V_4;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0058:
{
int32_t L_42 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_1;
int32_t L_45 = V_2;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0016;
}
}
IL_0064:
{
int32_t L_46 = V_1;
int32_t L_47 = ___idx2;
if ((((int32_t)L_46) > ((int32_t)L_47)))
{
goto IL_006e;
}
}
{
int32_t L_48 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
goto IL_0073;
}
IL_006e:
{
int32_t L_49 = V_2;
___right1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1));
}
IL_0073:
{
int32_t L_50 = V_2;
int32_t L_51 = V_0;
int32_t L_52 = ___right1;
int32_t L_53 = V_1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)L_51))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)))))
{
goto IL_0086;
}
}
{
int32_t L_54 = V_0;
int32_t L_55 = V_2;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_0082;
}
}
{
int32_t L_56 = V_2;
___right1 = (int32_t)L_56;
}
IL_0082:
{
int32_t L_57 = V_1;
V_0 = (int32_t)L_57;
goto IL_008f;
}
IL_0086:
{
int32_t L_58 = V_1;
int32_t L_59 = ___right1;
if ((((int32_t)L_58) >= ((int32_t)L_59)))
{
goto IL_008c;
}
}
{
int32_t L_60 = V_1;
V_0 = (int32_t)L_60;
}
IL_008c:
{
int32_t L_61 = V_2;
___right1 = (int32_t)L_61;
}
IL_008f:
{
int32_t L_62 = V_0;
int32_t L_63 = ___right1;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0002;
}
}
{
Int32U5BU5D_t385246372* L_64 = ___map0;
int32_t L_65 = ___idx2;
NullCheck(L_64);
int32_t L_66 = L_65;
int32_t L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
return L_67;
}
}
#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.Linq.EnumerableSorter`2<System.Object,System.Object>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
extern "C" void EnumerableSorter_2__ctor_m121718011_gshared (EnumerableSorter_2_t1064581514 * __this, Func_2_t2447130374 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_t3733250914 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
(( void (*) (EnumerableSorter_1_t3733250914 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_t3733250914 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t2447130374 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
EnumerableSorter_1_t3733250914 * L_3 = ___next3;
__this->set__next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Object>::ComputeKeys(TElement[],System.Int32)
extern "C" void EnumerableSorter_2_ComputeKeys_m4281687995_gshared (EnumerableSorter_2_t1064581514 * __this, ObjectU5BU5D_t2843939325* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
EnumerableSorter_1_t3733250914 * G_B5_0 = NULL;
EnumerableSorter_1_t3733250914 * G_B4_0 = NULL;
{
int32_t L_0 = ___count1;
__this->set__keys_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0)));
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__keys_4();
int32_t L_2 = V_0;
Func_2_t2447130374 * L_3 = (Func_2_t2447130374 *)__this->get__keySelector_0();
ObjectU5BU5D_t2843939325* L_4 = ___elements0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t2447130374 *)L_3);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_t2447130374 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t2447130374 *)L_3, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (RuntimeObject *)L_8);
int32_t L_9 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0032:
{
int32_t L_10 = V_0;
int32_t L_11 = ___count1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_t3733250914 * L_12 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
EnumerableSorter_1_t3733250914 * L_13 = (EnumerableSorter_1_t3733250914 *)L_12;
G_B4_0 = L_13;
if (L_13)
{
G_B5_0 = L_13;
goto IL_0041;
}
}
{
return;
}
IL_0041:
{
ObjectU5BU5D_t2843939325* L_14 = ___elements0;
int32_t L_15 = ___count1;
NullCheck((EnumerableSorter_1_t3733250914 *)G_B5_0);
VirtActionInvoker2< ObjectU5BU5D_t2843939325*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t3733250914 *)G_B5_0, (ObjectU5BU5D_t2843939325*)L_14, (int32_t)L_15);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Object>::CompareAnyKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareAnyKeys_m2662217369_gshared (EnumerableSorter_2_t1064581514 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_1();
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)__this->get__keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)__this->get__keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (RuntimeObject *)L_4, (RuntimeObject *)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_t3733250914 * L_11 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_t3733250914 * L_14 = (EnumerableSorter_1_t3733250914 *)__this->get__next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_t3733250914 *)L_14);
int32_t L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)L_14, (int32_t)L_15, (int32_t)L_16);
return L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get__descending_2();
int32_t L_19 = V_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((((int32_t)L_19) > ((int32_t)0))? 1 : 0)))))
{
goto IL_004f;
}
}
{
return (-1);
}
IL_004f:
{
return 1;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Object>::CompareKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareKeys_m1905211851_gshared (EnumerableSorter_2_t1064581514 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index10;
int32_t L_1 = ___index21;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_000d;
}
}
{
int32_t L_2 = ___index10;
int32_t L_3 = ___index21;
NullCheck((EnumerableSorter_1_t3733250914 *)__this);
int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t3733250914 *)__this, (int32_t)L_2, (int32_t)L_3);
return L_4;
}
IL_000d:
{
return 0;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Object>::QuickSort(System.Int32[],System.Int32,System.Int32)
extern "C" void EnumerableSorter_2_QuickSort_m2250302646_gshared (EnumerableSorter_2_t1064581514 * __this, Int32U5BU5D_t385246372* ___keys0, int32_t ___lo1, int32_t ___hi2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_2_QuickSort_m2250302646_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t385246372* L_0 = ___keys0;
int32_t L_1 = ___lo1;
int32_t L_2 = ___hi2;
int32_t L_3 = ___lo1;
intptr_t L_4 = (intptr_t)GetVirtualMethodInfo(__this, 5);
Comparison_1_t2725876932 * L_5 = (Comparison_1_t2725876932 *)il2cpp_codegen_object_new(Comparison_1_t2725876932_il2cpp_TypeInfo_var);
Comparison_1__ctor_m2649066178(L_5, (RuntimeObject *)__this, (intptr_t)L_4, /*hidden argument*/Comparison_1__ctor_m2649066178_RuntimeMethod_var);
Comparer_1_t155733339 * L_6 = Comparer_1_Create_m3068808654(NULL /*static, unused*/, (Comparison_1_t2725876932 *)L_5, /*hidden argument*/Comparer_1_Create_m3068808654_RuntimeMethod_var);
Array_Sort_TisInt32_t2950945753_m263117253(NULL /*static, unused*/, (Int32U5BU5D_t385246372*)L_0, (int32_t)L_1, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), (RuntimeObject*)L_6, /*hidden argument*/Array_Sort_TisInt32_t2950945753_m263117253_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Object>::QuickSelect(System.Int32[],System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_QuickSelect_m3372256038_gshared (EnumerableSorter_2_t1064581514 * __this, Int32U5BU5D_t385246372* ___map0, int32_t ___right1, int32_t ___idx2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = (int32_t)0;
}
IL_0002:
{
int32_t L_0 = V_0;
V_1 = (int32_t)L_0;
int32_t L_1 = ___right1;
V_2 = (int32_t)L_1;
Int32U5BU5D_t385246372* L_2 = ___map0;
int32_t L_3 = V_1;
int32_t L_4 = V_2;
int32_t L_5 = V_1;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = (int32_t)L_7;
goto IL_0016;
}
IL_0012:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0016:
{
int32_t L_9 = V_1;
Int32U5BU5D_t385246372* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_002f;
}
}
{
int32_t L_11 = V_3;
Int32U5BU5D_t385246372* L_12 = ___map0;
int32_t L_13 = V_1;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_2_t1064581514 *)__this);
int32_t L_16 = (( int32_t (*) (EnumerableSorter_2_t1064581514 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t1064581514 *)__this, (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
goto IL_002f;
}
IL_002b:
{
int32_t L_17 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002f:
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_19 = V_3;
Int32U5BU5D_t385246372* L_20 = ___map0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_2_t1064581514 *)__this);
int32_t L_24 = (( int32_t (*) (EnumerableSorter_2_t1064581514 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t1064581514 *)__this, (int32_t)L_19, (int32_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0040:
{
int32_t L_25 = V_1;
int32_t L_26 = V_2;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0064;
}
}
{
int32_t L_27 = V_1;
int32_t L_28 = V_2;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0058;
}
}
{
Int32U5BU5D_t385246372* L_29 = ___map0;
int32_t L_30 = V_1;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_4 = (int32_t)L_32;
Int32U5BU5D_t385246372* L_33 = ___map0;
int32_t L_34 = V_1;
Int32U5BU5D_t385246372* L_35 = ___map0;
int32_t L_36 = V_2;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t385246372* L_39 = ___map0;
int32_t L_40 = V_2;
int32_t L_41 = V_4;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0058:
{
int32_t L_42 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_1;
int32_t L_45 = V_2;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0016;
}
}
IL_0064:
{
int32_t L_46 = V_1;
int32_t L_47 = ___idx2;
if ((((int32_t)L_46) > ((int32_t)L_47)))
{
goto IL_006e;
}
}
{
int32_t L_48 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
goto IL_0073;
}
IL_006e:
{
int32_t L_49 = V_2;
___right1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1));
}
IL_0073:
{
int32_t L_50 = V_2;
int32_t L_51 = V_0;
int32_t L_52 = ___right1;
int32_t L_53 = V_1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)L_51))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)))))
{
goto IL_0086;
}
}
{
int32_t L_54 = V_0;
int32_t L_55 = V_2;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_0082;
}
}
{
int32_t L_56 = V_2;
___right1 = (int32_t)L_56;
}
IL_0082:
{
int32_t L_57 = V_1;
V_0 = (int32_t)L_57;
goto IL_008f;
}
IL_0086:
{
int32_t L_58 = V_1;
int32_t L_59 = ___right1;
if ((((int32_t)L_58) >= ((int32_t)L_59)))
{
goto IL_008c;
}
}
{
int32_t L_60 = V_1;
V_0 = (int32_t)L_60;
}
IL_008c:
{
int32_t L_61 = V_2;
___right1 = (int32_t)L_61;
}
IL_008f:
{
int32_t L_62 = V_0;
int32_t L_63 = ___right1;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0002;
}
}
{
Int32U5BU5D_t385246372* L_64 = ___map0;
int32_t L_65 = ___idx2;
NullCheck(L_64);
int32_t L_66 = L_65;
int32_t L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
return L_67;
}
}
#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.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
extern "C" void EnumerableSorter_2__ctor_m1642086143_gshared (EnumerableSorter_2_t2289956081 * __this, Func_2_t3672504941 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_t2809374273 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
(( void (*) (EnumerableSorter_1_t2809374273 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_t2809374273 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t3672504941 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
EnumerableSorter_1_t2809374273 * L_3 = ___next3;
__this->set__next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::ComputeKeys(TElement[],System.Int32)
extern "C" void EnumerableSorter_2_ComputeKeys_m2546948739_gshared (EnumerableSorter_2_t2289956081 * __this, Vector2U5BU5D_t1457185986* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
EnumerableSorter_1_t2809374273 * G_B5_0 = NULL;
EnumerableSorter_1_t2809374273 * G_B4_0 = NULL;
{
int32_t L_0 = ___count1;
__this->set__keys_4(((SingleU5BU5D_t1444911251*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0)));
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
SingleU5BU5D_t1444911251* L_1 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_2 = V_0;
Func_2_t3672504941 * L_3 = (Func_2_t3672504941 *)__this->get__keySelector_0();
Vector2U5BU5D_t1457185986* L_4 = ___elements0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector2_t2156229523 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t3672504941 *)L_3);
float L_8 = (( float (*) (Func_2_t3672504941 *, Vector2_t2156229523 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t3672504941 *)L_3, (Vector2_t2156229523 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (float)L_8);
int32_t L_9 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0032:
{
int32_t L_10 = V_0;
int32_t L_11 = ___count1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_t2809374273 * L_12 = (EnumerableSorter_1_t2809374273 *)__this->get__next_3();
EnumerableSorter_1_t2809374273 * L_13 = (EnumerableSorter_1_t2809374273 *)L_12;
G_B4_0 = L_13;
if (L_13)
{
G_B5_0 = L_13;
goto IL_0041;
}
}
{
return;
}
IL_0041:
{
Vector2U5BU5D_t1457185986* L_14 = ___elements0;
int32_t L_15 = ___count1;
NullCheck((EnumerableSorter_1_t2809374273 *)G_B5_0);
VirtActionInvoker2< Vector2U5BU5D_t1457185986*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t2809374273 *)G_B5_0, (Vector2U5BU5D_t1457185986*)L_14, (int32_t)L_15);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::CompareAnyKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareAnyKeys_m4200837423_gshared (EnumerableSorter_2_t2289956081 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_1();
SingleU5BU5D_t1444911251* L_1 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
float L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
SingleU5BU5D_t1444911251* L_5 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
float L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (float)L_4, (float)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_t2809374273 * L_11 = (EnumerableSorter_1_t2809374273 *)__this->get__next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_t2809374273 * L_14 = (EnumerableSorter_1_t2809374273 *)__this->get__next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_t2809374273 *)L_14);
int32_t L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t2809374273 *)L_14, (int32_t)L_15, (int32_t)L_16);
return L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get__descending_2();
int32_t L_19 = V_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((((int32_t)L_19) > ((int32_t)0))? 1 : 0)))))
{
goto IL_004f;
}
}
{
return (-1);
}
IL_004f:
{
return 1;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::CompareKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareKeys_m1990990721_gshared (EnumerableSorter_2_t2289956081 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index10;
int32_t L_1 = ___index21;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_000d;
}
}
{
int32_t L_2 = ___index10;
int32_t L_3 = ___index21;
NullCheck((EnumerableSorter_1_t2809374273 *)__this);
int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector2>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t2809374273 *)__this, (int32_t)L_2, (int32_t)L_3);
return L_4;
}
IL_000d:
{
return 0;
}
}
// System.Void System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::QuickSort(System.Int32[],System.Int32,System.Int32)
extern "C" void EnumerableSorter_2_QuickSort_m4182244178_gshared (EnumerableSorter_2_t2289956081 * __this, Int32U5BU5D_t385246372* ___keys0, int32_t ___lo1, int32_t ___hi2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_2_QuickSort_m4182244178_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t385246372* L_0 = ___keys0;
int32_t L_1 = ___lo1;
int32_t L_2 = ___hi2;
int32_t L_3 = ___lo1;
intptr_t L_4 = (intptr_t)GetVirtualMethodInfo(__this, 5);
Comparison_1_t2725876932 * L_5 = (Comparison_1_t2725876932 *)il2cpp_codegen_object_new(Comparison_1_t2725876932_il2cpp_TypeInfo_var);
Comparison_1__ctor_m2649066178(L_5, (RuntimeObject *)__this, (intptr_t)L_4, /*hidden argument*/Comparison_1__ctor_m2649066178_RuntimeMethod_var);
Comparer_1_t155733339 * L_6 = Comparer_1_Create_m3068808654(NULL /*static, unused*/, (Comparison_1_t2725876932 *)L_5, /*hidden argument*/Comparer_1_Create_m3068808654_RuntimeMethod_var);
Array_Sort_TisInt32_t2950945753_m263117253(NULL /*static, unused*/, (Int32U5BU5D_t385246372*)L_0, (int32_t)L_1, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), (RuntimeObject*)L_6, /*hidden argument*/Array_Sort_TisInt32_t2950945753_m263117253_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector2,System.Single>::QuickSelect(System.Int32[],System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_QuickSelect_m3554500865_gshared (EnumerableSorter_2_t2289956081 * __this, Int32U5BU5D_t385246372* ___map0, int32_t ___right1, int32_t ___idx2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = (int32_t)0;
}
IL_0002:
{
int32_t L_0 = V_0;
V_1 = (int32_t)L_0;
int32_t L_1 = ___right1;
V_2 = (int32_t)L_1;
Int32U5BU5D_t385246372* L_2 = ___map0;
int32_t L_3 = V_1;
int32_t L_4 = V_2;
int32_t L_5 = V_1;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = (int32_t)L_7;
goto IL_0016;
}
IL_0012:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0016:
{
int32_t L_9 = V_1;
Int32U5BU5D_t385246372* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_002f;
}
}
{
int32_t L_11 = V_3;
Int32U5BU5D_t385246372* L_12 = ___map0;
int32_t L_13 = V_1;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_2_t2289956081 *)__this);
int32_t L_16 = (( int32_t (*) (EnumerableSorter_2_t2289956081 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t2289956081 *)__this, (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
goto IL_002f;
}
IL_002b:
{
int32_t L_17 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002f:
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_19 = V_3;
Int32U5BU5D_t385246372* L_20 = ___map0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_2_t2289956081 *)__this);
int32_t L_24 = (( int32_t (*) (EnumerableSorter_2_t2289956081 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t2289956081 *)__this, (int32_t)L_19, (int32_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0040:
{
int32_t L_25 = V_1;
int32_t L_26 = V_2;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0064;
}
}
{
int32_t L_27 = V_1;
int32_t L_28 = V_2;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0058;
}
}
{
Int32U5BU5D_t385246372* L_29 = ___map0;
int32_t L_30 = V_1;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_4 = (int32_t)L_32;
Int32U5BU5D_t385246372* L_33 = ___map0;
int32_t L_34 = V_1;
Int32U5BU5D_t385246372* L_35 = ___map0;
int32_t L_36 = V_2;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t385246372* L_39 = ___map0;
int32_t L_40 = V_2;
int32_t L_41 = V_4;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0058:
{
int32_t L_42 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_1;
int32_t L_45 = V_2;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0016;
}
}
IL_0064:
{
int32_t L_46 = V_1;
int32_t L_47 = ___idx2;
if ((((int32_t)L_46) > ((int32_t)L_47)))
{
goto IL_006e;
}
}
{
int32_t L_48 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
goto IL_0073;
}
IL_006e:
{
int32_t L_49 = V_2;
___right1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1));
}
IL_0073:
{
int32_t L_50 = V_2;
int32_t L_51 = V_0;
int32_t L_52 = ___right1;
int32_t L_53 = V_1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)L_51))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)))))
{
goto IL_0086;
}
}
{
int32_t L_54 = V_0;
int32_t L_55 = V_2;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_0082;
}
}
{
int32_t L_56 = V_2;
___right1 = (int32_t)L_56;
}
IL_0082:
{
int32_t L_57 = V_1;
V_0 = (int32_t)L_57;
goto IL_008f;
}
IL_0086:
{
int32_t L_58 = V_1;
int32_t L_59 = ___right1;
if ((((int32_t)L_58) >= ((int32_t)L_59)))
{
goto IL_008c;
}
}
{
int32_t L_60 = V_1;
V_0 = (int32_t)L_60;
}
IL_008c:
{
int32_t L_61 = V_2;
___right1 = (int32_t)L_61;
}
IL_008f:
{
int32_t L_62 = V_0;
int32_t L_63 = ___right1;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0002;
}
}
{
Int32U5BU5D_t385246372* L_64 = ___map0;
int32_t L_65 = ___idx2;
NullCheck(L_64);
int32_t L_66 = L_65;
int32_t L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
return L_67;
}
}
#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.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
extern "C" void EnumerableSorter_2__ctor_m1265505489_gshared (EnumerableSorter_2_t2551520856 * __this, Func_2_t3934069716 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_t80490918 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_t80490918 *)__this);
(( void (*) (EnumerableSorter_1_t80490918 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_t80490918 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t3934069716 * L_0 = ___keySelector0;
__this->set__keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set__comparer_1(L_1);
bool L_2 = ___descending2;
__this->set__descending_2(L_2);
EnumerableSorter_1_t80490918 * L_3 = ___next3;
__this->set__next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::ComputeKeys(TElement[],System.Int32)
extern "C" void EnumerableSorter_2_ComputeKeys_m433751853_gshared (EnumerableSorter_2_t2551520856 * __this, Vector3U5BU5D_t1718750761* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
EnumerableSorter_1_t80490918 * G_B5_0 = NULL;
EnumerableSorter_1_t80490918 * G_B4_0 = NULL;
{
int32_t L_0 = ___count1;
__this->set__keys_4(((SingleU5BU5D_t1444911251*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0)));
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
SingleU5BU5D_t1444911251* L_1 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_2 = V_0;
Func_2_t3934069716 * L_3 = (Func_2_t3934069716 *)__this->get__keySelector_0();
Vector3U5BU5D_t1718750761* L_4 = ___elements0;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
Vector3_t3722313464 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck((Func_2_t3934069716 *)L_3);
float L_8 = (( float (*) (Func_2_t3934069716 *, Vector3_t3722313464 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t3934069716 *)L_3, (Vector3_t3722313464 )L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (float)L_8);
int32_t L_9 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0032:
{
int32_t L_10 = V_0;
int32_t L_11 = ___count1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_t80490918 * L_12 = (EnumerableSorter_1_t80490918 *)__this->get__next_3();
EnumerableSorter_1_t80490918 * L_13 = (EnumerableSorter_1_t80490918 *)L_12;
G_B4_0 = L_13;
if (L_13)
{
G_B5_0 = L_13;
goto IL_0041;
}
}
{
return;
}
IL_0041:
{
Vector3U5BU5D_t1718750761* L_14 = ___elements0;
int32_t L_15 = ___count1;
NullCheck((EnumerableSorter_1_t80490918 *)G_B5_0);
VirtActionInvoker2< Vector3U5BU5D_t1718750761*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t80490918 *)G_B5_0, (Vector3U5BU5D_t1718750761*)L_14, (int32_t)L_15);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::CompareAnyKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareAnyKeys_m3171200594_gshared (EnumerableSorter_2_t2551520856 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__comparer_1();
SingleU5BU5D_t1444911251* L_1 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
float L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
SingleU5BU5D_t1444911251* L_5 = (SingleU5BU5D_t1444911251*)__this->get__keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
float L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (float)L_4, (float)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_t80490918 * L_11 = (EnumerableSorter_1_t80490918 *)__this->get__next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_t80490918 * L_14 = (EnumerableSorter_1_t80490918 *)__this->get__next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_t80490918 *)L_14);
int32_t L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t80490918 *)L_14, (int32_t)L_15, (int32_t)L_16);
return L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get__descending_2();
int32_t L_19 = V_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((((int32_t)L_19) > ((int32_t)0))? 1 : 0)))))
{
goto IL_004f;
}
}
{
return (-1);
}
IL_004f:
{
return 1;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::CompareKeys(System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_CompareKeys_m1197412233_gshared (EnumerableSorter_2_t2551520856 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index10;
int32_t L_1 = ___index21;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_000d;
}
}
{
int32_t L_2 = ___index10;
int32_t L_3 = ___index21;
NullCheck((EnumerableSorter_1_t80490918 *)__this);
int32_t L_4 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<UnityEngine.Vector3>::CompareAnyKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t80490918 *)__this, (int32_t)L_2, (int32_t)L_3);
return L_4;
}
IL_000d:
{
return 0;
}
}
// System.Void System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::QuickSort(System.Int32[],System.Int32,System.Int32)
extern "C" void EnumerableSorter_2_QuickSort_m1585528536_gshared (EnumerableSorter_2_t2551520856 * __this, Int32U5BU5D_t385246372* ___keys0, int32_t ___lo1, int32_t ___hi2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumerableSorter_2_QuickSort_m1585528536_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t385246372* L_0 = ___keys0;
int32_t L_1 = ___lo1;
int32_t L_2 = ___hi2;
int32_t L_3 = ___lo1;
intptr_t L_4 = (intptr_t)GetVirtualMethodInfo(__this, 5);
Comparison_1_t2725876932 * L_5 = (Comparison_1_t2725876932 *)il2cpp_codegen_object_new(Comparison_1_t2725876932_il2cpp_TypeInfo_var);
Comparison_1__ctor_m2649066178(L_5, (RuntimeObject *)__this, (intptr_t)L_4, /*hidden argument*/Comparison_1__ctor_m2649066178_RuntimeMethod_var);
Comparer_1_t155733339 * L_6 = Comparer_1_Create_m3068808654(NULL /*static, unused*/, (Comparison_1_t2725876932 *)L_5, /*hidden argument*/Comparer_1_Create_m3068808654_RuntimeMethod_var);
Array_Sort_TisInt32_t2950945753_m263117253(NULL /*static, unused*/, (Int32U5BU5D_t385246372*)L_0, (int32_t)L_1, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), (RuntimeObject*)L_6, /*hidden argument*/Array_Sort_TisInt32_t2950945753_m263117253_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<UnityEngine.Vector3,System.Single>::QuickSelect(System.Int32[],System.Int32,System.Int32)
extern "C" int32_t EnumerableSorter_2_QuickSelect_m220292189_gshared (EnumerableSorter_2_t2551520856 * __this, Int32U5BU5D_t385246372* ___map0, int32_t ___right1, int32_t ___idx2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = (int32_t)0;
}
IL_0002:
{
int32_t L_0 = V_0;
V_1 = (int32_t)L_0;
int32_t L_1 = ___right1;
V_2 = (int32_t)L_1;
Int32U5BU5D_t385246372* L_2 = ___map0;
int32_t L_3 = V_1;
int32_t L_4 = V_2;
int32_t L_5 = V_1;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = (int32_t)L_7;
goto IL_0016;
}
IL_0012:
{
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0016:
{
int32_t L_9 = V_1;
Int32U5BU5D_t385246372* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_002f;
}
}
{
int32_t L_11 = V_3;
Int32U5BU5D_t385246372* L_12 = ___map0;
int32_t L_13 = V_1;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_2_t2551520856 *)__this);
int32_t L_16 = (( int32_t (*) (EnumerableSorter_2_t2551520856 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t2551520856 *)__this, (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0012;
}
}
{
goto IL_002f;
}
IL_002b:
{
int32_t L_17 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002f:
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_19 = V_3;
Int32U5BU5D_t385246372* L_20 = ___map0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_2_t2551520856 *)__this);
int32_t L_24 = (( int32_t (*) (EnumerableSorter_2_t2551520856 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((EnumerableSorter_2_t2551520856 *)__this, (int32_t)L_19, (int32_t)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0040:
{
int32_t L_25 = V_1;
int32_t L_26 = V_2;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0064;
}
}
{
int32_t L_27 = V_1;
int32_t L_28 = V_2;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0058;
}
}
{
Int32U5BU5D_t385246372* L_29 = ___map0;
int32_t L_30 = V_1;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_4 = (int32_t)L_32;
Int32U5BU5D_t385246372* L_33 = ___map0;
int32_t L_34 = V_1;
Int32U5BU5D_t385246372* L_35 = ___map0;
int32_t L_36 = V_2;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t385246372* L_39 = ___map0;
int32_t L_40 = V_2;
int32_t L_41 = V_4;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0058:
{
int32_t L_42 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_1;
int32_t L_45 = V_2;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0016;
}
}
IL_0064:
{
int32_t L_46 = V_1;
int32_t L_47 = ___idx2;
if ((((int32_t)L_46) > ((int32_t)L_47)))
{
goto IL_006e;
}
}
{
int32_t L_48 = V_1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
goto IL_0073;
}
IL_006e:
{
int32_t L_49 = V_2;
___right1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1));
}
IL_0073:
{
int32_t L_50 = V_2;
int32_t L_51 = V_0;
int32_t L_52 = ___right1;
int32_t L_53 = V_1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)L_51))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)))))
{
goto IL_0086;
}
}
{
int32_t L_54 = V_0;
int32_t L_55 = V_2;
if ((((int32_t)L_54) >= ((int32_t)L_55)))
{
goto IL_0082;
}
}
{
int32_t L_56 = V_2;
___right1 = (int32_t)L_56;
}
IL_0082:
{
int32_t L_57 = V_1;
V_0 = (int32_t)L_57;
goto IL_008f;
}
IL_0086:
{
int32_t L_58 = V_1;
int32_t L_59 = ___right1;
if ((((int32_t)L_58) >= ((int32_t)L_59)))
{
goto IL_008c;
}
}
{
int32_t L_60 = V_1;
V_0 = (int32_t)L_60;
}
IL_008c:
{
int32_t L_61 = V_2;
___right1 = (int32_t)L_61;
}
IL_008f:
{
int32_t L_62 = V_0;
int32_t L_63 = ___right1;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0002;
}
}
{
Int32U5BU5D_t385246372* L_64 = ___map0;
int32_t L_65 = ___idx2;
NullCheck(L_64);
int32_t L_66 = L_65;
int32_t L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
return L_67;
}
}
#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.Linq.Expressions.Compiler.KeyedStack`2<System.Object,System.Object>::Push(TKey,TValue)
extern "C" void KeyedStack_2_Push_m1649991513_gshared (KeyedStack_2_t1207398359 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
Stack_1_t3923495619 * V_0 = NULL;
{
Dictionary_2_t975934607 * L_0 = (Dictionary_2_t975934607 *)__this->get__data_0();
RuntimeObject * L_1 = ___key0;
NullCheck((Dictionary_2_t975934607 *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t975934607 *, RuntimeObject *, Stack_1_t3923495619 **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t975934607 *)L_0, (RuntimeObject *)L_1, (Stack_1_t3923495619 **)(Stack_1_t3923495619 **)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
if (L_2)
{
goto IL_0023;
}
}
{
Dictionary_2_t975934607 * L_3 = (Dictionary_2_t975934607 *)__this->get__data_0();
RuntimeObject * L_4 = ___key0;
Stack_1_t3923495619 * L_5 = (Stack_1_t3923495619 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (Stack_1_t3923495619 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
Stack_1_t3923495619 * L_6 = (Stack_1_t3923495619 *)L_5;
V_0 = (Stack_1_t3923495619 *)L_6;
NullCheck((Dictionary_2_t975934607 *)L_3);
(( void (*) (Dictionary_2_t975934607 *, RuntimeObject *, Stack_1_t3923495619 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t975934607 *)L_3, (RuntimeObject *)L_4, (Stack_1_t3923495619 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
}
IL_0023:
{
Stack_1_t3923495619 * L_7 = V_0;
RuntimeObject * L_8 = ___value1;
NullCheck((Stack_1_t3923495619 *)L_7);
(( void (*) (Stack_1_t3923495619 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Stack_1_t3923495619 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return;
}
}
// TValue System.Linq.Expressions.Compiler.KeyedStack`2<System.Object,System.Object>::TryPop(TKey)
extern "C" RuntimeObject * KeyedStack_2_TryPop_m2038772969_gshared (KeyedStack_2_t1207398359 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
Stack_1_t3923495619 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
{
Dictionary_2_t975934607 * L_0 = (Dictionary_2_t975934607 *)__this->get__data_0();
RuntimeObject * L_1 = ___key0;
NullCheck((Dictionary_2_t975934607 *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t975934607 *, RuntimeObject *, Stack_1_t3923495619 **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t975934607 *)L_0, (RuntimeObject *)L_1, (Stack_1_t3923495619 **)(Stack_1_t3923495619 **)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
if (!L_2)
{
goto IL_001a;
}
}
{
Stack_1_t3923495619 * L_3 = V_0;
NullCheck((Stack_1_t3923495619 *)L_3);
bool L_4 = (( bool (*) (Stack_1_t3923495619 *, RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Stack_1_t3923495619 *)L_3, (RuntimeObject **)(RuntimeObject **)(&V_1), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
if (L_4)
{
goto IL_0024;
}
}
IL_001a:
{
il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *));
RuntimeObject * L_5 = V_2;
return L_5;
}
IL_0024:
{
RuntimeObject * L_6 = V_1;
return L_6;
}
}
// System.Void System.Linq.Expressions.Compiler.KeyedStack`2<System.Object,System.Object>::.ctor()
extern "C" void KeyedStack_2__ctor_m2448742203_gshared (KeyedStack_2_t1207398359 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t975934607 * L_0 = (Dictionary_2_t975934607 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6));
(( void (*) (Dictionary_2_t975934607 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
__this->set__data_0(L_0);
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
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.Linq.Expressions.Expression`1<System.Object>::.ctor(System.Linq.Expressions.Expression)
extern "C" void Expression_1__ctor_m3684709973_gshared (Expression_1_t3066134371 * __this, Expression_t1588164026 * ___body0, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((LambdaExpression_t3131094331 *)__this);
LambdaExpression__ctor_m1688932709((LambdaExpression_t3131094331 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.Expression`1<System.Object>::get_TypeCore()
extern "C" Type_t * Expression_1_get_TypeCore_m3285720640_gshared (Expression_1_t3066134371 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression_1_get_TypeCore_m3285720640_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Type System.Linq.Expressions.Expression`1<System.Object>::get_PublicType()
extern "C" Type_t * Expression_1_get_PublicType_m2211744302_gshared (Expression_1_t3066134371 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression_1_get_PublicType_m2211744302_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
// TDelegate System.Linq.Expressions.Expression`1<System.Object>::Compile()
extern "C" RuntimeObject * Expression_1_Compile_m1982073413_gshared (Expression_1_t3066134371 * __this, const RuntimeMethod* method)
{
{
NullCheck((Expression_1_t3066134371 *)__this);
RuntimeObject * L_0 = (( RuntimeObject * (*) (Expression_1_t3066134371 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Expression_1_t3066134371 *)__this, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_0;
}
}
// TDelegate System.Linq.Expressions.Expression`1<System.Object>::Compile(System.Boolean)
extern "C" RuntimeObject * Expression_1_Compile_m310279028_gshared (Expression_1_t3066134371 * __this, bool ___preferInterpretation0, const RuntimeMethod* method)
{
{
Delegate_t1188392813 * L_0 = LambdaCompiler_Compile_m2654530048(NULL /*static, unused*/, (LambdaExpression_t3131094331 *)__this, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * Expression_1_Rewrite_m3186661506_gshared (Expression_1_t3066134371 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression_1_Rewrite_m3186661506_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = ContractUtils_get_Unreachable_m2799342333(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Expression_1_Rewrite_m3186661506_RuntimeMethod_var);
}
}
// System.Linq.Expressions.Expression System.Linq.Expressions.Expression`1<System.Object>::Accept(System.Linq.Expressions.ExpressionVisitor)
extern "C" Expression_t1588164026 * Expression_1_Accept_m2753525421_gshared (Expression_1_t3066134371 * __this, ExpressionVisitor_t1561124052 * ___visitor0, const RuntimeMethod* method)
{
{
ExpressionVisitor_t1561124052 * L_0 = ___visitor0;
NullCheck((ExpressionVisitor_t1561124052 *)L_0);
Expression_t1588164026 * L_1 = GenericVirtFuncInvoker1< Expression_t1588164026 *, Expression_1_t3066134371 * >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4), (ExpressionVisitor_t1561124052 *)L_0, (Expression_1_t3066134371 *)__this);
return L_1;
}
}
// System.Linq.Expressions.LambdaExpression System.Linq.Expressions.Expression`1<System.Object>::Accept(System.Linq.Expressions.Compiler.StackSpiller)
extern "C" LambdaExpression_t3131094331 * Expression_1_Accept_m2038756455_gshared (Expression_1_t3066134371 * __this, StackSpiller_t2314802664 * ___spiller0, const RuntimeMethod* method)
{
{
StackSpiller_t2314802664 * L_0 = ___spiller0;
NullCheck((StackSpiller_t2314802664 *)L_0);
Expression_1_t3066134371 * L_1 = (( Expression_1_t3066134371 * (*) (StackSpiller_t2314802664 *, Expression_1_t3066134371 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((StackSpiller_t2314802664 *)L_0, (Expression_1_t3066134371 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_1;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression`1<System.Object>::Create(System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>)
extern "C" Expression_1_t3066134371 * Expression_1_Create_m3159949416_gshared (RuntimeObject * __this /* static, unused */, Expression_t1588164026 * ___body0, String_t* ___name1, bool ___tailCall2, RuntimeObject* ___parameters3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression_1_Create_m3159949416_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___name1;
if (L_0)
{
goto IL_0073;
}
}
{
bool L_1 = ___tailCall2;
if (L_1)
{
goto IL_0073;
}
}
{
RuntimeObject* L_2 = ___parameters3;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>::get_Count() */, IReadOnlyCollection_1_t1121538021_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
V_0 = (int32_t)L_3;
int32_t L_4 = V_0;
switch (L_4)
{
case 0:
{
goto IL_0025;
}
case 1:
{
goto IL_002c;
}
case 2:
{
goto IL_003a;
}
case 3:
{
goto IL_004f;
}
}
}
{
goto IL_006b;
}
IL_0025:
{
Expression_t1588164026 * L_5 = ___body0;
Expression0_1_t2373022017 * L_6 = (Expression0_1_t2373022017 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 6));
(( void (*) (Expression0_1_t2373022017 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)(L_6, (Expression_t1588164026 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7));
return L_6;
}
IL_002c:
{
Expression_t1588164026 * L_7 = ___body0;
RuntimeObject* L_8 = ___parameters3;
NullCheck((RuntimeObject*)L_8);
ParameterExpression_t1118422084 * L_9 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)0);
Expression1_1_t3696744484 * L_10 = (Expression1_1_t3696744484 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8));
(( void (*) (Expression1_1_t3696744484 *, Expression_t1588164026 *, ParameterExpression_t1118422084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)(L_10, (Expression_t1588164026 *)L_7, (ParameterExpression_t1118422084 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
return L_10;
}
IL_003a:
{
Expression_t1588164026 * L_11 = ___body0;
RuntimeObject* L_12 = ___parameters3;
NullCheck((RuntimeObject*)L_12);
ParameterExpression_t1118422084 * L_13 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_12, (int32_t)0);
RuntimeObject* L_14 = ___parameters3;
NullCheck((RuntimeObject*)L_14);
ParameterExpression_t1118422084 * L_15 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_14, (int32_t)1);
Expression2_1_t4020544379 * L_16 = (Expression2_1_t4020544379 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 10));
(( void (*) (Expression2_1_t4020544379 *, Expression_t1588164026 *, ParameterExpression_t1118422084 *, ParameterExpression_t1118422084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)(L_16, (Expression_t1588164026 *)L_11, (ParameterExpression_t1118422084 *)L_13, (ParameterExpression_t1118422084 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return L_16;
}
IL_004f:
{
Expression_t1588164026 * L_17 = ___body0;
RuntimeObject* L_18 = ___parameters3;
NullCheck((RuntimeObject*)L_18);
ParameterExpression_t1118422084 * L_19 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_18, (int32_t)0);
RuntimeObject* L_20 = ___parameters3;
NullCheck((RuntimeObject*)L_20);
ParameterExpression_t1118422084 * L_21 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_20, (int32_t)1);
RuntimeObject* L_22 = ___parameters3;
NullCheck((RuntimeObject*)L_22);
ParameterExpression_t1118422084 * L_23 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_22, (int32_t)2);
Expression3_1_t1049299550 * L_24 = (Expression3_1_t1049299550 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12));
(( void (*) (Expression3_1_t1049299550 *, Expression_t1588164026 *, ParameterExpression_t1118422084 *, ParameterExpression_t1118422084 *, ParameterExpression_t1118422084 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_24, (Expression_t1588164026 *)L_17, (ParameterExpression_t1118422084 *)L_19, (ParameterExpression_t1118422084 *)L_21, (ParameterExpression_t1118422084 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return L_24;
}
IL_006b:
{
Expression_t1588164026 * L_25 = ___body0;
RuntimeObject* L_26 = ___parameters3;
ExpressionN_1_t953682751 * L_27 = (ExpressionN_1_t953682751 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14));
(( void (*) (ExpressionN_1_t953682751 *, Expression_t1588164026 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)(L_27, (Expression_t1588164026 *)L_25, (RuntimeObject*)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
return L_27;
}
IL_0073:
{
Expression_t1588164026 * L_28 = ___body0;
String_t* L_29 = ___name1;
bool L_30 = ___tailCall2;
RuntimeObject* L_31 = ___parameters3;
FullExpression_1_t2654851524 * L_32 = (FullExpression_1_t2654851524 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 16));
(( void (*) (FullExpression_1_t2654851524 *, Expression_t1588164026 *, String_t*, bool, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17)->methodPointer)(L_32, (Expression_t1588164026 *)L_28, (String_t*)L_29, (bool)L_30, (RuntimeObject*)L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 17));
return L_32;
}
}
#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.Linq.Expressions.Expression0`1<System.Object>::.ctor(System.Linq.Expressions.Expression)
extern "C" void Expression0_1__ctor_m494008423_gshared (Expression0_1_t2373022017 * __this, Expression_t1588164026 * ___body0, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((Expression_1_t3066134371 *)__this);
(( void (*) (Expression_1_t3066134371 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Expression_1_t3066134371 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
return;
}
}
// System.Int32 System.Linq.Expressions.Expression0`1<System.Object>::get_ParameterCount()
extern "C" int32_t Expression0_1_get_ParameterCount_m532561507_gshared (Expression0_1_t2373022017 * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression0`1<System.Object>::GetParameter(System.Int32)
extern "C" ParameterExpression_t1118422084 * Expression0_1_GetParameter_m1094097559_gshared (Expression0_1_t2373022017 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression0_1_GetParameter_m1094097559_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_ArgumentOutOfRange_m1286910533(NULL /*static, unused*/, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Expression0_1_GetParameter_m1094097559_RuntimeMethod_var);
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.Expression0`1<System.Object>::GetOrMakeParameters()
extern "C" ReadOnlyCollection_1_t2330998371 * Expression0_1_GetOrMakeParameters_m1663143714_gshared (Expression0_1_t2373022017 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression0_1_GetOrMakeParameters_m1663143714_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyReadOnlyCollection_1_t924173605_il2cpp_TypeInfo_var);
ReadOnlyCollection_1_t2330998371 * L_0 = ((EmptyReadOnlyCollection_1_t924173605_StaticFields*)il2cpp_codegen_static_fields_for(EmptyReadOnlyCollection_1_t924173605_il2cpp_TypeInfo_var))->get_Instance_0();
return L_0;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression0`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * Expression0_1_Rewrite_m2971471140_gshared (Expression0_1_t2373022017 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression0_1_Rewrite_m2971471140_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Expression_t1588164026 * L_0 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_1 = ___parameters1;
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_2 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_0, (ParameterExpressionU5BU5D_t2413162029*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_2;
}
}
#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.Linq.Expressions.Expression1`1<System.Object>::.ctor(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression)
extern "C" void Expression1_1__ctor_m4006781459_gshared (Expression1_1_t3696744484 * __this, Expression_t1588164026 * ___body0, ParameterExpression_t1118422084 * ___par01, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((Expression_1_t3066134371 *)__this);
(( void (*) (Expression_1_t3066134371 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Expression_1_t3066134371 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParameterExpression_t1118422084 * L_1 = ___par01;
__this->set__par0_4(L_1);
return;
}
}
// System.Int32 System.Linq.Expressions.Expression1`1<System.Object>::get_ParameterCount()
extern "C" int32_t Expression1_1_get_ParameterCount_m4096886585_gshared (Expression1_1_t3696744484 * __this, const RuntimeMethod* method)
{
{
return 1;
}
}
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression1`1<System.Object>::GetParameter(System.Int32)
extern "C" ParameterExpression_t1118422084 * Expression1_1_GetParameter_m2723364996_gshared (Expression1_1_t3696744484 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression1_1_GetParameter_m2723364996_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if (L_0)
{
goto IL_000f;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_2 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_1, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
return L_2;
}
IL_000f:
{
Exception_t * L_3 = Error_ArgumentOutOfRange_m1286910533(NULL /*static, unused*/, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Expression1_1_GetParameter_m2723364996_RuntimeMethod_var);
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.Expression1`1<System.Object>::GetOrMakeParameters()
extern "C" ReadOnlyCollection_1_t2330998371 * Expression1_1_GetOrMakeParameters_m891413181_gshared (Expression1_1_t3696744484 * __this, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__par0_4();
ReadOnlyCollection_1_t2330998371 * L_1 = ExpressionUtils_ReturnReadOnly_m918601409(NULL /*static, unused*/, (RuntimeObject*)__this, (RuntimeObject **)(RuntimeObject **)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression1`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * Expression1_1_Rewrite_m4145574155_gshared (Expression1_1_t3696744484 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression1_1_Rewrite_m4145574155_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ParameterExpressionU5BU5D_t2413162029* L_0 = ___parameters1;
if (!L_0)
{
goto IL_000b;
}
}
{
Expression_t1588164026 * L_1 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_2 = ___parameters1;
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_3 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_1, (ParameterExpressionU5BU5D_t2413162029*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_3;
}
IL_000b:
{
Expression_t1588164026 * L_4 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_5 = (ParameterExpressionU5BU5D_t2413162029*)((ParameterExpressionU5BU5D_t2413162029*)SZArrayNew(ParameterExpressionU5BU5D_t2413162029_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeObject * L_6 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_7 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_6, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (ParameterExpression_t1118422084 *)L_7);
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_8 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_4, (ParameterExpressionU5BU5D_t2413162029*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_8;
}
}
#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.Linq.Expressions.Expression2`1<System.Object>::.ctor(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.ParameterExpression)
extern "C" void Expression2_1__ctor_m3082832378_gshared (Expression2_1_t4020544379 * __this, Expression_t1588164026 * ___body0, ParameterExpression_t1118422084 * ___par01, ParameterExpression_t1118422084 * ___par12, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((Expression_1_t3066134371 *)__this);
(( void (*) (Expression_1_t3066134371 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Expression_1_t3066134371 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParameterExpression_t1118422084 * L_1 = ___par01;
__this->set__par0_4(L_1);
ParameterExpression_t1118422084 * L_2 = ___par12;
__this->set__par1_5(L_2);
return;
}
}
// System.Int32 System.Linq.Expressions.Expression2`1<System.Object>::get_ParameterCount()
extern "C" int32_t Expression2_1_get_ParameterCount_m3534299456_gshared (Expression2_1_t4020544379 * __this, const RuntimeMethod* method)
{
{
return 2;
}
}
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression2`1<System.Object>::GetParameter(System.Int32)
extern "C" ParameterExpression_t1118422084 * Expression2_1_GetParameter_m2272117852_gshared (Expression2_1_t4020544379 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression2_1_GetParameter_m2272117852_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if (!L_0)
{
goto IL_0009;
}
}
{
int32_t L_1 = ___index0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
goto IL_001c;
}
IL_0009:
{
RuntimeObject * L_2 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_3 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_2, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
return L_3;
}
IL_0015:
{
ParameterExpression_t1118422084 * L_4 = (ParameterExpression_t1118422084 *)__this->get__par1_5();
return L_4;
}
IL_001c:
{
Exception_t * L_5 = Error_ArgumentOutOfRange_m1286910533(NULL /*static, unused*/, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Expression2_1_GetParameter_m2272117852_RuntimeMethod_var);
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.Expression2`1<System.Object>::GetOrMakeParameters()
extern "C" ReadOnlyCollection_1_t2330998371 * Expression2_1_GetOrMakeParameters_m743796555_gshared (Expression2_1_t4020544379 * __this, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__par0_4();
ReadOnlyCollection_1_t2330998371 * L_1 = ExpressionUtils_ReturnReadOnly_m918601409(NULL /*static, unused*/, (RuntimeObject*)__this, (RuntimeObject **)(RuntimeObject **)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression2`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * Expression2_1_Rewrite_m815156414_gshared (Expression2_1_t4020544379 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression2_1_Rewrite_m815156414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ParameterExpressionU5BU5D_t2413162029* L_0 = ___parameters1;
if (!L_0)
{
goto IL_000b;
}
}
{
Expression_t1588164026 * L_1 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_2 = ___parameters1;
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_3 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_1, (ParameterExpressionU5BU5D_t2413162029*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_3;
}
IL_000b:
{
Expression_t1588164026 * L_4 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_5 = (ParameterExpressionU5BU5D_t2413162029*)((ParameterExpressionU5BU5D_t2413162029*)SZArrayNew(ParameterExpressionU5BU5D_t2413162029_il2cpp_TypeInfo_var, (uint32_t)2));
RuntimeObject * L_6 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_7 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_6, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (ParameterExpression_t1118422084 *)L_7);
ParameterExpressionU5BU5D_t2413162029* L_8 = (ParameterExpressionU5BU5D_t2413162029*)L_5;
ParameterExpression_t1118422084 * L_9 = (ParameterExpression_t1118422084 *)__this->get__par1_5();
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (ParameterExpression_t1118422084 *)L_9);
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_10 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_4, (ParameterExpressionU5BU5D_t2413162029*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_10;
}
}
#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.Linq.Expressions.Expression3`1<System.Object>::.ctor(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.ParameterExpression)
extern "C" void Expression3_1__ctor_m2417219630_gshared (Expression3_1_t1049299550 * __this, Expression_t1588164026 * ___body0, ParameterExpression_t1118422084 * ___par01, ParameterExpression_t1118422084 * ___par12, ParameterExpression_t1118422084 * ___par23, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((Expression_1_t3066134371 *)__this);
(( void (*) (Expression_1_t3066134371 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Expression_1_t3066134371 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParameterExpression_t1118422084 * L_1 = ___par01;
__this->set__par0_4(L_1);
ParameterExpression_t1118422084 * L_2 = ___par12;
__this->set__par1_5(L_2);
ParameterExpression_t1118422084 * L_3 = ___par23;
__this->set__par2_6(L_3);
return;
}
}
// System.Int32 System.Linq.Expressions.Expression3`1<System.Object>::get_ParameterCount()
extern "C" int32_t Expression3_1_get_ParameterCount_m2300061033_gshared (Expression3_1_t1049299550 * __this, const RuntimeMethod* method)
{
{
return 3;
}
}
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.Expression3`1<System.Object>::GetParameter(System.Int32)
extern "C" ParameterExpression_t1118422084 * Expression3_1_GetParameter_m2319254964_gshared (Expression3_1_t1049299550 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression3_1_GetParameter_m2319254964_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
switch (L_0)
{
case 0:
{
goto IL_0014;
}
case 1:
{
goto IL_0020;
}
case 2:
{
goto IL_0027;
}
}
}
{
goto IL_002e;
}
IL_0014:
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_2 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_1, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
return L_2;
}
IL_0020:
{
ParameterExpression_t1118422084 * L_3 = (ParameterExpression_t1118422084 *)__this->get__par1_5();
return L_3;
}
IL_0027:
{
ParameterExpression_t1118422084 * L_4 = (ParameterExpression_t1118422084 *)__this->get__par2_6();
return L_4;
}
IL_002e:
{
Exception_t * L_5 = Error_ArgumentOutOfRange_m1286910533(NULL /*static, unused*/, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Expression3_1_GetParameter_m2319254964_RuntimeMethod_var);
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.Expression3`1<System.Object>::GetOrMakeParameters()
extern "C" ReadOnlyCollection_1_t2330998371 * Expression3_1_GetOrMakeParameters_m4160661748_gshared (Expression3_1_t1049299550 * __this, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__par0_4();
ReadOnlyCollection_1_t2330998371 * L_1 = ExpressionUtils_ReturnReadOnly_m918601409(NULL /*static, unused*/, (RuntimeObject*)__this, (RuntimeObject **)(RuntimeObject **)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.Expression3`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * Expression3_1_Rewrite_m2922686966_gshared (Expression3_1_t1049299550 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Expression3_1_Rewrite_m2922686966_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ParameterExpressionU5BU5D_t2413162029* L_0 = ___parameters1;
if (!L_0)
{
goto IL_000b;
}
}
{
Expression_t1588164026 * L_1 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_2 = ___parameters1;
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_3 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_1, (ParameterExpressionU5BU5D_t2413162029*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_3;
}
IL_000b:
{
Expression_t1588164026 * L_4 = ___body0;
ParameterExpressionU5BU5D_t2413162029* L_5 = (ParameterExpressionU5BU5D_t2413162029*)((ParameterExpressionU5BU5D_t2413162029*)SZArrayNew(ParameterExpressionU5BU5D_t2413162029_il2cpp_TypeInfo_var, (uint32_t)3));
RuntimeObject * L_6 = (RuntimeObject *)__this->get__par0_4();
ParameterExpression_t1118422084 * L_7 = ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928(NULL /*static, unused*/, (RuntimeObject *)L_6, /*hidden argument*/ExpressionUtils_ReturnObject_TisParameterExpression_t1118422084_m4191623928_RuntimeMethod_var);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (ParameterExpression_t1118422084 *)L_7);
ParameterExpressionU5BU5D_t2413162029* L_8 = (ParameterExpressionU5BU5D_t2413162029*)L_5;
ParameterExpression_t1118422084 * L_9 = (ParameterExpression_t1118422084 *)__this->get__par1_5();
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (ParameterExpression_t1118422084 *)L_9);
ParameterExpressionU5BU5D_t2413162029* L_10 = (ParameterExpressionU5BU5D_t2413162029*)L_8;
ParameterExpression_t1118422084 * L_11 = (ParameterExpression_t1118422084 *)__this->get__par2_6();
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (ParameterExpression_t1118422084 *)L_11);
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_12 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, ParameterExpressionU5BU5D_t2413162029*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)L_4, (ParameterExpressionU5BU5D_t2413162029*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_12;
}
}
#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.Linq.Expressions.ExpressionN`1<System.Object>::.ctor(System.Linq.Expressions.Expression,System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>)
extern "C" void ExpressionN_1__ctor_m340653622_gshared (ExpressionN_1_t953682751 * __this, Expression_t1588164026 * ___body0, RuntimeObject* ___parameters1, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((Expression_1_t3066134371 *)__this);
(( void (*) (Expression_1_t3066134371 *, Expression_t1588164026 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Expression_1_t3066134371 *)__this, (Expression_t1588164026 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RuntimeObject* L_1 = ___parameters1;
__this->set__parameters_4(L_1);
return;
}
}
// System.Int32 System.Linq.Expressions.ExpressionN`1<System.Object>::get_ParameterCount()
extern "C" int32_t ExpressionN_1_get_ParameterCount_m1631903886_gshared (ExpressionN_1_t953682751 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExpressionN_1_get_ParameterCount_m1631903886_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__parameters_4();
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>::get_Count() */, IReadOnlyCollection_1_t1121538021_il2cpp_TypeInfo_var, (RuntimeObject*)L_0);
return L_1;
}
}
// System.Linq.Expressions.ParameterExpression System.Linq.Expressions.ExpressionN`1<System.Object>::GetParameter(System.Int32)
extern "C" ParameterExpression_t1118422084 * ExpressionN_1_GetParameter_m845930414_gshared (ExpressionN_1_t953682751 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExpressionN_1_GetParameter_m845930414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__parameters_4();
int32_t L_1 = ___index0;
NullCheck((RuntimeObject*)L_0);
ParameterExpression_t1118422084 * L_2 = InterfaceFuncInvoker1< ParameterExpression_t1118422084 *, int32_t >::Invoke(0 /* !0 System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>::get_Item(System.Int32) */, IReadOnlyList_1_t1682844990_il2cpp_TypeInfo_var, (RuntimeObject*)L_0, (int32_t)L_1);
return L_2;
}
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression> System.Linq.Expressions.ExpressionN`1<System.Object>::GetOrMakeParameters()
extern "C" ReadOnlyCollection_1_t2330998371 * ExpressionN_1_GetOrMakeParameters_m1731466558_gshared (ExpressionN_1_t953682751 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExpressionN_1_GetOrMakeParameters_m1731466558_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject** L_0 = (RuntimeObject**)__this->get_address_of__parameters_4();
ReadOnlyCollection_1_t2330998371 * L_1 = ExpressionUtils_ReturnReadOnly_TisParameterExpression_t1118422084_m3585367294(NULL /*static, unused*/, (RuntimeObject**)(RuntimeObject**)L_0, /*hidden argument*/ExpressionUtils_ReturnReadOnly_TisParameterExpression_t1118422084_m3585367294_RuntimeMethod_var);
return L_1;
}
}
// System.Linq.Expressions.Expression`1<TDelegate> System.Linq.Expressions.ExpressionN`1<System.Object>::Rewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression[])
extern "C" Expression_1_t3066134371 * ExpressionN_1_Rewrite_m3421313574_gshared (ExpressionN_1_t953682751 * __this, Expression_t1588164026 * ___body0, ParameterExpressionU5BU5D_t2413162029* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExpressionN_1_Rewrite_m3421313574_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* G_B2_0 = NULL;
bool G_B2_1 = false;
String_t* G_B2_2 = NULL;
Expression_t1588164026 * G_B2_3 = NULL;
RuntimeObject* G_B1_0 = NULL;
bool G_B1_1 = false;
String_t* G_B1_2 = NULL;
Expression_t1588164026 * G_B1_3 = NULL;
{
Expression_t1588164026 * L_0 = ___body0;
NullCheck((LambdaExpression_t3131094331 *)__this);
String_t* L_1 = LambdaExpression_get_Name_m2686005759((LambdaExpression_t3131094331 *)__this, /*hidden argument*/NULL);
NullCheck((LambdaExpression_t3131094331 *)__this);
bool L_2 = LambdaExpression_get_TailCall_m2466890592((LambdaExpression_t3131094331 *)__this, /*hidden argument*/NULL);
ParameterExpressionU5BU5D_t2413162029* L_3 = ___parameters1;
V_0 = (RuntimeObject*)L_3;
RuntimeObject* L_4 = V_0;
RuntimeObject* L_5 = (RuntimeObject*)L_4;
G_B1_0 = L_5;
G_B1_1 = L_2;
G_B1_2 = L_1;
G_B1_3 = L_0;
if (L_5)
{
G_B2_0 = L_5;
G_B2_1 = L_2;
G_B2_2 = L_1;
G_B2_3 = L_0;
goto IL_001a;
}
}
{
RuntimeObject* L_6 = (RuntimeObject*)__this->get__parameters_4();
G_B2_0 = L_6;
G_B2_1 = G_B1_1;
G_B2_2 = G_B1_2;
G_B2_3 = G_B1_3;
}
IL_001a:
{
IL2CPP_RUNTIME_CLASS_INIT(Expression_t1588164026_il2cpp_TypeInfo_var);
Expression_1_t3066134371 * L_7 = (( Expression_1_t3066134371 * (*) (RuntimeObject * /* static, unused */, Expression_t1588164026 *, String_t*, bool, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Expression_t1588164026 *)G_B2_3, (String_t*)G_B2_2, (bool)G_B2_1, (RuntimeObject*)G_B2_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_7;
}
}
#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.Linq.Expressions.FullExpression`1<System.Object>::.ctor(System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.Generic.IReadOnlyList`1<System.Linq.Expressions.ParameterExpression>)
extern "C" void FullExpression_1__ctor_m2109321111_gshared (FullExpression_1_t2654851524 * __this, Expression_t1588164026 * ___body0, String_t* ___name1, bool ___tailCall2, RuntimeObject* ___parameters3, const RuntimeMethod* method)
{
{
Expression_t1588164026 * L_0 = ___body0;
RuntimeObject* L_1 = ___parameters3;
NullCheck((ExpressionN_1_t953682751 *)__this);
(( void (*) (ExpressionN_1_t953682751 *, Expression_t1588164026 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ExpressionN_1_t953682751 *)__this, (Expression_t1588164026 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
String_t* L_2 = ___name1;
__this->set_U3CNameCoreU3Ek__BackingField_5(L_2);
bool L_3 = ___tailCall2;
__this->set_U3CTailCallCoreU3Ek__BackingField_6(L_3);
return;
}
}
// System.String System.Linq.Expressions.FullExpression`1<System.Object>::get_NameCore()
extern "C" String_t* FullExpression_1_get_NameCore_m1327328542_gshared (FullExpression_1_t2654851524 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = (String_t*)__this->get_U3CNameCoreU3Ek__BackingField_5();
return L_0;
}
}
// System.Boolean System.Linq.Expressions.FullExpression`1<System.Object>::get_TailCallCore()
extern "C" bool FullExpression_1_get_TailCallCore_m1536854038_gshared (FullExpression_1_t2654851524 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_U3CTailCallCoreU3Ek__BackingField_6();
return L_0;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m3500780833_gshared (PrimitiveParameterExpression_1_t1377923958 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Boolean>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m1857664629_gshared (PrimitiveParameterExpression_1_t1377923958 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m1857664629_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m1634132519_gshared (PrimitiveParameterExpression_1_t2414932369 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Byte>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m10081337_gshared (PrimitiveParameterExpression_1_t2414932369 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m10081337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m553001474_gshared (PrimitiveParameterExpression_1_t620129167 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Char>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m4053833933_gshared (PrimitiveParameterExpression_1_t620129167 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m4053833933_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m2960806567_gshared (PrimitiveParameterExpression_1_t724198482 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.DateTime>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m3682048729_gshared (PrimitiveParameterExpression_1_t724198482 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m3682048729_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m514739218_gshared (PrimitiveParameterExpression_1_t4228895373 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Decimal>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m2547347994_gshared (PrimitiveParameterExpression_1_t4228895373 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m2547347994_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m4084668000_gshared (PrimitiveParameterExpression_1_t1875301356 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Double>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m2804960795_gshared (PrimitiveParameterExpression_1_t1875301356 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m2804960795_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m350176711_gshared (PrimitiveParameterExpression_1_t3833456380 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int16>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m403212958_gshared (PrimitiveParameterExpression_1_t3833456380 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m403212958_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m1555845511_gshared (PrimitiveParameterExpression_1_t4231581746 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int32>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m1427244131_gshared (PrimitiveParameterExpression_1_t4231581746 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m1427244131_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m3232937289_gshared (PrimitiveParameterExpression_1_t722236001 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Int64>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m3985731604_gshared (PrimitiveParameterExpression_1_t722236001 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m3985731604_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m1338975280_gshared (PrimitiveParameterExpression_1_t65774861 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Object>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m1929407240_gshared (PrimitiveParameterExpression_1_t65774861 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m1929407240_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m668002214_gshared (PrimitiveParameterExpression_1_t2950213655 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.SByte>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m3895280629_gshared (PrimitiveParameterExpression_1_t2950213655 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m3895280629_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m4171625175_gshared (PrimitiveParameterExpression_1_t2677902767 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.Single>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m4021296104_gshared (PrimitiveParameterExpression_1_t2677902767 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m4021296104_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m2532337424_gshared (PrimitiveParameterExpression_1_t3458360951 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt16>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m2725934601_gshared (PrimitiveParameterExpression_1_t3458360951 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m2725934601_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m1733864252_gshared (PrimitiveParameterExpression_1_t3840697971 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt32>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m3038120241_gshared (PrimitiveParameterExpression_1_t3840697971 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m3038120241_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>::.ctor(System.String)
extern "C" void PrimitiveParameterExpression_1__ctor_m1241499324_gshared (PrimitiveParameterExpression_1_t1119708789 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
NullCheck((ParameterExpression_t1118422084 *)__this);
ParameterExpression__ctor_m3632248322((ParameterExpression_t1118422084 *)__this, (String_t*)L_0, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Linq.Expressions.PrimitiveParameterExpression`1<System.UInt64>::get_Type()
extern "C" Type_t * PrimitiveParameterExpression_1_get_Type_m928177355_gshared (PrimitiveParameterExpression_1_t1119708789 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PrimitiveParameterExpression_1_get_Type_m928177355_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
return L_1;
}
}
#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.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>::.cctor()
extern "C" void U3CU3Ec__4_3__cctor_m1095829845_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec__4_3_t150458201 * L_0 = (U3CU3Ec__4_3_t150458201 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec__4_3_t150458201 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec__4_3_t150458201_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>::.ctor()
extern "C" void U3CU3Ec__4_3__ctor_m1870623751_gshared (U3CU3Ec__4_3_t150458201 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags>::<RunOnEmptyStack>b__4_0(System.Object)
extern "C" RuntimeObject * U3CU3Ec__4_3_U3CRunOnEmptyStackU3Eb__4_0_m63378265_gshared (U3CU3Ec__4_3_t150458201 * __this, RuntimeObject * ___s0, const RuntimeMethod* method)
{
Tuple_4_t2317369846 * V_0 = NULL;
{
RuntimeObject * L_0 = ___s0;
V_0 = (Tuple_4_t2317369846 *)((Tuple_4_t2317369846 *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
Tuple_4_t2317369846 * L_1 = V_0;
NullCheck((Tuple_4_t2317369846 *)L_1);
Action_3_t376445962 * L_2 = (( Action_3_t376445962 * (*) (Tuple_4_t2317369846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Tuple_4_t2317369846 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Tuple_4_t2317369846 * L_3 = V_0;
NullCheck((Tuple_4_t2317369846 *)L_3);
RuntimeObject * L_4 = (( RuntimeObject * (*) (Tuple_4_t2317369846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Tuple_4_t2317369846 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
Tuple_4_t2317369846 * L_5 = V_0;
NullCheck((Tuple_4_t2317369846 *)L_5);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Tuple_4_t2317369846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Tuple_4_t2317369846 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
Tuple_4_t2317369846 * L_7 = V_0;
NullCheck((Tuple_4_t2317369846 *)L_7);
int32_t L_8 = (( int32_t (*) (Tuple_4_t2317369846 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Tuple_4_t2317369846 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((Action_3_t376445962 *)L_2);
(( void (*) (Action_3_t376445962 *, RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Action_3_t376445962 *)L_2, (RuntimeObject *)L_4, (RuntimeObject *)L_6, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return NULL;
}
}
#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.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Object>::.cctor()
extern "C" void U3CU3Ec__4_3__cctor_m363396263_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec__4_3_t3406567184 * L_0 = (U3CU3Ec__4_3_t3406567184 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec__4_3_t3406567184 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec__4_3_t3406567184_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Object>::.ctor()
extern "C" void U3CU3Ec__4_3__ctor_m2607664950_gshared (U3CU3Ec__4_3_t3406567184 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Linq.Expressions.StackGuard/<>c__4`3<System.Object,System.Object,System.Object>::<RunOnEmptyStack>b__4_0(System.Object)
extern "C" RuntimeObject * U3CU3Ec__4_3_U3CRunOnEmptyStackU3Eb__4_0_m2249800755_gshared (U3CU3Ec__4_3_t3406567184 * __this, RuntimeObject * ___s0, const RuntimeMethod* method)
{
Tuple_4_t940344498 * V_0 = NULL;
{
RuntimeObject * L_0 = ___s0;
V_0 = (Tuple_4_t940344498 *)((Tuple_4_t940344498 *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
Tuple_4_t940344498 * L_1 = V_0;
NullCheck((Tuple_4_t940344498 *)L_1);
Action_3_t3632554945 * L_2 = (( Action_3_t3632554945 * (*) (Tuple_4_t940344498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Tuple_4_t940344498 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Tuple_4_t940344498 * L_3 = V_0;
NullCheck((Tuple_4_t940344498 *)L_3);
RuntimeObject * L_4 = (( RuntimeObject * (*) (Tuple_4_t940344498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Tuple_4_t940344498 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
Tuple_4_t940344498 * L_5 = V_0;
NullCheck((Tuple_4_t940344498 *)L_5);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Tuple_4_t940344498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Tuple_4_t940344498 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
Tuple_4_t940344498 * L_7 = V_0;
NullCheck((Tuple_4_t940344498 *)L_7);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Tuple_4_t940344498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Tuple_4_t940344498 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((Action_3_t3632554945 *)L_2);
(( void (*) (Action_3_t3632554945 *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Action_3_t3632554945 *)L_2, (RuntimeObject *)L_4, (RuntimeObject *)L_6, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return NULL;
}
}
#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.Linq.Expressions.StackGuard/<>c__5`3<System.Object,System.Object,System.Object>::.cctor()
extern "C" void U3CU3Ec__5_3__cctor_m1904894540_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec__5_3_t2195741215 * L_0 = (U3CU3Ec__5_3_t2195741215 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec__5_3_t2195741215 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec__5_3_t2195741215_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Linq.Expressions.StackGuard/<>c__5`3<System.Object,System.Object,System.Object>::.ctor()
extern "C" void U3CU3Ec__5_3__ctor_m4149425361_gshared (U3CU3Ec__5_3_t2195741215 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// R System.Linq.Expressions.StackGuard/<>c__5`3<System.Object,System.Object,System.Object>::<RunOnEmptyStack>b__5_0(System.Object)
extern "C" RuntimeObject * U3CU3Ec__5_3_U3CRunOnEmptyStackU3Eb__5_0_m1952097703_gshared (U3CU3Ec__5_3_t2195741215 * __this, RuntimeObject * ___s0, const RuntimeMethod* method)
{
Tuple_3_t1749845982 * V_0 = NULL;
{
RuntimeObject * L_0 = ___s0;
V_0 = (Tuple_3_t1749845982 *)((Tuple_3_t1749845982 *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
Tuple_3_t1749845982 * L_1 = V_0;
NullCheck((Tuple_3_t1749845982 *)L_1);
Func_3_t3398609381 * L_2 = (( Func_3_t3398609381 * (*) (Tuple_3_t1749845982 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Tuple_3_t1749845982 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Tuple_3_t1749845982 * L_3 = V_0;
NullCheck((Tuple_3_t1749845982 *)L_3);
RuntimeObject * L_4 = (( RuntimeObject * (*) (Tuple_3_t1749845982 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Tuple_3_t1749845982 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
Tuple_3_t1749845982 * L_5 = V_0;
NullCheck((Tuple_3_t1749845982 *)L_5);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Tuple_3_t1749845982 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Tuple_3_t1749845982 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
NullCheck((Func_3_t3398609381 *)L_2);
RuntimeObject * L_7 = (( RuntimeObject * (*) (Func_3_t3398609381 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_3_t3398609381 *)L_2, (RuntimeObject *)L_4, (RuntimeObject *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
return L_7;
}
}
#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.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>::.cctor()
extern "C" void U3CU3Ec__6_4__cctor_m2614668364_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec__6_4_t79891713 * L_0 = (U3CU3Ec__6_4_t79891713 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec__6_4_t79891713 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec__6_4_t79891713_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>::.ctor()
extern "C" void U3CU3Ec__6_4__ctor_m1242490576_gshared (U3CU3Ec__6_4_t79891713 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// R System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Linq.Expressions.Compiler.StackSpiller/Stack,System.Linq.Expressions.Compiler.StackSpiller/Result>::<RunOnEmptyStack>b__6_0(System.Object)
extern "C" Result_t1811329589 U3CU3Ec__6_4_U3CRunOnEmptyStackU3Eb__6_0_m2818819550_gshared (U3CU3Ec__6_4_t79891713 * __this, RuntimeObject * ___s0, const RuntimeMethod* method)
{
Tuple_4_t2753669900 * V_0 = NULL;
{
RuntimeObject * L_0 = ___s0;
V_0 = (Tuple_4_t2753669900 *)((Tuple_4_t2753669900 *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
Tuple_4_t2753669900 * L_1 = V_0;
NullCheck((Tuple_4_t2753669900 *)L_1);
Func_4_t694756426 * L_2 = (( Func_4_t694756426 * (*) (Tuple_4_t2753669900 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Tuple_4_t2753669900 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Tuple_4_t2753669900 * L_3 = V_0;
NullCheck((Tuple_4_t2753669900 *)L_3);
RuntimeObject * L_4 = (( RuntimeObject * (*) (Tuple_4_t2753669900 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Tuple_4_t2753669900 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
Tuple_4_t2753669900 * L_5 = V_0;
NullCheck((Tuple_4_t2753669900 *)L_5);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Tuple_4_t2753669900 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Tuple_4_t2753669900 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
Tuple_4_t2753669900 * L_7 = V_0;
NullCheck((Tuple_4_t2753669900 *)L_7);
int32_t L_8 = (( int32_t (*) (Tuple_4_t2753669900 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Tuple_4_t2753669900 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((Func_4_t694756426 *)L_2);
Result_t1811329589 L_9 = (( Result_t1811329589 (*) (Func_4_t694756426 *, RuntimeObject *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_4_t694756426 *)L_2, (RuntimeObject *)L_4, (RuntimeObject *)L_6, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_9;
}
}
#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.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Object,System.Object>::.cctor()
extern "C" void U3CU3Ec__6_4__cctor_m652802363_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
U3CU3Ec__6_4_t803415419 * L_0 = (U3CU3Ec__6_4_t803415419 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0));
(( void (*) (U3CU3Ec__6_4_t803415419 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
((U3CU3Ec__6_4_t803415419_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Object,System.Object>::.ctor()
extern "C" void U3CU3Ec__6_4__ctor_m687928482_gshared (U3CU3Ec__6_4_t803415419 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// R System.Linq.Expressions.StackGuard/<>c__6`4<System.Object,System.Object,System.Object,System.Object>::<RunOnEmptyStack>b__6_0(System.Object)
extern "C" RuntimeObject * U3CU3Ec__6_4_U3CRunOnEmptyStackU3Eb__6_0_m2944689277_gshared (U3CU3Ec__6_4_t803415419 * __this, RuntimeObject * ___s0, const RuntimeMethod* method)
{
Tuple_4_t253813019 * V_0 = NULL;
{
RuntimeObject * L_0 = ___s0;
V_0 = (Tuple_4_t253813019 *)((Tuple_4_t253813019 *)Castclass((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3)));
Tuple_4_t253813019 * L_1 = V_0;
NullCheck((Tuple_4_t253813019 *)L_1);
Func_4_t1418280132 * L_2 = (( Func_4_t1418280132 * (*) (Tuple_4_t253813019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Tuple_4_t253813019 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
Tuple_4_t253813019 * L_3 = V_0;
NullCheck((Tuple_4_t253813019 *)L_3);
RuntimeObject * L_4 = (( RuntimeObject * (*) (Tuple_4_t253813019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Tuple_4_t253813019 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
Tuple_4_t253813019 * L_5 = V_0;
NullCheck((Tuple_4_t253813019 *)L_5);
RuntimeObject * L_6 = (( RuntimeObject * (*) (Tuple_4_t253813019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Tuple_4_t253813019 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
Tuple_4_t253813019 * L_7 = V_0;
NullCheck((Tuple_4_t253813019 *)L_7);
RuntimeObject * L_8 = (( RuntimeObject * (*) (Tuple_4_t253813019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Tuple_4_t253813019 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7));
NullCheck((Func_4_t1418280132 *)L_2);
RuntimeObject * L_9 = (( RuntimeObject * (*) (Func_4_t1418280132 *, RuntimeObject *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Func_4_t1418280132 *)L_2, (RuntimeObject *)L_4, (RuntimeObject *)L_6, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8));
return L_9;
}
}
#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.Linq.GroupedEnumerable`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IEqualityComparer`1<TKey>)
extern "C" void GroupedEnumerable_2__ctor_m3616878539_gshared (GroupedEnumerable_2_t2921137520 * __this, RuntimeObject* ___source0, Func_2_t2447130374 * ___keySelector1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GroupedEnumerable_2__ctor_m3616878539_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B2_0 = NULL;
GroupedEnumerable_2_t2921137520 * G_B2_1 = NULL;
RuntimeObject* G_B1_0 = NULL;
GroupedEnumerable_2_t2921137520 * G_B1_1 = NULL;
Func_2_t2447130374 * G_B4_0 = NULL;
GroupedEnumerable_2_t2921137520 * G_B4_1 = NULL;
Func_2_t2447130374 * G_B3_0 = NULL;
GroupedEnumerable_2_t2921137520 * G_B3_1 = NULL;
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___source0;
RuntimeObject* L_1 = (RuntimeObject*)L_0;
G_B1_0 = L_1;
G_B1_1 = ((GroupedEnumerable_2_t2921137520 *)(__this));
if (L_1)
{
G_B2_0 = L_1;
G_B2_1 = ((GroupedEnumerable_2_t2921137520 *)(__this));
goto IL_0017;
}
}
{
Exception_t * L_2 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, GroupedEnumerable_2__ctor_m3616878539_RuntimeMethod_var);
}
IL_0017:
{
NullCheck(G_B2_1);
G_B2_1->set__source_0(G_B2_0);
Func_2_t2447130374 * L_3 = ___keySelector1;
Func_2_t2447130374 * L_4 = (Func_2_t2447130374 *)L_3;
G_B3_0 = L_4;
G_B3_1 = ((GroupedEnumerable_2_t2921137520 *)(__this));
if (L_4)
{
G_B4_0 = L_4;
G_B4_1 = ((GroupedEnumerable_2_t2921137520 *)(__this));
goto IL_002d;
}
}
{
Exception_t * L_5 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral2212699745, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, GroupedEnumerable_2__ctor_m3616878539_RuntimeMethod_var);
}
IL_002d:
{
NullCheck(G_B4_1);
G_B4_1->set__keySelector_1(G_B4_0);
RuntimeObject* L_6 = ___comparer2;
__this->set__comparer_2(L_6);
return;
}
}
// System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<TKey,TSource>> System.Linq.GroupedEnumerable`2<System.Object,System.Object>::GetEnumerator()
extern "C" RuntimeObject* GroupedEnumerable_2_GetEnumerator_m3048023851_gshared (GroupedEnumerable_2_t2921137520 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_0();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__keySelector_1();
RuntimeObject* L_2 = (RuntimeObject*)__this->get__comparer_2();
Lookup_2_t2604133957 * L_3 = (( Lookup_2_t2604133957 * (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2447130374 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((Lookup_2_t2604133957 *)L_3);
RuntimeObject* L_4 = (( RuntimeObject* (*) (Lookup_2_t2604133957 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Lookup_2_t2604133957 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_4;
}
}
// System.Collections.IEnumerator System.Linq.GroupedEnumerable`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* GroupedEnumerable_2_System_Collections_IEnumerable_GetEnumerator_m3510363511_gshared (GroupedEnumerable_2_t2921137520 * __this, const RuntimeMethod* method)
{
{
NullCheck((GroupedEnumerable_2_t2921137520 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (GroupedEnumerable_2_t2921137520 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((GroupedEnumerable_2_t2921137520 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Linq.IGrouping`2<TKey,TSource>[] System.Linq.GroupedEnumerable`2<System.Object,System.Object>::ToArray()
extern "C" IGrouping_2U5BU5D_t2654969873* GroupedEnumerable_2_ToArray_m1826060780_gshared (GroupedEnumerable_2_t2921137520 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_0();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__keySelector_1();
RuntimeObject* L_2 = (RuntimeObject*)__this->get__comparer_2();
Lookup_2_t2604133957 * L_3 = (( Lookup_2_t2604133957 * (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2447130374 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((RuntimeObject*)L_3);
IGrouping_2U5BU5D_t2654969873* L_4 = InterfaceFuncInvoker0< IGrouping_2U5BU5D_t2654969873* >::Invoke(0 /* TElement[] System.Linq.IIListProvider`1<System.Linq.IGrouping`2<System.Object,System.Object>>::ToArray() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
return L_4;
}
}
// System.Collections.Generic.List`1<System.Linq.IGrouping`2<TKey,TSource>> System.Linq.GroupedEnumerable`2<System.Object,System.Object>::ToList()
extern "C" List_1_t220694822 * GroupedEnumerable_2_ToList_m204056473_gshared (GroupedEnumerable_2_t2921137520 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_0();
Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__keySelector_1();
RuntimeObject* L_2 = (RuntimeObject*)__this->get__comparer_2();
Lookup_2_t2604133957 * L_3 = (( Lookup_2_t2604133957 * (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2447130374 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_1, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((RuntimeObject*)L_3);
List_1_t220694822 * L_4 = InterfaceFuncInvoker0< List_1_t220694822 * >::Invoke(1 /* System.Collections.Generic.List`1<TElement> System.Linq.IIListProvider`1<System.Linq.IGrouping`2<System.Object,System.Object>>::ToList() */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4), (RuntimeObject*)L_3);
return L_4;
}
}
// System.Int32 System.Linq.GroupedEnumerable`2<System.Object,System.Object>::GetCount(System.Boolean)
extern "C" int32_t GroupedEnumerable_2_GetCount_m719612475_gshared (GroupedEnumerable_2_t2921137520 * __this, bool ___onlyIfCheap0, const RuntimeMethod* method)
{
{
bool L_0 = ___onlyIfCheap0;
if (L_0)
{
goto IL_0020;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)__this->get__source_0();
Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__keySelector_1();
RuntimeObject* L_3 = (RuntimeObject*)__this->get__comparer_2();
Lookup_2_t2604133957 * L_4 = (( Lookup_2_t2604133957 * (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_2_t2447130374 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_1, (Func_2_t2447130374 *)L_2, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NullCheck((Lookup_2_t2604133957 *)L_4);
int32_t L_5 = (( int32_t (*) (Lookup_2_t2604133957 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Lookup_2_t2604133957 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return L_5;
}
IL_0020:
{
return (-1);
}
}
#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.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::.ctor(System.Int32)
extern "C" void U3CGetEnumeratorU3Ed__9__ctor_m2861958230_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
return;
}
}
// System.Void System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::System.IDisposable.Dispose()
extern "C" void U3CGetEnumeratorU3Ed__9_System_IDisposable_Dispose_m1656691537_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::MoveNext()
extern "C" bool U3CGetEnumeratorU3Ed__9_MoveNext_m314809826_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Grouping_2_t207236696 * V_1 = NULL;
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0();
V_0 = (int32_t)L_0;
Grouping_2_t207236696 * L_1 = (Grouping_2_t207236696 *)__this->get_U3CU3E4__this_2();
V_1 = (Grouping_2_t207236696 *)L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0047;
}
}
{
return (bool)0;
}
IL_0017:
{
__this->set_U3CU3E1__state_0((-1));
__this->set_U3CiU3E5__1_3(0);
goto IL_005e;
}
IL_0027:
{
Grouping_2_t207236696 * L_4 = V_1;
NullCheck(L_4);
ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)L_4->get__elements_2();
int32_t L_6 = (int32_t)__this->get_U3CiU3E5__1_3();
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
__this->set_U3CU3E2__current_1(L_8);
__this->set_U3CU3E1__state_0(1);
return (bool)1;
}
IL_0047:
{
__this->set_U3CU3E1__state_0((-1));
int32_t L_9 = (int32_t)__this->get_U3CiU3E5__1_3();
V_2 = (int32_t)L_9;
int32_t L_10 = V_2;
__this->set_U3CiU3E5__1_3(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)));
}
IL_005e:
{
int32_t L_11 = (int32_t)__this->get_U3CiU3E5__1_3();
Grouping_2_t207236696 * L_12 = V_1;
NullCheck(L_12);
int32_t L_13 = (int32_t)L_12->get__count_3();
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0027;
}
}
{
return (bool)0;
}
}
// TElement System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::System.Collections.Generic.IEnumerator<TElement>.get_Current()
extern "C" RuntimeObject * U3CGetEnumeratorU3Ed__9_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m1155546006_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_Reset_m3320286252_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_Reset_m3320286252_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_Reset_m3320286252_RuntimeMethod_var);
}
}
// System.Object System.Linq.Grouping`2/<GetEnumerator>d__9<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * U3CGetEnumeratorU3Ed__9_System_Collections_IEnumerator_get_Current_m3066800282_gshared (U3CGetEnumeratorU3Ed__9_t3973999269 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1();
return L_0;
}
}
#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.Linq.Grouping`2<System.Object,System.Object>::.ctor()
extern "C" void Grouping_2__ctor_m2961286014_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m297566312((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::Add(TElement)
extern "C" void Grouping_2_Add_m4140277396_gshared (Grouping_2_t207236696 * __this, RuntimeObject * ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_Add_m4140277396_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
NullCheck(L_0);
int32_t L_1 = (int32_t)__this->get__count_3();
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) == ((uint32_t)L_1))))
{
goto IL_0023;
}
}
{
ObjectU5BU5D_t2843939325** L_2 = (ObjectU5BU5D_t2843939325**)__this->get_address_of__elements_2();
int32_t L_3 = (int32_t)__this->get__count_3();
if (((int64_t)L_3 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_3 * (int64_t)2 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Grouping_2_Add_m4140277396_RuntimeMethod_var);
(( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325**)(ObjectU5BU5D_t2843939325**)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
}
IL_0023:
{
ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
int32_t L_5 = (int32_t)__this->get__count_3();
RuntimeObject * L_6 = ___element0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_6);
int32_t L_7 = (int32_t)__this->get__count_3();
__this->set__count_3(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
return;
}
}
// System.Collections.Generic.IEnumerator`1<TElement> System.Linq.Grouping`2<System.Object,System.Object>::GetEnumerator()
extern "C" RuntimeObject* Grouping_2_GetEnumerator_m4112854819_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__9_t3973999269 * L_0 = (U3CGetEnumeratorU3Ed__9_t3973999269 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1));
(( void (*) (U3CGetEnumeratorU3Ed__9_t3973999269 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
U3CGetEnumeratorU3Ed__9_t3973999269 * L_1 = (U3CGetEnumeratorU3Ed__9_t3973999269 *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return L_1;
}
}
// System.Collections.IEnumerator System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Grouping_2_System_Collections_IEnumerable_GetEnumerator_m3596506274_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
{
NullCheck((Grouping_2_t207236696 *)__this);
RuntimeObject* L_0 = (( RuntimeObject* (*) (Grouping_2_t207236696 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Grouping_2_t207236696 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_0;
}
}
// System.Int32 System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.get_Count()
extern "C" int32_t Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_m3780247054_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__count_3();
return L_0;
}
}
// System.Boolean System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.get_IsReadOnly()
extern "C" bool Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_m4071369462_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.Add(TElement)
extern "C" void Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m1381059969_gshared (Grouping_2_t207236696 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m1381059969_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m1381059969_RuntimeMethod_var);
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.Clear()
extern "C" void Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_m76032102_gshared (Grouping_2_t207236696 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_m76032102_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_m76032102_RuntimeMethod_var);
}
}
// System.Boolean System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.Contains(TElement)
extern "C" bool Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m3109636126_gshared (Grouping_2_t207236696 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
RuntimeObject * L_1 = ___item0;
int32_t L_2 = (int32_t)__this->get__count_3();
int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_0, (RuntimeObject *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.CopyTo(TElement[],System.Int32)
extern "C" void Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m2770390353_gshared (Grouping_2_t207236696 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
ObjectU5BU5D_t2843939325* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
int32_t L_3 = (int32_t)__this->get__count_3();
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.ICollection<TElement>.Remove(TElement)
extern "C" bool Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m1360237789_gshared (Grouping_2_t207236696 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m1360237789_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m1360237789_RuntimeMethod_var);
}
}
// System.Int32 System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.IList<TElement>.IndexOf(TElement)
extern "C" int32_t Grouping_2_System_Collections_Generic_IListU3CTElementU3E_IndexOf_m868567589_gshared (Grouping_2_t207236696 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
RuntimeObject * L_1 = ___item0;
int32_t L_2 = (int32_t)__this->get__count_3();
int32_t L_3 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_0, (RuntimeObject *)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
return L_3;
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.IList<TElement>.Insert(System.Int32,TElement)
extern "C" void Grouping_2_System_Collections_Generic_IListU3CTElementU3E_Insert_m3254640478_gshared (Grouping_2_t207236696 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_IListU3CTElementU3E_Insert_m3254640478_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_IListU3CTElementU3E_Insert_m3254640478_RuntimeMethod_var);
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.IList<TElement>.RemoveAt(System.Int32)
extern "C" void Grouping_2_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_m2645974329_gshared (Grouping_2_t207236696 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_m2645974329_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_m2645974329_RuntimeMethod_var);
}
}
// TElement System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.IList<TElement>.get_Item(System.Int32)
extern "C" RuntimeObject * Grouping_2_System_Collections_Generic_IListU3CTElementU3E_get_Item_m1093965177_gshared (Grouping_2_t207236696 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_IListU3CTElementU3E_get_Item_m1093965177_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = (int32_t)__this->get__count_3();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0018;
}
}
IL_000d:
{
Exception_t * L_3 = Error_ArgumentOutOfRange_m2535821398(NULL /*static, unused*/, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Grouping_2_System_Collections_Generic_IListU3CTElementU3E_get_Item_m1093965177_RuntimeMethod_var);
}
IL_0018:
{
ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)__this->get__elements_2();
int32_t L_5 = ___index0;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
return L_7;
}
}
// System.Void System.Linq.Grouping`2<System.Object,System.Object>::System.Collections.Generic.IList<TElement>.set_Item(System.Int32,TElement)
extern "C" void Grouping_2_System_Collections_Generic_IListU3CTElementU3E_set_Item_m501666570_gshared (Grouping_2_t207236696 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Grouping_2_System_Collections_Generic_IListU3CTElementU3E_set_Item_m501666570_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = Error_NotSupported_m1072967690(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Grouping_2_System_Collections_Generic_IListU3CTElementU3E_set_Item_m501666570_RuntimeMethod_var);
}
}
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"dngoins@hotmail.com"
] | dngoins@hotmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.